#!/bin/sh #GERRITHOST=gerrit.libreoffice.org GERRITHOST=logerrit GERRITURL=ssh://$GERRITHOST/core get_SHA_for_change() { SHA=`ssh ${GERRITHOST?} gerrit query --all-approvals change:$1|grep ref|tail -1|cut -d: -f2` } submit() { TYPE=$1 BRANCH=$2 if test -z "$BRANCH" then BRANCH=`git symbolic-ref HEAD 2> /dev/null` BRANCH="${BRANCH##refs/heads/}" if test -z "$BRANCH" then echo "no branch specified, and could not guess the current branch" exit 1 fi echo "no branch specified, guessing current branch $BRANCH" fi git push $GERRITURL HEAD:refs/$TYPE/$BRANCH } logerrit() { echo "Host logerrit" echo " IdentityFile ~/.ssh/id_rsa" echo " User $1" echo " Port 29418" echo " HostName gerrit.libreoffice.org" echo "Host gerrit.libreoffice.org" echo " IdentityFile ~/.ssh/id_rsa" echo " User $1" echo " Port 29418" echo " HostName gerrit.libreoffice.org" } case "$1" in help|--help|"") echo "Usage: ./logerrit subcommand [options]" echo "simple and basic tool to interact with LibreOffice gerrit" echo "see https://wiki.documentfoundation.org/Development/gerrit for details." echo echo "subcommands:" echo " setup walking you though your gerrit setup" echo " test test your gerrit setup" echo echo " --- for submitters:" echo " submit [BRANCH] submit your change for review" echo " resubmit [BRANCH] create a new Change-Id and submit your change for review" echo " (yes, this modifies your last commit)" echo " submit-draft [BRANCH] submit your change as draft" echo " resubmit-draft [BRANCH] create a new Change-Id and submit your change as draft" echo " (yes, this modifies your last commit)" echo " (yes, this modifies your last commit)" echo " nextchange [BRANCH] reset branch to the remote to start with the next change" echo "Note: drafts are only visibly to yourself and those that you explicitly add as reviewers." echo echo " --- for reviewers:" echo " checkout CHANGEID checkout the changes for review" echo " pull CHANGEID pull (and merge) the changes on current branch" echo " cherry-pick CHANGEID cherry-pick the change on current branch" echo " patch CHANGEID show the change as a patch" echo " query .... query for changes for review on project core" echo " " echo echo "advanced users should consider using git review instead:" echo "http://wiki.documentfoundation.org/Development/GitReview" exit ;; setup) cd $(dirname $(readlink -f $0)) ssh_home="$HOME/.ssh"; ssh_key= created_ssh= if ! test -d $ssh_home; then echo "It appears that you have no ssh setup, running ssh-keygen to create that:" mkdir $ssh_home chmod 0700 $ssh_home created_ssh=TRUE echo echo "Hit enter to generate an ssh key - you will need to enter a pass-phrase" echo read ssh-keygen -t rsa -f "$ssh_home/id_rsa" fi if test -d $ssh_home; then if test -f "$ssh_home/id_rsa.pub"; then ssh_key=`cat $ssh_home/id_rsa.pub`; elif test -f "$ssh_home/id_dsa.pub"; then ssh_key=`cat $ssh_home/id_dsa.pub`; fi fi echo "Please go to https://gerrit.libreoffice.org/ and:" echo "- press the 'register' button in the top right corner" echo "- after login set yourself a username (its recommended to use your IRC-nick)" if test "z$ssh_key" = "z"; then echo "- add your public ssh-key into the ssh keys settings." else echo "- paste the key below into the 'Add SSH Public Key' box." echo echo "$ssh_key" echo fi echo echo "Note that you need to register additional email addresses, if you want to" echo "commit from them. Additional emails must be confirmed with repling to the" echo "invitation mail it sends you." echo read -p 'Which user name did you choose? ' GERRITUSER if test "z$created_ssh" = "z"; then echo echo "Please now add the following to your ~/.ssh/config, creating the file if needed:" echo logerrit $GERRITUSER echo else echo "Automatically creating your ssh config" (logerrit $GERRITUSER) > "$ssh_home/config" fi # setup the remote properly ... git config remote.origin.pushurl ssh://logerrit/core echo "To see if your setup was successful, run './logerrit test' then." # a good place to make sure the hooks are set up ./g -z ;; test) if test -n "`ssh $GERRITHOST 2>&1|grep \"Welcome to Gerrit Code Review\"`" then echo "Your gerrit setup was successful!" else echo "There seems to be trouble." echo "please have the output of: ssh -vvvv logerrit" echo "at hand when looking for help." fi ;; submit) submit 'for' $2 ;; resubmit) git log -1 --pretty=%B | grep -v ^Change-Id: | git commit --amend -F - submit 'for' $2 ;; submit-draft) submit drafts $2 ;; resubmit-draft) git log -1 --pretty=%B | grep -v ^Change-Id: | git commit --amend -F - submit drafts $2 ;; nextchange) if test -n "`git status -s -uno`" then echo "You have uncommitted changes. Please commit or stash these:" git status exit 1 fi CHANGEID=`git log --format=format:%b -1 HEAD|grep Change-Id|cut -d: -f2|tr -d \ ` if test -z "$CHANGEID" then CHANGEID="NOCHANGEID" fi BACKUPBRANCH=backup/$CHANGEID-`date +%F-%H%M%S` git branch $BACKUPBRANCH echo "current state backed up as $BACKUPBRANCH" BRANCH=$2 if test -z "$BRANCH" then BRANCH=`git symbolic-ref HEAD 2> /dev/null` BRANCH="${BRANCH##refs/heads/}" if test -z "$BRANCH" then echo "no branch specified, and could not guess the current branch" exit 1 fi echo "no branch specified, guessing current branch $BRANCH" fi git reset --hard remotes/origin/$BRANCH ;; checkout) get_SHA_for_change $2 git fetch $GERRITURL $SHA && git checkout FETCH_HEAD ;; review) echo "'./logerrit review' has be removed as obsolete." echo "Please use either:" echo " - git-review: https://wiki.documentfoundation.org/Development/GitReview" echo " - or the web-UI directly: https://gerrit.libreoffice.org/" echo "Both provide a better experience." exit 1; ;; pull) get_SHA_for_change $2 git pull $GERRITURL $SHA ;; cherry-pick) get_SHA_for_change $2 git fetch $GERRITURL $SHA && git cherry-pick FETCH_HEAD ;; patch) get_SHA_for_change $2 git fetch $GERRITURL $SHA && git format-patch -1 --stdout FETCH_HEAD ;; query) shift ssh ${GERRITHOST?} gerrit query project:core $@ ;; *) ssh ${GERRITHOST?} gerrit $@ ;; esac libreoffice-4-1-6 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/en-ZA
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-09-01 13:16:17 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-10-16 11:22:44 -0500
commit2a531c1cdded4ca03e7ca5b96fb356883edfa370 (patch)
treeadc1e32d89b8a6835144ce352945ee7321539350 /source/en-ZA
parent90b5d08e5f9e727693085c56684b6009ad945392 (diff)
move translations structure one directory up
Diffstat (limited to 'source/en-ZA')
-rw-r--r--source/en-ZA/accessibility/source/helper.po24
-rw-r--r--source/en-ZA/avmedia/source/framework.po68
-rw-r--r--source/en-ZA/avmedia/source/viewer.po36
-rw-r--r--source/en-ZA/basctl/source/basicide.po807
-rw-r--r--source/en-ZA/basctl/source/dlged.po106
-rw-r--r--source/en-ZA/basic/source/classes.po562
-rw-r--r--source/en-ZA/basic/source/sbx.po44
-rw-r--r--source/en-ZA/chart2/source/controller/dialogs.po1744
-rw-r--r--source/en-ZA/connectivity/registry/ado/org/openoffice/Office/DataAccess.po27
-rw-r--r--source/en-ZA/connectivity/registry/calc/org/openoffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po27
-rw-r--r--source/en-ZA/connectivity/registry/flat/org/openoffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po23
-rw-r--r--source/en-ZA/connectivity/registry/kab/org/openoffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/registry/macab/org/openoffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po35
-rw-r--r--source/en-ZA/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po27
-rw-r--r--source/en-ZA/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po27
-rw-r--r--source/en-ZA/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po19
-rw-r--r--source/en-ZA/connectivity/source/resource.po577
-rw-r--r--source/en-ZA/cui/source/customize.po822
-rw-r--r--source/en-ZA/cui/source/dialogs.po2227
-rw-r--r--source/en-ZA/cui/source/options.po2860
-rw-r--r--source/en-ZA/cui/source/tabpages.po5102
-rw-r--r--source/en-ZA/dbaccess/source/core/resource.po306
-rw-r--r--source/en-ZA/dbaccess/source/ext/macromigration.po213
-rw-r--r--source/en-ZA/dbaccess/source/sdbtools/resource.po44
-rw-r--r--source/en-ZA/dbaccess/source/ui/app.po297
-rw-r--r--source/en-ZA/dbaccess/source/ui/browser.po174
-rw-r--r--source/en-ZA/dbaccess/source/ui/control.po92
-rw-r--r--source/en-ZA/dbaccess/source/ui/dlg.po1602
-rw-r--r--source/en-ZA/dbaccess/source/ui/inc.po60
-rw-r--r--source/en-ZA/dbaccess/source/ui/misc.po208
-rw-r--r--source/en-ZA/dbaccess/source/ui/querydesign.po315
-rw-r--r--source/en-ZA/dbaccess/source/ui/relationdesign.po54
-rw-r--r--source/en-ZA/dbaccess/source/ui/tabledesign.po362
-rw-r--r--source/en-ZA/dbaccess/source/ui/uno.po68
-rw-r--r--source/en-ZA/desktop/source/app.po176
-rw-r--r--source/en-ZA/desktop/source/deployment/gui.po535
-rw-r--r--source/en-ZA/desktop/source/deployment/manager.po40
-rw-r--r--source/en-ZA/desktop/source/deployment/misc.po32
-rw-r--r--source/en-ZA/desktop/source/deployment/registry.po40
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/component.po41
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/configuration.po24
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/help.po28
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/package.po20
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/script.po32
-rw-r--r--source/en-ZA/desktop/source/deployment/registry/sfwk.po20
-rw-r--r--source/en-ZA/desktop/source/deployment/unopkg.po56
-rw-r--r--source/en-ZA/dictionaries/af_ZA.po19
-rw-r--r--source/en-ZA/dictionaries/an_ES.po19
-rw-r--r--source/en-ZA/dictionaries/ar.po19
-rw-r--r--source/en-ZA/dictionaries/be_BY.po19
-rw-r--r--source/en-ZA/dictionaries/bg_BG.po19
-rw-r--r--source/en-ZA/dictionaries/bn_BD.po19
-rw-r--r--source/en-ZA/dictionaries/br_FR.po19
-rw-r--r--source/en-ZA/dictionaries/ca.po19
-rw-r--r--source/en-ZA/dictionaries/cs_CZ.po19
-rw-r--r--source/en-ZA/dictionaries/da_DK.po19
-rw-r--r--source/en-ZA/dictionaries/de.po19
-rw-r--r--source/en-ZA/dictionaries/el_GR.po19
-rw-r--r--source/en-ZA/dictionaries/en.po19
-rw-r--r--source/en-ZA/dictionaries/en/dialog.po171
-rw-r--r--source/en-ZA/dictionaries/es_ES.po19
-rw-r--r--source/en-ZA/dictionaries/et_EE.po19
-rw-r--r--source/en-ZA/dictionaries/fr_FR.po19
-rw-r--r--source/en-ZA/dictionaries/gd_GB.po19
-rw-r--r--source/en-ZA/dictionaries/gl.po19
-rw-r--r--source/en-ZA/dictionaries/gu_IN.po19
-rw-r--r--source/en-ZA/dictionaries/he_IL.po19
-rw-r--r--source/en-ZA/dictionaries/hi_IN.po19
-rw-r--r--source/en-ZA/dictionaries/hr_HR.po19
-rw-r--r--source/en-ZA/dictionaries/hu_HU.po19
-rw-r--r--source/en-ZA/dictionaries/hu_HU/dialog.po153
-rw-r--r--source/en-ZA/dictionaries/it_IT.po19
-rw-r--r--source/en-ZA/dictionaries/ku_TR.po19
-rw-r--r--source/en-ZA/dictionaries/lt_LT.po19
-rw-r--r--source/en-ZA/dictionaries/lv_LV.po19
-rw-r--r--source/en-ZA/dictionaries/ne_NP.po19
-rw-r--r--source/en-ZA/dictionaries/nl_NL.po19
-rw-r--r--source/en-ZA/dictionaries/no.po19
-rw-r--r--source/en-ZA/dictionaries/oc_FR.po19
-rw-r--r--source/en-ZA/dictionaries/pl_PL.po19
-rw-r--r--source/en-ZA/dictionaries/pt_BR.po19
-rw-r--r--source/en-ZA/dictionaries/pt_PT.po19
-rw-r--r--source/en-ZA/dictionaries/ro.po19
-rw-r--r--source/en-ZA/dictionaries/ru_RU.po19
-rw-r--r--source/en-ZA/dictionaries/ru_RU/dialog.po83
-rw-r--r--source/en-ZA/dictionaries/si_LK.po19
-rw-r--r--source/en-ZA/dictionaries/sk_SK.po19
-rw-r--r--source/en-ZA/dictionaries/sl_SI.po19
-rw-r--r--source/en-ZA/dictionaries/sr.po19
-rw-r--r--source/en-ZA/dictionaries/sv_SE.po19
-rw-r--r--source/en-ZA/dictionaries/sw_TZ.po19
-rw-r--r--source/en-ZA/dictionaries/te_IN.po19
-rw-r--r--source/en-ZA/dictionaries/th_TH.po19
-rw-r--r--source/en-ZA/dictionaries/uk_UA.po19
-rw-r--r--source/en-ZA/dictionaries/vi.po19
-rw-r--r--source/en-ZA/dictionaries/zu_ZA.po19
-rw-r--r--source/en-ZA/editeng/source/accessibility.po24
-rw-r--r--source/en-ZA/editeng/source/editeng.po84
-rw-r--r--source/en-ZA/editeng/source/items.po979
-rw-r--r--source/en-ZA/editeng/source/misc.po48
-rw-r--r--source/en-ZA/editeng/source/outliner.po40
-rw-r--r--source/en-ZA/extensions/source/abpilot.po226
-rw-r--r--source/en-ZA/extensions/source/bibliography.po315
-rw-r--r--source/en-ZA/extensions/source/dbpilots.po269
-rw-r--r--source/en-ZA/extensions/source/propctrlr.po1583
-rw-r--r--source/en-ZA/extensions/source/scanner.po134
-rw-r--r--source/en-ZA/extensions/source/update/check.po237
-rw-r--r--source/en-ZA/extensions/source/update/check/org/openoffice/Office.po19
-rw-r--r--source/en-ZA/filter/source/config/fragments/filters.po394
-rw-r--r--source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po226
-rw-r--r--source/en-ZA/filter/source/config/fragments/types.po117
-rw-r--r--source/en-ZA/filter/source/flash.po28
-rw-r--r--source/en-ZA/filter/source/graphicfilter/eps.po24
-rw-r--r--source/en-ZA/filter/source/pdf.po492
-rw-r--r--source/en-ZA/filter/source/t602.po60
-rw-r--r--source/en-ZA/filter/source/xsltdialog.po317
-rw-r--r--source/en-ZA/forms/source/resource.po260
-rw-r--r--source/en-ZA/formula/source/core/resource.po1216
-rw-r--r--source/en-ZA/formula/source/ui/dlg.po195
-rw-r--r--source/en-ZA/fpicker/source/office.po310
-rw-r--r--source/en-ZA/framework/source/classes.po194
-rw-r--r--source/en-ZA/framework/source/services.po40
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/guide.po614
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po24816
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/01.po298
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/02.po863
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc.po762
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/00.po839
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po28693
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/02.po531
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/04.po790
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/05.po528
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po5818
-rw-r--r--source/en-ZA/helpcontent2/source/text/schart.po400
-rw-r--r--source/en-ZA/helpcontent2/source/text/schart/00.po273
-rw-r--r--source/en-ZA/helpcontent2/source/text/schart/01.po3881
-rw-r--r--source/en-ZA/helpcontent2/source/text/schart/02.po124
-rw-r--r--source/en-ZA/helpcontent2/source/text/schart/04.po144
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw.po551
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw/00.po24
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw/01.po28
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw/04.po438
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw/guide.po1141
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared.po1514
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po6525
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po22752
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po9184
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/04.po1350
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/05.po604
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/07.po44
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/autokorr.po232
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/autopi.po4839
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/explorer/database.po7653
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po10127
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po7739
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress.po824
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/00.po689
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/01.po4527
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/02.po2921
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/04.po840
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/guide.po2651
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath.po290
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath/00.po364
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath/01.po6406
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath/02.po42
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath/04.po121
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath/guide.po434
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter.po1052
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/00.po1256
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po14066
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/02.po1939
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/04.po1132
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po8851
-rw-r--r--source/en-ZA/instsetoo_native/inc_openoffice/windows/msi_languages.po2411
-rw-r--r--source/en-ZA/mysqlc/source.po24
-rw-r--r--source/en-ZA/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po20
-rw-r--r--source/en-ZA/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po205
-rw-r--r--source/en-ZA/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po23
-rw-r--r--source/en-ZA/nlpsolver/src/locale.po181
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office.po5734
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po12110
-rw-r--r--source/en-ZA/padmin/source.po638
-rw-r--r--source/en-ZA/readlicense_oo/docs/readme.po525
-rw-r--r--source/en-ZA/reportbuilder/java/com/sun/star/report/function/metadata.po39
-rw-r--r--source/en-ZA/reportbuilder/registry/data/org/openoffice/Office.po64
-rw-r--r--source/en-ZA/reportbuilder/registry/data/org/openoffice/Office/UI.po284
-rw-r--r--source/en-ZA/reportbuilder/registry/data/org/openoffice/TypeDetection.po32
-rw-r--r--source/en-ZA/reportbuilder/util.po23
-rw-r--r--source/en-ZA/reportdesign/source/core/resource.po80
-rw-r--r--source/en-ZA/reportdesign/source/ui/dlg.po532
-rw-r--r--source/en-ZA/reportdesign/source/ui/inspection.po354
-rw-r--r--source/en-ZA/reportdesign/source/ui/report.po390
-rw-r--r--source/en-ZA/sc/source/core/src.po60
-rw-r--r--source/en-ZA/sc/source/ui/cctrl.po40
-rw-r--r--source/en-ZA/sc/source/ui/dbgui.po1133
-rw-r--r--source/en-ZA/sc/source/ui/docshell.po32
-rw-r--r--source/en-ZA/sc/source/ui/drawfunc.po202
-rw-r--r--source/en-ZA/sc/source/ui/formdlg.po80
-rw-r--r--source/en-ZA/sc/source/ui/miscdlgs.po474
-rw-r--r--source/en-ZA/sc/source/ui/navipi.po180
-rw-r--r--source/en-ZA/sc/source/ui/optdlg.po35
-rw-r--r--source/en-ZA/sc/source/ui/pagedlg.po333
-rw-r--r--source/en-ZA/sc/source/ui/src.po13176
-rw-r--r--source/en-ZA/sc/source/ui/styleui.po118
-rw-r--r--source/en-ZA/scaddins/source/analysis.po3638
-rw-r--r--source/en-ZA/scaddins/source/datefunc.po212
-rw-r--r--source/en-ZA/sccomp/source/solver.po60
-rw-r--r--source/en-ZA/scp2/source/accessories.po2304
-rw-r--r--source/en-ZA/scp2/source/activex.po24
-rw-r--r--source/en-ZA/scp2/source/base.po58
-rw-r--r--source/en-ZA/scp2/source/binfilter.po60
-rw-r--r--source/en-ZA/scp2/source/calc.po94
-rw-r--r--source/en-ZA/scp2/source/draw.po76
-rw-r--r--source/en-ZA/scp2/source/extensions.po300
-rw-r--r--source/en-ZA/scp2/source/gnome.po24
-rw-r--r--source/en-ZA/scp2/source/graphicfilter.po140
-rw-r--r--source/en-ZA/scp2/source/impress.po100
-rw-r--r--source/en-ZA/scp2/source/javafilter.po116
-rw-r--r--source/en-ZA/scp2/source/kde.po24
-rw-r--r--source/en-ZA/scp2/source/math.po56
-rw-r--r--source/en-ZA/scp2/source/onlineupdate.po24
-rw-r--r--source/en-ZA/scp2/source/ooo.po2680
-rw-r--r--source/en-ZA/scp2/source/python.po32
-rw-r--r--source/en-ZA/scp2/source/quickstart.po24
-rw-r--r--source/en-ZA/scp2/source/sdkoo.po24
-rw-r--r--source/en-ZA/scp2/source/smoketest.po23
-rw-r--r--source/en-ZA/scp2/source/stdlibs.po23
-rw-r--r--source/en-ZA/scp2/source/tde.po23
-rw-r--r--source/en-ZA/scp2/source/winexplorerext.po24
-rw-r--r--source/en-ZA/scp2/source/writer.po112
-rw-r--r--source/en-ZA/scp2/source/xsltfilter.po26
-rw-r--r--source/en-ZA/scripting/source/pyprov.po23
-rw-r--r--source/en-ZA/sd/source/core.po409
-rw-r--r--source/en-ZA/sd/source/filter/html.po270
-rw-r--r--source/en-ZA/sd/source/ui/accessibility.po66
-rw-r--r--source/en-ZA/sd/source/ui/animations.po706
-rw-r--r--source/en-ZA/sd/source/ui/annotations.po130
-rw-r--r--source/en-ZA/sd/source/ui/app.po2194
-rw-r--r--source/en-ZA/sd/source/ui/dlg.po1565
-rw-r--r--source/en-ZA/sd/source/ui/slideshow.po91
-rw-r--r--source/en-ZA/sd/source/ui/table.po58
-rw-r--r--source/en-ZA/sd/source/ui/view.po236
-rw-r--r--source/en-ZA/sdext/source/minimizer.po25
-rw-r--r--source/en-ZA/sdext/source/minimizer/registry/data/org/openoffice/Office.po20
-rw-r--r--source/en-ZA/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po290
-rw-r--r--source/en-ZA/sdext/source/pdfimport.po23
-rw-r--r--source/en-ZA/sdext/source/presenter.po25
-rw-r--r--source/en-ZA/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po170
-rw-r--r--source/en-ZA/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po305
-rw-r--r--source/en-ZA/setup_native/source/mac.po112
-rw-r--r--source/en-ZA/sfx2/source/appl.po585
-rw-r--r--source/en-ZA/sfx2/source/bastyp.po32
-rw-r--r--source/en-ZA/sfx2/source/dialog.po1043
-rw-r--r--source/en-ZA/sfx2/source/doc.po723
-rw-r--r--source/en-ZA/sfx2/source/menu.po56
-rw-r--r--source/en-ZA/sfx2/source/view.po148
-rw-r--r--source/en-ZA/shell/source/win32/shlxthandler/res.po164
-rw-r--r--source/en-ZA/starmath/source.po1903
-rw-r--r--source/en-ZA/svl/source/items.po20
-rw-r--r--source/en-ZA/svl/source/misc.po330
-rw-r--r--source/en-ZA/svtools/source/contnr.po232
-rw-r--r--source/en-ZA/svtools/source/control.po214
-rw-r--r--source/en-ZA/svtools/source/dialogs.po825
-rw-r--r--source/en-ZA/svtools/source/filter.po261
-rw-r--r--source/en-ZA/svtools/source/java.po74
-rw-r--r--source/en-ZA/svtools/source/misc.po1550
-rw-r--r--source/en-ZA/svtools/source/toolpanel.po24
-rw-r--r--source/en-ZA/svtools/workben/unodialog.po36
-rw-r--r--source/en-ZA/svx/inc.po296
-rw-r--r--source/en-ZA/svx/source/accessibility.po164
-rw-r--r--source/en-ZA/svx/source/dialog.po3645
-rw-r--r--source/en-ZA/svx/source/engine3d.po675
-rw-r--r--source/en-ZA/svx/source/fmcomp.po104
-rw-r--r--source/en-ZA/svx/source/form.po1194
-rw-r--r--source/en-ZA/svx/source/gallery2.po742
-rw-r--r--source/en-ZA/svx/source/items.po603
-rw-r--r--source/en-ZA/svx/source/src.po587
-rw-r--r--source/en-ZA/svx/source/stbctrls.po121
-rw-r--r--source/en-ZA/svx/source/svdraw.po2588
-rw-r--r--source/en-ZA/svx/source/table.po20
-rw-r--r--source/en-ZA/svx/source/tbxctrls.po370
-rw-r--r--source/en-ZA/svx/source/toolbars.po88
-rw-r--r--source/en-ZA/svx/source/unodialogs/textconversiondlgs.po388
-rw-r--r--source/en-ZA/sw/source/core/layout.po23
-rw-r--r--source/en-ZA/sw/source/core/undo.po653
-rw-r--r--source/en-ZA/sw/source/core/unocore.po44
-rw-r--r--source/en-ZA/sw/source/ui/app.po1119
-rw-r--r--source/en-ZA/sw/source/ui/chrdlg.po498
-rw-r--r--source/en-ZA/sw/source/ui/config.po1172
-rw-r--r--source/en-ZA/sw/source/ui/dbui.po1406
-rw-r--r--source/en-ZA/sw/source/ui/dialog.po435
-rw-r--r--source/en-ZA/sw/source/ui/dochdl.po68
-rw-r--r--source/en-ZA/sw/source/ui/docvw.po354
-rw-r--r--source/en-ZA/sw/source/ui/envelp.po671
-rw-r--r--source/en-ZA/sw/source/ui/fldui.po1049
-rw-r--r--source/en-ZA/sw/source/ui/fmtui.po218
-rw-r--r--source/en-ZA/sw/source/ui/frmdlg.po841
-rw-r--r--source/en-ZA/sw/source/ui/globdoc.po24
-rw-r--r--source/en-ZA/sw/source/ui/index.po871
-rw-r--r--source/en-ZA/sw/source/ui/lingu.po84
-rw-r--r--source/en-ZA/sw/source/ui/misc.po1269
-rw-r--r--source/en-ZA/sw/source/ui/ribbar.po440
-rw-r--r--source/en-ZA/sw/source/ui/shells.po248
-rw-r--r--source/en-ZA/sw/source/ui/smartmenu.po20
-rw-r--r--source/en-ZA/sw/source/ui/table.po589
-rw-r--r--source/en-ZA/sw/source/ui/uiview.po168
-rw-r--r--source/en-ZA/sw/source/ui/utlui.po2067
-rw-r--r--source/en-ZA/sw/source/ui/web.po60
-rw-r--r--source/en-ZA/sw/source/ui/wrtsh.po40
-rw-r--r--source/en-ZA/swext/mediawiki/help.po383
-rw-r--r--source/en-ZA/swext/mediawiki/src.po24
-rw-r--r--source/en-ZA/swext/mediawiki/src/registry/data/org/openoffice/Office.po24
-rw-r--r--source/en-ZA/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po144
-rw-r--r--source/en-ZA/sysui/desktop/share.po310
-rw-r--r--source/en-ZA/uui/source.po762
-rw-r--r--source/en-ZA/vcl/source/src.po844
-rw-r--r--source/en-ZA/wizards/source/euro.po348
-rw-r--r--source/en-ZA/wizards/source/formwizard.po2823
-rw-r--r--source/en-ZA/wizards/source/importwizard.po334
-rw-r--r--source/en-ZA/wizards/source/schedule.po213
-rw-r--r--source/en-ZA/wizards/source/template.po248
-rw-r--r--source/en-ZA/xmlsecurity/source/component.po20
-rw-r--r--source/en-ZA/xmlsecurity/source/dialogs.po370
330 files changed, 319444 insertions, 0 deletions
diff --git a/source/en-ZA/accessibility/source/helper.po b/source/en-ZA/accessibility/source/helper.po
new file mode 100644
index 00000000000..5a91e628287
--- /dev/null
+++ b/source/en-ZA/accessibility/source/helper.po
@@ -0,0 +1,24 @@
+#. extracted from accessibility/source/helper.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+accessibility%2Fsource%2Fhelper.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:50+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: accessiblestrings.src#RID_STR_ACC_NAME_BROWSEBUTTON.string.text
+msgid "Browse"
+msgstr "Browse"
+
+#: accessiblestrings.src#RID_STR_ACC_DESC_PANELDECL_TABBAR.string.text
+msgid "Panel Deck Tab Bar"
+msgstr "Panel Deck Tab Bar"
diff --git a/source/en-ZA/avmedia/source/framework.po b/source/en-ZA/avmedia/source/framework.po
new file mode 100644
index 00000000000..a3f04468af7
--- /dev/null
+++ b/source/en-ZA/avmedia/source/framework.po
@@ -0,0 +1,68 @@
+#. extracted from avmedia/source/framework.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+avmedia%2Fsource%2Fframework.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:50+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: mediacontrol.src#AVMEDIA_STR_OPEN.string.text
+msgid "Open"
+msgstr "Open"
+
+#: mediacontrol.src#AVMEDIA_STR_INSERT.string.text
+msgid "Apply"
+msgstr "Apply"
+
+#: mediacontrol.src#AVMEDIA_STR_PLAY.string.text
+msgid "Play"
+msgstr "Play"
+
+#: mediacontrol.src#AVMEDIA_STR_PAUSE.string.text
+msgid "Pause"
+msgstr "Pause"
+
+#: mediacontrol.src#AVMEDIA_STR_STOP.string.text
+msgid "Stop"
+msgstr "Stop"
+
+#: mediacontrol.src#AVMEDIA_STR_ENDLESS.string.text
+msgid "Repeat"
+msgstr "Repeat"
+
+#: mediacontrol.src#AVMEDIA_STR_MUTE.string.text
+msgid "Mute"
+msgstr "Mute"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM.string.text
+msgid "View"
+msgstr "View"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM_50.string.text
+msgid "50%"
+msgstr "50%"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM_100.string.text
+msgid "100%"
+msgstr "100%"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM_200.string.text
+msgid "200%"
+msgstr "200%"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM_FIT.string.text
+msgid "Scaled"
+msgstr "Scaled"
+
+#: mediacontrol.src#AVMEDIA_STR_MEDIAPLAYER.string.text
+msgid "Media Player"
+msgstr "Media Player"
diff --git a/source/en-ZA/avmedia/source/viewer.po b/source/en-ZA/avmedia/source/viewer.po
new file mode 100644
index 00000000000..d66703e6b46
--- /dev/null
+++ b/source/en-ZA/avmedia/source/viewer.po
@@ -0,0 +1,36 @@
+#. extracted from avmedia/source/viewer.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+avmedia%2Fsource%2Fviewer.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:50+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: mediawindow.src#AVMEDIA_STR_INSERTMEDIA_DLG.string.text
+msgid "Insert Movie and Sound"
+msgstr "Insert Movie and Sound"
+
+#: mediawindow.src#AVMEDIA_STR_OPENMEDIA_DLG.string.text
+msgid "Open Movie and Sound"
+msgstr "Open Movie and Sound"
+
+#: mediawindow.src#AVMEDIA_STR_ALL_MEDIAFILES.string.text
+msgid "All movie and sound files"
+msgstr "All movie and sound files"
+
+#: mediawindow.src#AVMEDIA_STR_ALL_FILES.string.text
+msgid "All files"
+msgstr ""
+
+#: mediawindow.src#AVMEDIA_ERR_URL.errorbox.text
+msgid "The format of the selected file is not supported."
+msgstr "The format of the selected file is not supported."
diff --git a/source/en-ZA/basctl/source/basicide.po b/source/en-ZA/basctl/source/basicide.po
new file mode 100644
index 00000000000..929b14a7058
--- /dev/null
+++ b/source/en-ZA/basctl/source/basicide.po
@@ -0,0 +1,807 @@
+#. extracted from basctl/source/basicide.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basctl%2Fsource%2Fbasicide.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-19 18:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_MOD.pageitem.text
+msgctxt "moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_MOD.pageitem.text"
+msgid "Modules"
+msgstr "Modules"
+
+#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_DLG.pageitem.text
+msgid "Dialogs"
+msgstr "Dialogues"
+
+#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_LIB.pageitem.text
+msgid "Libraries"
+msgstr "Libraries"
+
+#: moduldlg.src#RID_TD_ORGANIZE.tabdialog.text
+msgid "%PRODUCTNAME Basic Macro Organizer"
+msgstr "%PRODUCTNAME Basic Macro Organiser"
+
+#: moduldlg.src#RID_TP_MODULS.RID_STR_LIB.fixedtext.text
+msgid "M~odule"
+msgstr "M~odule"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Edit"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_NEWMOD.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_NEWMOD.pushbutton.text"
+msgid "~New..."
+msgstr "~New..."
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_NEWDLG.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_NEWDLG.pushbutton.text"
+msgid "~New..."
+msgstr "~New..."
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: moduldlg.src#RID_TP_DLGS.RID_STR_LIB.fixedtext.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_STR_LIB.fixedtext.text"
+msgid "Dialog"
+msgstr "Dialog"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Edit"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_NEWMOD.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_NEWMOD.pushbutton.text"
+msgid "~New..."
+msgstr "~New..."
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_NEWDLG.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_NEWDLG.pushbutton.text"
+msgid "~New..."
+msgstr "~New..."
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: moduldlg.src#RID_TP_LIBS.RID_STR_BASICS.fixedtext.text
+msgid "L~ocation"
+msgstr "L~ocation"
+
+#: moduldlg.src#RID_TP_LIBS.RID_STR_LIB.fixedtext.text
+msgid "~Library"
+msgstr "~Library"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Edit"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_PASSWORD.pushbutton.text
+msgid "~Password..."
+msgstr "~Password..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_NEWLIB.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_NEWLIB.pushbutton.text"
+msgid "~New..."
+msgstr "~New..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_APPEND.pushbutton.text
+msgid "~Import..."
+msgstr "~Import..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_EXPORT.pushbutton.text
+msgid "E~xport..."
+msgstr "E~xport..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: moduldlg.src#RID_DLG_LIBS.RID_FL_OPTIONS.fixedline.text
+msgid "Options"
+msgstr "Options"
+
+#: moduldlg.src#RID_DLG_LIBS.RID_CB_REF.checkbox.text
+msgid "Insert as reference (read-only)"
+msgstr "Insert as reference (read-only)"
+
+#: moduldlg.src#RID_DLG_LIBS.RID_CB_REPL.checkbox.text
+msgid "Replace existing libraries"
+msgstr "Replace existing libraries"
+
+#: moduldlg.src#RID_DLG_GOTOLINE.RID_FT_LINE.fixedtext.text
+msgid "~Line Number:"
+msgstr ""
+
+#: moduldlg.src#RID_DLG_NEWLIB.RID_FT_NEWLIB.fixedtext.text
+msgid "~Name:"
+msgstr "~Name:"
+
+#: moduldlg.src#RID_DLG_EXPORT.RB_EXPORTASPACKAGE.radiobutton.text
+msgid "Export as ~extension"
+msgstr "Export as ~extension"
+
+#: moduldlg.src#RID_DLG_EXPORT.RB_EXPORTASBASIC.radiobutton.text
+msgctxt "moduldlg.src#RID_DLG_EXPORT.RB_EXPORTASBASIC.radiobutton.text"
+msgid "Export as BASIC library"
+msgstr "Export as BASIC library"
+
+#: moduldlg.src#RID_DLG_EXPORT.modaldialog.text
+msgid "Export Basic library"
+msgstr "Export Basic library"
+
+#: moduldlg.src#RID_STR_EXPORTPACKAGE.string.text
+msgid "Export library as extension"
+msgstr "Export library as extension"
+
+#: moduldlg.src#RID_STR_EXPORTBASIC.string.text
+msgctxt "moduldlg.src#RID_STR_EXPORTBASIC.string.text"
+msgid "Export as BASIC library"
+msgstr "Export as BASIC library"
+
+#: moduldlg.src#RID_STR_PACKAGE_BUNDLE.string.text
+msgid "Extension"
+msgstr "Extension"
+
+#: basidesh.src#RID_STR_FILTER_ALLFILES.string.text
+msgid "<All>"
+msgstr "<All>"
+
+#: basidesh.src#RID_STR_NOMODULE.string.text
+msgid "< No Module >"
+msgstr "< No Module >"
+
+#: basidesh.src#RID_STR_WRONGPASSWORD.string.text
+msgid "Incorrect Password"
+msgstr "Incorrect Password"
+
+#: basidesh.src#RID_STR_OPEN.string.text
+msgid "Load"
+msgstr "Load"
+
+#: basidesh.src#RID_STR_SAVE.string.text
+msgid "Save"
+msgstr "Save"
+
+#: basidesh.src#RID_STR_SOURCETOBIG.string.text
+msgid ""
+"The source text is too large and can be neither compiled nor saved.\n"
+"Delete some of the comments or transfer some methods into another module."
+msgstr ""
+"The source text is too large and can be neither compiled nor saved.\n"
+"Delete some of the comments or transfer some methods into another module."
+
+#: basidesh.src#RID_STR_ERROROPENSTORAGE.string.text
+msgid "Error opening file"
+msgstr "Error opening file"
+
+#: basidesh.src#RID_STR_ERROROPENLIB.string.text
+msgid "Error loading library"
+msgstr "Error loading library"
+
+#: basidesh.src#RID_STR_NOLIBINSTORAGE.string.text
+msgid "The file does not contain any BASIC libraries"
+msgstr "The file does not contain any BASIC libraries"
+
+#: basidesh.src#RID_STR_BADSBXNAME.string.text
+msgid "Invalid Name"
+msgstr "Invalid Name"
+
+#: basidesh.src#RID_STR_LIBNAMETOLONG.string.text
+msgid "A library name can have up to 30 characters."
+msgstr "A library name can have up to 30 characters."
+
+#: basidesh.src#RID_STR_ERRORCHOOSEMACRO.string.text
+msgid "Macros from other documents are not accessible."
+msgstr "Macros from other documents are not accessible."
+
+#: basidesh.src#RID_STR_LIBISREADONLY.string.text
+msgid "This library is read-only."
+msgstr "This library is read-only."
+
+#: basidesh.src#RID_STR_REPLACELIB.string.text
+msgid "'XX' cannot be replaced."
+msgstr "'XX' cannot be replaced."
+
+#: basidesh.src#RID_STR_IMPORTNOTPOSSIBLE.string.text
+msgid "'XX' cannot be added."
+msgstr "'XX' cannot be added."
+
+#: basidesh.src#RID_STR_NOIMPORT.string.text
+msgid "'XX' was not added."
+msgstr "'XX' was not added."
+
+#: basidesh.src#RID_STR_ENTERPASSWORD.string.text
+msgid "Enter password for 'XX'"
+msgstr "Enter password for 'XX'"
+
+#: basidesh.src#RID_STR_SBXNAMEALLREADYUSED.string.text
+msgid "Name already exists"
+msgstr "Name already exists"
+
+#: basidesh.src#RID_STR_SIGNED.string.text
+msgid "(Signed)"
+msgstr "(Signed)"
+
+#: basidesh.src#RID_STR_SBXNAMEALLREADYUSED2.string.text
+msgid "Object with same name already exists"
+msgstr "Object with same name already exists"
+
+#: basidesh.src#RID_STR_FILEEXISTS.string.text
+msgid "The 'XX' file already exists"
+msgstr "The 'XX' file already exists"
+
+#: basidesh.src#RID_STR_CANNOTRUNMACRO.string.text
+msgid ""
+"For security reasons, you cannot run this macro.\n"
+"\n"
+"For more information, check the security settings."
+msgstr ""
+"For security reasons, you cannot run this macro.\n"
+"\n"
+"For more information, check the security settings."
+
+#: basidesh.src#RID_STR_COMPILEERROR.string.text
+msgid "Compile Error: "
+msgstr "Compile Error: "
+
+#: basidesh.src#RID_STR_RUNTIMEERROR.string.text
+msgid "Runtime Error: #"
+msgstr "Runtime Error: #"
+
+#: basidesh.src#RID_STR_SEARCHNOTFOUND.string.text
+msgid "Search key not found"
+msgstr "Search key not found"
+
+#: basidesh.src#RID_STR_SEARCHFROMSTART.string.text
+msgid "Search to last module complete. Continue at first module?"
+msgstr "Search to last module complete. Continue at first module?"
+
+#: basidesh.src#RID_STR_SEARCHREPLACES.string.text
+msgid "Search key replaced XX times"
+msgstr "Search key replaced XX times"
+
+#: basidesh.src#RID_STR_COULDNTREAD.string.text
+msgid "The file could not be read"
+msgstr "The file could not be read"
+
+#: basidesh.src#RID_STR_COULDNTWRITE.string.text
+msgid "The file could not be saved"
+msgstr "The file could not be saved"
+
+#: basidesh.src#RID_STR_CANNOTCHANGENAMESTDLIB.string.text
+msgid "The name of the default library cannot be changed."
+msgstr "The name of the default library cannot be changed."
+
+#: basidesh.src#RID_STR_CANNOTCHANGENAMEREFLIB.string.text
+msgid "The name of a referenced library cannot be changed."
+msgstr "The name of a referenced library cannot be changed."
+
+#: basidesh.src#RID_STR_CANNOTUNLOADSTDLIB.string.text
+msgid "The default library cannot be deactivated"
+msgstr "The default library cannot be deactivated"
+
+#: basidesh.src#RID_STR_GENERATESOURCE.string.text
+msgid "Generating source"
+msgstr "Generating source"
+
+#: basidesh.src#RID_STR_FILENAME.string.text
+msgid "File name:"
+msgstr "File name:"
+
+#: basidesh.src#RID_STR_APPENDLIBS.string.text
+msgid "Import Libraries"
+msgstr "Import Libraries"
+
+#: basidesh.src#RID_STR_QUERYDELMACRO.string.text
+msgid "Do you want to delete the macro XX?"
+msgstr "Do you want to delete the macro XX?"
+
+#: basidesh.src#RID_STR_QUERYDELDIALOG.string.text
+msgid "Do you want to delete the XX dialog?"
+msgstr "Do you want to delete the XX dialogue?"
+
+#: basidesh.src#RID_STR_QUERYDELLIB.string.text
+msgid "Do you want to delete the XX library?"
+msgstr "Do you want to delete the XX library?"
+
+#: basidesh.src#RID_STR_QUERYDELLIBREF.string.text
+msgid "Do you want to delete the reference to the XX library?"
+msgstr "Do you want to delete the reference to the XX library?"
+
+#: basidesh.src#RID_STR_QUERYDELMODULE.string.text
+msgid "Do you want to delete the XX module?"
+msgstr "Do you want to delete the XX module?"
+
+#: basidesh.src#RID_STR_OBJNOTFOUND.string.text
+msgid "Object or method not found"
+msgstr "Object or method not found"
+
+#: basidesh.src#RID_STR_BASIC.string.text
+msgid "BASIC"
+msgstr "BASIC"
+
+#: basidesh.src#RID_STR_LINE.string.text
+msgid "Ln"
+msgstr "Ln"
+
+#: basidesh.src#RID_STR_COLUMN.string.text
+msgid "Col"
+msgstr "Col"
+
+#: basidesh.src#RID_STR_DOC.string.text
+msgid "Document"
+msgstr "Document"
+
+#: basidesh.src#RID_BASICIDE_OBJECTBAR.string.text
+msgid "Macro Bar"
+msgstr "Macro Bar"
+
+#: basidesh.src#RID_STR_CANNOTCLOSE.string.text
+msgid "The window cannot be closed while BASIC is running."
+msgstr "The window cannot be closed while BASIC is running."
+
+#: basidesh.src#RID_STR_REPLACESTDLIB.string.text
+msgid "The default library cannot be replaced."
+msgstr "The default library cannot be replaced."
+
+#: basidesh.src#RID_STR_REFNOTPOSSIBLE.string.text
+msgid "Reference to 'XX' not possible."
+msgstr "Reference to 'XX' not possible."
+
+#: basidesh.src#RID_STR_WATCHNAME.string.text
+msgid "Watch"
+msgstr "Watch"
+
+#: basidesh.src#RID_STR_WATCHVARIABLE.string.text
+msgid "Variable"
+msgstr "Variable"
+
+#: basidesh.src#RID_STR_WATCHVALUE.string.text
+msgid "Value"
+msgstr "Value"
+
+#: basidesh.src#RID_STR_WATCHTYPE.string.text
+msgid "Type"
+msgstr "Type"
+
+#: basidesh.src#RID_STR_STACKNAME.string.text
+msgid "Call Stack"
+msgstr "Call Stack"
+
+#: basidesh.src#RID_STR_INITIDE.string.text
+msgid "BASIC Initialization"
+msgstr "BASIC Initialisation"
+
+#: basidesh.src#RID_STR_STDMODULENAME.string.text
+msgid "Module"
+msgstr "Module"
+
+#: basidesh.src#RID_STR_STDDIALOGNAME.string.text
+msgctxt "basidesh.src#RID_STR_STDDIALOGNAME.string.text"
+msgid "Dialog"
+msgstr "Dialog"
+
+#: basidesh.src#RID_STR_STDLIBNAME.string.text
+msgid "Library"
+msgstr "Library"
+
+#: basidesh.src#RID_STR_NEWLIB.string.text
+msgid "New Library"
+msgstr "New Library"
+
+#: basidesh.src#RID_STR_NEWMOD.string.text
+msgid "New Module"
+msgstr "New Module"
+
+#: basidesh.src#RID_STR_NEWDLG.string.text
+msgid "New Dialog"
+msgstr "New Dialogue"
+
+#: basidesh.src#RID_STR_ALL.string.text
+msgid "All"
+msgstr "All"
+
+#: basidesh.src#RID_STR_PAGE.string.text
+msgid "Page"
+msgstr "Page"
+
+#: basidesh.src#RID_STR_MACRONAMEREQ.string.text
+msgid "A name must be entered."
+msgstr "A name must be entered."
+
+#: basidesh.src#RID_STR_WILLSTOPPRG.string.text
+msgid ""
+"You will have to restart the program after this edit.\n"
+"Continue?"
+msgstr ""
+"You will have to restart the program after this edit.\n"
+"Continue?"
+
+#: basidesh.src#RID_STR_SEARCHALLMODULES.string.text
+msgid "Do you want to replace the text in all active modules?"
+msgstr "Do you want to replace the text in all active modules?"
+
+#: basidesh.src#RID_IMGBTN_REMOVEWATCH.imagebutton.text
+msgid "-"
+msgstr "-"
+
+#: basidesh.src#RID_IMGBTN_REMOVEWATCH.imagebutton.quickhelptext
+msgid "Remove Watch"
+msgstr "Remove Watch"
+
+#: basidesh.src#RID_STR_REMOVEWATCH.string.text
+msgid "Watch:"
+msgstr "Watch:"
+
+#: basidesh.src#RID_STR_STACK.string.text
+msgid "Calls: "
+msgstr "Calls: "
+
+#: basidesh.src#RID_STR_USERMACROS.string.text
+msgid "My Macros"
+msgstr "My Macros"
+
+#: basidesh.src#RID_STR_USERDIALOGS.string.text
+msgid "My Dialogs"
+msgstr "My Dialogues"
+
+#: basidesh.src#RID_STR_USERMACROSDIALOGS.string.text
+msgid "My Macros & Dialogs"
+msgstr "My Macros & Dialogues"
+
+#: basidesh.src#RID_STR_SHAREMACROS.string.text
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Macros"
+
+#: basidesh.src#RID_STR_SHAREDIALOGS.string.text
+msgid "%PRODUCTNAME Dialogs"
+msgstr "%PRODUCTNAME Dialogues"
+
+#: basidesh.src#RID_STR_SHAREMACROSDIALOGS.string.text
+msgid "%PRODUCTNAME Macros & Dialogs"
+msgstr "%PRODUCTNAME Macros & Dialogues"
+
+#: basidesh.src#RID_POPUP_BRKPROPS.RID_ACTIV.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_BRKPROPS.RID_ACTIV.menuitem.text"
+msgid "Active"
+msgstr "Active"
+
+#: basidesh.src#RID_POPUP_BRKPROPS.RID_BRKPROPS.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_BRKPROPS.RID_BRKPROPS.menuitem.text"
+msgid "Properties..."
+msgstr "Properties..."
+
+#: basidesh.src#RID_POPUP_BRKPROPS.menu.text
+msgid "Properties"
+msgstr "Properties"
+
+#: basidesh.src#RID_POPUP_BRKDLG.RID_BRKDLG.menuitem.text
+msgid "Manage Breakpoints..."
+msgstr "Manage Breakpoints..."
+
+#: basidesh.src#RID_POPUP_BRKDLG.menu.text
+msgctxt "basidesh.src#RID_POPUP_BRKDLG.menu.text"
+msgid "Manage Breakpoints"
+msgstr "Manage Breakpoints"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.SID_BASICIDE_NEWMODULE.menuitem.text
+msgid "BASIC Module"
+msgstr "BASIC Module"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.SID_BASICIDE_NEWDIALOG.menuitem.text
+msgid "BASIC Dialog"
+msgstr "BASIC Dialogue"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.menuitem.text
+msgid "Insert"
+msgstr "Insert"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_DELETECURRENT.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_DELETECURRENT.menuitem.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_RENAMECURRENT.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_RENAMECURRENT.menuitem.text"
+msgid "Rename"
+msgstr "Rename"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_HIDECURPAGE.menuitem.text
+msgid "Hide"
+msgstr "Hide"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_MODULEDLG.menuitem.text
+msgid "Modules..."
+msgstr "Modules..."
+
+#: basidesh.src#RID_POPUP_DLGED.SID_SHOW_PROPERTYBROWSER.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_DLGED.SID_SHOW_PROPERTYBROWSER.menuitem.text"
+msgid "Properties..."
+msgstr "Properties..."
+
+#: basidesh.src#RID_STR_QUERYREPLACEMACRO.string.text
+msgid "Do you want to overwrite the XX macro?"
+msgstr "Do you want to overwrite the XX macro?"
+
+#: basidesh.src#RID_STR_TRANSLATION_NOTLOCALIZED.string.text
+msgid "<Not localized>"
+msgstr "<Not localised>"
+
+#: basidesh.src#RID_STR_TRANSLATION_DEFAULT.string.text
+msgid "[Default Language]"
+msgstr "[Default Language]"
+
+#: basidesh.src#RID_STR_DOCUMENT_OBJECTS.string.text
+msgid "Document Objects"
+msgstr "Document Objects"
+
+#: basidesh.src#RID_STR_USERFORMS.string.text
+msgid "Forms"
+msgstr "Forms"
+
+#: basidesh.src#RID_STR_NORMAL_MODULES.string.text
+msgctxt "basidesh.src#RID_STR_NORMAL_MODULES.string.text"
+msgid "Modules"
+msgstr "Modules"
+
+#: basidesh.src#RID_STR_CLASS_MODULES.string.text
+msgid "Class Modules"
+msgstr "Class Modules"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_RENAME.string.text
+msgctxt "basidesh.src#RID_STR_DLGIMP_CLASH_RENAME.string.text"
+msgid "Rename"
+msgstr "Rename"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_REPLACE.string.text
+msgid "Replace"
+msgstr "Replace"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_TITLE.string.text
+msgid "Dialog Import - Name already used"
+msgstr "Dialog Import - Name already used"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_TEXT.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 ""
+"The library already contains a dialogue with the name:\n"
+"\n"
+"$(ARG1)\n"
+"\n"
+"Rename dialogue to keep current dialogue or replace existing dialogue.\n"
+" "
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_ADD.string.text
+msgid "Add"
+msgstr "Add"
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_OMIT.string.text
+msgid "Omit"
+msgstr "Omit"
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_TITLE.string.text
+msgid "Dialog Import - Language Mismatch"
+msgstr "Dialog Import - Language Mismatch"
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_TEXT.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 ""
+"The dialogue 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 dialogue or omit them to stay with the current library languages.\n"
+"\n"
+"Note: For languages not supported by the dialogue the resources of the dialogue's default language will be used.\n"
+" "
+
+#: basidesh.src#RID_STR_GETLINE.string.text
+msgid "Goto Line"
+msgstr ""
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.1.itemlist.text
+msgid "Print range"
+msgstr "Print range"
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.2.itemlist.text
+msgid "All ~Pages"
+msgstr "All ~Pages"
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.3.itemlist.text
+msgid "Pa~ges"
+msgstr "Pa~ges"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_NEW.pushbutton.text
+msgid "New"
+msgstr "New"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_DEL.pushbutton.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_DEL.pushbutton.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_CHKB_ACTIVE.checkbox.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_CHKB_ACTIVE.checkbox.text"
+msgid "Active"
+msgstr "Active"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_FT_PASS.fixedtext.text
+msgid "Pass Count:"
+msgstr "Pass Count:"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_FT_BRKPOINTS.fixedtext.text
+msgid "Breakpoints"
+msgstr "Breakpoints"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.modaldialog.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.modaldialog.text"
+msgid "Manage Breakpoints"
+msgstr "Manage Breakpoints"
+
+#: objdlg.src#RID_BASICIDE_OBJCAT.RID_TB_TOOLBOX.TBITEM_SHOW.toolboxitem.text
+msgid "Show"
+msgstr "Show"
+
+#: objdlg.src#RID_BASICIDE_OBJCAT.dockingwindow.text
+msgid "Object Catalog"
+msgstr ""
+
+#: objdlg.src#RID_STR_TLB_MACROS.string.text
+msgid "Objects Tree"
+msgstr "Objects Tree"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_DESCR.fixedtext.text
+msgctxt "moptions.src#RID_MACROOPTIONS.RID_FT_DESCR.fixedtext.text"
+msgid "Description"
+msgstr "Description"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FL_HELP.fixedline.text
+msgid "Help information"
+msgstr "Help information"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_HELPID.fixedtext.text
+msgid "Help ID"
+msgstr "Help ID"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_HELPNAME.fixedtext.text
+msgid "Help file name"
+msgstr "Help file name"
+
+#: moptions.src#RID_MACROOPTIONS.modaldialog.text
+msgctxt "moptions.src#RID_MACROOPTIONS.modaldialog.text"
+msgid "Description"
+msgstr "Description"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACROSIN.fixedtext.text
+msgid "Existing macros ~in:"
+msgstr "Existing macros ~in:"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACRONAME.fixedtext.text
+msgid "~Macro name"
+msgstr "~Macro name"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACROFROM.fixedtext.text
+msgid "Macro ~from"
+msgstr "Macro ~from"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_SAVEMACRO.fixedtext.text
+msgid "Save m~acro in"
+msgstr "Save m~acro in"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_DESCRIPTION.fixedtext.text
+msgid "De~scription"
+msgstr "De~scription"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_RUN.pushbutton.text
+msgid "R~un"
+msgstr "R~un"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_CLOSE.cancelbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_ASSIGN.pushbutton.text
+msgid "~Assign..."
+msgstr "~Assign..."
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_EDIT.pushbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Edit"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_NEWLIB.pushbutton.text
+msgid "New ~Library"
+msgstr "New ~Library"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_NEWMOD.pushbutton.text
+msgid "New M~odule"
+msgstr "New M~odule"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_DEL.pushbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_DEL.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_ORG.pushbutton.text
+msgid "~Organizer..."
+msgstr "~Organiser..."
+
+#: macrodlg.src#RID_MACROCHOOSER.modaldialog.text
+msgid "%PRODUCTNAME Basic Macros"
+msgstr "%PRODUCTNAME Basic Macros"
+
+#: macrodlg.src#RID_STR_STDMACRONAME.string.text
+msgid "Macro"
+msgstr "Macro"
+
+#: macrodlg.src#RID_STR_BTNDEL.string.text
+msgctxt "macrodlg.src#RID_STR_BTNDEL.string.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: macrodlg.src#RID_STR_BTNNEW.string.text
+msgid "~New"
+msgstr "~New"
+
+#: macrodlg.src#RID_STR_CLOSE.string.text
+msgctxt "macrodlg.src#RID_STR_CLOSE.string.text"
+msgid "Close"
+msgstr "Close"
+
+#: macrodlg.src#RID_STR_CHOOSE.string.text
+msgid "Choose"
+msgstr "Choose"
+
+#: macrodlg.src#RID_STR_RUN.string.text
+msgid "Run"
+msgstr "Run"
+
+#: macrodlg.src#RID_STR_RECORD.string.text
+msgid "~Save"
+msgstr "~Save"
diff --git a/source/en-ZA/basctl/source/dlged.po b/source/en-ZA/basctl/source/dlged.po
new file mode 100644
index 00000000000..b89abe20b92
--- /dev/null
+++ b/source/en-ZA/basctl/source/dlged.po
@@ -0,0 +1,106 @@
+#. extracted from basctl/source/dlged.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basctl%2Fsource%2Fdlged.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:50+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.FT_LANGUAGE.fixedtext.text
+msgid "Present Languages"
+msgstr "Present Languages"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_ADD_LANG.pushbutton.text
+msgid "Add..."
+msgstr "Add..."
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_DEL_LANG.pushbutton.text
+msgid "Delete"
+msgstr "Delete"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_MAKE_DEFAULT.pushbutton.text
+msgid "Default"
+msgstr "Default"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.FT_INFO.fixedtext.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 "The default language is used if no localisation for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages."
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_CLOSE.okbutton.text
+msgid "~Close"
+msgstr "~Close"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_DEF_LANG.string.text
+msgid "[Default Language]"
+msgstr "[Default Language]"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_DELETE.string.text
+msgid "~Delete"
+msgstr "~Delete"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_CREATE_LANG.string.text
+msgid "<Press 'Add' to create language resources>"
+msgstr "<Press 'Add' to create language resources>"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.modaldialog.text
+msgid "Manage User Interface Languages [$1]"
+msgstr "Manage User Interface Languages [$1]"
+
+#: managelang.src#RID_QRYBOX_LANGUAGE.querybox.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.\n"
+"\n"
+"Do you want to delete the resources of the selected language(s)?"
+msgstr ""
+"You are about to delete the resources for the selected language(s). All user interface strings for this language(s) will be deleted.\n"
+"\n"
+"Do you want to delete the resources of the selected language(s)?"
+
+#: managelang.src#RID_QRYBOX_LANGUAGE.querybox.title
+msgid "Delete Language Resources"
+msgstr "Delete Language Resources"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.FT_DEF_LANGUAGE.fixedtext.text
+msgid "Default language"
+msgstr "Default language"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.FT_DEF_INFO.fixedtext.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 "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."
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_TITLE.string.text
+msgid "Add User Interface Languages"
+msgstr "Add User Interface Languages"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_LABEL.string.text
+msgid "Available Languages"
+msgstr "Available Languages"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_INFO.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 "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."
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.modaldialog.text
+msgid "Set Default User Interface Language"
+msgstr "Set Default User Interface Language"
+
+#: dlgresid.src#RID_STR_BRWTITLE_PROPERTIES.string.text
+msgid "Properties: "
+msgstr "Properties: "
+
+#: dlgresid.src#RID_STR_BRWTITLE_NO_PROPERTIES.string.text
+msgid "No Control marked"
+msgstr "No Control marked"
+
+#: dlgresid.src#RID_STR_BRWTITLE_MULTISELECT.string.text
+msgid "Multiselection"
+msgstr "Multiselection"
diff --git a/source/en-ZA/basic/source/classes.po b/source/en-ZA/basic/source/classes.po
new file mode 100644
index 00000000000..d88388fc123
--- /dev/null
+++ b/source/en-ZA/basic/source/classes.po
@@ -0,0 +1,562 @@
+#. extracted from basic/source/classes.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basic%2Fsource%2Fclasses.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:51+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: sb.src#RID_BASIC_START.SbERR_SYNTAX___ERRCODE_RES_MASK.string.text
+msgid "Syntax error."
+msgstr "Syntax error."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_GOSUB___ERRCODE_RES_MASK.string.text
+msgid "Return without Gosub."
+msgstr "Return without Gosub."
+
+#: sb.src#RID_BASIC_START.SbERR_REDO_FROM_START___ERRCODE_RES_MASK.string.text
+msgid "Incorrect entry; please retry."
+msgstr "Incorrect entry; please retry."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ARGUMENT___ERRCODE_RES_MASK.string.text
+msgid "Invalid procedure call."
+msgstr "Invalid procedure call."
+
+#: sb.src#RID_BASIC_START.SbERR_MATH_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Overflow."
+msgstr "Overflow."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_MEMORY___ERRCODE_RES_MASK.string.text
+msgid "Not enough memory."
+msgstr "Not enough memory."
+
+#: sb.src#RID_BASIC_START.SbERR_ALREADY_DIM___ERRCODE_RES_MASK.string.text
+msgid "Array already dimensioned."
+msgstr "Array already dimensioned."
+
+#: sb.src#RID_BASIC_START.SbERR_OUT_OF_RANGE___ERRCODE_RES_MASK.string.text
+msgid "Index out of defined range."
+msgstr "Index out of defined range."
+
+#: sb.src#RID_BASIC_START.SbERR_DUPLICATE_DEF___ERRCODE_RES_MASK.string.text
+msgid "Duplicate definition."
+msgstr "Duplicate definition."
+
+#: sb.src#RID_BASIC_START.SbERR_ZERODIV___ERRCODE_RES_MASK.string.text
+msgid "Division by zero."
+msgstr "Division by zero."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_UNDEFINED___ERRCODE_RES_MASK.string.text
+msgid "Variable not defined."
+msgstr "Variable not defined."
+
+#: sb.src#RID_BASIC_START.SbERR_CONVERSION___ERRCODE_RES_MASK.string.text
+msgid "Data type mismatch."
+msgstr "Data type mismatch."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PARAMETER___ERRCODE_RES_MASK.string.text
+msgid "Invalid parameter."
+msgstr "Invalid parameter."
+
+#: sb.src#RID_BASIC_START.SbERR_USER_ABORT___ERRCODE_RES_MASK.string.text
+msgid "Process interrupted by user."
+msgstr "Process interrupted by user."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RESUME___ERRCODE_RES_MASK.string.text
+msgid "Resume without error."
+msgstr "Resume without error."
+
+#: sb.src#RID_BASIC_START.SbERR_STACK_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Not enough stack memory."
+msgstr "Not enough stack memory."
+
+#: sb.src#RID_BASIC_START.SbERR_PROC_UNDEFINED___ERRCODE_RES_MASK.string.text
+msgid "Sub-procedure or function procedure not defined."
+msgstr "Sub-procedure or function procedure not defined."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DLL_LOAD___ERRCODE_RES_MASK.string.text
+msgid "Error loading DLL file."
+msgstr "Error loading DLL file."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DLL_CALL___ERRCODE_RES_MASK.string.text
+msgid "Wrong DLL call convention."
+msgstr "Wrong DLL call convention."
+
+#: sb.src#RID_BASIC_START.SbERR_INTERNAL_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Internal error $(ARG1)."
+msgstr "Internal error $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CHANNEL___ERRCODE_RES_MASK.string.text
+msgid "Invalid file name or file number."
+msgstr "Invalid file name or file number."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "File not found."
+msgstr "File not found."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_FILE_MODE___ERRCODE_RES_MASK.string.text
+msgid "Incorrect file mode."
+msgstr "Incorrect file mode."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_ALREADY_OPEN___ERRCODE_RES_MASK.string.text
+msgid "File already open."
+msgstr "File already open."
+
+#: sb.src#RID_BASIC_START.SbERR_IO_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Device I/O error."
+msgstr "Device I/O error."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_EXISTS___ERRCODE_RES_MASK.string.text
+msgid "File already exists."
+msgstr "File already exists."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RECORD_LENGTH___ERRCODE_RES_MASK.string.text
+msgid "Incorrect record length."
+msgstr "Incorrect record length."
+
+#: sb.src#RID_BASIC_START.SbERR_DISK_FULL___ERRCODE_RES_MASK.string.text
+msgid "Disk or hard drive full."
+msgstr "Disk or hard drive full."
+
+#: sb.src#RID_BASIC_START.SbERR_READ_PAST_EOF___ERRCODE_RES_MASK.string.text
+msgid "Reading exceeds EOF."
+msgstr "Reading exceeds EOF."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RECORD_NUMBER___ERRCODE_RES_MASK.string.text
+msgid "Incorrect record number."
+msgstr "Incorrect record number."
+
+#: sb.src#RID_BASIC_START.SbERR_TOO_MANY_FILES___ERRCODE_RES_MASK.string.text
+msgid "Too many files."
+msgstr "Too many files."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_DEVICE___ERRCODE_RES_MASK.string.text
+msgid "Device not available."
+msgstr "Device not available."
+
+#: sb.src#RID_BASIC_START.SbERR_ACCESS_DENIED___ERRCODE_RES_MASK.string.text
+msgid "Access denied."
+msgstr "Access denied."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_READY___ERRCODE_RES_MASK.string.text
+msgid "Disk not ready."
+msgstr "Disk not ready."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IMPLEMENTED___ERRCODE_RES_MASK.string.text
+msgid "Not implemented."
+msgstr "Not implemented."
+
+#: sb.src#RID_BASIC_START.SbERR_DIFFERENT_DRIVE___ERRCODE_RES_MASK.string.text
+msgid "Renaming on different drives impossible."
+msgstr "Renaming on different drives impossible."
+
+#: sb.src#RID_BASIC_START.SbERR_ACCESS_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Path/File access error."
+msgstr "Path/File access error."
+
+#: sb.src#RID_BASIC_START.SbERR_PATH_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Path not found."
+msgstr "Path not found."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object variable not set."
+msgstr "Object variable not set."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PATTERN___ERRCODE_RES_MASK.string.text
+msgid "Invalid string pattern."
+msgstr "Invalid string pattern."
+
+#: sb.src#RID_BASIC_START.SBERR_IS_NULL___ERRCODE_RES_MASK.string.text
+msgid "Use of zero not permitted."
+msgstr "Use of zero not permitted."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_ERROR___ERRCODE_RES_MASK.string.text
+msgid "DDE Error."
+msgstr "DDE Error."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_WAITINGACK___ERRCODE_RES_MASK.string.text
+msgid "Awaiting response to DDE connection."
+msgstr "Awaiting response to DDE connection."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_OUTOFCHANNELS___ERRCODE_RES_MASK.string.text
+msgid "No DDE channels available."
+msgstr "No DDE channels available."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_RESPONSE___ERRCODE_RES_MASK.string.text
+msgid "No application responded to DDE connect initiation."
+msgstr "No application responded to DDE connect initiation."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_MULT_RESPONSES___ERRCODE_RES_MASK.string.text
+msgid "Too many applications responded to DDE connect initiation."
+msgstr "Too many applications responded to DDE connect initiation."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_CHANNEL_LOCKED___ERRCODE_RES_MASK.string.text
+msgid "DDE channel locked."
+msgstr "DDE channel locked."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NOTPROCESSED___ERRCODE_RES_MASK.string.text
+msgid "External application cannot execute DDE operation."
+msgstr "External application cannot execute DDE operation."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_TIMEOUT___ERRCODE_RES_MASK.string.text
+msgid "Timeout while waiting for DDE response."
+msgstr "Timeout while waiting for DDE response."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_USER_INTERRUPT___ERRCODE_RES_MASK.string.text
+msgid "User pressed ESCAPE during DDE operation."
+msgstr "User pressed ESCAPE during DDE operation."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_BUSY___ERRCODE_RES_MASK.string.text
+msgid "External application busy."
+msgstr "External application busy."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_DATA___ERRCODE_RES_MASK.string.text
+msgid "DDE operation without data."
+msgstr "DDE operation without data."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_WRONG_DATA_FORMAT___ERRCODE_RES_MASK.string.text
+msgid "Data are in wrong format."
+msgstr "Data are in wrong format."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_PARTNER_QUIT___ERRCODE_RES_MASK.string.text
+msgid "External application has been terminated."
+msgstr "External application has been terminated."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_CONV_CLOSED___ERRCODE_RES_MASK.string.text
+msgid "DDE connection interrupted or modified."
+msgstr "DDE connection interrupted or modified."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_CHANNEL___ERRCODE_RES_MASK.string.text
+msgid "DDE method invoked with no channel open."
+msgstr "DDE method invoked with no channel open."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_INVALID_LINK___ERRCODE_RES_MASK.string.text
+msgid "Invalid DDE link format."
+msgstr "Invalid DDE link format."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_QUEUE_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "DDE message has been lost."
+msgstr "DDE message has been lost."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_LINK_ALREADY_EST___ERRCODE_RES_MASK.string.text
+msgid "Paste link already performed."
+msgstr "Paste link already performed."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_LINK_INV_TOPIC___ERRCODE_RES_MASK.string.text
+msgid "Link mode cannot be set due to invalid link topic."
+msgstr "Link mode cannot be set due to invalid link topic."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_DLL_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "DDE requires the DDEML.DLL file."
+msgstr "DDE requires the DDEML.DLL file."
+
+#: sb.src#RID_BASIC_START.SbERR_CANNOT_LOAD___ERRCODE_RES_MASK.string.text
+msgid "Module cannot be loaded; invalid format."
+msgstr "Module cannot be loaded; invalid format."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_INDEX___ERRCODE_RES_MASK.string.text
+msgid "Invalid object index."
+msgstr "Invalid object index."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_ACTIVE_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object is not available."
+msgstr "Object is not available."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PROP_VALUE___ERRCODE_RES_MASK.string.text
+msgid "Incorrect property value."
+msgstr "Incorrect property value."
+
+#: sb.src#RID_BASIC_START.SbERR_PROP_READONLY___ERRCODE_RES_MASK.string.text
+msgid "This property is read-only."
+msgstr "This property is read-only."
+
+#: sb.src#RID_BASIC_START.SbERR_PROP_WRITEONLY___ERRCODE_RES_MASK.string.text
+msgid "This property is write only."
+msgstr "This property is write only."
+
+#: sb.src#RID_BASIC_START.SbERR_INVALID_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Invalid object reference."
+msgstr "Invalid object reference."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_METHOD___ERRCODE_RES_MASK.string.text
+msgid "Property or method not found: $(ARG1)."
+msgstr "Property or method not found: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_NEEDS_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object required."
+msgstr "Object required."
+
+#: sb.src#RID_BASIC_START.SbERR_INVALID_USAGE_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Invalid use of an object."
+msgstr "Invalid use of an object."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_OLE___ERRCODE_RES_MASK.string.text
+msgid "OLE Automation is not supported by this object."
+msgstr "OLE Automation is not supported by this object."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_METHOD___ERRCODE_RES_MASK.string.text
+msgid "This property or method is not supported by the object."
+msgstr "This property or method is not supported by the object."
+
+#: sb.src#RID_BASIC_START.SbERR_OLE_ERROR___ERRCODE_RES_MASK.string.text
+msgid "OLE Automation Error."
+msgstr "OLE Automation Error."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ACTION___ERRCODE_RES_MASK.string.text
+msgid "This action is not supported by given object."
+msgstr "This action is not supported by given object."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_NAMED_ARGS___ERRCODE_RES_MASK.string.text
+msgid "Named arguments are not supported by given object."
+msgstr "Named arguments are not supported by given object."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_LOCALE___ERRCODE_RES_MASK.string.text
+msgid "The current locale setting is not supported by the given object."
+msgstr "The current locale setting is not supported by the given object."
+
+#: sb.src#RID_BASIC_START.SbERR_NAMED_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Named argument not found."
+msgstr "Named argument not found."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_OPTIONAL___ERRCODE_RES_MASK.string.text
+msgid "Argument is not optional."
+msgstr "Argument is not optional."
+
+#: sb.src#RID_BASIC_START.SbERR_WRONG_ARGS___ERRCODE_RES_MASK.string.text
+msgctxt "sb.src#RID_BASIC_START.SbERR_WRONG_ARGS___ERRCODE_RES_MASK.string.text"
+msgid "Invalid number of arguments."
+msgstr "Invalid number of arguments."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_A_COLL___ERRCODE_RES_MASK.string.text
+msgid "Object is not a list."
+msgstr "Object is not a list."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ORDINAL___ERRCODE_RES_MASK.string.text
+msgid "Invalid ordinal number."
+msgstr "Invalid ordinal number."
+
+#: sb.src#RID_BASIC_START.SbERR_DLLPROC_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Specified DLL function not found."
+msgstr "Specified DLL function not found."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CLIPBD_FORMAT___ERRCODE_RES_MASK.string.text
+msgid "Invalid clipboard format."
+msgstr "Invalid clipboard format."
+
+#: sb.src#RID_BASIC_START.SbERR_PROPERTY_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Object does not have this property."
+msgstr "Object does not have this property."
+
+#: sb.src#RID_BASIC_START.SbERR_METHOD_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Object does not have this method."
+msgstr "Object does not have this method."
+
+#: sb.src#RID_BASIC_START.SbERR_ARG_MISSING___ERRCODE_RES_MASK.string.text
+msgid "Required argument lacking."
+msgstr "Required argument lacking."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_NUMBER_OF_ARGS___ERRCODE_RES_MASK.string.text
+msgctxt "sb.src#RID_BASIC_START.SbERR_BAD_NUMBER_OF_ARGS___ERRCODE_RES_MASK.string.text"
+msgid "Invalid number of arguments."
+msgstr "Invalid number of arguments."
+
+#: sb.src#RID_BASIC_START.SbERR_METHOD_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Error executing a method."
+msgstr "Error executing a method."
+
+#: sb.src#RID_BASIC_START.SbERR_SETPROP_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Unable to set property."
+msgstr "Unable to set property."
+
+#: sb.src#RID_BASIC_START.SbERR_GETPROP_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Unable to determine property."
+msgstr "Unable to determine property."
+
+#: sb.src#RID_BASIC_START.SbERR_UNEXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Unexpected symbol: $(ARG1)."
+msgstr "Unexpected symbol: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Expected: $(ARG1)."
+msgstr "Expected: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_SYMBOL_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Symbol expected."
+msgstr "Symbol expected."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Variable expected."
+msgstr "Variable expected."
+
+#: sb.src#RID_BASIC_START.SbERR_LABEL_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Label expected."
+msgstr "Label expected."
+
+#: sb.src#RID_BASIC_START.SbERR_LVALUE_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Value cannot be applied."
+msgstr "Value cannot be applied."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Variable $(ARG1) already defined."
+msgstr "Variable $(ARG1) already defined."
+
+#: sb.src#RID_BASIC_START.SbERR_PROC_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Sub procedure or function procedure $(ARG1) already defined."
+msgstr "Sub procedure or function procedure $(ARG1) already defined."
+
+#: sb.src#RID_BASIC_START.SbERR_LABEL_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Label $(ARG1) already defined."
+msgstr "Label $(ARG1) already defined."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_VAR___ERRCODE_RES_MASK.string.text
+msgid "Variable $(ARG1) not found."
+msgstr "Variable $(ARG1) not found."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_ARRAY___ERRCODE_RES_MASK.string.text
+msgid "Array or procedure $(ARG1) not found."
+msgstr "Array or procedure $(ARG1) not found."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_PROC___ERRCODE_RES_MASK.string.text
+msgid "Procedure $(ARG1) not found."
+msgstr "Procedure $(ARG1) not found."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_LABEL___ERRCODE_RES_MASK.string.text
+msgid "Label $(ARG1) undefined."
+msgstr "Label $(ARG1) undefined."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_TYPE___ERRCODE_RES_MASK.string.text
+msgid "Unknown data type $(ARG1)."
+msgstr "Unknown data type $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_EXIT___ERRCODE_RES_MASK.string.text
+msgid "Exit $(ARG1) expected."
+msgstr "Exit $(ARG1) expected."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_BLOCK___ERRCODE_RES_MASK.string.text
+msgid "Statement block still open: $(ARG1) missing."
+msgstr "Statement block still open: $(ARG1) missing."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_BRACKETS___ERRCODE_RES_MASK.string.text
+msgid "Parentheses do not match."
+msgstr "Parentheses do not match."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DECLARATION___ERRCODE_RES_MASK.string.text
+msgid "Symbol $(ARG1) already defined differently."
+msgstr "Symbol $(ARG1) already defined differently."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PARAMETERS___ERRCODE_RES_MASK.string.text
+msgid "Parameters do not correspond to procedure."
+msgstr "Parameters do not correspond to procedure."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CHAR_IN_NUMBER___ERRCODE_RES_MASK.string.text
+msgid "Invalid character in number."
+msgstr "Invalid character in number."
+
+#: sb.src#RID_BASIC_START.SbERR_MUST_HAVE_DIMS___ERRCODE_RES_MASK.string.text
+msgid "Array must be dimensioned."
+msgstr "Array must be dimensioned."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_IF___ERRCODE_RES_MASK.string.text
+msgid "Else/Endif without If."
+msgstr "Else/Endif without If."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IN_SUBR___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1) not allowed within a procedure."
+msgstr "$(ARG1) not allowed within a procedure."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IN_MAIN___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1) not allowed outside a procedure."
+msgstr "$(ARG1) not allowed outside a procedure."
+
+#: sb.src#RID_BASIC_START.SbERR_WRONG_DIMS___ERRCODE_RES_MASK.string.text
+msgid "Dimension specifications do not match."
+msgstr "Dimension specifications do not match."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_OPTION___ERRCODE_RES_MASK.string.text
+msgid "Unknown option: $(ARG1)."
+msgstr "Unknown option: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_CONSTANT_REDECLARED___ERRCODE_RES_MASK.string.text
+msgid "Constant $(ARG1) redefined."
+msgstr "Constant $(ARG1) redefined."
+
+#: sb.src#RID_BASIC_START.SbERR_PROG_TOO_LARGE___ERRCODE_RES_MASK.string.text
+msgid "Program too large."
+msgstr "Program too large."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_STRINGS_ARRAYS___ERRCODE_RES_MASK.string.text
+msgid "Strings or arrays not permitted."
+msgstr "Strings or arrays not permitted."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_EXCEPTION___ERRCODE_RES_MASK.string.text
+msgid "An exception occurred $(ARG1)."
+msgstr "An exception occurred $(ARG1)."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_ARRAY_FIX___ERRCODE_RES_MASK.string.text
+msgid "This array is fixed or temporarily locked."
+msgstr "This array is fixed or temporarily locked."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_STRING_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Out of string space."
+msgstr "Out of string space."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_EXPR_TOO_COMPLEX___ERRCODE_RES_MASK.string.text
+msgid "Expression Too Complex."
+msgstr "Expression Too Complex."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_OPER_NOT_PERFORM___ERRCODE_RES_MASK.string.text
+msgid "Can't perform requested operation."
+msgstr "Can't perform requested operation."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_TOO_MANY_DLL___ERRCODE_RES_MASK.string.text
+msgid "Too many DLL application clients."
+msgstr "Too many DLL application clients."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_LOOP_NOT_INIT___ERRCODE_RES_MASK.string.text
+msgid "For loop not initialized."
+msgstr "For loop not initialised."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_COMPAT___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1)"
+msgstr "$(ARG1)"
+
+#: sb.src#IDS_SBERR_TERMINATED.string.text
+msgid "The macro running has been interrupted"
+msgstr "The macro running has been interrupted"
+
+#: sb.src#IDS_SBERR_STOREREF.string.text
+msgid "Reference will not be saved: "
+msgstr "Reference will not be saved: "
+
+#: sb.src#ERRCODE_BASMGR_LIBLOAD___ERRCODE_RES_MASK.string.text
+msgid "Error loading library '$(ARG1)'."
+msgstr "Error loading library '$(ARG1)'."
+
+#: sb.src#ERRCODE_BASMGR_LIBSAVE___ERRCODE_RES_MASK.string.text
+msgid "Error saving library: '$(ARG1)'."
+msgstr "Error saving library: '$(ARG1)'."
+
+#: sb.src#ERRCODE_BASMGR_MGROPEN___ERRCODE_RES_MASK.string.text
+msgid "The BASIC from the file '$(ARG1)' could not be initialized."
+msgstr "The BASIC from the file '$(ARG1)' could not be initialised."
+
+#: sb.src#ERRCODE_BASMGR_MGRSAVE___ERRCODE_RES_MASK.string.text
+msgid "Error saving BASIC: '$(ARG1)'."
+msgstr "Error saving BASIC: '$(ARG1)'."
+
+#: sb.src#ERRCODE_BASMGR_REMOVELIB___ERRCODE_RES_MASK.string.text
+msgid "Error removing library."
+msgstr "Error removing library."
+
+#: sb.src#ERRCODE_BASMGR_UNLOADLIB___ERRCODE_RES_MASK.string.text
+msgid "The library could not be removed from memory."
+msgstr "The library could not be removed from memory."
diff --git a/source/en-ZA/basic/source/sbx.po b/source/en-ZA/basic/source/sbx.po
new file mode 100644
index 00000000000..d76f954e8d2
--- /dev/null
+++ b/source/en-ZA/basic/source/sbx.po
@@ -0,0 +1,44 @@
+#. extracted from basic/source/sbx.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basic%2Fsource%2Fsbx.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:51+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: format.src#STR_BASICKEY_FORMAT_ON.string.text
+msgid "On"
+msgstr "On"
+
+#: format.src#STR_BASICKEY_FORMAT_OFF.string.text
+msgid "Off"
+msgstr "Off"
+
+#: format.src#STR_BASICKEY_FORMAT_TRUE.string.text
+msgid "True"
+msgstr "True"
+
+#: format.src#STR_BASICKEY_FORMAT_FALSE.string.text
+msgid "False"
+msgstr "False"
+
+#: format.src#STR_BASICKEY_FORMAT_YES.string.text
+msgid "Yes"
+msgstr "Yes"
+
+#: format.src#STR_BASICKEY_FORMAT_NO.string.text
+msgid "No"
+msgstr "No"
+
+#: format.src#STR_BASICKEY_FORMAT_CURRENCY.string.text
+msgid "@0.00 $;@(0.00 $)"
+msgstr "@0.00 $;@(0.00 $)"
diff --git a/source/en-ZA/chart2/source/controller/dialogs.po b/source/en-ZA/chart2/source/controller/dialogs.po
new file mode 100644
index 00000000000..75e25c8c27b
--- /dev/null
+++ b/source/en-ZA/chart2/source/controller/dialogs.po
@@ -0,0 +1,1744 @@
+#. extracted from chart2/source/controller/dialogs.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+chart2%2Fsource%2Fcontroller%2Fdialogs.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-16 13:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text"
+msgid "Ve~rtically stacked"
+msgstr "Ve~rtically stacked"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FT_DEGREES.fixedtext.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FT_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Degrees"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FL_ALIGN.fixedline.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FL_ALIGN.fixedline.text"
+msgid "Text orientation"
+msgstr "Text orientation"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FT_TEXTDIR.fixedtext.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FT_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Te~xt direction"
+
+#: Strings_ChartTypes.src#STR_TYPE_COLUMN.string.text
+msgid "Column"
+msgstr "Column"
+
+#: Strings_ChartTypes.src#STR_TYPE_BAR.string.text
+msgid "Bar"
+msgstr "Bar"
+
+#: Strings_ChartTypes.src#STR_TYPE_AREA.string.text
+msgctxt "Strings_ChartTypes.src#STR_TYPE_AREA.string.text"
+msgid "Area"
+msgstr "Area"
+
+#: Strings_ChartTypes.src#STR_TYPE_PIE.string.text
+msgid "Pie"
+msgstr "Pie"
+
+#: Strings_ChartTypes.src#STR_PIE_EXPLODED.string.text
+msgid "Exploded Pie Chart"
+msgstr "Exploded Pie Chart"
+
+#: Strings_ChartTypes.src#STR_DONUT_EXPLODED.string.text
+msgid "Exploded Donut Chart"
+msgstr "Exploded Donut Chart"
+
+#: Strings_ChartTypes.src#STR_DONUT.string.text
+msgid "Donut"
+msgstr "Donut"
+
+#: Strings_ChartTypes.src#STR_TYPE_LINE.string.text
+msgctxt "Strings_ChartTypes.src#STR_TYPE_LINE.string.text"
+msgid "Line"
+msgstr "Line"
+
+#: Strings_ChartTypes.src#STR_TYPE_XY.string.text
+msgid "XY (Scatter)"
+msgstr "XY (Scatter)"
+
+#: Strings_ChartTypes.src#STR_POINTS_AND_LINES.string.text
+msgid "Points and Lines"
+msgstr "Points and Lines"
+
+#: Strings_ChartTypes.src#STR_POINTS_ONLY.string.text
+msgid "Points Only"
+msgstr "Points Only"
+
+#: Strings_ChartTypes.src#STR_LINES_ONLY.string.text
+msgid "Lines Only"
+msgstr "Lines Only"
+
+#: Strings_ChartTypes.src#STR_LINES_3D.string.text
+msgid "3D Lines"
+msgstr "3D Lines"
+
+#: Strings_ChartTypes.src#STR_TYPE_COMBI_COLUMN_LINE.string.text
+msgid "Column and Line"
+msgstr "Column and Line"
+
+#: Strings_ChartTypes.src#STR_LINE_COLUMN.string.text
+msgid "Columns and Lines"
+msgstr "Columns and Lines"
+
+#: Strings_ChartTypes.src#STR_LINE_STACKEDCOLUMN.string.text
+msgid "Stacked Columns and Lines"
+msgstr "Stacked Columns and Lines"
+
+#: Strings_ChartTypes.src#STR_TYPE_NET.string.text
+msgid "Net"
+msgstr "Net"
+
+#: Strings_ChartTypes.src#STR_TYPE_STOCK.string.text
+msgid "Stock"
+msgstr "Stock"
+
+#: Strings_ChartTypes.src#STR_STOCK_1.string.text
+msgid "Stock Chart 1"
+msgstr "Stock Chart 1"
+
+#: Strings_ChartTypes.src#STR_STOCK_2.string.text
+msgid "Stock Chart 2"
+msgstr "Stock Chart 2"
+
+#: Strings_ChartTypes.src#STR_STOCK_3.string.text
+msgid "Stock Chart 3"
+msgstr "Stock Chart 3"
+
+#: Strings_ChartTypes.src#STR_STOCK_4.string.text
+msgid "Stock Chart 4"
+msgstr "Stock Chart 4"
+
+#: Strings_ChartTypes.src#STR_NORMAL.string.text
+msgid "Normal"
+msgstr "Normal"
+
+#: Strings_ChartTypes.src#STR_STACKED.string.text
+msgid "Stacked"
+msgstr "Stacked"
+
+#: Strings_ChartTypes.src#STR_PERCENT.string.text
+msgid "Percent Stacked"
+msgstr "Percent Stacked"
+
+#: Strings_ChartTypes.src#STR_DEEP.string.text
+msgctxt "Strings_ChartTypes.src#STR_DEEP.string.text"
+msgid "Deep"
+msgstr "Deep"
+
+#: Strings_ChartTypes.src#STR_FILLED.string.text
+msgid "Filled"
+msgstr "Filled"
+
+#: Strings_ChartTypes.src#STR_TYPE_BUBBLE.string.text
+msgid "Bubble"
+msgstr "Bubble"
+
+#: Strings_ChartTypes.src#STR_BUBBLE_1.string.text
+msgid "Bubble Chart"
+msgstr "Bubble Chart"
+
+#: Strings.src#STR_DLG_CHART_WIZARD.string.text
+msgid "Chart Wizard"
+msgstr "Chart Wizard"
+
+#: Strings.src#STR_DLG_SMOOTH_LINE_PROPERTIES.string.text
+msgid "Smooth Lines"
+msgstr "Smooth Lines"
+
+#: Strings.src#STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE.string.text
+msgid "Number Format for Percentage Value"
+msgstr "Number Format for Percentage Value"
+
+#: Strings.src#STR_PAGE_CHARTTYPE.string.text
+msgid "Chart Type"
+msgstr "Chart Type"
+
+#: Strings.src#STR_PAGE_DATA_RANGE.string.text
+msgid "Data Range"
+msgstr "Data Range"
+
+#: Strings.src#STR_PAGE_CHART_ELEMENTS.string.text
+msgid "Chart Elements"
+msgstr "Chart Elements"
+
+#: Strings.src#STR_PAGE_CHART_LOCATION.string.text
+msgid "Chart Location"
+msgstr "Chart Location"
+
+#: Strings.src#STR_PAGE_LINE.string.text
+msgctxt "Strings.src#STR_PAGE_LINE.string.text"
+msgid "Line"
+msgstr "Line"
+
+#: Strings.src#STR_PAGE_BORDER.string.text
+msgid "Borders"
+msgstr "Borders"
+
+#: Strings.src#STR_PAGE_AREA.string.text
+msgctxt "Strings.src#STR_PAGE_AREA.string.text"
+msgid "Area"
+msgstr "Area"
+
+#: Strings.src#STR_PAGE_TRANSPARENCY.string.text
+msgid "Transparency"
+msgstr "Transparency"
+
+#: Strings.src#STR_PAGE_FONT.string.text
+msgctxt "Strings.src#STR_PAGE_FONT.string.text"
+msgid "Font"
+msgstr "Font"
+
+#: Strings.src#STR_PAGE_FONT_EFFECTS.string.text
+msgctxt "Strings.src#STR_PAGE_FONT_EFFECTS.string.text"
+msgid "Font Effects"
+msgstr "Font Effects"
+
+#: Strings.src#STR_PAGE_NUMBERS.string.text
+msgid "Numbers"
+msgstr "Numbers"
+
+#: Strings.src#STR_PAGE_POSITION.string.text
+msgctxt "Strings.src#STR_PAGE_POSITION.string.text"
+msgid "Position"
+msgstr "Position"
+
+#: Strings.src#STR_BUTTON_UP.string.text
+msgid "Up"
+msgstr "Up"
+
+#: Strings.src#STR_BUTTON_DOWN.string.text
+msgid "Down"
+msgstr "Down"
+
+#: Strings.src#STR_PAGE_LAYOUT.string.text
+msgid "Layout"
+msgstr "Layout"
+
+#: Strings.src#STR_PAGE_OPTIONS.string.text
+msgid "Options"
+msgstr "Options"
+
+#: Strings.src#STR_PAGE_SCALE.string.text
+msgctxt "Strings.src#STR_PAGE_SCALE.string.text"
+msgid "Scale"
+msgstr "Scale"
+
+#: Strings.src#STR_PAGE_POSITIONING.string.text
+msgid "Positioning"
+msgstr "Positioning"
+
+#: Strings.src#STR_PAGE_TRENDLINE_TYPE.string.text
+msgid "Type"
+msgstr "Type"
+
+#: Strings.src#STR_PAGE_XERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_XERROR_BARS.string.text"
+msgid "X Error Bars"
+msgstr "Y Error Bars"
+
+#: Strings.src#STR_PAGE_YERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_YERROR_BARS.string.text"
+msgid "Y Error Bars"
+msgstr "Y Error Bars"
+
+#: Strings.src#STR_PAGE_ZERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_ZERROR_BARS.string.text"
+msgid "Z Error Bars"
+msgstr "Y Error Bars"
+
+#: Strings.src#STR_PAGE_ALIGNMENT.string.text
+msgctxt "Strings.src#STR_PAGE_ALIGNMENT.string.text"
+msgid "Alignment"
+msgstr "Alignment"
+
+#: Strings.src#STR_PAGE_PERSPECTIVE.string.text
+msgid "Perspective"
+msgstr "Perspective"
+
+#: Strings.src#STR_PAGE_APPEARANCE.string.text
+msgid "Appearance"
+msgstr "Appearance"
+
+#: Strings.src#STR_PAGE_ILLUMINATION.string.text
+msgid "Illumination"
+msgstr "Illumination"
+
+#: Strings.src#STR_PAGE_ASIAN.string.text
+msgctxt "Strings.src#STR_PAGE_ASIAN.string.text"
+msgid "Asian Typography"
+msgstr "Asian Typography"
+
+#: Strings.src#STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS.string.text
+msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
+msgstr "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
+
+#: Strings.src#STR_OBJECT_AXIS.string.text
+msgid "Axis"
+msgstr "Axis"
+
+#: Strings.src#STR_OBJECT_AXIS_X.string.text
+msgid "X Axis"
+msgstr "X Axis"
+
+#: Strings.src#STR_OBJECT_AXIS_Y.string.text
+msgid "Y Axis"
+msgstr "Y Axis"
+
+#: Strings.src#STR_OBJECT_AXIS_Z.string.text
+msgid "Z Axis"
+msgstr "Z Axis"
+
+#: Strings.src#STR_OBJECT_SECONDARY_X_AXIS.string.text
+msgid "Secondary X Axis"
+msgstr "Secondary X Axis"
+
+#: Strings.src#STR_OBJECT_SECONDARY_Y_AXIS.string.text
+msgid "Secondary Y Axis"
+msgstr "Secondary Y Axis"
+
+#: Strings.src#STR_OBJECT_AXES.string.text
+msgctxt "Strings.src#STR_OBJECT_AXES.string.text"
+msgid "Axes"
+msgstr "Axes"
+
+#: Strings.src#STR_OBJECT_GRIDS.string.text
+msgctxt "Strings.src#STR_OBJECT_GRIDS.string.text"
+msgid "Grids"
+msgstr "Grids"
+
+#: Strings.src#STR_OBJECT_GRID.string.text
+msgid "Grid"
+msgstr "Grid"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_X.string.text
+msgid "X Axis Major Grid"
+msgstr "X Axis Major Grid"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_Y.string.text
+msgid "Y Axis Major Grid"
+msgstr "Y Axis Major Grid"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_Z.string.text
+msgid "Z Axis Major Grid"
+msgstr "Z Axis Major Grid"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_X.string.text
+msgid "X Axis Minor Grid"
+msgstr "X Axis Minor Grid"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_Y.string.text
+msgid "Y Axis Minor Grid"
+msgstr "Y Axis Minor Grid"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_Z.string.text
+msgid "Z Axis Minor Grid"
+msgstr "Z Axis Minor Grid"
+
+#: Strings.src#STR_OBJECT_LEGEND.string.text
+msgid "Legend"
+msgstr "Legend"
+
+#: Strings.src#STR_OBJECT_TITLE.string.text
+msgid "Title"
+msgstr "Title"
+
+#: Strings.src#STR_OBJECT_TITLES.string.text
+msgid "Titles"
+msgstr "Titles"
+
+#: Strings.src#STR_OBJECT_TITLE_MAIN.string.text
+msgid "Main Title"
+msgstr "Main Title"
+
+#: Strings.src#STR_OBJECT_TITLE_SUB.string.text
+msgid "Subtitle"
+msgstr "Subtitle"
+
+#: Strings.src#STR_OBJECT_TITLE_X_AXIS.string.text
+msgid "X Axis Title"
+msgstr "X Axis Title"
+
+#: Strings.src#STR_OBJECT_TITLE_Y_AXIS.string.text
+msgid "Y Axis Title"
+msgstr "Y Axis Title"
+
+#: Strings.src#STR_OBJECT_TITLE_Z_AXIS.string.text
+msgid "Z Axis Title"
+msgstr "Z Axis Title"
+
+#: Strings.src#STR_OBJECT_TITLE_SECONDARY_X_AXIS.string.text
+msgid "Secondary X Axis Title"
+msgstr "Secondary X Axis Title"
+
+#: Strings.src#STR_OBJECT_TITLE_SECONDARY_Y_AXIS.string.text
+msgid "Secondary Y Axis Title"
+msgstr "Secondary Y Axis Title"
+
+#: Strings.src#STR_OBJECT_LABEL.string.text
+msgid "Label"
+msgstr "Label"
+
+#: Strings.src#STR_OBJECT_DATALABELS.string.text
+msgid "Data Labels"
+msgstr "Data Labels"
+
+#: Strings.src#STR_OBJECT_DATAPOINT.string.text
+msgid "Data Point"
+msgstr "Data Point"
+
+#: Strings.src#STR_OBJECT_DATAPOINTS.string.text
+msgid "Data Points"
+msgstr "Data Points"
+
+#: Strings.src#STR_OBJECT_LEGEND_SYMBOL.string.text
+msgid "Legend Key"
+msgstr "Legend Key"
+
+#: Strings.src#STR_OBJECT_DATASERIES.string.text
+msgctxt "Strings.src#STR_OBJECT_DATASERIES.string.text"
+msgid "Data Series"
+msgstr "Data Series"
+
+#: Strings.src#STR_OBJECT_DATASERIES_PLURAL.string.text
+msgctxt "Strings.src#STR_OBJECT_DATASERIES_PLURAL.string.text"
+msgid "Data Series"
+msgstr "Data Series"
+
+#: Strings.src#STR_OBJECT_CURVE.string.text
+msgid "Trend Line"
+msgstr "Trend Line"
+
+#: Strings.src#STR_OBJECT_CURVES.string.text
+msgid "Trend Lines"
+msgstr "Trend Lines"
+
+#: Strings.src#STR_OBJECT_CURVE_WITH_PARAMETERS.string.text
+msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
+msgstr "Trend line %FORMULA with accuracy R² = %RSQUARED"
+
+#: Strings.src#STR_OBJECT_AVERAGE_LINE.string.text
+msgid "Mean Value Line"
+msgstr "Mean Value Line"
+
+#: Strings.src#STR_OBJECT_CURVE_EQUATION.string.text
+msgctxt "Strings.src#STR_OBJECT_CURVE_EQUATION.string.text"
+msgid "Equation"
+msgstr "Equation"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_X.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_X.string.text"
+msgid "X Error Bars"
+msgstr "Y Error Bars"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_Y.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_Y.string.text"
+msgid "Y Error Bars"
+msgstr "Y Error Bars"
+
+#: Strings.src#STR_OBJECT_ERROR_BARS_Z.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_OBJECT_ERROR_BARS_Z.string.text"
+msgid "Z Error Bars"
+msgstr "Y Error Bars"
+
+#: Strings.src#STR_OBJECT_STOCK_LOSS.string.text
+msgid "Stock Loss"
+msgstr "Stock Loss"
+
+#: Strings.src#STR_OBJECT_STOCK_GAIN.string.text
+msgid "Stock Gain"
+msgstr "Stock Gain"
+
+#: Strings.src#STR_OBJECT_PAGE.string.text
+msgid "Chart Area"
+msgstr "Chart Area"
+
+#: Strings.src#STR_OBJECT_DIAGRAM.string.text
+msgid "Chart"
+msgstr "Chart"
+
+#: Strings.src#STR_OBJECT_DIAGRAM_WALL.string.text
+msgid "Chart Wall"
+msgstr "Chart Wall"
+
+#: Strings.src#STR_OBJECT_DIAGRAM_FLOOR.string.text
+msgid "Chart Floor"
+msgstr "Chart Floor"
+
+#: Strings.src#STR_OBJECT_SHAPE.string.text
+msgid "Drawing Object"
+msgstr "Drawing Object"
+
+#: Strings.src#STR_TIP_SELECT_RANGE.string.text
+msgid "Select data range"
+msgstr "Select data range"
+
+#: Strings.src#STR_TIP_CHOOSECOLOR.string.text
+msgid "Select a color using the color dialog"
+msgstr "Select a colour using the colour dialogue"
+
+#: Strings.src#STR_TIP_LIGHTSOURCE_X.string.text
+msgid "Light Source %LIGHTNUMBER"
+msgstr "Light Source %LIGHTNUMBER"
+
+#: Strings.src#STR_TIP_DATASERIES.string.text
+msgid "Data Series '%SERIESNAME'"
+msgstr "Data Series '%SERIESNAME'"
+
+#: Strings.src#STR_TIP_DATAPOINT_INDEX.string.text
+msgid "Data Point %POINTNUMBER"
+msgstr "Data Point %POINTNUMBER"
+
+#: Strings.src#STR_TIP_DATAPOINT_VALUES.string.text
+msgid "Values: %POINTVALUES"
+msgstr "Values: %POINTVALUES"
+
+#: Strings.src#STR_TIP_DATAPOINT.string.text
+msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+msgstr "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+
+#: Strings.src#STR_STATUS_DATAPOINT_MARKED.string.text
+msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+msgstr "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+
+#: Strings.src#STR_STATUS_OBJECT_MARKED.string.text
+msgid "%OBJECTNAME selected"
+msgstr "%OBJECTNAME selected"
+
+#: Strings.src#STR_STATUS_PIE_SEGMENT_EXPLODED.string.text
+msgid "Pie exploded by %PERCENTVALUE percent"
+msgstr "Pie exploded by %PERCENTVALUE percent"
+
+#: Strings.src#STR_OBJECT_FOR_SERIES.string.text
+msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
+msgstr "%OBJECTNAME for Data Series '%SERIESNAME'"
+
+#: Strings.src#STR_OBJECT_FOR_ALL_SERIES.string.text
+msgid "%OBJECTNAME for all Data Series"
+msgstr "%OBJECTNAME for all Data Series"
+
+#: Strings.src#STR_ACTION_EDIT_CHARTTYPE.string.text
+msgid "Edit chart type"
+msgstr "Edit chart type"
+
+#: Strings.src#STR_ACTION_EDIT_DATA_RANGES.string.text
+msgid "Edit data ranges"
+msgstr "Edit data ranges"
+
+#: Strings.src#STR_ACTION_EDIT_3D_VIEW.string.text
+msgid "Edit 3D view"
+msgstr "Edit 3D view"
+
+#: Strings.src#STR_ACTION_EDIT_CHART_DATA.string.text
+msgid "Edit chart data"
+msgstr "Edit chart data"
+
+#: Strings.src#STR_ACTION_TOGGLE_LEGEND.string.text
+msgid "Legend on/off"
+msgstr "Legend on/off"
+
+#: Strings.src#STR_ACTION_TOGGLE_GRID_HORZ.string.text
+msgid "Horizontal grid on/off"
+msgstr "Horizontal grid on/off"
+
+#: Strings.src#STR_ACTION_SCALE_TEXT.string.text
+msgid "Scale Text"
+msgstr "Scale Text"
+
+#: Strings.src#STR_ACTION_REARRANGE_CHART.string.text
+msgid "Automatic Layout"
+msgstr "Automatic Layout"
+
+#: Strings.src#STR_ACTION_NOTPOSSIBLE.string.text
+msgid "This function cannot be completed with the selected objects."
+msgstr "This function cannot be completed with the selected objects."
+
+#: Strings.src#STR_ACTION_EDIT_TEXT.string.text
+msgid "Edit text"
+msgstr "Edit text"
+
+#: Strings.src#STR_COLUMN_LABEL.string.text
+msgid "Column %COLUMNNUMBER"
+msgstr "Column %COLUMNNUMBER"
+
+#: Strings.src#STR_ROW_LABEL.string.text
+msgid "Row %ROWNUMBER"
+msgstr "Row %ROWNUMBER"
+
+#: Strings.src#STR_DATA_ROLE_LABEL.string.text
+msgid "Name"
+msgstr "Name"
+
+#: Strings.src#STR_DATA_ROLE_X.string.text
+msgid "X-Values"
+msgstr "X-Values"
+
+#: Strings.src#STR_DATA_ROLE_Y.string.text
+msgid "Y-Values"
+msgstr "Y-Values"
+
+#: Strings.src#STR_DATA_ROLE_SIZE.string.text
+msgid "Bubble Sizes"
+msgstr "Bubble Sizes"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR.string.text
+msgid "X-Error-Bars"
+msgstr "X-Error-Bars"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR_POSITIVE.string.text
+msgid "Positive X-Error-Bars"
+msgstr "Positive X-Error-Bars"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR_NEGATIVE.string.text
+msgid "Negative X-Error-Bars"
+msgstr "Negative X-Error-Bars"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR.string.text
+msgid "Y-Error-Bars"
+msgstr "Y-Error-Bars"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR_POSITIVE.string.text
+msgid "Positive Y-Error-Bars"
+msgstr "Positive Y-Error-Bars"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR_NEGATIVE.string.text
+msgid "Negative Y-Error-Bars"
+msgstr "Negative Y-Error-Bars"
+
+#: Strings.src#STR_DATA_ROLE_FIRST.string.text
+msgid "Open Values"
+msgstr "Open Values"
+
+#: Strings.src#STR_DATA_ROLE_LAST.string.text
+msgid "Close Values"
+msgstr "Close Values"
+
+#: Strings.src#STR_DATA_ROLE_MIN.string.text
+msgid "Low Values"
+msgstr "Low Values"
+
+#: Strings.src#STR_DATA_ROLE_MAX.string.text
+msgid "High Values"
+msgstr "High Values"
+
+#: Strings.src#STR_DATA_ROLE_CATEGORIES.string.text
+msgid "Categories"
+msgstr "Categories"
+
+#: Strings.src#STR_DATA_UNNAMED_SERIES.string.text
+msgid "Unnamed Series"
+msgstr "Unnamed Series"
+
+#: Strings.src#STR_DATA_UNNAMED_SERIES_WITH_INDEX.string.text
+msgid "Unnamed Series %NUMBER"
+msgstr "Unnamed Series %NUMBER"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_SERIES.string.text
+msgid "Select Range for %VALUETYPE of %SERIESNAME"
+msgstr "Select Range for %VALUETYPE of %SERIESNAME"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_CATEGORIES.string.text
+msgid "Select Range for Categories"
+msgstr "Select Range for Categories"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_DATALABELS.string.text
+msgid "Select Range for data labels"
+msgstr "Select Range for data labels"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS.string.text
+msgid "Select Range for Positive Error Bars"
+msgstr "Select Range for Positive Error Bars"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS.string.text
+msgid "Select Range for Negative Error Bars"
+msgstr "Select Range for Negative Error Bars"
+
+#: Strings.src#STR_DATA_EDITOR_INCORRECT_INPUT.string.text
+msgid ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialog?"
+msgstr ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialogue?"
+
+#: Strings.src#STR_TEXT_DIRECTION_LTR.string.text
+msgid "Left-to-right"
+msgstr "Left-to-right"
+
+#: Strings.src#STR_TEXT_DIRECTION_RTL.string.text
+msgid "Right-to-left"
+msgstr "Right-to-left"
+
+#: Strings.src#STR_TEXT_DIRECTION_SUPER.string.text
+msgid "Use superordinate object settings"
+msgstr "Use superordinate object settings"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_SCHOW_DESCR.checkbox.text
+msgid "Sho~w labels"
+msgstr "Sho~w labels"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_ORIENTATION.fixedline.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_ORIENTATION.fixedline.text"
+msgid "Text orientation"
+msgstr "Text orientation"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.PB_AXIS_LABEL_TEXTSTACKED.tristatebox.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.PB_AXIS_LABEL_TEXTSTACKED.tristatebox.text"
+msgid "Ve~rtically stacked"
+msgstr "Ve~rtically stacked"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FT_AXIS_LABEL_DEGREES.fixedtext.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.FT_AXIS_LABEL_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Degrees"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_TEXTFLOW.fixedline.text
+msgid "Text flow"
+msgstr "Text flow"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_TEXTOVERLAP.checkbox.text
+msgid "O~verlap"
+msgstr "O~verlap"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_TEXTBREAK.checkbox.text
+msgid "~Break"
+msgstr "~Break"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_ORDER.fixedline.text
+msgid "Order"
+msgstr "Order"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_SIDEBYSIDE.radiobutton.text
+msgid "~Tile"
+msgstr "~Tile"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_UPDOWN.radiobutton.text
+msgid "St~agger odd"
+msgstr "St~agger odd"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_DOWNUP.radiobutton.text
+msgid "Stagger ~even"
+msgstr "Stagger ~even"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_AUTOORDER.radiobutton.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_AUTOORDER.radiobutton.text"
+msgid "A~utomatic"
+msgstr "A~utomatic"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FT_AXIS_TEXTDIR.fixedtext.text
+msgctxt "tp_AxisLabel.src#TP_AXIS_LABEL.FT_AXIS_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Te~xt direction"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_CAPTION_FOR_WIZARD.fixedtext.text
+msgid "Customize data ranges for individual data series"
+msgstr "Customize data ranges for individual data series"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_SERIES.fixedtext.text
+msgid "Data ~series"
+msgstr "Data ~series"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_ROLE.fixedtext.text
+msgid "~Data ranges"
+msgstr "~Data ranges"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_RANGE.fixedtext.text
+msgid "Ran~ge for %VALUETYPE"
+msgstr "Ran~ge for %VALUETYPE"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_CATEGORIES.fixedtext.text
+msgid "~Categories"
+msgstr "~Categories"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_DATALABELS.fixedtext.text
+msgid "Data ~labels"
+msgstr "Data ~labels"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.BTN_ADD.pushbutton.text
+msgid "~Add"
+msgstr "~Add"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.BTN_REMOVE.pushbutton.text
+msgid "~Remove"
+msgstr "~Remove"
+
+#: tp_ChartType.src#TP_CHARTTYPE.FT_CHARTTYPE.fixedtext.text
+msgid "Choose a chart type"
+msgstr "Choose a chart type"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_X_AXIS_CATEGORIES.checkbox.text
+msgid "X axis with Categories"
+msgstr "X axis with Categories"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_3D_LOOK.checkbox.text
+msgid "~3D Look"
+msgstr "~3D Look"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_STACKED.checkbox.text
+msgid "~Stack series"
+msgstr "~Stack series"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Y.radiobutton.text
+msgid "On top"
+msgstr "On top"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Y_PERCENT.radiobutton.text
+msgid "Percent"
+msgstr "Percent"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Z.radiobutton.text
+msgctxt "tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Z.radiobutton.text"
+msgid "Deep"
+msgstr "Deep"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_SPLINES.checkbox.text
+msgid "S~mooth lines"
+msgstr "S~mooth lines"
+
+#: tp_ChartType.src#TP_CHARTTYPE.PB_SPLINE_DIALOG.pushbutton.text
+msgid "Properties..."
+msgstr "Properties..."
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_XVALUE_SORTING.checkbox.text
+msgid "~Sort by X values"
+msgstr "~Sort by X values"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.RB_SPLINES_CUBIC.radiobutton.text
+msgid "Cubic spline"
+msgstr "Cubic spline"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.RB_SPLINES_B.radiobutton.text
+msgid "B-Spline"
+msgstr "B-Spline"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.FT_SPLINE_RESOLUTION.fixedtext.text
+msgid "~Resolution"
+msgstr "~Resolution"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.FT_SPLINE_ORDER.fixedtext.text
+msgid "~Degree of polynomials"
+msgstr ""
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.FT_CAPTION_FOR_WIZARD.fixedtext.text
+msgid "Choose a data range"
+msgstr "Choose a data range"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.FT_RANGE.fixedtext.text
+msgid "~Data range"
+msgstr "~Data range"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.RB_DATAROWS.radiobutton.text
+msgid "Data series in ~rows"
+msgstr "Data series in ~rows"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.RB_DATACOLS.radiobutton.text
+msgid "Data series in ~columns"
+msgstr "Data series in ~columns"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.CB_FIRST_ROW_ASLABELS.checkbox.text
+msgid "~First row as label"
+msgstr "~First row as label"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.CB_FIRST_COLUMN_ASLABELS.checkbox.text
+msgid "F~irst column as label"
+msgstr "F~irst column as label"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.1.fixedline.text
+msgid "Align data series to"
+msgstr "Align data series to"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RBT_OPT_AXIS_1.radiobutton.text
+msgid "Primary Y axis"
+msgstr "Primary Y axis"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RBT_OPT_AXIS_2.radiobutton.text
+msgid "Secondary Y axis"
+msgstr "Secondary Y axis"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.GB_BAR.fixedline.text
+msgid "Settings"
+msgstr "Settings"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_OVERLAP.fixedtext.text
+msgid "~Overlap"
+msgstr "~Overlap"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_GAP.fixedtext.text
+msgid "~Spacing"
+msgstr "~Spacing"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_CONNECTOR.checkbox.text
+msgid "Connection lines"
+msgstr "Connection lines"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_BARS_SIDE_BY_SIDE.checkbox.text
+msgid "Show ~bars side by side"
+msgstr "Show ~bars side by side"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FL_PLOT_OPTIONS.fixedline.text
+msgctxt "tp_SeriesToAxis.src#TP_OPTIONS.FL_PLOT_OPTIONS.fixedline.text"
+msgid "Plot options"
+msgstr "Plot options"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_MISSING_VALUES.fixedtext.text
+msgid "Plot missing values"
+msgstr "Plot missing values"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_DONT_PAINT.radiobutton.text
+msgid "~Leave gap"
+msgstr "~Leave gap"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_ASSUME_ZERO.radiobutton.text
+msgid "~Assume zero"
+msgstr "~Assume zero"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_CONTINUE_LINE.radiobutton.text
+msgid "~Continue line"
+msgstr "~Continue line"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_INCLUDE_HIDDEN_CELLS.checkbox.text
+msgctxt "tp_SeriesToAxis.src#TP_OPTIONS.CB_INCLUDE_HIDDEN_CELLS.checkbox.text"
+msgid "Include ~values from hidden cells"
+msgstr "Include ~values from hidden cells"
+
+#: tp_3D_SceneGeometry.src#CUSTOMUNITTEXT_DEGREE.#define.text
+msgid " degrees"
+msgstr " degrees"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.CBX_RIGHT_ANGLED_AXES.checkbox.text
+msgid "~Right-angled axes"
+msgstr "~Right-angled axes"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_X_ROTATION.fixedtext.text
+msgid "~X rotation"
+msgstr "~X rotation"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_Y_ROTATION.fixedtext.text
+msgid "~Y rotation"
+msgstr "~Y rotation"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_Z_ROTATION.fixedtext.text
+msgid "~Z rotation"
+msgstr "~Z rotation"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.CBX_PERSPECTIVE.checkbox.text
+msgid "~Perspective"
+msgstr "~Perspective"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.FL_TYPE.fixedline.text
+msgid "Regression Type"
+msgstr "Regression Type"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_NONE.radiobutton.text
+msgctxt "res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_NONE.radiobutton.text"
+msgid "~None"
+msgstr "~None"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_LINEAR.radiobutton.text
+msgid "~Linear"
+msgstr "~Linear"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_LOGARITHMIC.radiobutton.text
+msgid "L~ogarithmic"
+msgstr "L~ogarithmic"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_EXPONENTIAL.radiobutton.text
+msgid "E~xponential"
+msgstr "E~xponential"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_POWER.radiobutton.text
+msgid "~Power"
+msgstr "~Power"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.FL_EQUATION.fixedline.text
+msgctxt "res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.FL_EQUATION.fixedline.text"
+msgid "Equation"
+msgstr "Equation"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.CB_SHOW_EQUATION.checkbox.text
+msgid "Show ~equation"
+msgstr "Show ~equation"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.CB_SHOW_CORRELATION_COEFF.checkbox.text
+msgid "Show ~coefficient of determination (R²)"
+msgstr "Show ~coefficient of determination (R²)"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.1.stringlist.text
+msgid "Days"
+msgstr "Days"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.2.stringlist.text
+msgid "Months"
+msgstr "Months"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.3.stringlist.text
+msgid "Years"
+msgstr "Years"
+
+#: tp_Scale.src#TP_SCALE.FL_SCALE.fixedline.text
+msgctxt "tp_Scale.src#TP_SCALE.FL_SCALE.fixedline.text"
+msgid "Scale"
+msgstr "Scale"
+
+#: tp_Scale.src#TP_SCALE.CBX_REVERSE.checkbox.text
+msgid "~Reverse direction"
+msgstr "~Reverse direction"
+
+#: tp_Scale.src#TP_SCALE.CBX_LOGARITHM.checkbox.text
+msgid "~Logarithmic scale"
+msgstr "~Logarithmic scale"
+
+#: tp_Scale.src#TP_SCALE.TXT_AXIS_TYPE.fixedtext.text
+msgid "T~ype"
+msgstr "T~ype"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.1.stringlist.text
+msgid "Automatic"
+msgstr "Automatic"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.2.stringlist.text
+msgid "Text"
+msgstr "Text"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.3.stringlist.text
+msgid "Date"
+msgstr "Date"
+
+#: tp_Scale.src#TP_SCALE.TXT_MIN.fixedtext.text
+msgid "~Minimum"
+msgstr "~Minimum"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_MIN.checkbox.text
+msgid "~Automatic"
+msgstr "~Automatic"
+
+#: tp_Scale.src#TP_SCALE.TXT_MAX.fixedtext.text
+msgid "Ma~ximum"
+msgstr "Ma~ximum"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_MAX.checkbox.text
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_MAX.checkbox.text"
+msgid "A~utomatic"
+msgstr "A~utomatic"
+
+#: tp_Scale.src#TP_SCALE.TXT_TIME_RESOLUTION.fixedtext.text
+msgid "R~esolution"
+msgstr "R~esolution"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_TIME_RESOLUTION.checkbox.text
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_TIME_RESOLUTION.checkbox.text"
+msgid "Automat~ic"
+msgstr "Automat~ic"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_MAIN.fixedtext.text
+msgid "Ma~jor interval"
+msgstr "Ma~jor interval"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_STEP_MAIN.checkbox.text
+msgid "Au~tomatic"
+msgstr "Au~tomatic"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_HELP_COUNT.fixedtext.text
+msgid "Minor inter~val count"
+msgstr "Minor inter~val count"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_HELP.fixedtext.text
+msgid "Minor inter~val"
+msgstr "Minor inter~val"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_STEP_HELP.checkbox.text
+msgid "Aut~omatic"
+msgstr "Aut~omatic"
+
+#: tp_Scale.src#TP_SCALE.TXT_ORIGIN.fixedtext.text
+msgid "Re~ference value"
+msgstr "Re~ference value"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_ORIGIN.checkbox.text
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_ORIGIN.checkbox.text"
+msgid "Automat~ic"
+msgstr "Automat~ic"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_PRIMARY_AXIS.fixedline.text
+msgctxt "dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_PRIMARY_AXIS.fixedline.text"
+msgid "Axes"
+msgstr "Axes"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_PRIMARY_GRID.fixedline.text
+msgid "Major grids"
+msgstr "Major grids"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_X_PRIMARY.checkbox.text
+msgctxt "dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_X_PRIMARY.checkbox.text"
+msgid "~X axis"
+msgstr "~X axis"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_Y_PRIMARY.checkbox.text
+msgctxt "dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_Y_PRIMARY.checkbox.text"
+msgid "~Y axis"
+msgstr "~Y axis"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_Z_PRIMARY.checkbox.text
+msgctxt "dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.CB_Z_PRIMARY.checkbox.text"
+msgid "~Z axis"
+msgstr "~Z axis"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_SECONDARY_AXIS.fixedline.text
+msgid "Secondary axes"
+msgstr "Secondary axes"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_SECONDARY_GRID.fixedline.text
+msgid "Minor grids"
+msgstr "Minor grids"
+
+#: Strings_Statistic.src#STR_INDICATE_BOTH.string.text
+msgid "Negative and Positive"
+msgstr "Negative and Positive"
+
+#: Strings_Statistic.src#STR_INDICATE_DOWN.string.text
+msgid "Negative"
+msgstr "Negative"
+
+#: Strings_Statistic.src#STR_INDICATE_UP.string.text
+msgid "Positive"
+msgstr "Positive"
+
+#: Strings_Statistic.src#STR_CONTROLTEXT_ERROR_BARS_FROM_DATA.string.text
+msgid "From Data Table"
+msgstr "From Data Table"
+
+#: Strings_Statistic.src#STR_REGRESSION_LINEAR.string.text
+msgid "Linear (%SERIESNAME)"
+msgstr "Linear (%SERIESNAME)"
+
+#: Strings_Statistic.src#STR_REGRESSION_LOG.string.text
+msgid "Logarithmic (%SERIESNAME)"
+msgstr "Logarithmic (%SERIESNAME)"
+
+#: Strings_Statistic.src#STR_REGRESSION_EXP.string.text
+msgid "Exponential (%SERIESNAME)"
+msgstr "Exponential (%SERIESNAME)"
+
+#: Strings_Statistic.src#STR_REGRESSION_POWER.string.text
+msgid "Power (%SERIESNAME)"
+msgstr "Power (%SERIESNAME)"
+
+#: Strings_Statistic.src#STR_REGRESSION_MEAN.string.text
+msgid "Mean (%SERIESNAME)"
+msgstr "Mean (%SERIESNAME)"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.1.stringlist.text
+msgid "Space"
+msgstr "Space"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.2.stringlist.text
+msgid "Comma"
+msgstr "Comma"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.3.stringlist.text
+msgid "Semicolon"
+msgstr "Semicolon"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.4.stringlist.text
+msgid "New line"
+msgstr "New line"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.1.stringlist.text
+msgid "Box"
+msgstr "Box"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.2.stringlist.text
+msgid "Cylinder"
+msgstr "Cylinder"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.3.stringlist.text
+msgid "Cone"
+msgstr "Cone"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.4.stringlist.text
+msgid "Pyramid"
+msgstr "Pyramid"
+
+#: tp_3D_SceneIllumination.src#TP_3D_SCENEILLUMINATION.FT_LIGHTSOURCE.fixedtext.text
+msgid "~Light source"
+msgstr "~Light source"
+
+#: tp_3D_SceneIllumination.src#TP_3D_SCENEILLUMINATION.FT_AMBIENTLIGHT.fixedtext.text
+msgid "~Ambient light"
+msgstr "~Ambient light"
+
+#: tp_3D_SceneIllumination.src#STR_LIGHT_PREVIEW.string.text
+msgid "Light Preview"
+msgstr "Light Preview"
+
+#: dlg_DataSource.src#DLG_DATA_SOURCE.tabdialog.text
+msgid "Data Ranges"
+msgstr "Data Ranges"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_ROW.toolboxitem.text
+msgid "Insert Row"
+msgstr "Insert Row"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_COL.toolboxitem.text
+msgid "Insert Series"
+msgstr "Insert Series"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_TEXT_COL.toolboxitem.text
+msgid "Insert Text Column"
+msgstr "Insert Text Column"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_DELETE_ROW.toolboxitem.text
+msgid "Delete Row"
+msgstr "Delete Row"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_DELETE_COL.toolboxitem.text
+msgid "Delete Series"
+msgstr "Delete Series"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_SWAP_COL.toolboxitem.text
+msgid "Move Series Right"
+msgstr "Move Series Right"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_SWAP_ROW.toolboxitem.text
+msgid "Move Row Down"
+msgstr "Move Row Down"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.modaldialog.text
+msgid "Data Table"
+msgstr "Data Table"
+
+#: Strings_Scale.src#STR_INVALID_NUMBER.string.text
+msgid "Numbers are required. Check your input."
+msgstr "Numbers are required. Check your input."
+
+#: Strings_Scale.src#STR_STEP_GT_ZERO.string.text
+msgid "The major interval requires a positive number. Check your input."
+msgstr "The major interval requires a positive number. Check your input."
+
+#: Strings_Scale.src#STR_BAD_LOGARITHM.string.text
+msgid "The logarithmic scale requires positive numbers. Check your input."
+msgstr "The logarithmic scale requires positive numbers. Check your input."
+
+#: Strings_Scale.src#STR_MIN_GREATER_MAX.string.text
+msgid "The minimum must be lower than the maximum. Check your input."
+msgstr "The minimum must be lower than the maximum. Check your input."
+
+#: Strings_Scale.src#STR_INVALID_INTERVALS.string.text
+msgid "The major interval needs to be greater than the minor interval. Check your input."
+msgstr "The major interval needs to be greater than the minor interval. Check your input."
+
+#: Strings_Scale.src#STR_INVALID_TIME_UNIT.string.text
+msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
+msgstr "The major and minor interval need to be greater or equal to the resolution. Check your input."
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.1.stringlist.text
+msgid "Best fit"
+msgstr "Best fit"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.2.stringlist.text
+msgid "Center"
+msgstr "Centre"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.3.stringlist.text
+msgid "Above"
+msgstr "Above"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.4.stringlist.text
+msgid "Top left"
+msgstr "Top left"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.5.stringlist.text
+msgid "Left"
+msgstr "Left"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.6.stringlist.text
+msgid "Bottom left"
+msgstr "Bottom left"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.7.stringlist.text
+msgid "Below"
+msgstr "Below"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.8.stringlist.text
+msgid "Bottom right"
+msgstr "Bottom right"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.9.stringlist.text
+msgid "Right"
+msgstr "Right"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.10.stringlist.text
+msgid "Top right"
+msgstr "Top right"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.11.stringlist.text
+msgid "Inside"
+msgstr "Inside"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.12.stringlist.text
+msgid "Outside"
+msgstr "Outside"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.13.stringlist.text
+msgid "Near origin"
+msgstr "Near origin"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_VALUE_AS_NUMBER.checkbox.text
+msgid "Show value as ~number"
+msgstr "Show value as ~number"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.PB_NUMBERFORMAT.pushbutton.text
+msgid "Number ~format..."
+msgstr "Number ~format..."
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_VALUE_AS_PERCENTAGE.checkbox.text
+msgid "Show value as ~percentage"
+msgstr "Show value as ~percentage"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.PB_PERCENT_NUMBERFORMAT.pushbutton.text
+msgid "Percentage f~ormat..."
+msgstr "Percentage f~ormat..."
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_CATEGORY.checkbox.text
+msgid "Show ~category"
+msgstr "Show ~category"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_SYMBOL.checkbox.text
+msgid "Show ~legend key"
+msgstr "Show ~legend key"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_PLACEMENT.fixedtext.text
+msgid "Place~ment"
+msgstr "Place~ment"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FL_LABEL_ROTATE.fixedline.text
+msgid "Rotate Text"
+msgstr "Rotate Text"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_DEGREES.fixedtext.text
+msgctxt "res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Degrees"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_TEXTDIR.fixedtext.text
+msgctxt "res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Te~xt direction"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_STD_PARAGRAPH.pageitem.text
+msgid "Indents & Spacing"
+msgstr "Indents & Spacing"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_ALIGN_PARAGRAPH.pageitem.text
+msgctxt "dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_ALIGN_PARAGRAPH.pageitem.text"
+msgid "Alignment"
+msgstr "Alignment"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_PARA_ASIAN.pageitem.text
+msgctxt "dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_PARA_ASIAN.pageitem.text"
+msgid "Asian Typography"
+msgstr "Asian Typography"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_TABULATOR.pageitem.text
+msgid "Tab"
+msgstr "Tab"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.tabdialog.text
+msgid "Paragraph"
+msgstr "Paragraph"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
+msgctxt "dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
+msgid "Font"
+msgstr "Font"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text
+msgctxt "dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text"
+msgid "Font Effects"
+msgstr "Font Effects"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_POSITION.pageitem.text
+msgid "Font Position"
+msgstr "Font Position"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.tabdialog.text
+msgid "Character"
+msgstr "Character"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.FT_SCHEME.fixedtext.text
+msgid "Sche~me"
+msgstr "Sche~me"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_SHADING.checkbox.text
+msgid "~Shading"
+msgstr "~Shading"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_OBJECTLINES.checkbox.text
+msgid "~Object borders"
+msgstr "~Object borders"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_ROUNDEDEDGE.checkbox.text
+msgid "~Rounded edges"
+msgstr "~Rounded edges"
+
+#: res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_X_SECONDARY.checkbox.text
+msgctxt "res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_X_SECONDARY.checkbox.text"
+msgid "X ~axis"
+msgstr "X ~axis"
+
+#: res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_Y_SECONDARY.checkbox.text
+msgctxt "res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_Y_SECONDARY.checkbox.text"
+msgid "Y ax~is"
+msgstr "Y ax~is"
+
+#: res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_Z_SECONDARY.checkbox.text
+msgid "Z axi~s"
+msgstr "Z axi~s"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_MAINTITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Title"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_SUBTITLE.fixedtext.text
+msgid "~Subtitle"
+msgstr "~Subtitle"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FL_AXES.fixedline.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FL_AXES.fixedline.text"
+msgid "Axes"
+msgstr "Axes"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_X_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_X_AXIS.fixedtext.text"
+msgid "~X axis"
+msgstr "~X axis"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_Y_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_Y_AXIS.fixedtext.text"
+msgid "~Y axis"
+msgstr "~Y axis"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_Z_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_Z_AXIS.fixedtext.text"
+msgid "~Z axis"
+msgstr "~Z axis"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FL_SECONDARY_AXES.fixedline.text
+msgid "Secondary Axes"
+msgstr "Secondary Axes"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_SECONDARY_X_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_SECONDARY_X_AXIS.fixedtext.text"
+msgid "X ~axis"
+msgstr "X ~axis"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_SECONDARY_Y_AXIS.fixedtext.text
+msgctxt "res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_TITLE_SECONDARY_Y_AXIS.fixedtext.text"
+msgid "Y ax~is"
+msgstr "Y ax~is"
+
+#: tp_Wizard_TitlesAndObjects.src#TP_WIZARD_TITLEANDOBJECTS.FT_TITLEDESCRIPTION.fixedtext.text
+msgid "Choose titles, legend, and grid settings"
+msgstr "Choose titles, legend, and grid settings"
+
+#: tp_Wizard_TitlesAndObjects.src#TP_WIZARD_TITLEANDOBJECTS.FL_GRIDS.fixedline.text
+msgid "Display grids"
+msgstr "Display grids"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.CB_CLOCKWISE.checkbox.text
+msgid "~Clockwise direction"
+msgstr "~Clockwise direction"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FL_STARTING_ANGLE.fixedline.text
+msgid "Starting angle"
+msgstr "Starting angle"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FT_ROTATION_DEGREES.fixedtext.text
+msgctxt "tp_PolarOptions.src#TP_POLAROPTIONS.FT_ROTATION_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Degrees"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FL_PLOT_OPTIONS_POLAR.fixedline.text
+msgctxt "tp_PolarOptions.src#TP_POLAROPTIONS.FL_PLOT_OPTIONS_POLAR.fixedline.text"
+msgid "Plot options"
+msgstr "Plot options"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.CB_INCLUDE_HIDDEN_CELLS_POLAR.checkbox.text
+msgctxt "tp_PolarOptions.src#TP_POLAROPTIONS.CB_INCLUDE_HIDDEN_CELLS_POLAR.checkbox.text"
+msgid "Include ~values from hidden cells"
+msgstr "Include ~values from hidden cells"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.1.stringlist.text
+msgid "Standard Error"
+msgstr "Standard Error"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.2.stringlist.text
+msgid "Standard Deviation"
+msgstr "Standard Deviation"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.3.stringlist.text
+msgid "Variance"
+msgstr "Variance"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.4.stringlist.text
+msgid "Error Margin"
+msgstr "Error Margin"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_ERROR.fixedline.text
+msgid "Error Category"
+msgstr "Error Category"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_NONE.radiobutton.text
+msgctxt "res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_NONE.radiobutton.text"
+msgid "~None"
+msgstr "~None"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_CONST.radiobutton.text
+msgid "~Constant Value"
+msgstr "~Constant Value"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_PERCENT.radiobutton.text
+msgid "~Percentage"
+msgstr "~Percentage"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_RANGE.radiobutton.text
+msgid "Cell ~Range"
+msgstr "Cell ~Range"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_PARAMETERS.fixedline.text
+msgid "Parameters"
+msgstr "Parameters"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FT_POSITIVE.fixedtext.text
+msgid "P~ositive (+)"
+msgstr "P~ositive (+)"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FT_NEGATIVE.fixedtext.text
+msgid "~Negative (-)"
+msgstr "~Negative (-)"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.CB_SYN_POS_NEG.checkbox.text
+msgid "Same value for both"
+msgstr "Same value for both"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_INDICATE.fixedline.text
+msgid "Error Indicator"
+msgstr "Error Indicator"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_BOTH.radiobutton.text
+msgid "Positive ~and Negative"
+msgstr "Positive ~and Negative"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_POSITIVE.radiobutton.text
+msgid "Pos~itive"
+msgstr "Pos~itive"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_NEGATIVE.radiobutton.text
+msgid "Ne~gative"
+msgstr "Ne~gative"
+
+#: tp_LegendPosition.src#TP_LEGEND_POS.GRP_LEGEND.fixedline.text
+msgctxt "tp_LegendPosition.src#TP_LEGEND_POS.GRP_LEGEND.fixedline.text"
+msgid "Position"
+msgstr "Position"
+
+#: tp_LegendPosition.src#TP_LEGEND_POS.FL_LEGEND_TEXTORIENT.fixedline.text
+msgctxt "tp_LegendPosition.src#TP_LEGEND_POS.FL_LEGEND_TEXTORIENT.fixedline.text"
+msgid "Text orientation"
+msgstr "Text orientation"
+
+#: tp_LegendPosition.src#TP_LEGEND_POS.FT_LEGEND_TEXTDIR.fixedtext.text
+msgctxt "tp_LegendPosition.src#TP_LEGEND_POS.FT_LEGEND_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "Te~xt direction"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDDISPLAY__xpos___ypos__.CBX_SHOWLEGEND.checkbox.text
+msgid "~Display legend"
+msgstr "~Display legend"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_LEFT.radiobutton.text
+msgid "~Left"
+msgstr "~Left"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_RIGHT.radiobutton.text
+msgid "~Right"
+msgstr "~Right"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_TOP.radiobutton.text
+msgid "~Top"
+msgstr "~Top"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_BOTTOM.radiobutton.text
+msgid "~Bottom"
+msgstr "~Bottom"
+
+#: dlg_View3D.src#DLG_3D_VIEW.tabdialog.text
+msgid "3D View"
+msgstr "3D View"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_AXIS_LINE.fixedline.text
+msgid "Axis line"
+msgstr "Axis line"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_CROSSES_OTHER_AXIS_AT.fixedtext.text
+msgid "~Cross other axis at"
+msgstr "~Cross other axis at"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.1.stringlist.text
+msgid "Start"
+msgstr "Start"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.2.stringlist.text
+msgid "End"
+msgstr "End"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.3.stringlist.text
+msgid "Value"
+msgstr "Value"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.4.stringlist.text
+msgid "Category"
+msgstr "Category"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_AXIS_BETWEEN_CATEGORIES.checkbox.text
+msgid "Axis ~between categories"
+msgstr "Axis ~between categories"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_LABELS.fixedline.text
+msgid "Labels"
+msgstr "Labels"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_PLACE_LABELS.fixedtext.text
+msgid "~Place labels"
+msgstr "~Place labels"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.1.stringlist.text
+msgid "Near axis"
+msgstr "Near axis"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.2.stringlist.text
+msgid "Near axis (other side)"
+msgstr "Near axis (other side)"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.3.stringlist.text
+msgid "Outside start"
+msgstr "Outside start"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.4.stringlist.text
+msgid "Outside end"
+msgstr "Outside end"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_AXIS_LABEL_DISTANCE.fixedtext.text
+msgid "~Distance"
+msgstr "~Distance"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_TICKS.fixedline.text
+msgid "Interval marks"
+msgstr "Interval marks"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_MAJOR.fixedtext.text
+msgid "Major:"
+msgstr "Major:"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_TICKS_INNER.checkbox.text
+msgid "~Inner"
+msgstr "~Inner"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_TICKS_OUTER.checkbox.text
+msgid "~Outer"
+msgstr "~Outer"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_MINOR.fixedtext.text
+msgid "Minor:"
+msgstr "Minor:"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_INNER.checkbox.text
+msgid "I~nner"
+msgstr "I~nner"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_OUTER.checkbox.text
+msgid "O~uter"
+msgstr "O~uter"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_PLACE_TICKS.fixedtext.text
+msgid "Place ~marks"
+msgstr "Place ~marks"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.1.stringlist.text
+msgid "At labels"
+msgstr "At labels"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.2.stringlist.text
+msgid "At axis"
+msgstr "At axis"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.3.stringlist.text
+msgid "At axis and labels"
+msgstr "At axis and labels"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_GRIDS.fixedline.text
+msgctxt "tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_GRIDS.fixedline.text"
+msgid "Grids"
+msgstr "Grids"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MAJOR_GRID.checkbox.text
+msgid "Show major ~grid"
+msgstr "Show major ~grid"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.PB_MAJOR_GRID.pushbutton.text
+msgid "Mo~re..."
+msgstr "Mo~re..."
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_GRID.checkbox.text
+msgid "~Show minor grid"
+msgstr "~Show minor grid"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.PB_MINOR_GRID.pushbutton.text
+msgid "Mor~e..."
+msgstr "Mor~e..."
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_SIMPLE.string.text
+msgid "Simple"
+msgstr "Simple"
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_REALISTIC.string.text
+msgid "Realistic"
+msgstr "Realistic"
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_CUSTOM.string.text
+msgid "Custom"
+msgstr "Custom"
+
+#: Strings_AdditionalControls.src#STR_BAR_GEOMETRY.string.text
+msgid "Shape"
+msgstr "Shape"
+
+#: Strings_AdditionalControls.src#STR_NUMBER_OF_LINES.string.text
+msgid "~Number of lines"
+msgstr "~Number of lines"
+
+#: Strings_AdditionalControls.src#STR_TEXT_SEPARATOR.string.text
+msgid "Separator"
+msgstr "Separator"
diff --git a/source/en-ZA/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..dd726059b4a
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,27 @@
+#. extracted from connectivity/registry/ado/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fado%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_ado__.DriverTypeDisplayName.value.text
+msgid "ADO"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_ado_access_PROVIDER_Microsoft.Jet.OLEDB.4.0_DATA_SOURCE__.DriverTypeDisplayName.value.text
+msgid "Microsoft Access"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_ado_access_Provider_Microsoft.ACE.OLEDB.12.0_DATA_SOURCE__.DriverTypeDisplayName.value.text
+msgid "Microsoft Access 2007"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..031fbfa1480
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/calc/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fcalc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_calc__.DriverTypeDisplayName.value.text
+msgid "Spreadsheet"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..d3cc10d9027
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/dbase/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fdbase%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_dbase__.DriverTypeDisplayName.value.text
+msgid "dBASE"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..702cd879749
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,27 @@
+#. extracted from connectivity/registry/evoab2/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fevoab2%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_local.DriverTypeDisplayName.value.text
+msgid "Evolution Local"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_ldap.DriverTypeDisplayName.value.text
+msgid "Evolution LDAP"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_evolution_groupwise.DriverTypeDisplayName.value.text
+msgid "Groupwise"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..f43ca2d040c
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/flat/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fflat%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_flat__.DriverTypeDisplayName.value.text
+msgid "Text"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..23fc9b43eac
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fhsqldb%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_embedded_hsqldb.DriverTypeDisplayName.value.text
+msgid "HSQL database engine"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..75161e0ff66
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,23 @@
+#. extracted from connectivity/registry/jdbc/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fjdbc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.jdbc__.DriverTypeDisplayName.value.text
+msgid "JDBC"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.jdbc_oracle_thin__.DriverTypeDisplayName.value.text
+msgid "Oracle JDBC"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..654cc3d2b3a
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/kab/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fkab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_kab.DriverTypeDisplayName.value.text
+msgid "KDE Address Book"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..91e84f6906f
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/macab/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmacab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_macab.DriverTypeDisplayName.value.text
+msgid "Mac OS X Address Book"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..1f6e73dcc8d
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,35 @@
+#. extracted from connectivity/registry/mozab/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmozab%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_outlook.DriverTypeDisplayName.value.text
+msgid "Microsoft Outlook Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_outlookexp.DriverTypeDisplayName.value.text
+msgid "Microsoft Windows Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_mozilla_.DriverTypeDisplayName.value.text
+msgid "SeaMonkey Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_thunderbird_.DriverTypeDisplayName.value.text
+msgid "Thunderbird/Icedove Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_ldap__.DriverTypeDisplayName.value.text
+msgid "LDAP Address Book"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..1fbec67b64a
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,27 @@
+#. extracted from connectivity/registry/mozab2/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmozab2%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_mozilla_.DriverTypeDisplayName.value.text
+msgid "SeaMonkey Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_thunderbird_.DriverTypeDisplayName.value.text
+msgid "Thunderbird/Icedove Address Book"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_ldap__.DriverTypeDisplayName.value.text
+msgid "LDAP Address Book"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..99085cebf59
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,27 @@
+#. extracted from connectivity/registry/mysql/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fmysql%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_jdbc__.DriverTypeDisplayName.value.text
+msgid "MySQL (JDBC)"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_odbc__.DriverTypeDisplayName.value.text
+msgid "MySQL (ODBC)"
+msgstr ""
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_mysql_mysqlc__.DriverTypeDisplayName.value.text
+msgid "MySQL (Native)"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..70c9d263f14
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/odbc/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fodbc%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_odbc__.DriverTypeDisplayName.value.text
+msgid "ODBC"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..0a424c667a2
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/postgresql/org/openoffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Fpostgresql%2Forg%2Fopenoffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_postgresql__.DriverTypeDisplayName.value.text
+msgid "PostgreSQL"
+msgstr ""
diff --git a/source/en-ZA/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po b/source/en-ZA/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
new file mode 100644
index 00000000000..fb63681dce6
--- /dev/null
+++ b/source/en-ZA/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
@@ -0,0 +1,19 @@
+#. extracted from connectivity/registry/tdeab/org/openofffice/Office/DataAccess.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fregistry%2Ftdeab%2Forg%2Fopenofffice%2FOffice%2FDataAccess.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Drivers.xcu#.Drivers.Installed.sdbc_address_tdeab.DriverTypeDisplayName.value.text
+msgid "TDE Address Book"
+msgstr ""
diff --git a/source/en-ZA/connectivity/source/resource.po b/source/en-ZA/connectivity/source/resource.po
new file mode 100644
index 00000000000..dd2c52c8d47
--- /dev/null
+++ b/source/en-ZA/connectivity/source/resource.po
@@ -0,0 +1,577 @@
+#. extracted from connectivity/source/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fsource%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-11 23:12+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: conn_error_message.src#256___2_100___0.string.text
+msgid "The record operation has been vetoed."
+msgstr "The record operation has been vetoed."
+
+#: conn_error_message.src#256___2_200___0.string.text
+msgid "The statement contains a cyclic reference to one or more sub queries."
+msgstr "The statement contains a cyclic reference to one or more sub queries."
+
+#: conn_error_message.src#256___2_300___0.string.text
+msgid "The name must not contain any slashes ('/')."
+msgstr "The name must not contain any slashes ('/')."
+
+#: conn_error_message.src#256___2_301___0.string.text
+msgid "$1$ is no SQL conform identifier."
+msgstr "$1$ is no SQL conform identifier."
+
+#: conn_error_message.src#256___2_302___0.string.text
+msgid "Query names must not contain quote characters."
+msgstr "Query names must not contain quote characters."
+
+#: conn_error_message.src#256___2_303___0.string.text
+msgid "The name '$1$' is already in use in the database."
+msgstr "The name '$1$' is already in use in the database."
+
+#: conn_error_message.src#256___2_304___0.string.text
+msgid "No connection to the database exists."
+msgstr "No connection to the database exists."
+
+#: conn_error_message.src#256___2_500___0.string.text
+msgid "No $1$ exists."
+msgstr "No $1$ exists."
+
+#: conn_error_message.src#256___2_550___0.string.text
+msgid "Unable to display the complete table content. Please apply a filter."
+msgstr "Unable to display the complete table content. Please apply a filter."
+
+#. This must be the term referring to address books in the user's Mozilla/Seamonkey profile in the system.
+#: conn_shared_res.src#STR_MOZILLA_ADDRESSBOOKS.string.text
+msgid "Mozilla/Seamonkey Addressbook Directory"
+msgstr "Mozilla/Seamonkey Addressbook Directory"
+
+#. This must be the term referring to address books in the user's Thunderbird profile in the system.
+#: conn_shared_res.src#STR_THUNDERBIRD_ADDRESSBOOKS.string.text
+msgid "Thunderbird Addressbook Directory"
+msgstr "Thunderbird Addressbook Directory"
+
+#: conn_shared_res.src#STR_OE_ADDRESSBOOK.string.text
+msgid "Outlook Express Addressbook"
+msgstr "Outlook Express Addressbook"
+
+#: conn_shared_res.src#STR_OUTLOOK_MAPI_ADDRESSBOOK.string.text
+msgid "Outlook (MAPI) Addressbook"
+msgstr "Outlook (MAPI) Addressbook"
+
+#: conn_shared_res.src#STR_NO_TABLE_CREATION_SUPPORT.string.text
+msgid "Creating tables is not supported for this kind of address books."
+msgstr "Creating tables is not supported for this kind of address books."
+
+#: conn_shared_res.src#STR_MOZILLA_IS_RUNNING.string.text
+msgid "Cannot create new address books while Mozilla is running."
+msgstr "Cannot create new address books while Mozilla is running."
+
+#: conn_shared_res.src#STR_COULD_NOT_RETRIEVE_AB_ENTRY.string.text
+msgid "An address book entry could not be retrieved, an unknown error occurred."
+msgstr "An address book entry could not be retrieved, an unknown error occurred."
+
+#: conn_shared_res.src#STR_COULD_NOT_GET_DIRECTORY_NAME.string.text
+msgid "An address book directory name could not be retrieved, an unknown error occurred."
+msgstr "An address book directory name could not be retrieved, an unknown error occurred."
+
+#: conn_shared_res.src#STR_TIMEOUT_WAITING.string.text
+msgid "Timed out while waiting for the result."
+msgstr "Timed out while waiting for the result."
+
+#: conn_shared_res.src#STR_ERR_EXECUTING_QUERY.string.text
+msgid "An error occurred while executing the query."
+msgstr "An error occurred while executing the query."
+
+#: conn_shared_res.src#STR_MOZILLA_IS_RUNNIG_NO_CHANGES.string.text
+msgid "You can't make any changes to mozilla address book when mozilla is running."
+msgstr "You can't make any changes to mozilla address book when mozilla is running."
+
+#: conn_shared_res.src#STR_FOREIGN_PROCESS_CHANGED_AB.string.text
+msgid "Mozilla Address Book has been changed out of this process, we can't modify it in this condition."
+msgstr "Mozilla Address Book has been changed out of this process, we can't modify it in this condition."
+
+#: conn_shared_res.src#STR_CANT_FIND_ROW.string.text
+msgid "Can't find the requested row."
+msgstr "Can't find the requested row."
+
+#: conn_shared_res.src#STR_CANT_FIND_CARD_FOR_ROW.string.text
+msgid "Can't find the card for the requested row."
+msgstr "Can't find the card for the requested row."
+
+#: conn_shared_res.src#STR_QUERY_AT_LEAST_ONE_TABLES.string.text
+msgid "The query can not be executed. It needs at least one table."
+msgstr "The query can not be executed. It needs at least one table."
+
+#: conn_shared_res.src#STR_NO_COUNT_SUPPORT.string.text
+msgid "The driver does not support the 'COUNT' function."
+msgstr "The driver does not support the 'COUNT' function."
+
+#: conn_shared_res.src#STR_STMT_TYPE_NOT_SUPPORTED.string.text
+msgid "This statement type not supported by this database driver."
+msgstr "This statement type not supported by this database driver."
+
+#: conn_shared_res.src#STR_UNSPECIFIED_ERROR.string.text
+#, fuzzy
+msgid "An unknown error occurred."
+msgstr "An unknown error occured."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_ADDRESSBOOK.string.text
+msgid "Could not create a new address book. Mozilla error code is $1$."
+msgstr "Could not create a new address book. Mozilla error code is $1$."
+
+#: conn_shared_res.src#STR_COULD_NOT_LOAD_LIB.string.text
+msgid "The library '$libname$' could not be loaded."
+msgstr "The library '$libname$' could not be loaded."
+
+#: conn_shared_res.src#STR_ERROR_REFRESH_ROW.string.text
+#, fuzzy
+msgid "An error occurred while refreshing the current row."
+msgstr "An error occured while refreshing the current row."
+
+#: conn_shared_res.src#STR_ERROR_GET_ROW.string.text
+#, fuzzy
+msgid "An error occurred while getting the current row."
+msgstr "An error occured while getting the current row."
+
+#: conn_shared_res.src#STR_CAN_NOT_CANCEL_ROW_UPDATE.string.text
+msgid "The row update can not be canceled."
+msgstr "The row update can not be cancelled."
+
+#: conn_shared_res.src#STR_CAN_NOT_CREATE_ROW.string.text
+msgid "A new row can not be created."
+msgstr "A new row can not be created."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_IS_NULL_COLUMN.string.text
+msgid "The query can not be executed. The 'IS NULL' can only be used with a column name."
+msgstr "The query can not be executed. The 'IS NULL' can only be used with a column name."
+
+#: conn_shared_res.src#STR_ILLEGAL_MOVEMENT.string.text
+#, fuzzy
+msgid "Illegal cursor movement occurred."
+msgstr "Illegal cursor movement occured."
+
+#: conn_shared_res.src#STR_COMMIT_ROW.string.text
+msgid "Please commit row '$position$' before update rows or insert new rows."
+msgstr "Please commit row '$position$' before update rows or insert new rows."
+
+#: conn_shared_res.src#STR_INVALID_ROW_UPDATE.string.text
+msgid "The update call can not be executed. The row is invalid."
+msgstr "The update call can not be executed. The row is invalid."
+
+#: conn_shared_res.src#STR_ROW_CAN_NOT_SAVE.string.text
+msgid "The current row can not be saved."
+msgstr "The current row can not be saved."
+
+#: conn_shared_res.src#STR_NO_HOSTNAME.string.text
+msgid "No hostname was provided."
+msgstr "No hostname was provided."
+
+#: conn_shared_res.src#STR_NO_BASEDN.string.text
+msgid "No Base DN was provided."
+msgstr "No Base DN was provided."
+
+#: conn_shared_res.src#STR_COULD_NOT_CONNECT_LDAP.string.text
+msgid "The connection to the LDAP server could not be established."
+msgstr "The connection to the LDAP server could not be established."
+
+#: conn_shared_res.src#STR_NO_CONNECTION_GIVEN.string.text
+msgid "It doesn't exist a connection to the database."
+msgstr "It doesn't exist a connection to the database."
+
+#: conn_shared_res.src#STR_WRONG_PARAM_INDEX.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 "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."
+
+#: conn_shared_res.src#STR_INPUTSTREAM_WRONG_LEN.string.text
+msgid "End of InputStream reached before satisfying length specified when InputStream was set."
+msgstr "End of InputStream reached before satisfying length specified when InputStream was set."
+
+#: conn_shared_res.src#STR_NO_INPUTSTREAM.string.text
+msgid "The input stream was not set."
+msgstr "The input stream was not set."
+
+#: conn_shared_res.src#STR_NO_ELEMENT_NAME.string.text
+msgid "There is no element named '$name$'."
+msgstr "There is no element named '$name$'."
+
+#: conn_shared_res.src#STR_INVALID_BOOKMARK.string.text
+msgid "Invalid bookmark value"
+msgstr "Invalid bookmark value"
+
+#: conn_shared_res.src#STR_PRIVILEGE_NOT_GRANTED.string.text
+msgid "Privilege not granted: Only table privileges can be granted."
+msgstr "Privilege not granted: Only table privileges can be granted."
+
+#: conn_shared_res.src#STR_PRIVILEGE_NOT_REVOKED.string.text
+msgid "Privilege not revoked: Only table privileges can be revoked."
+msgstr "Privilege not revoked: Only table privileges can be revoked."
+
+#: conn_shared_res.src#STR_UNKNOWN_COLUMN_NAME.string.text
+msgid "The column name '$columnname$' is unknown."
+msgstr "The column name '$columnname$' is unknown."
+
+#: conn_shared_res.src#STR_ERRORMSG_SEQUENCE.string.text
+msgid "Function sequence error."
+msgstr "Function sequence error."
+
+#: conn_shared_res.src#STR_INVALID_INDEX.string.text
+msgid "Invalid descriptor index."
+msgstr "Invalid descriptor index."
+
+#: conn_shared_res.src#STR_UNSUPPORTED_FUNCTION.string.text
+msgid "The driver does not support the function '$functionname$'."
+msgstr "The driver does not support the function '$functionname$'."
+
+#: conn_shared_res.src#STR_UNSUPPORTED_FEATURE.string.text
+msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
+msgstr "The driver does not support the functionality for '$featurename$'. It is not implemented."
+
+#: conn_shared_res.src#STR_FORMULA_WRONG.string.text
+msgid "The formula for TypeInfoSettings is wrong!"
+msgstr "The formula for TypeInfoSettings is wrong!"
+
+#: conn_shared_res.src#STR_STRING_LENGTH_EXCEEDED.string.text
+msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
+msgstr "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
+
+#: conn_shared_res.src#STR_CANNOT_CONVERT_STRING.string.text
+msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
+msgstr "The string '$string$' cannot be converted using the encoding '$charset$'."
+
+#: conn_shared_res.src#STR_URI_SYNTAX_ERROR.string.text
+msgid "The connection URL is invalid."
+msgstr "The connection URL is invalid."
+
+#: conn_shared_res.src#STR_QUERY_TOO_COMPLEX.string.text
+msgid "The query can not be executed. It is too complex."
+msgstr "The query can not be executed. It is too complex."
+
+#: conn_shared_res.src#STR_OPERATOR_TOO_COMPLEX.string.text
+msgid "The query can not be executed. The operator is too complex."
+msgstr "The query can not be executed. The operator is too complex."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_LIKE_COLUMN.string.text
+msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type."
+msgstr "The query can not be executed. You cannot use 'LIKE' with columns of this type."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_LIKE_STRING.string.text
+msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
+msgstr "The query can not be executed. 'LIKE' can be used with a string argument only."
+
+#: conn_shared_res.src#STR_QUERY_NOT_LIKE_TOO_COMPLEX.string.text
+msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
+msgstr "The query can not be executed. The 'NOT LIKE' condition is too complex."
+
+#: conn_shared_res.src#STR_QUERY_LIKE_WILDCARD.string.text
+msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
+msgstr "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
+
+#: conn_shared_res.src#STR_QUERY_LIKE_WILDCARD_MANY.string.text
+msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
+msgstr "The query can not be executed. The 'LIKE' condition contains too many wildcards."
+
+#: conn_shared_res.src#STR_INVALID_COLUMNNAME.string.text
+msgid "The column name '$columnname$' is not valid."
+msgstr "The column name '$columnname$' is not valid."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_SELECTION.string.text
+msgid "The statement contains an invalid selection of columns."
+msgstr "The statement contains an invalid selection of columns."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_UPDATEABLE.string.text
+msgid "The column at position '$position$' could not be updated."
+msgstr "The column at position '$position$' could not be updated."
+
+#: conn_shared_res.src#STR_COULD_NOT_LOAD_FILE.string.text
+msgid "The file $filename$ could not be loaded."
+msgstr "The file $filename$ could not be loaded."
+
+#: conn_shared_res.src#STR_LOAD_FILE_ERROR_MESSAGE.string.text
+msgid ""
+"The attempt to load the file resulted in the following error message ($exception_type$):\n"
+"\n"
+"$error_message$"
+msgstr ""
+"The attempt to load the file resulted in the following error message ($exception_type$):\n"
+"\n"
+"$error_message$"
+
+#: conn_shared_res.src#STR_TYPE_NOT_CONVERT.string.text
+msgid "The type could not be converted."
+msgstr "The type could not be converted."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_DESCRIPTOR_ERROR.string.text
+msgid "Could not append column: invalid column descriptor."
+msgstr "Could not append column: invalid column descriptor."
+
+#: conn_shared_res.src#STR_INVALID_GROUP_DESCRIPTOR_ERROR.string.text
+msgid "Could not create group: invalid object descriptor."
+msgstr "Could not create group: invalid object descriptor."
+
+#: conn_shared_res.src#STR_INVALID_INDEX_DESCRIPTOR_ERROR.string.text
+msgid "Could not create index: invalid object descriptor."
+msgstr "Could not create index: invalid object descriptor."
+
+#: conn_shared_res.src#STR_INVALID_KEY_DESCRIPTOR_ERROR.string.text
+msgid "Could not create key: invalid object descriptor."
+msgstr "Could not create key: invalid object descriptor."
+
+#: conn_shared_res.src#STR_INVALID_TABLE_DESCRIPTOR_ERROR.string.text
+msgid "Could not create table: invalid object descriptor."
+msgstr "Could not create table: invalid object descriptor."
+
+#: conn_shared_res.src#STR_INVALID_USER_DESCRIPTOR_ERROR.string.text
+msgid "Could not create user: invalid object descriptor."
+msgstr "Could not create user: invalid object descriptor."
+
+#: conn_shared_res.src#STR_INVALID_VIEW_DESCRIPTOR_ERROR.string.text
+msgid "Could not create view: invalid object descriptor."
+msgstr "Could not create view: invalid object descriptor."
+
+#: conn_shared_res.src#STR_VIEW_NO_COMMAND_ERROR.string.text
+msgid "Could not create view: no command object."
+msgstr "Could not create view: no command object."
+
+#: conn_shared_res.src#STR_NO_CONNECTION.string.text
+msgid "The connection could not be created. May be the necessary data provider is not installed."
+msgstr "The connection could not be created. May be the necessary data provider is not installed."
+
+#: conn_shared_res.src#STR_COULD_NOT_DELETE_INDEX.string.text
+#, fuzzy
+msgid "The index could not be deleted. An unknown error while accessing the file system occurred."
+msgstr "The index could not be deleted. An unknown error while accessing the file system occured."
+
+#: conn_shared_res.src#STR_ONL_ONE_COLUMN_PER_INDEX.string.text
+msgid "The index could not be created. Only one column per index is allowed."
+msgstr "The index could not be created. Only one column per index is allowed."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX_NOT_UNIQUE.string.text
+msgid "The index could not be created. The values are not unique."
+msgstr "The index could not be created. The values are not unique."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX.string.text
+msgid "The index could not be created. An unknown error appeared."
+msgstr "The index could not be created. An unknown error appeared."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX_NAME.string.text
+msgid "The index could not be created. The file '$filename$' is used by an other index."
+msgstr "The index could not be created. The file '$filename$' is used by an other index."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX_KEYSIZE.string.text
+msgid "The index could not be created. The size of the chosen column is to big."
+msgstr "The index could not be created. The size of the chosen column is to big."
+
+#: conn_shared_res.src#STR_SQL_NAME_ERROR.string.text
+msgid "The name '$name$' doesn't match SQL naming constraints."
+msgstr "The name '$name$' doesn't match SQL naming constraints."
+
+#: conn_shared_res.src#STR_COULD_NOT_DELETE_FILE.string.text
+msgid "The file $filename$ could not be deleted."
+msgstr "The file $filename$ could not be deleted."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_TYPE.string.text
+msgid "Invalid column type for column '$columnname$'."
+msgstr "Invalid column type for column '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_PRECISION.string.text
+msgid "Invalid precision for column '$columnname$'."
+msgstr "Invalid precision for column '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_PRECISION_SCALE.string.text
+msgid "Precision is less than scale for column '$columnname$'."
+msgstr "Precision is less than scale for column '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_NAME_LENGTH.string.text
+msgid "Invalid column name length for column '$columnname$'."
+msgstr "Invalid column name length for column '$columnname$'."
+
+#: conn_shared_res.src#STR_DUPLICATE_VALUE_IN_COLUMN.string.text
+msgid "Duplicate value found in column '$columnname$'."
+msgstr "Duplicate value found in column '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_DECIMAL_VALUE.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 ""
+"The '$columnname$' column has been defined as a \"Decimal\" type, the maximum length is $precision$ characters (with $scale$ decimal places).\n"
+"\n"
+"The specified value \"$value$ is longer than the number of digits allowed."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_ALTERABLE.string.text
+msgid "The column '$columnname$' could not be altered. May be the file system is write protected."
+msgstr "The column '$columnname$' could not be altered. May be the file system is write protected."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_VALUE.string.text
+msgid "The column '$columnname$' could not be updated. The value is invalid for that column."
+msgstr "The column '$columnname$' could not be updated. The value is invalid for that column."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_ADDABLE.string.text
+msgid "The column '$columnname$' could not be added. May be the file system is write protected."
+msgstr "The column '$columnname$' could not be added. May be the file system is write protected."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_DROP.string.text
+msgid "The column at position '$position$' could not be dropped. May be the file system is write protected."
+msgstr "The column at position '$position$' could not be dropped. May be the file system is write protected."
+
+#: conn_shared_res.src#STR_TABLE_NOT_DROP.string.text
+msgid "The table '$tablename$' could not be dropped. May be the file system is write protected."
+msgstr "The table '$tablename$' could not be dropped. May be the file system is write protected."
+
+#: conn_shared_res.src#STR_COULD_NOT_ALTER_TABLE.string.text
+msgid "The table could not be altered."
+msgstr "The table could not be altered."
+
+#: conn_shared_res.src#STR_INVALID_DBASE_FILE.string.text
+msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
+msgstr "The file '$filename$' is an invalid (or unrecognized) dBase file."
+
+#: conn_shared_res.src#STR_CANNOT_OPEN_BOOK.string.text
+msgid "Cannot open Evolution address book."
+msgstr "Cannot open Evolution address book."
+
+#: conn_shared_res.src#STR_SORT_BY_COL_ONLY.string.text
+msgid "Can only sort by table columns."
+msgstr "Can only sort by table columns."
+
+#: conn_shared_res.src#STR_QUERY_COMPLEX_COUNT.string.text
+msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported."
+msgstr "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_BETWEEN.string.text
+msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
+msgstr "The query can not be executed. The 'BETWEEN' arguments are not correct."
+
+#: conn_shared_res.src#STR_QUERY_FUNCTION_NOT_SUPPORTED.string.text
+msgid "The query can not be executed. The function is not supported."
+msgstr "The query can not be executed. The function is not supported."
+
+#: conn_shared_res.src#STR_TABLE_READONLY.string.text
+msgid "The table can not be changed. It is read only."
+msgstr "The table can not be changed. It is read only."
+
+#: conn_shared_res.src#STR_DELETE_ROW.string.text
+msgid "The row could not be deleted. The option \"Display inactive records\" is set."
+msgstr "The row could not be deleted. The option \"Display inactive records\" is set."
+
+#: conn_shared_res.src#STR_ROW_ALREADY_DELETED.string.text
+msgid "The row could not be deleted. It is already deleted."
+msgstr "The row could not be deleted. It is already deleted."
+
+#: conn_shared_res.src#STR_QUERY_MORE_TABLES.string.text
+msgid "The query can not be executed. It contains more than one table."
+msgstr "The query can not be executed. It contains more than one table."
+
+#: conn_shared_res.src#STR_QUERY_NO_TABLE.string.text
+msgid "The query can not be executed. It contains no valid table."
+msgstr "The query can not be executed. It contains no valid table."
+
+#: conn_shared_res.src#STR_QUERY_NO_COLUMN.string.text
+msgid "The query can not be executed. It contains no valid columns."
+msgstr "The query can not be executed. It contains no valid columns."
+
+#: conn_shared_res.src#STR_INVALID_PARA_COUNT.string.text
+msgid "The count of the given parameter values doesn't match the parameters."
+msgstr "The count of the given parameter values doesn't match the parameters."
+
+#: conn_shared_res.src#STR_NO_VALID_FILE_URL.string.text
+msgid "The URL '$URL$' is not valid. A connection can not be created."
+msgstr "The URL '$URL$' is not valid. A connection can not be created."
+
+#: conn_shared_res.src#STR_NO_CLASSNAME.string.text
+msgid "The driver class '$classname$' could not be loaded."
+msgstr "The driver class '$classname$' could not be loaded."
+
+#: conn_shared_res.src#STR_NO_JAVA.string.text
+msgid "No Java installation could be found. Please check your installation."
+msgstr "No Java installation could be found. Please check your installation."
+
+#: conn_shared_res.src#STR_NO_RESULTSET.string.text
+msgid "The execution of the query doesn't return a valid result set."
+msgstr "The execution of the query doesn't return a valid result set."
+
+#: conn_shared_res.src#STR_NO_ROWCOUNT.string.text
+msgid "The execution of the update statement doesn't effect any rows."
+msgstr "The execution of the update statement doesn't effect any rows."
+
+#: conn_shared_res.src#STR_NO_CLASSNAME_PATH.string.text
+msgid "The additional driver class path is '$classpath$'."
+msgstr "The additional driver class path is '$classpath$'."
+
+#: conn_shared_res.src#STR_UNKNOWN_PARA_TYPE.string.text
+msgid "The type of parameter at position '$position$' is unknown."
+msgstr "The type of parameter at position '$position$' is unknown."
+
+#: conn_shared_res.src#STR_UNKNOWN_COLUMN_TYPE.string.text
+msgid "The type of column at position '$position$' is unknown."
+msgstr "The type of column at position '$position$' is unknown."
+
+#: conn_shared_res.src#STR_NO_KDE_INST.string.text
+msgid "No suitable KDE installation was found."
+msgstr "No suitable KDE installation was found."
+
+#: conn_shared_res.src#STR_KDE_VERSION_TOO_OLD.string.text
+msgid "KDE version $major$.$minor$ or higher is required to access the KDE Address Book."
+msgstr "KDE version $major$.$minor$ or higher is required to access the KDE Address Book."
+
+#: conn_shared_res.src#STR_KDE_VERSION_TOO_NEW.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 "The found KDE version is too new. Only KDE up to version $major$.$minor$ is known to work with this product.\n"
+
+#: conn_shared_res.src#STR_KDE_VERSION_TOO_NEW_WORK_AROUND.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 ""
+"If you are sure that your KDE version works, you might execute the following Basic macro to disable this version check:\n"
+"\n"
+
+#: conn_shared_res.src#STR_PARA_ONLY_PREPARED.string.text
+msgid "Parameters can appear only in prepared statements."
+msgstr "Parameters can appear only in prepared statements."
+
+#: conn_shared_res.src#STR_NO_TABLE.string.text
+msgid "No such table!"
+msgstr "No such table!"
+
+#: conn_shared_res.src#STR_NO_MAC_OS_FOUND.string.text
+msgid "No suitable Mac OS installation was found."
+msgstr "No suitable Mac OS installation was found."
+
+#: conn_shared_res.src#STR_NO_STROAGE.string.text
+msgid "The connection can not be established. No storage or URL was given."
+msgstr "The connection can not be established. No storage or URL was given."
+
+#: conn_shared_res.src#STR_INVALID_FILE_URL.string.text
+msgid "The given URL contains no valid local file system path. Please check the location of your database file."
+msgstr "The given URL contains no valid local file system path. Please check the location of your database file."
+
+#: conn_shared_res.src#STR_NO_TABLE_CONTAINER.string.text
+#, fuzzy
+msgid "An error occurred while obtaining the connection's table container."
+msgstr "An error occured while obtaining the connection's table container."
+
+#: conn_shared_res.src#STR_NO_TABLE_EDITOR_DIALOG.string.text
+#, fuzzy
+msgid "An error occurred while creating the table editor dialog."
+msgstr "An error occured while creating the table editor dialogue."
+
+#: conn_shared_res.src#STR_NO_TABLENAME.string.text
+msgid "There is no table named '$tablename$'."
+msgstr "There is no table named '$tablename$'."
+
+#: conn_shared_res.src#STR_NO_DOCUMENTUI.string.text
+msgid "The provided DocumentUI is not allowed to be NULL."
+msgstr "The provided DocumentUI is not allowed to be NULL."
diff --git a/source/en-ZA/cui/source/customize.po b/source/en-ZA/cui/source/customize.po
new file mode 100644
index 00000000000..fd8b588f668
--- /dev/null
+++ b/source/en-ZA/cui/source/customize.po
@@ -0,0 +1,822 @@
+#. extracted from cui/source/customize.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fcustomize.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:51+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.STR_EVENT.string.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.STR_EVENT.string.text"
+msgid "Event"
+msgstr "Event"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.STR_ASSMACRO.string.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.STR_ASSMACRO.string.text"
+msgid "Assigned Action"
+msgstr "Assigned Action"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.FT_ASSIGN.fixedtext.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.FT_ASSIGN.fixedtext.text"
+msgid "Assign:"
+msgstr "Assign:"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN.pushbutton.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN.pushbutton.text"
+msgid "M~acro..."
+msgstr "M~acro..."
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN_COMPONENT.pushbutton.text
+msgid "Com~ponent..."
+msgstr "Com~ponent..."
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_DELETE.pushbutton.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.PB_DELETE.pushbutton.text"
+msgid "~Remove"
+msgstr "~Remove"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.tabpage.text
+msgid "Assign action"
+msgstr "Assign action"
+
+#: macropg.src#RID_SVXDLG_ASSIGNCOMPONENT.FT_METHOD.fixedtext.text
+msgid "Component method name"
+msgstr "Component method name"
+
+#: macropg.src#RID_SVXDLG_ASSIGNCOMPONENT.modaldialog.text
+msgid "Assign Component"
+msgstr "Assign Component"
+
+#: macropg.src#RID_SVXSTR_EVENT_STARTAPP.string.text
+msgid "Start Application"
+msgstr "Start Application"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEAPP.string.text
+msgid "Close Application"
+msgstr "Close Application"
+
+#: macropg.src#RID_SVXSTR_EVENT_NEWDOC.string.text
+msgid "New Document"
+msgstr "New Document"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEDOC.string.text
+msgid "Document closed"
+msgstr "Document closed"
+
+#: macropg.src#RID_SVXSTR_EVENT_PREPARECLOSEDOC.string.text
+msgid "Document is going to be closed"
+msgstr "Document is going to be closed"
+
+#: macropg.src#RID_SVXSTR_EVENT_OPENDOC.string.text
+msgid "Open Document"
+msgstr "Open Document"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOC.string.text
+msgid "Save Document"
+msgstr "Save Document"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOC.string.text
+msgid "Save Document As"
+msgstr "Save Document As"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOCDONE.string.text
+msgid "Document has been saved"
+msgstr "Document has been saved"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOCDONE.string.text
+msgid "Document has been saved as"
+msgstr "Document has been saved as"
+
+#: macropg.src#RID_SVXSTR_EVENT_ACTIVATEDOC.string.text
+msgid "Activate Document"
+msgstr "Activate Document"
+
+#: macropg.src#RID_SVXSTR_EVENT_DEACTIVATEDOC.string.text
+msgid "Deactivate Document"
+msgstr "Deactivate Document"
+
+#: macropg.src#RID_SVXSTR_EVENT_PRINTDOC.string.text
+msgid "Print Document"
+msgstr "Print Document"
+
+#: macropg.src#RID_SVXSTR_EVENT_MODIFYCHANGED.string.text
+msgid "'Modified' status was changed"
+msgstr "'Modified' status was changed"
+
+#: macropg.src#RID_SVXSTR_EVENT_MAILMERGE.string.text
+msgid "Printing of form letters started"
+msgstr "Printing of form letters started"
+
+#: macropg.src#RID_SVXSTR_EVENT_MAILMERGE_END.string.text
+msgid "Printing of form letters finished"
+msgstr "Printing of form letters finished"
+
+#: macropg.src#RID_SVXSTR_EVENT_FIELDMERGE.string.text
+msgid "Merging of form fields started"
+msgstr "Merging of form fields started"
+
+#: macropg.src#RID_SVXSTR_EVENT_FIELDMERGE_FINISHED.string.text
+msgid "Merging of form fields finished"
+msgstr "Merging of form fields finished"
+
+#: macropg.src#RID_SVXSTR_EVENT_PAGECOUNTCHANGE.string.text
+msgid "Changing the page count"
+msgstr "Changing the page count"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED.string.text
+msgid "Loaded a sub component"
+msgstr "Loaded a sub component"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED.string.text
+msgid "Closed a sub component"
+msgstr "Closed a sub component"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEPARAMETER.string.text
+msgid "Fill parameters"
+msgstr "Fill parameters"
+
+#: macropg.src#RID_SVXSTR_EVENT_ACTIONPERFORMED.string.text
+msgid "Execute action"
+msgstr "Execute action"
+
+#: macropg.src#RID_SVXSTR_EVENT_AFTERUPDATE.string.text
+msgid "After updating"
+msgstr "After updating"
+
+#: macropg.src#RID_SVXSTR_EVENT_BEFOREUPDATE.string.text
+msgid "Before updating"
+msgstr "Before updating"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEROWCHANGE.string.text
+msgid "Before record action"
+msgstr "Before record action"
+
+#: macropg.src#RID_SVXSTR_EVENT_ROWCHANGE.string.text
+msgid "After record action"
+msgstr "After record action"
+
+#: macropg.src#RID_SVXSTR_EVENT_CONFIRMDELETE.string.text
+msgid "Confirm deletion"
+msgstr "Confirm deletion"
+
+#: macropg.src#RID_SVXSTR_EVENT_ERROROCCURRED.string.text
+msgid "Error occurred"
+msgstr "Error occurred"
+
+#: macropg.src#RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED.string.text
+msgid "While adjusting"
+msgstr "While adjusting"
+
+#: macropg.src#RID_SVXSTR_EVENT_FOCUSGAINED.string.text
+msgid "When receiving focus"
+msgstr "When receiving focus"
+
+#: macropg.src#RID_SVXSTR_EVENT_FOCUSLOST.string.text
+msgid "When losing focus"
+msgstr "When losing focus"
+
+#: macropg.src#RID_SVXSTR_EVENT_ITEMSTATECHANGED.string.text
+msgid "Item status changed"
+msgstr "Item status changed"
+
+#: macropg.src#RID_SVXSTR_EVENT_KEYTYPED.string.text
+msgid "Key pressed"
+msgstr "Key pressed"
+
+#: macropg.src#RID_SVXSTR_EVENT_KEYUP.string.text
+msgid "Key released"
+msgstr "Key released"
+
+#: macropg.src#RID_SVXSTR_EVENT_LOADED.string.text
+msgid "When loading"
+msgstr "When loading"
+
+#: macropg.src#RID_SVXSTR_EVENT_RELOADING.string.text
+msgid "Before reloading"
+msgstr "Before reloading"
+
+#: macropg.src#RID_SVXSTR_EVENT_RELOADED.string.text
+msgid "When reloading"
+msgstr "When reloading"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEDRAGGED.string.text
+msgid "Mouse moved while key pressed"
+msgstr "Mouse moved while key pressed"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEENTERED.string.text
+msgid "Mouse inside"
+msgstr "Mouse inside"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEEXITED.string.text
+msgid "Mouse outside"
+msgstr "Mouse outside"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEMOVED.string.text
+msgid "Mouse moved"
+msgstr "Mouse moved"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEPRESSED.string.text
+msgid "Mouse button pressed"
+msgstr "Mouse button pressed"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSERELEASED.string.text
+msgid "Mouse button released"
+msgstr "Mouse button released"
+
+#: macropg.src#RID_SVXSTR_EVENT_POSITIONING.string.text
+msgid "Before record change"
+msgstr "Before record change"
+
+#: macropg.src#RID_SVXSTR_EVENT_POSITIONED.string.text
+msgid "After record change"
+msgstr "After record change"
+
+#: macropg.src#RID_SVXSTR_EVENT_RESETTED.string.text
+msgid "After resetting"
+msgstr "After resetting"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVERESETTED.string.text
+msgid "Prior to reset"
+msgstr "Prior to reset"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED.string.text
+msgid "Approve action"
+msgstr "Approve action"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBMITTED.string.text
+msgid "Before submitting"
+msgstr "Before submitting"
+
+#: macropg.src#RID_SVXSTR_EVENT_TEXTCHANGED.string.text
+msgid "Text modified"
+msgstr "Text modified"
+
+#: macropg.src#RID_SVXSTR_EVENT_UNLOADING.string.text
+msgid "Before unloading"
+msgstr "Before unloading"
+
+#: macropg.src#RID_SVXSTR_EVENT_UNLOADED.string.text
+msgid "When unloading"
+msgstr "When unloading"
+
+#: macropg.src#RID_SVXSTR_EVENT_CHANGED.string.text
+msgid "Changed"
+msgstr "Changed"
+
+#: macropg.src#RID_SVXSTR_EVENT_CREATEDOC.string.text
+msgid "Document created"
+msgstr "Document created"
+
+#: macropg.src#RID_SVXSTR_EVENT_LOADDOCFINISHED.string.text
+msgid "Document loading finished"
+msgstr "Document loading finished"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOCFAILED.string.text
+msgid "Saving of document failed"
+msgstr "Saving of document failed"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOCFAILED.string.text
+msgid "'Save as' has failed"
+msgstr "'Save as' has failed"
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOC.string.text
+msgid "Storing or exporting copy of document"
+msgstr "Storing or exporting copy of document"
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOCDONE.string.text
+msgid "Document copy has been created"
+msgstr "Document copy has been created"
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOCFAILED.string.text
+msgid "Creating of document copy failed"
+msgstr "Creating of document copy failed"
+
+#: macropg.src#RID_SVXSTR_EVENT_VIEWCREATED.string.text
+msgid "View created"
+msgstr "View created"
+
+#: macropg.src#RID_SVXSTR_EVENT_PREPARECLOSEVIEW.string.text
+msgid "View is going to be closed"
+msgstr "View is going to be closed"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEVIEW.string.text
+msgid "View closed"
+msgstr "View closed"
+
+#: macropg.src#RID_SVXSTR_EVENT_TITLECHANGED.string.text
+msgid "Document title changed"
+msgstr "Document title changed"
+
+#: macropg.src#RID_SVXSTR_EVENT_MODECHANGED.string.text
+msgid "Document mode changed"
+msgstr "Document mode changed"
+
+#: macropg.src#RID_SVXSTR_EVENT_VISAREACHANGED.string.text
+msgid "Visible area changed"
+msgstr "Visible area changed"
+
+#: macropg.src#RID_SVXSTR_EVENT_STORAGECHANGED.string.text
+msgid "Document has got a new storage"
+msgstr "Document has got a new storage"
+
+#: macropg.src#RID_SVXSTR_EVENT_LAYOUT_FINISHED.string.text
+msgid "Document layout finished"
+msgstr "Document layout finished"
+
+#: macropg.src#RID_SVXSTR_EVENT_SELECTIONCHANGED.string.text
+msgid "Selection changed"
+msgstr "Selection changed"
+
+#: macropg.src#RID_SVXSTR_EVENT_DOUBLECLICK.string.text
+msgid "Double click"
+msgstr "Double click"
+
+#: macropg.src#RID_SVXSTR_EVENT_RIGHTCLICK.string.text
+msgid "Right click"
+msgstr "Right click"
+
+#: macropg.src#RID_SVXSTR_EVENT_CALCULATE.string.text
+msgid "Formulas calculated"
+msgstr "Formulas calculated"
+
+#: macropg.src#RID_SVXSTR_EVENT_CONTENTCHANGED.string.text
+msgid "Content changed"
+msgstr "Content changed"
+
+#: selector.src#FIXEDTEXT_DIALOG_DESCRIPTION.#define.text
+msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
+msgstr "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
+
+#: selector.src#STR_SELECTOR_ADD_COMMANDS.string.text
+msgid "Add Commands"
+msgstr "Add Commands"
+
+#: selector.src#STR_SELECTOR_MACROS.string.text
+msgctxt "selector.src#STR_SELECTOR_MACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Macros"
+
+#: selector.src#STR_SELECTOR_CATEGORIES.string.text
+msgctxt "selector.src#STR_SELECTOR_CATEGORIES.string.text"
+msgid "~Category"
+msgstr "~Category"
+
+#: selector.src#STR_SELECTOR_COMMANDS.string.text
+msgctxt "selector.src#STR_SELECTOR_COMMANDS.string.text"
+msgid "Commands"
+msgstr "Commands"
+
+#: selector.src#STR_SELECTOR_ADD.string.text
+msgid "Add"
+msgstr "Add"
+
+#: selector.src#STR_SELECTOR_RUN.string.text
+msgid "Run"
+msgstr "Run"
+
+#: selector.src#STR_SELECTOR_CLOSE.string.text
+msgid "Close"
+msgstr "Close"
+
+#: selector.src#STR_SELECTOR_ADD_COMMANDS_DESCRIPTION.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 "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 Customise dialogue."
+
+#: selector.src#STR_BASICMACROS.string.text
+msgctxt "selector.src#STR_BASICMACROS.string.text"
+msgid "BASIC Macros"
+msgstr "BASIC Macros"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.TXT_SELECTOR_CATEGORIES.fixedtext.text
+msgid "Library"
+msgstr "Library"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.BOX_SELECTOR_CATEGORIES.STR_MYMACROS.string.text
+msgctxt "selector.src#RID_DLG_SCRIPTSELECTOR.BOX_SELECTOR_CATEGORIES.STR_MYMACROS.string.text"
+msgid "My Macros"
+msgstr "My Macros"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.BOX_SELECTOR_CATEGORIES.STR_PRODMACROS.string.text
+msgctxt "selector.src#RID_DLG_SCRIPTSELECTOR.BOX_SELECTOR_CATEGORIES.STR_PRODMACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Macros"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.TXT_SELECTOR_COMMANDS.fixedtext.text
+msgid "Macro name"
+msgstr "Macro name"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.GRP_SELECTOR_DESCRIPTION.fixedline.text
+msgctxt "selector.src#RID_DLG_SCRIPTSELECTOR.GRP_SELECTOR_DESCRIPTION.fixedline.text"
+msgid "Description"
+msgstr "Description"
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.modelessdialog.text
+msgid "Macro Selector"
+msgstr "Macro Selector"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_MENUS.pageitem.text
+msgid "Menus"
+msgstr "Menus"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_KEYBOARD.pageitem.text
+msgid "Keyboard"
+msgstr "Keyboard"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_TOOLBARS.pageitem.text
+msgid "Toolbars"
+msgstr "Toolbars"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_EVENTS.pageitem.text
+msgid "Events"
+msgstr "Events"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.tabdialog.text
+msgid "Customize"
+msgstr "Customize"
+
+#: cfg.src#TEXT_MENU.#define.text
+msgid "Menu"
+msgstr "Menu"
+
+#: cfg.src#TEXT_BEGIN_GROUP.#define.text
+msgid "Begin a Group"
+msgstr "Begin a Group"
+
+#: cfg.src#TEXT_RENAME.#define.text
+msgid "Rename..."
+msgstr "Rename..."
+
+#: cfg.src#TEXT_DELETE.#define.text
+msgctxt "cfg.src#TEXT_DELETE.#define.text"
+msgid "Delete..."
+msgstr "Delete..."
+
+#: cfg.src#TEXT_DELETE_NODOTS.#define.text
+msgid "Delete"
+msgstr "Delete"
+
+#: cfg.src#TEXT_MOVE.#define.text
+msgid "Move..."
+msgstr "Move..."
+
+#: cfg.src#TEXT_DEFAULT_STYLE.#define.text
+msgid "Restore Default Settings"
+msgstr "Restore Default Settings"
+
+#: cfg.src#TEXT_DEFAULT_COMMAND.#define.text
+msgid "Restore Default Command"
+msgstr "Restore Default Command"
+
+#: cfg.src#TEXT_TEXT_ONLY.#define.text
+msgid "Text only"
+msgstr "Text only"
+
+#: cfg.src#TEXT_TOOLBAR_NAME.#define.text
+msgid "Toolbar Name"
+msgstr "Toolbar Name"
+
+#: cfg.src#TEXT_SAVE_IN.#define.text
+msgctxt "cfg.src#TEXT_SAVE_IN.#define.text"
+msgid "Save In"
+msgstr "Save In"
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENUS.fixedline.text
+msgid "%PRODUCTNAME %MODULENAME Menus"
+msgstr "%PRODUCTNAME %MODULENAME Menus"
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_NEW.pushbutton.text
+msgid "New..."
+msgstr "New..."
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENU_SEPARATOR.fixedline.text
+msgid "Menu Content"
+msgstr "Menu Content"
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENU_ENTRIES.fixedtext.text
+msgid "Entries"
+msgstr "Entries"
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_ADD_COMMANDS.pushbutton.text
+msgid "Add..."
+msgstr "Add..."
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_CHANGE_ENTRY.menubutton.text
+msgid "Modify"
+msgstr "Modify"
+
+#: cfg.src#RID_SVXPAGE_MENUS.FT_DESCRIPTION.fixedtext.text
+msgctxt "cfg.src#RID_SVXPAGE_MENUS.FT_DESCRIPTION.fixedtext.text"
+msgid "Description"
+msgstr "Description"
+
+#: cfg.src#MODIFY_ENTRY.ID_ADD_SUBMENU.menuitem.text
+msgid "Add Submenu..."
+msgstr "Add Submenu..."
+
+#: cfg.src#MODIFY_TOOLBAR.ID_ICONS_ONLY.menuitem.text
+msgid "Icons Only"
+msgstr "Icons Only"
+
+#: cfg.src#MODIFY_TOOLBAR.ID_ICONS_AND_TEXT.menuitem.text
+msgid "Icons & Text"
+msgstr "Icons & Text"
+
+#: cfg.src#MODIFY_TOOLBAR_CONTENT.ID_CHANGE_SYMBOL.menuitem.text
+msgid "Change Icon..."
+msgstr "Change Icon..."
+
+#: cfg.src#MODIFY_TOOLBAR_CONTENT.ID_RESET_SYMBOL.menuitem.text
+msgid "Reset Icon"
+msgstr "Reset Icon"
+
+#: cfg.src#RID_SVXSTR_NEW_MENU.string.text
+msgid "New Menu %n"
+msgstr "New Menu %n"
+
+#: cfg.src#RID_SVXSTR_NEW_TOOLBAR.string.text
+msgid "New Toolbar %n"
+msgstr "New Toolbar %n"
+
+#: cfg.src#RID_SVXSTR_MOVE_MENU.string.text
+msgid "Move Menu"
+msgstr "Move Menu"
+
+#: cfg.src#RID_SVXSTR_ADD_SUBMENU.string.text
+msgid "Add Submenu"
+msgstr "Add Submenu"
+
+#: cfg.src#RID_SVXSTR_SUBMENU_NAME.string.text
+msgid "Submenu name"
+msgstr "Submenu name"
+
+#: cfg.src#RID_SVXSTR_MENU_ADDCOMMANDS_DESCRIPTION.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 "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 dialogue."
+
+#: cfg.src#MD_MENU_ORGANISER.TXT_MENU_NAME.fixedtext.text
+msgid "Menu name"
+msgstr "Menu name"
+
+#: cfg.src#MD_MENU_ORGANISER.TXT_MENU.fixedtext.text
+msgid "Menu position"
+msgstr "Menu position"
+
+#: cfg.src#MD_MENU_ORGANISER.modaldialog.text
+msgid "New Menu"
+msgstr "New Menu"
+
+#: cfg.src#MD_NEW_TOOLBAR.modaldialog.text
+msgid "Name"
+msgstr "Name"
+
+#: cfg.src#MD_ICONSELECTOR.FT_SYMBOLS.fixedtext.text
+msgid "Icons"
+msgstr "Icons"
+
+#: cfg.src#MD_ICONSELECTOR.BTN_IMPORT.pushbutton.text
+msgid "Import..."
+msgstr "Import..."
+
+#: cfg.src#MD_ICONSELECTOR.BTN_DELETE.pushbutton.text
+msgctxt "cfg.src#MD_ICONSELECTOR.BTN_DELETE.pushbutton.text"
+msgid "Delete..."
+msgstr "Delete..."
+
+#: cfg.src#MD_ICONSELECTOR.FT_NOTE.fixedtext.text
+msgid ""
+"Note:\n"
+"The size of an icon should be 16x16 pixel to achieve best quality. Different sized icons will be scaled automatically."
+msgstr ""
+"Note:\n"
+"The size of an icon should be 16x16 pixel to achieve best quality. Different sized icons will be scaled automatically."
+
+#: cfg.src#MD_ICONSELECTOR.modaldialog.text
+msgid "Change Icon"
+msgstr "Change Icon"
+
+#: cfg.src#MD_ICONCHANGE.FTCHGE_DESCRIPTION.fixedtext.text
+msgid ""
+"The files listed below could not be imported.\n"
+"The file format could not be interpreted."
+msgstr ""
+"The files listed below could not be imported.\n"
+"The file format could not be interpreted."
+
+#: cfg.src#MD_ICONCHANGE.modaldialog.text
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: cfg.src#RID_SVXSTR_IMPORT_ICON_ERROR.string.text
+msgid "The files listed below could not be imported. The file format could not be interpreted."
+msgstr "The files listed below could not be imported. The file format could not be interpreted."
+
+#: cfg.src#RID_SVXSTR_DELETE_ICON_CONFIRM.string.text
+msgid "Are you sure to delete the image?"
+msgstr "Are you sure to delete the image?"
+
+#: cfg.src#RID_SVXSTR_REPLACE_ICON_WARNING.string.text
+msgid ""
+"The icon %ICONNAME is already contained in the image list.\n"
+"Would you like to replace the existing icon?"
+msgstr ""
+"The icon %ICONNAME is already contained in the image list.\n"
+"Would you like to replace the existing icon?"
+
+#: cfg.src#RID_SVXSTR_REPLACE_ICON_CONFIRM.string.text
+msgid "Confirm Icon Replacement"
+msgstr "Confirm Icon Replacement"
+
+#: cfg.src#RID_SVXSTR_YESTOALL.string.text
+msgid "Yes to All"
+msgstr "Yes to All"
+
+#: cfg.src#RID_SVXSTR_PRODUCTNAME_TOOLBARS.string.text
+msgid "%PRODUCTNAME %MODULENAME Toolbars"
+msgstr "%PRODUCTNAME %MODULENAME Toolbars"
+
+#: cfg.src#RID_SVXSTR_TOOLBAR.string.text
+msgid "Toolbar"
+msgstr "Toolbar"
+
+#: cfg.src#RID_SVXSTR_TOOLBAR_CONTENT.string.text
+msgid "Toolbar Content"
+msgstr "Toolbar Content"
+
+#: cfg.src#RID_SVXSTR_COMMANDS.string.text
+msgctxt "cfg.src#RID_SVXSTR_COMMANDS.string.text"
+msgid "Commands"
+msgstr "Commands"
+
+#: cfg.src#RID_SVXSTR_COMMAND.string.text
+msgid "Command"
+msgstr "Command"
+
+#: cfg.src#QBX_CONFIRM_DELETE_MENU.querybox.text
+msgid "Are you sure you want to delete the '%MENUNAME' menu?"
+msgstr "Are you sure you want to delete the '%MENUNAME' menu?"
+
+#: cfg.src#QBX_CONFIRM_DELETE_TOOLBAR.querybox.text
+msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
+msgstr "There are no more commands on the toolbar. Do you want to delete the toolbar?"
+
+#: cfg.src#QBX_CONFIRM_RESET.querybox.text
+msgctxt "cfg.src#QBX_CONFIRM_RESET.querybox.text"
+msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+msgstr "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+
+#: cfg.src#RID_SVXSTR_CONFIRM_MENU_RESET.string.text
+msgctxt "cfg.src#RID_SVXSTR_CONFIRM_MENU_RESET.string.text"
+msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+msgstr "The menu configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+
+#: cfg.src#RID_SVXSTR_CONFIRM_TOOLBAR_RESET.string.text
+msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+msgstr "The toolbar configuration for %SAVE IN SELECTION% will be reset to the factory settings. Do you want to continue?"
+
+#: cfg.src#QBX_CONFIRM_RESTORE_DEFAULT.querybox.text
+msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
+msgstr "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
+
+#: cfg.src#IBX_MNUCFG_ALREADY_INCLUDED.infobox.text
+msgid "Function is already included in this popup."
+msgstr "Function is already included in this popup."
+
+#: cfg.src#RID_SVXSTR_LABEL_NEW_NAME.string.text
+msgid "~New name"
+msgstr "~New name"
+
+#: cfg.src#RID_SVXSTR_RENAME_MENU.string.text
+msgid "Rename Menu"
+msgstr "Rename Menu"
+
+#: cfg.src#RID_SVXSTR_RENAME_TOOLBAR.string.text
+msgid "Rename Toolbar"
+msgstr "Rename Toolbar"
+
+#: cfg.src#BUTTON_STR_UP.string.text
+msgid "Up"
+msgstr "Up"
+
+#: cfg.src#BUTTON_STR_DOWN.string.text
+msgid "Down"
+msgstr "Down"
+
+#: acccfg.src#PUSHBUTTON_TEXT_SAVE.#define.text
+msgid "~Save..."
+msgstr "~Save..."
+
+#: acccfg.src#PUSHBUTTON_TEXT_RESET.#define.text
+msgid "R~eset"
+msgstr "R~eset"
+
+#: acccfg.src#PUSHBUTTON_TEXT_LOAD.#define.text
+msgid "~Load..."
+msgstr "~Load..."
+
+#: acccfg.src#PUSHBUTTON_TEXT_REMOVE.#define.text
+msgid "~Delete"
+msgstr "~Delete"
+
+#: acccfg.src#PUSHBUTTON_TEXT_CHANGE.#define.text
+msgid "~Modify"
+msgstr "~Modify"
+
+#: acccfg.src#PUSHBUTTON_TEXT_NEW.#define.text
+msgid "~New"
+msgstr "~New"
+
+#: acccfg.src#FIXEDTEXT_TEXT_GROUP.#define.text
+msgctxt "acccfg.src#FIXEDTEXT_TEXT_GROUP.#define.text"
+msgid "~Category"
+msgstr "~Category"
+
+#: acccfg.src#FIXEDTEXT_TEXT_FUNCTION.#define.text
+msgid "Function"
+msgstr "Function"
+
+#: acccfg.src#GROUPBOX_TEXT_FUNCTIONS.#define.text
+msgid "Functions"
+msgstr "Functions"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.GRP_ACC_KEYBOARD.fixedline.text
+msgid "Shortcut keys"
+msgstr "Shortcut keys"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.TXT_ACC_KEY.fixedtext.text
+msgid "~Keys"
+msgstr "~Keys"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_LOADACCELCONFIG.string.text
+msgid "Load Keyboard Configuration"
+msgstr "Load Keyboard Configuration"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_SAVEACCELCONFIG.string.text
+msgid "Save Keyboard Configuration"
+msgstr "Save Keyboard Configuration"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_FILTERNAME_CFG.string.text
+msgid "Configuration"
+msgstr "Configuration"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_MYMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_MYMACROS.string.text"
+msgid "My Macros"
+msgstr "My Macros"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_PRODMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_PRODMACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Macros"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_BASICMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_BASICMACROS.string.text"
+msgid "BASIC Macros"
+msgstr "BASIC Macros"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_DLG_MACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_DLG_MACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Macros"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_GROUP_STYLES.string.text
+msgid "Styles"
+msgstr "Styles"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.STR_EVENT.string.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.STR_EVENT.string.text"
+msgid "Event"
+msgstr "Event"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.STR_ASSMACRO.string.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.STR_ASSMACRO.string.text"
+msgid "Assigned Action"
+msgstr "Assigned Action"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.TXT_SAVEIN.fixedtext.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.TXT_SAVEIN.fixedtext.text"
+msgid "Save In"
+msgstr "Save In"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.FT_ASSIGN.fixedtext.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.FT_ASSIGN.fixedtext.text"
+msgid "Assign:"
+msgstr "Assign:"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.PB_ASSIGN.pushbutton.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.PB_ASSIGN.pushbutton.text"
+msgid "M~acro..."
+msgstr "M~acro..."
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.PB_DELETE.pushbutton.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.PB_DELETE.pushbutton.text"
+msgid "~Remove"
+msgstr "~Remove"
diff --git a/source/en-ZA/cui/source/dialogs.po b/source/en-ZA/cui/source/dialogs.po
new file mode 100644
index 00000000000..204671a14f2
--- /dev/null
+++ b/source/en-ZA/cui/source/dialogs.po
@@ -0,0 +1,2227 @@
+#. extracted from cui/source/dialogs.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-13 20:42+0200\n"
+"PO-Revision-Date: 2012-06-16 13:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
+msgid "~Current word"
+msgstr "~Current word"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.MB_LANGUAGE.menubutton.text
+msgid "~Language"
+msgstr "~Language"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_THES_ALTERNATIVES.fixedtext.text
+msgid "~Alternatives"
+msgstr "~Alternatives"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_REPL.fixedtext.text
+msgid "~Replace with"
+msgstr "~Replace with"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.BTN_THES_OK.okbutton.text
+msgid "Replace"
+msgstr "Replace"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.STR_ERR_TEXTNOTFOUND.string.text
+msgid "No alternatives found."
+msgstr "No alternatives found."
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.modaldialog.text
+msgid "Thesaurus"
+msgstr "Thesaurus"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.GRP_LINKTYPE.fixedline.text
+msgid "Hyperlink type"
+msgstr "Hyperlink type"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.RB_LINKTYP_INTERNET.radiobutton.text
+msgid "~Web"
+msgstr "~Web"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.RB_LINKTYP_FTP.radiobutton.text
+msgid "~FTP"
+msgstr "~FTP"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_TARGET_HTML.fixedtext.text
+msgid "Tar~get"
+msgstr "Tar~get"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_LOGIN.fixedtext.text
+msgid "~Login name"
+msgstr "~Login name"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_PASSWD.fixedtext.text
+msgid "~Password"
+msgstr "~Password"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.CBX_ANONYMOUS.checkbox.text
+msgid "Anonymous ~user"
+msgstr "Anonymous ~user"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_BROWSE.imagebutton.text
+#, fuzzy
+msgid "WWW Browser"
+msgstr "WWW Browser"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_BROWSE.imagebutton.quickhelptext
+msgid "Open web browser, copy an URL, and paste it to Target field"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.GRP_MORE.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.GRP_MORE.fixedline.text"
+msgid "Further settings"
+msgstr "Further settings"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FRAME.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FRAME.fixedtext.text"
+msgid "F~rame"
+msgstr "F~rame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FORM.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "F~orm"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM.1.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM.1.stringlist.text"
+msgid "Text"
+msgstr "Text"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM.2.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM.2.stringlist.text"
+msgid "Button"
+msgstr "Button"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_INDICATION.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_INDICATION.fixedtext.text"
+msgid "Te~xt"
+msgstr "Te~xt"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_TEXT.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_TEXT.fixedtext.text"
+msgid "N~ame"
+msgstr "N~ame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Events"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Events"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.tabpage.text"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MAILNEWS.fixedline.text
+msgid "Mail & news"
+msgstr "Mail & news"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_MAIL.radiobutton.text
+msgid "~E-mail"
+msgstr "~E-mail"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_NEWS.radiobutton.text
+msgid "~News"
+msgstr "~News"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_RECEIVER.fixedtext.text
+msgid "Re~cipient"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_SUBJECT.fixedtext.text
+msgid "~Subject"
+msgstr "~Subject"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.text"
+msgid "Data Sources..."
+msgstr "Data Sources..."
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_ADRESSBOOK.imagebutton.quickhelptext"
+msgid "Data Sources..."
+msgstr "Data Sources..."
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MORE.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MORE.fixedline.text"
+msgid "Further settings"
+msgstr "Further settings"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FRAME.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FRAME.fixedtext.text"
+msgid "F~rame"
+msgstr "F~rame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FORM.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "F~orm"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.1.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.1.stringlist.text"
+msgid "Text"
+msgstr "Text"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.2.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM.2.stringlist.text"
+msgid "Button"
+msgstr "Button"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_INDICATION.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_INDICATION.fixedtext.text"
+msgid "Te~xt"
+msgstr "Te~xt"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_TEXT.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_TEXT.fixedtext.text"
+msgid "N~ame"
+msgstr "N~ame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Events"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Events"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.tabpage.text"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_DOCUMENT.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_DOCUMENT.fixedline.text"
+msgid "Document"
+msgstr "Document"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_PATH_DOC.fixedtext.text
+msgid "~Path"
+msgstr "~Path"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_FILEOPEN.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_FILEOPEN.imagebutton.text"
+msgid "Open File"
+msgstr "Open File"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_FILEOPEN.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_FILEOPEN.imagebutton.quickhelptext"
+msgid "Open File"
+msgstr "Open File"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_TARGET.fixedline.text
+msgid "Target in document"
+msgstr "Target in document"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_TARGET_DOC.fixedtext.text
+msgid "Targ~et"
+msgstr "Targ~et"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_URL.fixedtext.text
+msgid "URL"
+msgstr "URL"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FULL_URL.fixedtext.text
+msgid "Test text"
+msgstr "Test text"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_BROWSE.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_BROWSE.imagebutton.text"
+msgid "Target in Document"
+msgstr "Target in Document"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_BROWSE.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_BROWSE.imagebutton.quickhelptext"
+msgid "Target in Document"
+msgstr "Target in Document"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_MORE.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_MORE.fixedline.text"
+msgid "Further settings"
+msgstr "Further settings"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FRAME.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FRAME.fixedtext.text"
+msgid "F~rame"
+msgstr "F~rame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FORM.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "F~orm"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM.1.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM.1.stringlist.text"
+msgid "Text"
+msgstr "Text"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM.2.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM.2.stringlist.text"
+msgid "Button"
+msgstr "Button"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_INDICATION.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_INDICATION.fixedtext.text"
+msgid "Te~xt"
+msgstr "Te~xt"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_TEXT.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_TEXT.fixedtext.text"
+msgid "N~ame"
+msgstr "N~ame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Events"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Events"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.tabpage.text"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.GRP_NEWDOCUMENT.fixedline.text
+msgid "New document"
+msgstr "New document"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.RB_EDITNOW.radiobutton.text
+msgid "Edit ~now"
+msgstr "Edit ~now"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.RB_EDITLATER.radiobutton.text
+msgid "Edit ~later"
+msgstr "Edit ~later"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_PATH_NEWDOC.fixedtext.text
+msgid "~File"
+msgstr "~File"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_DOCUMENT_TYPES.fixedtext.text
+msgid "File ~type"
+msgstr "File ~type"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_CREATE.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_CREATE.imagebutton.text"
+msgid "Select Path"
+msgstr "Select Path"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_CREATE.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_CREATE.imagebutton.quickhelptext"
+msgid "Select Path"
+msgstr "Select Path"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.GRP_MORE.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.GRP_MORE.fixedline.text"
+msgid "Further settings"
+msgstr "Further settings"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FRAME.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FRAME.fixedtext.text"
+msgid "F~rame"
+msgstr "F~rame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FORM.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "F~orm"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM.1.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM.1.stringlist.text"
+msgid "Text"
+msgstr "Text"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM.2.stringlist.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM.2.stringlist.text"
+msgid "Button"
+msgstr "Button"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_INDICATION.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_INDICATION.fixedtext.text"
+msgid "Te~xt"
+msgstr "Te~xt"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_TEXT.fixedtext.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_TEXT.fixedtext.text"
+msgid "N~ame"
+msgstr "N~ame"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr "Events"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr "Events"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.tabpage.text"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#: hyperdlg.src#RID_SVXDLG_NEWHYPERLINK.modaldialog.text
+msgctxt "hyperdlg.src#RID_SVXDLG_NEWHYPERLINK.modaldialog.text"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_APPLYBUT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPDLG_APPLYBUT.string.text"
+msgid "Apply"
+msgstr "Apply"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_CLOSEBUT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPDLG_CLOSEBUT.string.text"
+msgid "Close"
+msgstr "Close"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT1.string.text
+msgid "Mouse over object"
+msgstr "Mouse over object"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT2.string.text
+msgid "Trigger hyperlink"
+msgstr "Trigger hyperlink"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT3.string.text
+msgid "Mouse leaves object"
+msgstr "Mouse leaves object"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_NOVALIDFILENAME.string.text
+msgid "Please type in a valid file name."
+msgstr "Please type in a valid file name."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLINETTP.string.text
+msgid "Internet"
+msgstr "Internet"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLINETTP_HELP.string.text
+#, fuzzy
+msgid "This is where you create a hyperlink to a Web page or FTP server connection."
+msgstr "This is where you create a hyperlink to a Web page, FTP server or Telnet connection."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLMAILTP.string.text
+msgid "Mail & News"
+msgstr "Mail & News"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLMAILTP_HELP.string.text
+msgid "This is where you create a hyperlink to an e-mail address or newsgroup."
+msgstr "This is where you create a hyperlink to an e-mail address or newsgroup."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP.string.text"
+msgid "Document"
+msgstr "Document"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP_HELP.string.text
+msgid "This is where you create a hyperlink to an existing document or a target within a document."
+msgstr "This is where you create a hyperlink to an existing document or a target within a document."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCNTP.string.text
+msgid "New Document"
+msgstr "New Document"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP.string.text
+msgid "This is where you create a new document to which the new link points."
+msgstr "This is where you create a new document to which the new link points."
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_FORM_BUTTON.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_FORM_BUTTON.string.text"
+msgid "Button"
+msgstr "Button"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_FROM_TEXT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_FROM_TEXT.string.text"
+msgid "Text"
+msgstr "Text"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_QUERYOVERWRITE.string.text
+msgid "The file already exists. Overwrite?"
+msgstr "The file already exists. Overwrite?"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_FONT.fixedtext.text
+msgid "~Font"
+msgstr "~Font"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_SUBSET.fixedtext.text
+msgid "~Subset"
+msgstr "~Subset"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_SYMBOLE.fixedtext.text
+msgid "Characters:"
+msgstr "Characters:"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.BTN_DELETE.pushbutton.text
+msgctxt "charmap.src#RID_SVXDLG_CHARMAP.BTN_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.modaldialog.text
+msgid "Special Characters"
+msgstr "Special Characters"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_APPLY.pushbutton.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_APPLY.pushbutton.text"
+msgid "Apply"
+msgstr "Apply"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_CLOSE.pushbutton.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_CLOSE.pushbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.modaldialog.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.modaldialog.text"
+msgid "Target in Document"
+msgstr "Target in Document"
+
+#: hlmarkwn.src#RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES.string.text
+msgid "Targets do not exist in the document."
+msgstr "Targets do not exist in the document."
+
+#: hlmarkwn.src#RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN.string.text
+msgid "Couldn't open the document."
+msgstr "Couldn't open the document."
+
+#: hlmarkwn.src#STR_MARK_TREE.string.text
+msgid "Mark Tree"
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_TXT_SCRIPTS.fixedtext.text
+msgid "~Macros"
+msgstr "~Macros"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_CTRL_SCRIPTSBOX.STR_MYMACROS.string.text
+msgid "My Macros"
+msgstr "My Macros"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_CTRL_SCRIPTSBOX.STR_PRODMACROS.string.text
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Macros"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_RUN.pushbutton.text
+msgid "R~un"
+msgstr "R~un"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CLOSE.cancelbutton.text
+msgctxt "scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CREATE.pushbutton.text
+msgid "~Create..."
+msgstr "~Create..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_EDIT.pushbutton.text
+msgid "~Edit"
+msgstr "~Edit"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_RENAME.pushbutton.text
+msgid "Rename..."
+msgstr "Rename..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_DEL.pushbutton.text
+msgid "~Delete..."
+msgstr "~Delete..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.modaldialog.text
+msgid "%MACROLANG Macros"
+msgstr "%MACROLANG Macros"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.FT_NEWLIB.fixedtext.text
+msgid "Enter the name for the new library."
+msgstr "Enter the name for the new library."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_NEWLIB.string.text
+msgctxt "scriptdlg.src#RID_DLG_NEWLIB.STR_NEWLIB.string.text"
+msgid "Create Library"
+msgstr "Create Library"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_NEWMACRO.string.text
+msgid "Create Macro"
+msgstr "Create Macro"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_FT_NEWMACRO.string.text
+msgid "Enter the name for the new macro."
+msgstr "Enter the name for the new macro."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_RENAME.string.text
+msgid "Rename"
+msgstr "Rename"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_FT_RENAME.string.text
+msgid "Enter the new name for the selected object."
+msgstr "Enter the new name for the selected object."
+
+#: scriptdlg.src#RID_DLG_NEWLIB.modaldialog.text
+msgctxt "scriptdlg.src#RID_DLG_NEWLIB.modaldialog.text"
+msgid "Create Library"
+msgstr "Create Library"
+
+#: scriptdlg.src#RID_SVXSTR_DELQUERY.string.text
+msgid "Do you want to delete the following object?"
+msgstr "Do you want to delete the following object?"
+
+#: scriptdlg.src#RID_SVXSTR_DELQUERY_TITLE.string.text
+msgid "Confirm Deletion"
+msgstr "Confirm Deletion"
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILED.string.text
+msgid "The selected object could not be deleted."
+msgstr "The selected object could not be deleted."
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILEDPERM.string.text
+msgid " You do not have permission to delete this object."
+msgstr " You do not have permission to delete this object."
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILED_TITLE.string.text
+msgid "Error Deleting Object"
+msgstr "Error Deleting Object"
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILED.string.text
+msgid "The object could not be created."
+msgstr "The object could not be created."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILEDDUP.string.text
+msgid " Object with the same name already exists."
+msgstr " Object with the same name already exists."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILEDPERM.string.text
+msgid " You do not have permission to create this object."
+msgstr " You do not have permission to create this object."
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILED_TITLE.string.text
+msgid "Error Creating Object"
+msgstr "Error Creating Object"
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILED.string.text
+msgid "The object could not be renamed."
+msgstr "The object could not be renamed."
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILEDPERM.string.text
+msgid " You do not have permission to rename this object."
+msgstr " You do not have permission to rename this object."
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILED_TITLE.string.text
+msgid "Error Renaming Object"
+msgstr "Error Renaming Object"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_TITLE.string.text
+msgid "%PRODUCTNAME Error"
+msgstr "%PRODUCTNAME Error"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED.string.text
+msgid "The scripting language %LANGUAGENAME is not supported."
+msgstr "The scripting language %LANGUAGENAME is not supported."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_RUNNING.string.text
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+
+#: scriptdlg.src#RID_SVXSTR_EXCEPTION_RUNNING.string.text
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_AT_LINE.string.text
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_EXCEPTION_AT_LINE.string.text
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_FRAMEWORK_ERROR_RUNNING.string.text
+msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+
+#: scriptdlg.src#RID_SVXSTR_FRAMEWORK_ERROR_AT_LINE.string.text
+msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_TYPE_LABEL.string.text
+msgctxt "scriptdlg.src#RID_SVXSTR_ERROR_TYPE_LABEL.string.text"
+msgid "Type:"
+msgstr "Type:"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_MESSAGE_LABEL.string.text
+msgid "Message:"
+msgstr "Message:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.FT_COLUMNS.fixedtext.text
+msgid "Number of columns:"
+msgstr "Number of columns:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.FT_ROWS.fixedtext.text
+msgid "Number of rows:"
+msgstr "Number of rows:"
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.modaldialog.text
+msgid "Insert Table"
+msgstr "Insert Table"
+
+#: gallery.src#RID_SVXTABDLG_GALLERY.1.RID_SVXTABPAGE_GALLERY_GENERAL.pageitem.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERY.1.RID_SVXTABPAGE_GALLERY_GENERAL.pageitem.text"
+msgid "General"
+msgstr "General"
+
+#: gallery.src#RID_SVXTABDLG_GALLERY.tabdialog.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERY.tabdialog.text"
+msgid "Properties of "
+msgstr "Properties of "
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERY_GENERAL.pageitem.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERY_GENERAL.pageitem.text"
+msgid "General"
+msgstr "General"
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERYTHEME_FILES.pageitem.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERYTHEME_FILES.pageitem.text"
+msgid "Files"
+msgstr "Files"
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.tabdialog.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.tabdialog.text"
+msgid "Properties of "
+msgstr "Properties of "
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_TYPE.fixedtext.text
+msgctxt "gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_TYPE.fixedtext.text"
+msgid "Type:"
+msgstr "Type:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_PATH.fixedtext.text
+msgid "Location:"
+msgstr "Location:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_CONTENT.fixedtext.text
+msgid "Contents:"
+msgstr "Contents:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_CHANGEDATE.fixedtext.text
+msgid "Modified:"
+msgstr "Modified:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.FT_FILETYPE.fixedtext.text
+msgid "~File type"
+msgstr "~File type"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_SEARCH.pushbutton.text
+msgid "~Find Files..."
+msgstr "~Find Files..."
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKE.pushbutton.text
+msgctxt "gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKE.pushbutton.text"
+msgid "~Add"
+msgstr "~Add"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKEALL.pushbutton.text
+msgid "A~dd All"
+msgstr "A~dd All"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.CBX_PREVIEW.checkbox.text
+msgid "Pr~eview"
+msgstr "Pr~eview"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_MADDIN1.pushbutton.text
+msgid "Maddin1"
+msgstr "Maddin1"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_MADDIN2.pushbutton.text
+msgid "Maddin2"
+msgstr "Maddin2"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TITLE.FL_TITLE.fixedline.text
+msgid "Title"
+msgstr "Title"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TITLE.modaldialog.text
+msgid "Enter Title"
+msgstr "Enter Title"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.FL_SEARCH_DIR.fixedline.text
+msgid "Directory"
+msgstr "Directory"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.FL_SEARCH_TYPE.fixedline.text
+msgid "File type"
+msgstr "File type"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.modaldialog.text
+msgid "Find"
+msgstr "Find"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.FL_TAKE_PROGRESS.fixedline.text
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.FL_TAKE_PROGRESS.fixedline.text"
+msgid "File"
+msgstr "File"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.modaldialog.text
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.modaldialog.text"
+msgid "Apply"
+msgstr "Apply"
+
+#: gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.FL_ACTUALIZE_PROGRESS.fixedline.text
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.FL_ACTUALIZE_PROGRESS.fixedline.text"
+msgid "File"
+msgstr "File"
+
+#: gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.modaldialog.text
+msgid "Update"
+msgstr "Update"
+
+#: gallery.src#RID_SVXDLG_GALLERY_THEMEID.FL_ID.fixedline.text
+msgid "ID"
+msgstr "ID"
+
+#: gallery.src#RID_SVXDLG_GALLERY_THEMEID.modaldialog.text
+msgid "Theme ID"
+msgstr "Theme ID"
+
+#: gallery.src#RID_SVXSTR_GALLERY_NOFILES.string.text
+msgid "<No Files>"
+msgstr "<No Files>"
+
+#: gallery.src#RID_SVXSTR_GALLERY_SEARCH.string.text
+msgid "Do you want to update the file list?"
+msgstr "Do you want to update the file list?"
+
+#: gallery.src#RID_SVXSTR_GALLERYPROPS_OBJECT.string.text
+msgid "Object;Objects"
+msgstr "Object;Objects"
+
+#: gallery.src#RID_SVXSTR_GALLERY_READONLY.string.text
+#, fuzzy
+msgid "(read-only)"
+msgstr " (read-only)"
+
+#: gallery.src#RID_SVXSTR_GALLERY_ALLFILES.string.text
+msgid "<All Files>"
+msgstr "<All Files>"
+
+#: gallery.src#RID_SVXSTR_GALLERY_ID_EXISTS.string.text
+msgid "This ID already exists..."
+msgstr "This ID already exists..."
+
+#: tbxform.src#RID_SVX_DLG_INPUTRECORDNO.1.fixedtext.text
+msgid "go to record"
+msgstr "go to record"
+
+#: tbxform.src#RID_SVX_DLG_INPUTRECORDNO.modaldialog.text
+msgid "Record Number"
+msgstr "Record Number"
+
+#: showcols.src#RID_SVX_DLG_SHOWGRIDCOLUMNS.1.fixedtext.text
+msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
+msgstr "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
+
+#: showcols.src#RID_SVX_DLG_SHOWGRIDCOLUMNS.modaldialog.text
+msgid "Show columns"
+msgstr "Show columns"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.FL_MULTIPATH.fixedline.text
+msgid "Paths"
+msgstr "Paths"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.FT_RADIOBUTTON.fixedtext.text
+msgid "Mark the default path for new files."
+msgstr "Mark the default path for new files."
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.BTN_ADD_MULTIPATH.pushbutton.text
+msgid "~Add..."
+msgstr "~Add..."
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.BTN_DEL_MULTIPATH.pushbutton.text
+msgctxt "multipat.src#RID_SVXDLG_MULTIPATH.BTN_DEL_MULTIPATH.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.STR_HEADER_PATHS.string.text
+msgid "Path list"
+msgstr "Path list"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.modaldialog.text
+msgid "Select Paths"
+msgstr "Select Paths"
+
+#: multipat.src#RID_MULTIPATH_DBL_ERR.string.text
+msgid "The path %1 already exists."
+msgstr "The path %1 already exists."
+
+#: multipat.src#RID_SVXSTR_FILE_TITLE.string.text
+msgid "Select files"
+msgstr "Select files"
+
+#: multipat.src#RID_SVXSTR_FILE_HEADLINE.string.text
+msgctxt "multipat.src#RID_SVXSTR_FILE_HEADLINE.string.text"
+msgid "Files"
+msgstr "Files"
+
+#: multipat.src#RID_SVXSTR_ARCHIVE_TITLE.string.text
+msgid "Select Archives"
+msgstr "Select Archives"
+
+#: multipat.src#RID_SVXSTR_ARCHIVE_HEADLINE.string.text
+msgid "Archives"
+msgstr "Archives"
+
+#: multipat.src#RID_SVXSTR_MULTIFILE_DBL_ERR.string.text
+msgid "The file %1 already exists."
+msgstr "The file %1 already exists."
+
+#: svuidlg.src#MD_PASTE_OBJECT.FT_SOURCE.fixedtext.text
+msgid "Source:"
+msgstr "Source:"
+
+#: svuidlg.src#MD_PASTE_OBJECT.RB_PASTE.radiobutton.text
+msgid "~Insert as"
+msgstr "~Insert as"
+
+#: svuidlg.src#MD_PASTE_OBJECT.RB_PASTE_LINK.radiobutton.text
+msgid "Link to"
+msgstr "Link to"
+
+#: svuidlg.src#MD_PASTE_OBJECT.CB_DISPLAY_AS_ICON.checkbox.text
+msgid "~As icon"
+msgstr "~As icon"
+
+#: svuidlg.src#MD_PASTE_OBJECT.PB_CHANGE_ICON.pushbutton.text
+msgid "~Other Icon..."
+msgstr "~Other Icon..."
+
+#: svuidlg.src#MD_PASTE_OBJECT.FL_CHOICE.fixedline.text
+msgid "Selection"
+msgstr "Selection"
+
+#: svuidlg.src#MD_PASTE_OBJECT.S_OBJECT.string.text
+msgid "Object"
+msgstr "Object"
+
+#: svuidlg.src#MD_PASTE_OBJECT.modaldialog.text
+msgid "Paste Special"
+msgstr "Paste Special"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES.fixedtext.text"
+msgid "Source file"
+msgstr "Source file"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_LINKS.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_LINKS.fixedtext.text"
+msgid "Element:"
+msgstr "Element:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE.fixedtext.text
+msgid "Type"
+msgstr "Type"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_STATUS.fixedtext.text
+msgid "Status"
+msgstr "Status"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.1.cancelbutton.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.1.cancelbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_UPDATE_NOW.pushbutton.text
+msgid "~Update"
+msgstr "~Update"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_OPEN_SOURCE.pushbutton.text
+msgid "~Open"
+msgstr "~Open"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_CHANGE_SOURCE.pushbutton.text
+msgid "~Modify..."
+msgstr "~Modify..."
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_BREAK_LINK.pushbutton.text
+msgid "~Break Link"
+msgstr "~Break Link"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES2.fixedtext.text"
+msgid "Source file"
+msgstr "Source file"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_SOURCE2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_SOURCE2.fixedtext.text"
+msgid "Element:"
+msgstr "Element:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE2.fixedtext.text"
+msgid "Type:"
+msgstr "Type:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_UPDATE.fixedtext.text
+msgid "Update:"
+msgstr "Update:"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.RB_AUTOMATIC.radiobutton.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.RB_AUTOMATIC.radiobutton.text"
+msgid "~Automatic"
+msgstr "~Automatic"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.RB_MANUAL.radiobutton.text
+msgid "Ma~nual"
+msgstr "Ma~nual"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_AUTOLINK.string.text
+msgid "Automatic"
+msgstr "Automatic"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_MANUALLINK.string.text
+msgid "Manual"
+msgstr "Manual"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_BROKENLINK.string.text
+msgid "Not available"
+msgstr "Not available"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_GRAPHICLINK.string.text
+msgid "Graphic"
+msgstr "Graphic"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_BUTTONCLOSE.string.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.STR_BUTTONCLOSE.string.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_CLOSELINKMSG.string.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.STR_CLOSELINKMSG.string.text"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "Are you sure you want to remove the selected link?"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_CLOSELINKMSG_MULTI.string.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.STR_CLOSELINKMSG_MULTI.string.text"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "Are you sure you want to remove the selected link?"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_WAITINGLINK.string.text
+msgid "Waiting"
+msgstr "Waiting"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.modaldialog.text
+msgid "Edit Links"
+msgstr "Edit Links"
+
+#: svuidlg.src#MD_LINKEDIT.2.fixedtext.text
+msgid "Exchange source:"
+msgstr "Exchange source:"
+
+#: svuidlg.src#MD_LINKEDIT.ED_FULL_SOURCE_NAME.edit.text
+msgid "Edit"
+msgstr "Edit"
+
+#: svuidlg.src#MD_LINKEDIT.modaldialog.text
+msgid "Modify Link"
+msgstr "Modify Link"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.RB_NEW_OBJECT.radiobutton.text
+msgid "~Create new"
+msgstr "~Create new"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.RB_OBJECT_FROMFILE.radiobutton.text
+msgid "Create from ~file"
+msgstr "Create from ~file"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.BTN_FILEPATH.pushbutton.text
+msgctxt "svuidlg.src#MD_INSERT_OLEOBJECT.BTN_FILEPATH.pushbutton.text"
+msgid "~Search..."
+msgstr "~Search..."
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.CB_FILELINK.checkbox.text
+msgid "~Link to file"
+msgstr "~Link to file"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.GB_OBJECT.fixedline.text
+msgid "Object type"
+msgstr "Object type"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.STR_FILE.string.text
+msgctxt "svuidlg.src#MD_INSERT_OLEOBJECT.STR_FILE.string.text"
+msgid "File"
+msgstr "File"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.modaldialog.text
+msgid "Insert OLE Object"
+msgstr "Insert OLE Object"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.BTN_FILEURL.pushbutton.text
+msgid "~Browse..."
+msgstr "~Browse..."
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_FILEURL.fixedline.text
+msgid "File / URL"
+msgstr "File / URL"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_PLUGINS_OPTIONS.fixedline.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_PLUGINS_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Options"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.modaldialog.text
+msgid "Insert Plug-in"
+msgstr "Insert Plug-in"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.FT_CLASSFILE.fixedtext.text
+msgid "~Class"
+msgstr "~Class"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.FT_CLASSLOCATION.fixedtext.text
+msgid "Class ~Location"
+msgstr "Class ~Location"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.BTN_CLASS.pushbutton.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.BTN_CLASS.pushbutton.text"
+msgid "~Search..."
+msgstr "~Search..."
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_CLASS.fixedline.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_CLASS.fixedline.text"
+msgid "File"
+msgstr "File"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_APPLET_OPTIONS.fixedline.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_APPLET_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Options"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.modaldialog.text
+msgid "Insert Applet"
+msgstr "Insert Applet"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_FRAMENAME.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_FRAMENAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Name"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_URL.fixedtext.text
+msgid "~Contents"
+msgstr "~Contents"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGON.radiobutton.text
+msgid "~On"
+msgstr "~On"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGOFF.radiobutton.text
+msgid "O~ff"
+msgstr "O~ff"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGAUTO.radiobutton.text
+msgid "Au~tomatic"
+msgstr "Au~tomatic"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_SCROLLING.fixedline.text
+msgid "Scroll bar"
+msgstr "Scroll bar"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_FRMBORDER_ON.radiobutton.text
+msgid "On"
+msgstr "On"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_FRMBORDER_OFF.radiobutton.text
+msgid "Off"
+msgstr "Off"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_BORDER.fixedline.text
+msgid "Border"
+msgstr "Border"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINWIDTH.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINWIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Width"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.CB_MARGINWIDTHDEFAULT.checkbox.text
+msgid "~Default"
+msgstr "~Default"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINHEIGHT.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINHEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "H~eight"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.CB_MARGINHEIGHTDEFAULT.checkbox.text
+msgid "Defa~ult"
+msgstr "Defa~ult"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_MARGIN.fixedline.text
+msgid "Spacing to contents"
+msgstr "Spacing to contents"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.modaldialog.text
+msgid "Floating Frame Properties"
+msgstr "Floating Frame Properties"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.string.text
+msgid "Select File for Floating Frame"
+msgstr "Select File for Floating Frame"
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VERSION.string.text
+msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_DESCRIPTION.string.text
+msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_VENDOR.string.text
+msgid "This release was supplied by %OOOVENDOR"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_COPYRIGHT.string.text
+msgid "Copyright © 2000 - 2012 LibreOffice contributors and/or their affiliates"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED.string.text
+msgid "LibreOffice was based on OpenOffice.org"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BASED_DERIVED.string.text
+msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_BUILD.string.text
+msgid "(Build ID: $BUILDID)"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_STR_LINK_CREDITS.string.text
+msgid "http://www.libreoffice.org/about-us/credits/"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CREDITS.pushbutton.text
+msgid "Credits"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_WEBSITE.pushbutton.text
+msgid "Website"
+msgstr ""
+
+#: about.src#RID_DEFAULTABOUT.ABOUT_BTN_CANCEL.cancelbutton.text
+msgctxt "about.src#RID_DEFAULTABOUT.ABOUT_BTN_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.modaldialog.text
+msgid "Color Picker"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.PB_PICKER.imagebutton.text
+msgid "-"
+msgstr "-"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.PB_PICKER.imagebutton.quickhelptext
+msgid "Pick a color from the document"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.FL_RGB.fixedline.text
+msgid "RGB"
+msgstr "RGB"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_RED.fixedtext.text
+msgid "~Red"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_GREEN.fixedtext.text
+msgid "~Green"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_BLUE.fixedtext.text
+msgid "~Blue"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_HEX.fixedtext.text
+msgid "Hex ~#"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.FL_HSB.fixedline.text
+msgid "HSB"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_HUE.fixedtext.text
+msgid "H~ue"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_SATURATION.fixedtext.text
+msgid "~Saturation"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_BRIGHTNESS.fixedtext.text
+msgid "Bright~ness"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.FL_CMYK.fixedline.text
+msgid "CMYK"
+msgstr "CMYK"
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_CYAN.fixedtext.text
+msgid "~Cyan"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_MAGENTA.fixedtext.text
+msgid "~Magenta"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_YELLOW.fixedtext.text
+msgid "~Yellow"
+msgstr ""
+
+#: colorpicker.src#RID_CUI_DIALOG_COLORPICKER.CT_KEY.fixedtext.text
+msgid "~Key"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_LANGUAGE.fixedtext.text
+msgid "Text languag~e"
+msgstr "Text languag~e"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.LINK_EXPLAIN.fixedtext.text
+msgid "More..."
+msgstr "More..."
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_NOTINDICT.fixedtext.text
+msgid "~Not in dictionary"
+msgstr "~Not in dictionary"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_SUGGESTION.fixedtext.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_SUGGESTION.fixedtext.text"
+msgid "~Suggestions"
+msgstr "~Suggestions"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.CB_CHECK_GRAMMAR.checkbox.text
+msgid "Check ~grammar"
+msgstr "Check ~grammar"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNORE.pushbutton.text
+msgid "~Ignore Once"
+msgstr "~Ignore Once"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNOREALL.pushbutton.text
+msgid "I~gnore All"
+msgstr "I~gnore All"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNORERULE.pushbutton.text
+msgid "I~gnore Rule"
+msgstr "I~gnore Rule"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.MB_ADDTODICT.menubutton.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.MB_ADDTODICT.menubutton.text"
+msgid "~Add"
+msgstr "~Add"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_ADDTODICT.pushbutton.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_ADDTODICT.pushbutton.text"
+msgid "~Add"
+msgstr "~Add"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CHANGE.pushbutton.text
+msgid "~Change"
+msgstr "~Change"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CHANGEALL.pushbutton.text
+msgid "Change A~ll"
+msgstr "Change A~ll"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_AUTOCORR.pushbutton.text
+msgid "AutoCor~rect"
+msgstr "AutoCor~rect"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_OPTIONS.pushbutton.text
+msgid "O~ptions..."
+msgstr "O~ptions..."
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_UNDO.pushbutton.text
+msgid "~Undo"
+msgstr "~Undo"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CLOSE.pushbutton.text
+msgid "Cl~ose"
+msgstr "Cl~ose"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_RESUME.string.text
+msgid "Resu~me"
+msgstr "Resu~me"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_NOSUGGESTIONS.string.text
+msgid "(no suggestions)"
+msgstr "(no suggestions)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING.string.text
+msgid "Spelling: $LANGUAGE ($LOCATION)"
+msgstr "Spelling: $LANGUAGE ($LOCATION)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING_AND_GRAMMAR.string.text
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
+msgstr "Spelling and Grammar: $LANGUAGE ($LOCATION)"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING_AND_GRAMMAR_VENDORNAME.string.text
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
+msgstr "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.modelessdialog.text
+msgid "Spellcheck: "
+msgstr "Spellcheck: "
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parameters"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_FT_WIDTH.fixedtext.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Width"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_WIDTH.metricfield.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_WIDTH.metricfield.text"
+msgid " Pixel"
+msgstr ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_FT_HEIGHT.fixedtext.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "H~eight"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_HEIGHT.metricfield.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_MTR_HEIGHT.metricfield.text"
+msgid " Pixel"
+msgstr ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.DLG_FILTERMOSAIC_CBX_EDGES.checkbox.text
+msgid "E~nhance edges"
+msgstr "E~nhance edges"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.modaldialog.text
+msgid "Mosaic"
+msgstr "Mosaic"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parameters"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.DLG_FILTERSOLARIZE_FT_THRESHOLD.fixedtext.text
+msgid "Threshold ~value"
+msgstr "Threshold ~value"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.DLG_FILTERSOLARIZE_CBX_INVERT.checkbox.text
+msgid "~Invert"
+msgstr "~Invert"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.modaldialog.text
+msgid "Solarization"
+msgstr "Solarization"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parameters"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.DLG_FILTERSEPIA_FT_SEPIA.fixedtext.text
+msgid "Aging degree"
+msgstr "Aging degree"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.modaldialog.text
+msgid "Aging"
+msgstr "Aging"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parameters"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.DLG_FILTERPOSTER_FT_POSTER.fixedtext.text
+msgid "Poster colors"
+msgstr "Poster colours"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.modaldialog.text
+msgid "Posterize"
+msgstr "Posterize"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.FL_PARAMETER.fixedline.text
+msgctxt "grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.FL_PARAMETER.fixedline.text"
+msgid "Parameters"
+msgstr "Parameters"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.DLG_FILTEREMBOSS_FT_LIGHT.fixedtext.text
+msgid "Light source"
+msgstr "Light source"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.modaldialog.text
+msgid "Relief"
+msgstr "Relief"
+
+#: dlgname.src#RID_SVXDLG_NAME.modaldialog.text
+msgctxt "dlgname.src#RID_SVXDLG_NAME.modaldialog.text"
+msgid "Name"
+msgstr "Name"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_NAME.NTD_FT_NAME.fixedtext.text
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_NAME.NTD_FT_NAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Name"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_NAME.modaldialog.text
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_NAME.modaldialog.text"
+msgid "Name"
+msgstr "Name"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_TITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Title"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_DESC.fixedtext.text
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_DESC.fixedtext.text"
+msgid "~Description"
+msgstr "~Description"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.modaldialog.text
+msgid "Description"
+msgstr "Description"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
+msgid "Font"
+msgstr "Font"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text"
+msgid "Font Effects"
+msgstr "Font Effects"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_POSITION.pageitem.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_POSITION.pageitem.text"
+msgid "Position"
+msgstr "Position"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_TWOLINES.pageitem.text
+msgid "Asian Layout"
+msgstr "Asian Layout"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_STD_PARAGRAPH.pageitem.text
+msgid "Indents & Spacing"
+msgstr "Indents & Spacing"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_ALIGN_PARAGRAPH.pageitem.text
+msgid "Alignment"
+msgstr "Alignment"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_EXT_PARAGRAPH.pageitem.text
+msgid "Text Flow"
+msgstr "Text Flow"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_PARA_ASIAN.pageitem.text
+msgid "Asian Typography"
+msgstr "Asian Typography"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_BACKGROUND.pageitem.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_BACKGROUND.pageitem.text"
+msgid "Background"
+msgstr "Background"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.tabdialog.text
+msgid "Text Format"
+msgstr "Text Format"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHATTR.FL_ATTR.fixedtext.text
+msgid "~Options"
+msgstr "~Options"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHATTR.modaldialog.text
+msgid "Attributes"
+msgstr "Attributes"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_OTHER.fixedtext.text
+msgid "~Exchange characters"
+msgstr "~Exchange characters"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_LONGER.fixedtext.text
+msgid "~Add characters"
+msgstr "~Add characters"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_SHORTER.fixedtext.text
+msgid "~Remove characters"
+msgstr "~Remove characters"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.CB_RELAX.checkbox.text
+msgid "~Combine"
+msgstr "~Combine"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FL_SIMILARITY.fixedline.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FL_SIMILARITY.fixedline.text"
+msgid "Settings"
+msgstr "Settings"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.modaldialog.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.modaldialog.text"
+msgid "Similarity Search"
+msgstr "Similarity Search"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
+msgctxt "sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
+msgid "Font"
+msgstr "Font"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text
+msgctxt "sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_EFFECTS.pageitem.text"
+msgid "Font Effects"
+msgstr "Font Effects"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_BORDER.pageitem.text
+msgid "Borders"
+msgstr "Borders"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_AREA.pageitem.text
+msgctxt "sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_AREA.pageitem.text"
+msgid "Background"
+msgstr "Background"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.pushbutton.text
+msgid "Return"
+msgstr "Return"
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.tabdialog.text
+msgid "Format Cells"
+msgstr "Format Cells"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_URL1.fixedtext.text
+msgid "~URL"
+msgstr "~URL"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_TARGET.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_TARGET.fixedtext.text"
+msgid "F~rame"
+msgstr "F~rame"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_NAME.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_NAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Name"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_URLDESCRIPTION.fixedtext.text
+msgid "Alternative ~text"
+msgstr "Alternative ~text"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_DESCRIPTION.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_DESCRIPTION.fixedtext.text"
+msgid "~Description"
+msgstr "~Description"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.modaldialog.text
+msgid "Properties"
+msgstr "Properties"
+
+#: insrc.src#DLG_INS_ROW_COL.CB_POS_BEFORE.radiobutton.text
+msgid "~Before"
+msgstr "~Before"
+
+#: insrc.src#DLG_INS_ROW_COL.CB_POS_AFTER.radiobutton.text
+msgid "A~fter"
+msgstr "A~fter"
+
+#: insrc.src#DLG_INS_ROW_COL.FL_INS.fixedline.text
+#, fuzzy
+msgid "Insert"
+msgstr "Insert"
+
+#: insrc.src#DLG_INS_ROW_COL.FL_POS.fixedline.text
+msgctxt "insrc.src#DLG_INS_ROW_COL.FL_POS.fixedline.text"
+msgid "Position"
+msgstr "Position"
+
+#: insrc.src#DLG_INS_ROW_COL.FT_COUNT.fixedtext.text
+msgid "~Number"
+msgstr "~Number"
+
+#: insrc.src#DLG_INS_ROW_COL.STR_ROW.string.text
+msgid "Insert Rows"
+msgstr "Insert Rows"
+
+#: insrc.src#DLG_INS_ROW_COL.STR_COL.string.text
+msgid "Insert Columns"
+msgstr ""
+
+#: hyphen.src#RID_SVXSTR_HMERR_CHECKINSTALL.string.text
+msgid ""
+"is not available for spellchecking\n"
+"Please check your installation and install the desired language\n"
+msgstr ""
+"is not available for spellchecking\n"
+"Please check your installation and install the desired language\n"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.FT_WORD.fixedtext.text
+msgctxt "hyphen.src#RID_SVXDLG_HYPHENATE.FT_WORD.fixedtext.text"
+msgid "~Word"
+msgstr "~Word"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CUT.okbutton.text
+msgid "H~yphenate"
+msgstr "H~yphenate"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CONTINUE.pushbutton.text
+msgid "~Skip"
+msgstr "~Skip"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_DELETE.pushbutton.text
+msgid "~Remove"
+msgstr "~Remove"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_ALL.pushbutton.text
+msgid "Hyphenate ~All"
+msgstr "Hyphenate ~All"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CANCEL.cancelbutton.text
+msgctxt "hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.modaldialog.text
+msgid "Hyphenation"
+msgstr "Hyphenation"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_SEARCHFOR.fixedline.text
+msgid "Search for"
+msgstr "Search for"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORTEXT.radiobutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORTEXT.radiobutton.text"
+msgid "~Text"
+msgstr "~Text"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORNULL.radiobutton.text
+msgid "Field content is ~NULL"
+msgstr "Field content is ~NULL"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORNOTNULL.radiobutton.text
+msgid "Field content is not NU~LL"
+msgstr "Field content is not NU~LL"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_WHERE.fixedline.text
+msgid "Where to search"
+msgstr "Where to search"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_FORM.fixedtext.text
+msgid "Form"
+msgstr "Form"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_ALLFIELDS.radiobutton.text
+msgid "All Fields"
+msgstr "All Fields"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SINGLEFIELD.radiobutton.text
+msgid "Single field"
+msgstr "Single field"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_OPTIONS.fixedline.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_OPTIONS.fixedline.text"
+msgid "Settings"
+msgstr "Settings"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_POSITION.fixedtext.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_POSITION.fixedtext.text"
+msgid "Position"
+msgstr "Position"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_USEFORMATTER.checkbox.text
+msgid "Apply field format"
+msgstr "Apply field format"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_CASE.checkbox.text
+msgid "Match case"
+msgstr "Match case"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_BACKWARD.checkbox.text
+msgid "Search backwards"
+msgstr "Search backwards"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_STARTOVER.checkbox.text
+msgid "From Beginning"
+msgstr "From Beginning"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_WILDCARD.checkbox.text
+msgid "Wildcard expression"
+msgstr "Wildcard expression"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_REGULAR.checkbox.text
+msgid "Regular expression"
+msgstr "Regular expression"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_APPROX.checkbox.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_APPROX.checkbox.text"
+msgid "Similarity Search"
+msgstr "Similarity Search"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_APPROXSETTINGS.pushbutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_APPROXSETTINGS.pushbutton.text"
+msgid "..."
+msgstr "..."
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_HALFFULLFORMS.checkbox.text
+msgid "Match character width"
+msgstr "Match character width"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_SOUNDSLIKECJK.checkbox.text
+msgid "Sounds like (Japanese)"
+msgstr "Sounds like (Japanese)"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_SOUNDSLIKESETTINGS.pushbutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_SOUNDSLIKESETTINGS.pushbutton.text"
+msgid "..."
+msgstr "..."
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_STATE.fixedline.text
+msgid "State"
+msgstr "State"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_RECORDLABEL.fixedtext.text
+msgid "Record :"
+msgstr "Record :"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_SEARCH.pushbutton.text
+msgid "Search"
+msgstr "Search"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.1.cancelbutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.1.cancelbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.1.helpbutton.text
+msgid "~Help"
+msgstr "~Help"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.modaldialog.text
+msgid "Record Search"
+msgstr "Record Search"
+
+#: fmsearch.src#RID_STR_SEARCH_ANYWHERE.string.text
+msgid "anywhere in the field"
+msgstr "anywhere in the field"
+
+#: fmsearch.src#RID_STR_SEARCH_BEGINNING.string.text
+msgid "beginning of field"
+msgstr "beginning of field"
+
+#: fmsearch.src#RID_STR_SEARCH_END.string.text
+msgid "end of field"
+msgstr "end of field"
+
+#: fmsearch.src#RID_STR_SEARCH_WHOLE.string.text
+msgid "entire field"
+msgstr "entire field"
+
+#: fmsearch.src#RID_STR_FROM_TOP.string.text
+msgid "From top"
+msgstr "From top"
+
+#: fmsearch.src#RID_STR_FROM_BOTTOM.string.text
+msgid "From bottom"
+msgstr "From bottom"
+
+#: fmsearch.src#RID_SVXERR_SEARCH_NORECORD.errorbox.text
+msgid "No records corresponding to your data found."
+msgstr "No records corresponding to your data found."
+
+#: fmsearch.src#RID_SVXERR_SEARCH_GENERAL_ERROR.errorbox.text
+msgid "An unknown error occurred. The search could not be finished."
+msgstr "An unknown error occurred. The search could not be finished."
+
+#: fmsearch.src#RID_STR_OVERFLOW_FORWARD.string.text
+msgid "Overflow, search continued at the beginning"
+msgstr "Overflow, search continued at the beginning"
+
+#: fmsearch.src#RID_STR_OVERFLOW_BACKWARD.string.text
+msgid "Overflow, search continued at the end"
+msgstr "Overflow, search continued at the end"
+
+#: fmsearch.src#RID_STR_SEARCH_COUNTING.string.text
+msgid "counting records"
+msgstr "counting records"
+
+#: zoom.src#RID_SVXDLG_ZOOM.FL_ZOOM.fixedline.text
+msgid "Zoom factor"
+msgstr "Zoom factor"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_OPTIMAL.radiobutton.text
+msgid "~Optimal"
+msgstr "~Optimal"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_WHOLE_PAGE.radiobutton.text
+msgid "~Fit width and height"
+msgstr "~Fit width and height"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_PAGE_WIDTH.radiobutton.text
+msgid "Fit ~width"
+msgstr "Fit ~width"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_USER.radiobutton.text
+msgid "~Variable"
+msgstr "~Variable"
+
+#: zoom.src#RID_SVXDLG_ZOOM.FL_VIEWLAYOUT.fixedline.text
+msgid "View layout"
+msgstr "View layout"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_AUTOMATIC.radiobutton.text
+msgctxt "zoom.src#RID_SVXDLG_ZOOM.BTN_AUTOMATIC.radiobutton.text"
+msgid "~Automatic"
+msgstr "~Automatic"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_SINGLE.radiobutton.text
+msgid "~Single page"
+msgstr "~Single page"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_COLUMNS.radiobutton.text
+msgid "~Columns"
+msgstr "~Columns"
+
+#: zoom.src#RID_SVXDLG_ZOOM.CHK_BOOK.checkbox.text
+msgid "~Book mode"
+msgstr "~Book mode"
+
+#: zoom.src#RID_SVXDLG_ZOOM.modaldialog.text
+msgid "Zoom & View Layout"
+msgstr "Zoom & View Layout"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FL_FILE_ENCRYPTION.fixedline.text
+msgid "File encryption password"
+msgstr "File encryption password"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_TO_OPEN.fixedtext.text
+msgid "~Enter password to open"
+msgstr "~Enter password to open"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_REENTER_PASSWD_TO_OPEN.fixedtext.text
+msgctxt "passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_REENTER_PASSWD_TO_OPEN.fixedtext.text"
+msgid "Confirm password"
+msgstr "Confirm password"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_NOTE.fixedtext.text
+msgid "Note: After a password has been set, the document will only open with "
+msgstr "Note: After a password has been set, the document will only open with "
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FL_FILE_SHARING_OPTIONS.fixedline.text
+msgid "File sharing password"
+msgstr "File sharing password"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.CB_OPEN_READONLY.checkbox.text
+msgid "Open file read-only"
+msgstr "Open file read-only"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_TO_MODIFY.fixedtext.text
+msgid "Enter password to allow editing"
+msgstr "Enter password to allow editing"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_REENTER_PASSWD_TO_MODIFY.fixedtext.text
+msgctxt "passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_REENTER_PASSWD_TO_MODIFY.fixedtext.text"
+msgid "Confirm password"
+msgstr "Confirm password"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_PASSWD_MUST_BE_CONFIRMED.string.text
+msgid "Password must be confirmed"
+msgstr "Password must be confirmed"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_MORE_OPTIONS.string.text
+msgid "More ~Options"
+msgstr "More ~Options"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_FEWER_OPTIONS.string.text
+msgid "Fewer ~Options"
+msgstr "Fewer ~Options"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_ONE_PASSWORD_MISMATCH.string.text
+msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
+msgstr "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_TWO_PASSWORDS_MISMATCH.string.text
+msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
+msgstr "The confirmation passwords did not match the original passwords. Set the passwords again."
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_INVALID_STATE_FOR_OK_BUTTON.string.text
+msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
+msgstr "Please enter a password to open or to modify, or check the open read-only option to continue."
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.modaldialog.text
+msgid "Set Password"
+msgstr "Set Password"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FT_COUNT.fixedtext.text
+msgid "~Split cell into"
+msgstr "~Split cell into"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FL_COUNT.fixedline.text
+msgid "Split"
+msgstr "Split"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.RB_HORZ.imageradiobutton.text
+msgid "H~orizontally"
+msgstr "H~orizontally"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.CB_PROP.checkbox.text
+msgid "~Into equal proportions"
+msgstr "~Into equal proportions"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.RB_VERT.imageradiobutton.text
+msgid "~Vertically"
+msgstr "~Vertically"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FL_DIR.fixedline.text
+msgid "Direction"
+msgstr "Direction"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.modaldialog.text
+msgid "Split Cells"
+msgstr "Split Cells"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.PB_FIND.pushbutton.text
+msgid "~Find"
+msgstr "~Find"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.FT_FORMAT.fixedtext.text
+msgid "Format"
+msgstr "Format"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_SIMPLE_CONVERSION.radiobutton.text
+msgid "~Hangul/Hanja"
+msgstr "~Hangul/Hanja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_BRACKETED.radiobutton.text
+msgid "Hanja (Han~gul)"
+msgstr "Hanja (Han~gul)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_BRACKETED.radiobutton.text
+msgid "Hang~ul (Hanja)"
+msgstr "Hang~ul (Hanja)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_ABOVE.radiobutton.text
+msgid "Hangu~l"
+msgstr "Hangu~l"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_BELOW.radiobutton.text
+msgid "Hang~ul"
+msgstr "Hang~ul"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_ABOVE.radiobutton.text
+msgid "Han~ja"
+msgstr "Han~ja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_BELOW.radiobutton.text
+msgid "Ha~nja"
+msgstr "Ha~nja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.FT_CONVERSION.fixedtext.text
+msgid "Conversion"
+msgstr "Conversion"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_HANGUL_ONLY.checkbox.text
+msgid "Hangul ~only"
+msgstr "Hangul ~only"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_HANJA_ONLY.checkbox.text
+msgid "Hanja onl~y"
+msgstr "Hanja onl~y"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_REPLACE_BY_CHARACTER.checkbox.text
+msgid "Replace b~y character"
+msgstr "Replace b~y character"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.STR_HANGUL.string.text
+msgid "Hangul"
+msgstr "Hangul"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.STR_HANJA.string.text
+msgid "Hanja"
+msgstr "Hanja"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.modaldialog.text
+msgid "Hangul/Hanja Conversion"
+msgstr "Hangul/Hanja Conversion"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FT_USERDEFDICT.fixedtext.text
+msgid "User-defined dictionaries"
+msgstr "User-defined dictionaries"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FL_OPTIONS.fixedline.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Options"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_IGNOREPOST.checkbox.text
+msgid "Ignore post-positional word"
+msgstr "Ignore post-positional word"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_SHOWRECENTLYFIRST.checkbox.text
+msgid "Show recently used entries first"
+msgstr "Show recently used entries first"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_AUTOREPLACEUNIQUE.checkbox.text
+msgid "Replace all unique entries automatically"
+msgstr "Replace all unique entries automatically"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_NEW.pushbutton.text
+msgid "New..."
+msgstr "New..."
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_EDIT.pushbutton.text
+msgid "Edit..."
+msgstr "Edit..."
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_DELETE.pushbutton.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_DELETE.pushbutton.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.modaldialog.text
+msgid "Hangul/Hanja Options"
+msgstr "Hangul/Hanja Options"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.FL_NEWDICT.fixedline.text
+msgid "Dictionary"
+msgstr "Dictionary"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.FT_DICTNAME.fixedtext.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.FT_DICTNAME.fixedtext.text"
+msgid "~Name"
+msgstr "~Name"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.modaldialog.text
+msgid "New Dictionary"
+msgstr "New Dictionary"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.STR_EDITHINT.string.text
+msgid "[Enter text here]"
+msgstr "[Enter text here]"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_BOOK.fixedtext.text
+msgid "Book"
+msgstr "Book"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_ORIGINAL.fixedtext.text
+msgid "Original"
+msgstr "Original"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_SUGGESTIONS.fixedtext.text
+msgid "Suggestions (max. 8)"
+msgstr "Suggestions (max. 8)"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_NEW.pushbutton.text
+msgid "New"
+msgstr "New"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_DELETE.pushbutton.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_DELETE.pushbutton.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_CLOSE.cancelbutton.text
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.modaldialog.text
+msgid "Edit Custom Dictionary"
+msgstr "Edit Custom Dictionary"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_WORD.fixedtext.text
+msgid "Origi~nal"
+msgstr "Origi~nal"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_NEWWORD.fixedtext.text
+msgctxt "commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_NEWWORD.fixedtext.text"
+msgid "~Word"
+msgstr "~Word"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_SUGGESTION.fixedtext.text
+msgctxt "commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_SUGGESTION.fixedtext.text"
+msgid "~Suggestions"
+msgstr "~Suggestions"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_IGNORE.pushbutton.text
+msgid "~Ignore"
+msgstr "~Ignore"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_IGNOREALL.pushbutton.text
+msgid "Always I~gnore"
+msgstr "Always I~gnore"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_CHANGE.pushbutton.text
+msgid "~Replace"
+msgstr "~Replace"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_CHANGEALL.pushbutton.text
+msgid "Always R~eplace"
+msgstr "Always R~eplace"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_OPTIONS.pushbutton.text
+msgid "Options..."
+msgstr "Options..."
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_SPL_CANCEL.cancelbutton.text
+msgctxt "commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_SPL_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_LASTEDITLABEL.fixedtext.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.FT_LASTEDITLABEL.fixedtext.text"
+msgid "Author"
+msgstr "Author"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_EDIT.fixedtext.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.FT_EDIT.fixedtext.text"
+msgid "~Text"
+msgstr "~Text"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FL_POSTIT.fixedline.text
+msgid "Contents"
+msgstr "Contents"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_AUTHOR.fixedtext.text
+msgid "~Insert"
+msgstr "~Insert"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.BTN_AUTHOR.pushbutton.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.BTN_AUTHOR.pushbutton.text"
+msgid "Author"
+msgstr "Author"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.STR_NOTIZ_EDIT.string.text
+msgid "Edit Comment"
+msgstr ""
+
+#: postdlg.src#RID_SVXDLG_POSTIT.STR_NOTIZ_INSERT.string.text
+msgid "Insert Comment"
+msgstr ""
+
+#: postdlg.src#RID_SVXDLG_POSTIT.modaldialog.text
+msgid "Comment"
+msgstr ""
+
+#: iconcdlg.src#RID_SVXSTR_ICONCHOICEDLG_RESETBUT.string.text
+msgid "~Back"
+msgstr "~Back"
diff --git a/source/en-ZA/cui/source/options.po b/source/en-ZA/cui/source/options.po
new file mode 100644
index 00000000000..0860d0d1c97
--- /dev/null
+++ b/source/en-ZA/cui/source/options.po
@@ -0,0 +1,2860 @@
+#. extracted from cui/source/options.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Foptions.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-16 13:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COMPANY.fixedtext.text
+msgid "~Company"
+msgstr "~Company"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME.fixedtext.text
+msgid "First/Last ~name/Initials"
+msgstr "First/Sur~name/Initials"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME_RUSS.fixedtext.text
+msgid "Last Name/First name/Father's name/Initials"
+msgstr "Last Name/First name/Father's name/Initials"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME_EASTERN.fixedtext.text
+msgid "Last/First ~name/Initials"
+msgstr "Last/First ~name/Initials"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_STREET.fixedtext.text
+msgid "~Street"
+msgstr "~Street"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_STREET_RUSS.fixedtext.text
+msgid "Street/Apartment number"
+msgstr "Street/Apartment number"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_CITY.fixedtext.text
+msgid "Zip/City"
+msgstr "Postal code/City"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COUNTRY.fixedtext.text
+msgid "Country/Region"
+msgstr "Country/Region"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_TITLEPOS.fixedtext.text
+msgid "~Title/Position"
+msgstr "~Title/Position"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_PHONE.fixedtext.text
+msgid "Tel. (Home/Work)"
+msgstr "Tel. (Home/Work)"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_FAXMAIL.fixedtext.text
+msgid "Fa~x / E-mail"
+msgstr "Fa~x / E-mail"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.GB_ADDRESS.fixedline.text
+msgid "Address "
+msgstr "Address "
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.CB_USEDATA.checkbox.text
+msgid "Use data for document properties"
+msgstr "Use data for document properties"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.STR_US_STATE.string.text
+msgid "City/State/Zip"
+msgstr "City/Province/Postal code"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.STR_QUERY_REG.string.text
+msgid "Note that street, Zip code and city are used to generate the registration key. You will not be able to change the user data again until the registration has been carried out. Do you want to modify the user data now?"
+msgstr "Note that street, postal code and city are used to generate the registration key. You will not be able to change the user data again until the registration has been carried out. Do you want to modify the user data now?"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.tabpage.text
+msgctxt "optgenrl.src#RID_SFXPAGE_GENERAL.tabpage.text"
+msgid "User Data"
+msgstr "User Data"
+
+#: optgenrl.src#RID_SVXQB_CHANGEDATA.querybox.text
+msgid ""
+"The User Data have been changed.\n"
+"Note that, if you continue, the registration key will become invalid.\n"
+"Therefore, a new registration key is needed within 30 days.\n"
+"You can find the registration form in the menu Help - Registration...\n"
+"Do you really want to change your User Data?"
+msgstr ""
+"The User Data have been changed.\n"
+"Note that, if you continue, the registration key will become invalid.\n"
+"Therefore, a new registration key is needed within 30 days.\n"
+"You can find the registration form in the menu Help - Registration...\n"
+"Do you really want to change your User Data?"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FL_WARNINGS.fixedline.text
+msgid "Security warnings"
+msgstr "Security warnings"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FI_WARNINGS.fixedtext.text
+msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
+msgstr "Warn if document contains recorded changes, versions, hidden information or notes:"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_SAVESENDDOCS.checkbox.text
+msgid "When saving or sending"
+msgstr "When saving or sending"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_SIGNDOCS.checkbox.text
+msgid "When signing"
+msgstr "When signing"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_PRINTDOCS.checkbox.text
+msgid "When printing"
+msgstr "When printing"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_CREATEPDF.checkbox.text
+msgid "When creating PDF files"
+msgstr "When creating PDF files"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FL_OPTIONS.fixedline.text
+msgid "Security options"
+msgstr "Security options"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_REMOVEINFO.checkbox.text
+msgid "Remove personal information on saving"
+msgstr "Remove personal information on saving"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_RECOMMENDPWD.checkbox.text
+msgid "Recommend password protection on saving"
+msgstr "Recommend password protection on saving"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_CTRLHYPERLINK.checkbox.text
+msgid "Ctrl-click required to follow hyperlinks"
+msgstr "Ctrl-click required to follow hyperlinks"
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.modaldialog.text
+msgctxt "securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.modaldialog.text"
+msgid "Security options and warnings"
+msgstr "Security options and warnings"
+
+#: optsave.src#TEXT_SAVEPAGE.#define.text
+msgctxt "optsave.src#TEXT_SAVEPAGE.#define.text"
+msgid "Save"
+msgstr "Save"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_LOAD.fixedline.text
+msgid "Load"
+msgstr "Load"
+
+#: optsave.src#RID_SFXPAGE_SAVE.CB_LOAD_SETTINGS.checkbox.text
+msgid "Load user-specific settings with the document"
+msgstr "Load user-specific settings with the document"
+
+#: optsave.src#RID_SFXPAGE_SAVE.CB_LOAD_DOCPRINTER.checkbox.text
+msgid "Load printer settings with the document"
+msgstr "Load printer settings with the document"
+
+#: optsave.src#RID_SFXPAGE_SAVE.GB_SAVE.fixedline.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.GB_SAVE.fixedline.text"
+msgid "Save"
+msgstr "Save"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_DOCINFO.checkbox.text
+msgid "~Edit document properties before saving"
+msgstr "~Edit document properties before saving"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_BACKUP.checkbox.text
+msgid "Al~ways create backup copy"
+msgstr "Al~ways create backup copy"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_AUTOSAVE.checkbox.text
+msgid "Save ~AutoRecovery information every"
+msgstr "Save ~AutoRecovery information every"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_MINUTE.fixedtext.text
+msgid "Minutes"
+msgstr "Minutes"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_RELATIVE_FSYS.checkbox.text
+msgid "Save URLs relative to file system"
+msgstr "Save URLs relative to file system"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_RELATIVE_INET.checkbox.text
+msgid "Save URLs relative to internet"
+msgstr "Save URLs relative to internet"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FL_FILTER.fixedline.text
+msgid "Default file format and ODF settings"
+msgstr "Default file format and ODF settings"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_ODF_VERSION.fixedtext.text
+msgid "ODF format version"
+msgstr "ODF format version"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.1.stringlist.text
+msgid "1.0/1.1"
+msgstr "1.0/1.1"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.2.stringlist.text
+msgid "1.2"
+msgstr "1.2"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.3.stringlist.text
+msgid "1.2 Extended (compat mode)"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.4.stringlist.text
+msgid "1.2 Extended (recommended)"
+msgstr "1.2 Extended (recommended)"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_NOPRETTYPRINTING.checkbox.text
+msgid "Size optimization for ODF format"
+msgstr "Size optimisation for ODF format"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_WARNALIENFORMAT.checkbox.text
+msgid "Warn when not saving in ODF or default format"
+msgstr "Warn when not saving in ODF or default format"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_APP.fixedtext.text
+msgid "D~ocument type"
+msgstr "D~ocument type"
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_FILTER.fixedtext.text
+msgid "Always sa~ve as"
+msgstr "Always sa~ve as"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.1.stringlist.text
+msgid "Text document"
+msgstr "Text document"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.2.stringlist.text
+msgid "HTML document"
+msgstr "HTML document"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.3.stringlist.text
+msgid "Master document"
+msgstr "Master document"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.4.stringlist.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.LB_APP.4.stringlist.text"
+msgid "Spreadsheet"
+msgstr "Spreadsheet"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.5.stringlist.text
+msgid "Presentation"
+msgstr "Presentation"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.6.stringlist.text
+msgid "Drawing"
+msgstr "Drawing"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.7.stringlist.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.LB_APP.7.stringlist.text"
+msgid "Formula"
+msgstr "Formula"
+
+#. EN-US, the term 'extended' must not be translated.
+#: optsave.src#RID_SFXPAGE_SAVE.FT_WARN.fixedtext.text
+#, fuzzy
+msgid "Not using ODF 1.2 Extended may cause information to be lost."
+msgstr "Not using ODF 1.2 Extended may cause infomation to be lost."
+
+#: optsave.src#RID_SVXDLG_FILTER_WARNING.FT_FILTER_WARNING.fixedtext.text
+msgid "Using \"%1\" as default file format may cause information loss.\n"
+msgstr "Using \"%1\" as default file format may cause information loss.\n"
+
+#: readonlyimage.src#RID_SVXSTR_READONLY_CONFIG_TIP.string.text
+msgid "This setting is protected by the Administrator"
+msgstr "This setting is protected by the Administrator"
+
+#: optinet2.src#RID_SVXPAGE_INET_MOZPLUGIN.GB_MOZPLUGIN.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_MOZPLUGIN.GB_MOZPLUGIN.fixedline.text"
+msgid "Browser Plug-in"
+msgstr "Browser Plug-in"
+
+#: optinet2.src#RID_SVXPAGE_INET_MOZPLUGIN.CB_MOZPLUGIN_CODE.checkbox.text
+msgid "~Display documents in browser"
+msgstr "~Display documents in browser"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.GB_SETTINGS.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.GB_SETTINGS.fixedline.text"
+msgid "Settings"
+msgstr "Settings"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_PROXYMODE.fixedtext.text
+msgid "Proxy s~erver"
+msgstr "Proxy s~erver"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.1.stringlist.text
+#, fuzzy
+msgid "None"
+msgstr "None"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.2.stringlist.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.2.stringlist.text"
+msgid "System"
+msgstr "System"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.3.stringlist.text
+msgid "Manual"
+msgstr "Manual"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ST_PROXY_FROM_BROWSER.string.text
+msgid "Use browser settings"
+msgstr "Use browser settings"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTP_PROXY.fixedtext.text
+msgid "HT~TP proxy"
+msgstr "HT~TP proxy"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTP_PORT.fixedtext.text
+msgid "~Port"
+msgstr "~Port"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTPS_PROXY.fixedtext.text
+msgid "HTTP~S proxy"
+msgstr "HTTP~S proxy"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTPS_PORT.fixedtext.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTPS_PORT.fixedtext.text"
+msgid "P~ort"
+msgstr "P~ort"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_FTP_PROXY.fixedtext.text
+msgid "~FTP proxy"
+msgstr "~FTP proxy"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_FTP_PORT.fixedtext.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.FT_FTP_PORT.fixedtext.text"
+msgid "P~ort"
+msgstr "P~ort"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_SOCKS_PROXY.fixedtext.text
+msgid "~SOCKS proxy"
+msgstr "~SOCKS proxy"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_SOCKS_PORT.fixedtext.text
+msgid "Po~rt"
+msgstr "Po~rt"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_NOPROXYFOR.fixedtext.text
+msgid "~No proxy for:"
+msgstr "~No proxy for:"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ED_NOPROXYDESC.fixedtext.text
+msgid "Separator ;"
+msgstr "Separator ;"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.GB_DNS.fixedline.text
+msgid "DNS server"
+msgstr "DNS server"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.RB_DNS_AUTO.radiobutton.text
+msgid "~Automatic"
+msgstr "~Automatic"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.RB_DNS_MANUAL.radiobutton.text
+msgid "~Manual"
+msgstr "~Manual"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ST_MSG_255_0.string.text
+msgid "is not a valid entry for this field. Please specify a value between 0 and 255."
+msgstr "is not a valid entry for this field. Please specify a value between 0 and 255."
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ST_MSG_255_1.string.text
+msgid "is not a valid entry for this field. Please specify a value between 1 and 255."
+msgstr "is not a valid entry for this field. Please specify a value between 1 and 255."
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.tabpage.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.tabpage.text"
+msgid "Proxy"
+msgstr "Proxy"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_SECURITYOPTIONS.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_SECURITYOPTIONS.fixedline.text"
+msgid "Security options and warnings"
+msgstr "Security options and warnings"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_SECURITYOPTIONS.fixedtext.text
+msgid "Adjust security related options and define warnings for hidden information in documents."
+msgstr "Adjust security related options and define warnings for hidden information in documents."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_SECURITYOPTIONS.pushbutton.text
+msgid "Options..."
+msgstr "Options..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_PASSWORDS.fixedline.text
+msgid "Passwords for web connections"
+msgstr "Passwords for web connections"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.CB_SEC_SAVEPASSWORDS.checkbox.text
+msgid "Persistently save passwords for web connections"
+msgstr "Persistently save passwords for web connections"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_CONNECTIONS.pushbutton.text
+msgid "Connections..."
+msgstr "Connections..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.CB_SEC_MASTERPASSWORD.checkbox.text
+msgid "Protected by a master password (recommended)"
+msgstr "Protected by a master password (recommended)"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_MASTERPASSWORD.fixedtext.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 "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."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_MASTERPASSWORD.pushbutton.text
+msgid "Master Password..."
+msgstr "Master Password..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_MACROSEC.fixedline.text
+msgid "Macro security"
+msgstr "Macro security"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_MACROSEC.fixedtext.text
+msgid "Adjust the security level for executing macros and specify trusted macro developers."
+msgstr "Adjust the security level for executing macros and specify trusted macro developers."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_MACROSEC.pushbutton.text
+msgid "Macro Security..."
+msgstr "Macro Security..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_CERTPATH.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_CERTPATH.fixedline.text"
+msgid "Certificate Path"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FI_SEC_CERTPATH.fixedtext.text
+msgid "Select the Network Security Services certificate directory to use for digital signatures."
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_CERTPATH.pushbutton.text
+msgid "Certificate..."
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.STR_SEC_NOPASSWDSAVE.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 ""
+"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?"
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.tabpage.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.tabpage.text"
+msgid "Security"
+msgstr "Security"
+
+#: optinet2.src#RID_SVXERR_OPT_PROXYPORTS.errorbox.text
+msgid ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+msgstr ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+
+#: optinet2.src#RID_SVXDLG_OPT_JAVASCRIPT_DISABLE.FT_JSCPT_WARNING.fixedtext.text
+msgid ""
+"Please note that with Java\n"
+"you disable Javascript as well.\n"
+"\n"
+"Do you still want to disable Java?"
+msgstr ""
+"Please note that with Java\n"
+"you disable Javascript as well.\n"
+"\n"
+"Do you still want to disable Java?"
+
+#: optinet2.src#RID_SVXDLG_OPT_JAVASCRIPT_DISABLE.CB_JSCPT_DISABLE.checkbox.text
+msgid "~Don't show warning again"
+msgstr "~Don't show warning again"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.FL_MAIL.fixedline.text
+msgid "Sending documents as e-mail attachments"
+msgstr "Sending documents as e-mail attachments"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.FT_MAILERURL.fixedtext.text
+msgid "~E-mail program"
+msgstr "~E-mail program"
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.STR_DEFAULT_FILENAME.string.text
+msgid "All files"
+msgstr ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.CB_USETABLE.checkbox.text
+msgid "~Apply replacement table"
+msgstr "~Apply replacement table"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONT1.fixedtext.text
+msgid "~Font"
+msgstr "~Font"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONT2.fixedtext.text
+msgid "Re~place with"
+msgstr "Re~place with"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.TBX_SUBSTNEWDEL.BT_SUBSTAPPLY.toolboxitem.text
+msgid "Apply"
+msgstr "Apply"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.TBX_SUBSTNEWDEL.BT_SUBSTDELETE.toolboxitem.text
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.TBX_SUBSTNEWDEL.BT_SUBSTDELETE.toolboxitem.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FL_SOURCEVIEW.fixedline.text
+msgid "Font settings for HTML, Basic and SQL sources"
+msgstr "Font settings for HTML, Basic and SQL sources"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTNAME.fixedtext.text
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTNAME.fixedtext.text"
+msgid "Fonts"
+msgstr "Fonts"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.CB_NONPROP.checkbox.text
+msgid "Non-proportional fonts only"
+msgstr "Non-proportional fonts only"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTHEIGHT.fixedtext.text
+msgid "~Size"
+msgstr "~Size"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER1.string.text
+msgid "Always"
+msgstr "Always"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER2.string.text
+msgid "Screen only"
+msgstr "Screen only"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER3.string.text
+msgid "Font"
+msgstr "Font"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER4.string.text
+msgid "Replace with"
+msgstr "Replace with"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_AUTOMATIC.string.text
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_AUTOMATIC.string.text"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.FT_DICTNAME.fixedtext.text
+#, fuzzy
+msgid "~Name"
+msgstr "~Name"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.FT_DICTLANG.fixedtext.text
+msgctxt "optdict.src#RID_SFXDLG_NEWDICT.FT_DICTLANG.fixedtext.text"
+msgid "~Language"
+msgstr "~Language"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.BTN_EXCEPT.checkbox.text
+msgid "~Exception (-)"
+msgstr "~Exception (-)"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.GB_NEWDICT.fixedline.text
+msgid "Dictionary"
+msgstr "Dictionary"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.modaldialog.text
+msgid "New Dictionary"
+msgstr "New Dictionary"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_BOOK.fixedtext.text
+msgid "~Book"
+msgstr "~Book"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_DICTLANG.fixedtext.text
+msgctxt "optdict.src#RID_SFXDLG_EDITDICT.FT_DICTLANG.fixedtext.text"
+msgid "~Language"
+msgstr "~Language"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_WORD.fixedtext.text
+msgid "~Word"
+msgstr "~Word"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_REPLACE.fixedtext.text
+msgid "Replace ~By:"
+msgstr "Replace ~By:"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.PB_NEW_REPLACE.pushbutton.text
+msgid "~New"
+msgstr "~New"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.PB_DELETE_REPLACE.pushbutton.text
+msgctxt "optdict.src#RID_SFXDLG_EDITDICT.PB_DELETE_REPLACE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.STR_MODIFY.string.text
+msgid "~Replace"
+msgstr "~Replace"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.BTN_EDITCLOSE.cancelbutton.text
+msgid "~Close"
+msgstr "~Close"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.modaldialog.text
+msgid "Edit Custom Dictionary"
+msgstr "Edit Custom Dictionary"
+
+#: optdict.src#RID_SVXSTR_OPT_DOUBLE_DICTS.string.text
+msgid ""
+"The specified name already exists.\n"
+"Please enter a new name."
+msgstr ""
+"The specified name already exists.\n"
+"Please enter a new name."
+
+#: optdict.src#RID_SFXQB_SET_LANGUAGE.querybox.text
+msgid "Do you want to change the '%1' dictionary language?"
+msgstr "Do you want to change the '%1' dictionary language?"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE1.fixedtext.text
+msgid "Size ~1"
+msgstr "Size ~1"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE2.fixedtext.text
+msgid "Size ~2"
+msgstr "Size ~2"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE3.fixedtext.text
+msgid "Size ~3"
+msgstr "Size ~3"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE4.fixedtext.text
+msgid "Size ~4"
+msgstr "Size ~4"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE5.fixedtext.text
+msgid "Size ~5"
+msgstr "Size ~5"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE6.fixedtext.text
+msgid "Size ~6"
+msgstr "Size ~6"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE7.fixedtext.text
+msgid "Size ~7"
+msgstr "Size ~7"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_FONTSIZE.fixedline.text
+msgid "Font sizes"
+msgstr "Font sizes"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_IMPORT.fixedline.text
+msgid "Import"
+msgstr "Import"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_NUMBERS_ENGLISH_US.checkbox.text
+msgid "~Use '%ENGLISHUSLOCALE' locale for numbers"
+msgstr "~Use '%ENGLISHUSLOCALE' locale for numbers"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_UNKNOWN_TAGS.checkbox.text
+msgid "~Import unknown HTML tags as fields"
+msgstr "~Import unknown HTML tags as fields"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_IGNORE_FONTNAMES.checkbox.text
+msgid "Ignore ~font settings"
+msgstr "Ignore ~font settings"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_EXPORT.fixedline.text
+msgid "Export"
+msgstr "Export"
+
+#: opthtml.src#CB_STARBASIC_WARNING.checkbox.text
+msgid "Display ~warning"
+msgstr "Display ~warning"
+
+#: opthtml.src#CB_PRINT_EXTENSION.checkbox.text
+msgid "~Print layout"
+msgstr "~Print layout"
+
+#: opthtml.src#CB_LOCAL_GRF.checkbox.text
+msgid "~Copy local graphics to Internet"
+msgstr "~Copy local graphics to Internet"
+
+#: opthtml.src#FT_CHARSET.fixedtext.text
+msgid "Character set"
+msgstr "Character set"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.FL_DEFTXTDIRECTION.fixedline.text
+msgid "Default text direction"
+msgstr "Default text direction"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.RB_TXTDIR_LEFT2RIGHT.radiobutton.text
+msgid "~Left-to-right"
+msgstr "~Left-to-right"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.RB_TXTDIR_RIGHT2LEFT.radiobutton.text
+msgid "~Right-to-left"
+msgstr "~Right-to-left"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.FL_SHEETVIEW.fixedline.text
+msgid "Sheet view"
+msgstr "Sheet view"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.CB_SHTVW_RIGHT2LEFT.checkbox.text
+msgid "Right-~to-left"
+msgstr "Right-~to-left"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.CB_SHTVW_CURRENTDOCONLY.checkbox.text
+msgid "~Current document only"
+msgstr "~Current document only"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FL_COLORSCHEME.fixedline.text
+msgid "Color scheme"
+msgstr "Colour scheme"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FT_COLORSCHEME.fixedtext.text
+msgid "Scheme"
+msgstr "Scheme"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_SAVESCHEME.pushbutton.text
+msgid "Save..."
+msgstr "Save..."
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_DELETESCHEME.pushbutton.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_DELETESCHEME.pushbutton.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FL_CUSTOMCOLORS.fixedline.text
+msgid "Custom colors"
+msgstr "Custom colours"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_ON.string.text
+msgid "On"
+msgstr "On"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_UIELEM.string.text
+msgid "User interface elements"
+msgstr "User interface elements"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_COLSET.string.text
+msgid "Color setting"
+msgstr "Colour setting"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_PREVIEW.string.text
+msgid "Preview"
+msgstr "Preview"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_GENERAL.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_GENERAL.fixedtext.text"
+msgid "General"
+msgstr "General"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DOCCOLOR.fixedtext.text
+msgid "Document background"
+msgstr "Document background"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_DOCBOUND.checkbox.text
+msgid "Text boundaries"
+msgstr "Text boundaries"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_APPBACKGROUND.fixedtext.text
+msgid "Application background"
+msgstr "Application background"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_OBJECTBOUNDARIES.checkbox.text
+msgid "Object boundaries"
+msgstr "Object boundaries"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_TABLEBOUNDARIES.checkbox.text
+msgid "Table boundaries"
+msgstr "Table boundaries"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_FONTCOLOR.fixedtext.text
+msgid "Font color"
+msgstr "Font colour"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_LINKS.checkbox.text
+msgid "Unvisited links"
+msgstr "Unvisited links"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_LINKSVISITED.checkbox.text
+msgid "Visited links"
+msgstr "Visited links"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SPELL.fixedtext.text
+msgid "AutoSpellcheck"
+msgstr "AutoSpellcheck"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SMARTTAGS.fixedtext.text
+msgid "Smart Tags"
+msgstr "Smart Tags"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_SHADOWCOLOR.checkbox.text
+#, fuzzy
+msgid "Shadows"
+msgstr "Shadow"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITER.fixedtext.text
+msgid "Text Document"
+msgstr "Text Document"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERTEXTGRID.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERTEXTGRID.fixedtext.text"
+msgid "Grid"
+msgstr "Grid"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERFIELDSHADINGS.checkbox.text
+msgid "Field shadings"
+msgstr "Field shadings"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERIDXSHADINGS.checkbox.text
+msgid "Index and table shadings"
+msgstr "Index and table shadings"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERSCRIPTINDICATOR.fixedtext.text
+msgid "Script indicator"
+msgstr "Script indicator"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERSECTIONBOUNDARIES.checkbox.text
+msgid "Section boundaries"
+msgstr "Section boundaries"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERHEADERFOOTERMARK.fixedtext.text
+msgid "Headers and Footer delimiter"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERPAGEBREAKS.fixedtext.text
+msgid "Page and column breaks"
+msgstr "Page and column breaks"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERDIRECTCURSOR.fixedtext.text
+msgid "Direct cursor"
+msgstr "Direct cursor"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTML.fixedtext.text
+msgid "HTML Document"
+msgstr "HTML Document"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLSGML.fixedtext.text
+msgid "SGML syntax highlighting"
+msgstr "SGML syntax highlighting"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLCOMMENT.fixedtext.text
+msgid "Comment highlighting"
+msgstr "Comment highlighting"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLKEYWORD.fixedtext.text
+msgid "Keyword highlighting"
+msgstr "Keyword highlighting"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLUNKNOWN.fixedtext.text
+msgid "Text"
+msgstr "Text"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALC.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALC.fixedtext.text"
+msgid "Spreadsheet"
+msgstr "Spreadsheet"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCGRID.fixedtext.text
+msgid "Grid lines"
+msgstr "Grid lines"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAK.fixedtext.text
+msgid "Page breaks"
+msgstr "Page breaks"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAKMANUAL.fixedtext.text
+msgid "Manual page breaks"
+msgstr "Manual page breaks"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAKAUTO.fixedtext.text
+msgid "Automatic page breaks"
+msgstr "Automatic page breaks"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCDETECTIVE.fixedtext.text
+msgid "Detective"
+msgstr "Detective"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCDETECTIVEERROR.fixedtext.text
+msgid "Detective error"
+msgstr "Detective error"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCREFERENCE.fixedtext.text
+msgid "References"
+msgstr "References"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCNOTESBACKGROUND.fixedtext.text
+msgid "Notes background"
+msgstr "Notes background"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DRAW.fixedtext.text
+msgid "Drawing / Presentation"
+msgstr "Drawing / Presentation"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DRAWGRID.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DRAWGRID.fixedtext.text"
+msgid "Grid"
+msgstr "Grid"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASIC.fixedtext.text
+msgid "Basic Syntax Highlighting"
+msgstr "Basic Syntax Highlighting"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICIDENTIFIER.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICIDENTIFIER.fixedtext.text"
+msgid "Identifier"
+msgstr "Identifier"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICCOMMENT.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICCOMMENT.fixedtext.text"
+msgid "Comment"
+msgstr "Comment"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICNUMBER.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICNUMBER.fixedtext.text"
+msgid "Number"
+msgstr "Number"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICSTRING.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICSTRING.fixedtext.text"
+msgid "String"
+msgstr "String"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICOPERATOR.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICOPERATOR.fixedtext.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICKEYWORD.fixedtext.text
+msgid "Reserved expression"
+msgstr "Reserved expression"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICERROR.fixedtext.text
+msgid "Error"
+msgstr "Error"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQL_COMMAND.fixedtext.text
+msgid "SQL Syntax Highlighting"
+msgstr "SQL Syntax Highlighting"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLIDENTIFIER.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLIDENTIFIER.fixedtext.text"
+msgid "Identifier"
+msgstr "Identifier"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLNUMBER.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLNUMBER.fixedtext.text"
+msgid "Number"
+msgstr "Number"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLSTRING.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLSTRING.fixedtext.text"
+msgid "String"
+msgstr "String"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLOPERATOR.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLOPERATOR.fixedtext.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLKEYWORD.fixedtext.text
+msgid "Keyword"
+msgstr "Keyword"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLPARAMETER.fixedtext.text
+msgid "Parameter"
+msgstr "Parameter"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLCOMMENT.fixedtext.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLCOMMENT.fixedtext.text"
+msgid "Comment"
+msgstr "Comment"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_EXTENSION.string.text
+msgid "Colorsettings of the Extensions"
+msgstr "Coloursettings of the Extensions"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_SPELL_CHECK_HIGHLIGHTING.string.text
+msgid "Spell check highlighting"
+msgstr "Spell check highlighting"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_GRAMMAR_CHECK_HIGHLIGHTING.string.text
+msgid "Grammar check highlighting"
+msgstr "Grammar check highlighting"
+
+#: optcolor.src#RID_SVXQB_DELETE_COLOR_CONFIG.querybox.text
+msgid "Do you really want to delete the color scheme?"
+msgstr "Do you really want to delete the colour scheme?"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_DELETE.string.text
+msgid "Color Scheme Deletion"
+msgstr "Colour Scheme Deletion"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_SAVE1.string.text
+msgid "Save scheme"
+msgstr "Save scheme"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_SAVE2.string.text
+msgid "Name of color scheme"
+msgstr "Name of colour scheme"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.FL_CHART_COLOR_LIST.fixedline.text
+msgid "Chart colors"
+msgstr "Chart colours"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.FL_COLOR_BOX.fixedline.text
+msgid "Color table"
+msgstr "Colour table"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_ADD_CHART_COLOR.pushbutton.text
+#, fuzzy
+msgid "~Add"
+msgstr "~Add"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_REMOVE_CHART_COLOR.pushbutton.text
+#, fuzzy
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_REMOVE_CHART_COLOR.pushbutton.text"
+msgid "~Remove"
+msgstr "~Remove"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_RESET_TO_DEFAULT.pushbutton.text
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_RESET_TO_DEFAULT.pushbutton.text"
+msgid "~Default"
+msgstr "~Default"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.tabpage.text
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.tabpage.text"
+msgid "Default Colors"
+msgstr "Default Colours"
+
+#: optchart.src#RID_SVXSTR_DIAGRAM_ROW.string.text
+msgid "Data Series $(ROW)"
+msgstr "Data Series $(ROW)"
+
+#: optchart.src#RID_OPTQB_COLOR_CHART_DELETE.querybox.text
+#, fuzzy
+msgid "Do you really want to delete the chart color?"
+msgstr "Do you really want to delete the colour scheme?"
+
+#: optchart.src#RID_OPTSTR_COLOR_CHART_DELETE.string.text
+#, fuzzy
+msgid "Chart Color Deletion"
+msgstr "Colour Scheme Deletion"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_KERNING.fixedline.text
+msgid "Kerning"
+msgstr "Kerning"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_CHAR_KERNING.radiobutton.text
+msgid "~Western characters only"
+msgstr "~Western characters only"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_CHAR_PUNCT.radiobutton.text
+msgid "Western ~text and Asian punctuation"
+msgstr "Western ~text and Asian punctuation"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_CHAR_DIST.fixedline.text
+msgid "Character spacing"
+msgstr "Character spacing"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_NO_COMP.radiobutton.text
+msgid "~No compression"
+msgstr "~No compression"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_PUNCT_COMP.radiobutton.text
+msgid "~Compress punctuation only"
+msgstr "~Compress punctuation only"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_PUNCT_KANA_COMP.radiobutton.text
+msgid "Compress ~punctuation and Japanese Kana"
+msgstr "Compress ~punctuation and Japanese Kana"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_START_END.fixedline.text
+msgid "First and last characters"
+msgstr "First and last characters"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_LANGUAGE.fixedtext.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_LANGUAGE.fixedtext.text"
+msgid "~Language"
+msgstr "~Language"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.CB_STANDARD.checkbox.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.CB_STANDARD.checkbox.text"
+msgid "~Default"
+msgstr "~Default"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_START.fixedtext.text
+msgid "Not at start of line:"
+msgstr "Not at start of line:"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_END.fixedtext.text
+msgid "Not at end of line:"
+msgstr "Not at end of line:"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_HINT.fixedtext.text
+msgid "Without user-defined line break symbols"
+msgstr "Without user-defined line break symbols"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.tabpage.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.tabpage.text"
+msgid "Proxy"
+msgstr "Proxy"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.PB_BACK.pushbutton.text
+msgid "~Revert"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.ST_LOAD_ERROR.string.text
+msgid "The selected module could not be loaded."
+msgstr "The selected module could not be loaded."
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.modaldialog.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE.modaldialog.text"
+msgid "Options"
+msgstr "Options"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME"
+msgstr "%PRODUCTNAME"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.2.itemlist.text"
+msgid "User Data"
+msgstr "User Data"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.3.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.4.itemlist.text
+msgid "Memory"
+msgstr "Memory"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.5.itemlist.text"
+msgid "View"
+msgstr "View"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.6.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.6.itemlist.text"
+msgid "Print"
+msgstr "Print"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.7.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.7.itemlist.text"
+msgid "Paths"
+msgstr "Paths"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.8.itemlist.text
+msgid "Colors"
+msgstr "Colours"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.9.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.9.itemlist.text"
+msgid "Fonts"
+msgstr "Fonts"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.10.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.10.itemlist.text"
+msgid "Security"
+msgstr "Security"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.11.itemlist.text
+msgid "Appearance"
+msgstr "Appearance"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.12.itemlist.text
+msgid "Accessibility"
+msgstr "Accessibility"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.13.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.13.itemlist.text"
+msgid "Java"
+msgstr "Java"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.14.itemlist.text
+msgid "Network Identity"
+msgstr "Network Identity"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.15.itemlist.text
+msgid "Online Update"
+msgstr "Online Update"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.1.itemlist.text
+msgid "Language Settings"
+msgstr "Language Settings"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.2.itemlist.text
+msgid "Languages"
+msgstr "Languages"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.3.itemlist.text
+msgid "Writing Aids"
+msgstr "Writing Aids"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.4.itemlist.text"
+msgid "Searching in Japanese"
+msgstr "Searching in Japanese"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.5.itemlist.text
+msgid "Asian Layout"
+msgstr "Asian Layout"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.6.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.6.itemlist.text"
+msgid "Complex Text Layout"
+msgstr "Complex Text Layout"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.1.itemlist.text
+msgid "Internet"
+msgstr "Internet"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.2.itemlist.text"
+msgid "Proxy"
+msgstr "Proxy"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.3.itemlist.text
+msgid "E-mail"
+msgstr "E-mail"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.4.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.4.itemlist.text"
+msgid "Browser Plug-in"
+msgstr "Browser Plug-in"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Writer"
+msgstr "%PRODUCTNAME Writer"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.3.itemlist.text"
+msgid "View"
+msgstr "View"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.4.itemlist.text"
+msgid "Formatting Aids"
+msgstr "Formatting Aids"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.5.itemlist.text"
+msgid "Grid"
+msgstr "Grid"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.6.itemlist.text
+msgid "Basic Fonts (Western)"
+msgstr "Basic Fonts (Western)"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.7.itemlist.text
+msgid "Basic Fonts (Asian)"
+msgstr "Basic Fonts (Asian)"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.8.itemlist.text
+msgid "Basic Fonts (CTL)"
+msgstr "Basic Fonts (CTL)"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.9.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.9.itemlist.text"
+msgid "Print"
+msgstr "Print"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.10.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.10.itemlist.text"
+msgid "Table"
+msgstr "Table"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.11.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.11.itemlist.text"
+msgid "Changes"
+msgstr "Changes"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.12.itemlist.text
+msgid "Comparison"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text"
+msgid "Compatibility"
+msgstr "Compatibility"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.14.itemlist.text
+msgid "AutoCaption"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.15.itemlist.text
+msgid "Mail Merge E-mail"
+msgstr "Mail Merge E-mail"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Writer/Web"
+msgstr "%PRODUCTNAME Writer/Web"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.2.itemlist.text"
+msgid "View"
+msgstr "View"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.3.itemlist.text"
+msgid "Formatting Aids"
+msgstr "Formatting Aids"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.4.itemlist.text"
+msgid "Grid"
+msgstr "Grid"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.5.itemlist.text"
+msgid "Print"
+msgstr "Print"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.6.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.6.itemlist.text"
+msgid "Table"
+msgstr "Table"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.7.itemlist.text
+msgid "Background"
+msgstr "Background"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SM_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Math"
+msgstr "%PRODUCTNAME Math"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SM_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SM_EDITOPTIONS.2.itemlist.text"
+msgid "Settings"
+msgstr "Settings"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Calc"
+msgstr "%PRODUCTNAME Calc"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.3.itemlist.text
+#, fuzzy
+msgid "Defaults"
+msgstr "Default"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.4.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.4.itemlist.text"
+msgid "View"
+msgstr "View"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.5.itemlist.text
+msgid "International"
+msgstr "International"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.6.itemlist.text
+msgid "Calculate"
+msgstr "Calculate"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text"
+msgid "Formula"
+msgstr "Formula"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.8.itemlist.text
+msgid "Sort Lists"
+msgstr "Sort Lists"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.9.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.9.itemlist.text"
+msgid "Changes"
+msgstr "Changes"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text"
+msgid "Compatibility"
+msgstr "Compatibility"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.11.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.11.itemlist.text"
+msgid "Grid"
+msgstr "Grid"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.12.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.12.itemlist.text"
+msgid "Print"
+msgstr "Print"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Impress"
+msgstr "%PRODUCTNAME Impress"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.3.itemlist.text"
+msgid "View"
+msgstr "View"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.4.itemlist.text"
+msgid "Grid"
+msgstr "Grid"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS.5.itemlist.text"
+msgid "Print"
+msgstr "Print"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Draw"
+msgstr "%PRODUCTNAME Draw"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.3.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.3.itemlist.text"
+msgid "View"
+msgstr "View"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.4.itemlist.text"
+msgid "Grid"
+msgstr "Grid"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.5.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS.5.itemlist.text"
+msgid "Print"
+msgstr "Print"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS.1.itemlist.text
+msgid "Charts"
+msgstr "Charts"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS.2.itemlist.text"
+msgid "Default Colors"
+msgstr "Default Colours"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.1.itemlist.text
+msgid "Load/Save"
+msgstr "Load/Save"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.2.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.2.itemlist.text"
+msgid "General"
+msgstr "General"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.3.itemlist.text
+msgid "VBA Properties"
+msgstr "VBA Properties"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.4.itemlist.text
+msgid "Microsoft Office"
+msgstr "Microsoft Office"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.5.itemlist.text
+msgid "HTML Compatibility"
+msgstr "HTML Compatibility"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS.1.itemlist.text
+msgid "%PRODUCTNAME Base"
+msgstr "%PRODUCTNAME Base"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS.2.itemlist.text
+msgid "Connections"
+msgstr "Connections"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS.3.itemlist.text
+msgid "Databases"
+msgstr "Databases"
+
+#: treeopt.src#RID_RIDER_SLL_SITE.string.text
+msgid "Site certificates"
+msgstr "Site certificates"
+
+#: treeopt.src#RID_RIDER_SLL_PERSONAL.string.text
+msgid "Personal certificates"
+msgstr "Personal certificates"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.FL_JAVA.fixedline.text
+msgid "Java options"
+msgstr "Java options"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.CB_JAVA_ENABLE.checkbox.text
+msgid "~Use a Java runtime environment"
+msgstr "~Use a Java runtime environment"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.FT_JAVA_FOUND.fixedtext.text
+msgid "~Java runtime environments (JRE) already installed:"
+msgstr "~Java runtime environments (JRE) already installed:"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_ADD.pushbutton.text
+#, fuzzy
+msgctxt "optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Add..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_PARAMETER.pushbutton.text
+msgid "~Parameters..."
+msgstr "~Parameters..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_CLASSPATH.pushbutton.text
+msgid "~Class Path..."
+msgstr "~Class Path..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_INSTALLED_IN.string.text
+msgid "Location: "
+msgstr "Location: "
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_ACCESSIBILITY.string.text
+msgid "with accessibility support"
+msgstr "with accessibility support"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_ADDDLGTEXT.string.text
+msgid "Select a Java Runtime Environment"
+msgstr "Select a Java Runtime Environment"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_VENDOR.string.text
+msgid "Vendor"
+msgstr "Vendor"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_VERSION.string.text
+msgid "Version"
+msgstr "Version"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_FEATURES.string.text
+msgid "Features"
+msgstr "Features"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.tabpage.text
+msgctxt "optjava.src#RID_SVXPAGE_OPTIONS_JAVA.tabpage.text"
+msgid "Java"
+msgstr "Java"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_PARAMETER.fixedtext.text
+msgid "Java start ~parameter"
+msgstr "Java start ~parameter"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_ASSIGN.pushbutton.text
+msgid "~Assign"
+msgstr "~Assign"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_ASSIGNED.fixedtext.text
+msgid "Assig~ned start parameters"
+msgstr "Assig~ned start parameters"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_EXAMPLE.fixedtext.text
+msgid "For example: -Dmyprop=c:\\program files\\java"
+msgstr "For example: -Dmyprop=c:\\program files\\java"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_REMOVE.pushbutton.text
+msgctxt "optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_REMOVE.pushbutton.text"
+msgid "~Remove"
+msgstr "~Remove"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.modaldialog.text
+msgid "Java Start Parameters"
+msgstr "Java Start Parameters"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.FT_PATH.fixedtext.text
+msgid "A~ssigned folders and archives"
+msgstr "A~ssigned folders and archives"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_ADDARCHIVE.pushbutton.text
+msgid "~Add Archive..."
+msgstr "~Add Archive..."
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_ADDPATH.pushbutton.text
+msgid "Add ~Folder"
+msgstr "Add ~Folder"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_REMOVE_PATH.pushbutton.text
+msgctxt "optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_REMOVE_PATH.pushbutton.text"
+msgid "~Remove"
+msgstr "~Remove"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.modaldialog.text
+msgid "Class Path"
+msgstr "Class Path"
+
+#: optjava.src#RID_SVXERR_JRE_NOT_RECOGNIZED.errorbox.text
+msgid ""
+"The folder you selected does not contain a Java runtime environment.\n"
+"Please select a different folder."
+msgstr ""
+"The folder you selected does not contain a Java runtime environment.\n"
+"Please select a different folder."
+
+#: optjava.src#RID_SVXERR_JRE_FAILED_VERSION.errorbox.text
+msgid ""
+"The Java runtime environment you selected is not the required version.\n"
+"Please select a different folder."
+msgstr ""
+"The Java runtime environment you selected is not the required version.\n"
+"Please select a different folder."
+
+#: optjava.src#RID_SVX_MSGBOX_JAVA_RESTART.warningbox.text
+msgid ""
+"For the selected Java runtime environment to work properly, %PRODUCTNAME must be restarted.\n"
+"Please restart %PRODUCTNAME now."
+msgstr ""
+"For the selected Java runtime environment to work properly, %PRODUCTNAME must be restarted.\n"
+"Please restart %PRODUCTNAME now."
+
+#: optjava.src#RID_SVX_MSGBOX_OPTIONS_RESTART.warningbox.text
+msgid ""
+"You have to restart %PRODUCTNAME so the new or modified values can take effect.\n"
+"Please restart %PRODUCTNAME now."
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.GB_UNDO.fixedline.text
+msgid "Undo"
+msgstr "Undo"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_UNDO.fixedtext.text
+msgid "Number of steps"
+msgstr "Number of steps"
+
+#: optmemory.src#OFA_TP_MEMORY.GB_GRAPHICCACHE.fixedline.text
+msgid "Graphics cache"
+msgstr "Graphics cache"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE.fixedtext.text
+msgid "Use for %PRODUCTNAME"
+msgstr "Use for %PRODUCTNAME"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE_UNIT.fixedtext.text
+msgctxt "optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE_UNIT.fixedtext.text"
+msgid "MB"
+msgstr "MB"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE.fixedtext.text
+msgid "Memory per object"
+msgstr "Memory per object"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE_UNIT.fixedtext.text
+msgctxt "optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE_UNIT.fixedtext.text"
+msgid "MB"
+msgstr "MB"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTTIME.fixedtext.text
+msgid "Remove from memory after"
+msgstr "Remove from memory after"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTTIME_UNIT.fixedtext.text
+msgid "hh:mm"
+msgstr "hh:mm"
+
+#: optmemory.src#OFA_TP_MEMORY.GB_OLECACHE.fixedline.text
+msgid "Cache for inserted objects"
+msgstr "Cache for inserted objects"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_OLECACHE.fixedtext.text
+msgid "Number of objects"
+msgstr "Number of objects"
+
+#: optmemory.src#OFA_TP_MEMORY.FL_QUICKLAUNCH.fixedline.text
+msgid "%PRODUCTNAME Quickstarter"
+msgstr "%PRODUCTNAME Quickstarter"
+
+#: optmemory.src#OFA_TP_MEMORY.CB_QUICKLAUNCH.checkbox.text
+msgid "Load %PRODUCTNAME during system start-up"
+msgstr "Load %PRODUCTNAME during system start-up"
+
+#: optmemory.src#OFA_TP_MEMORY.STR_QUICKLAUNCH_UNX.string.text
+msgid "Enable systray Quickstarter"
+msgstr "Enable systray Quickstarter"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FL_MISCELLANEOUS.fixedline.text
+msgid "Miscellaneous options"
+msgstr "Miscellaneous options"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ACCESSIBILITY_TOOL.checkbox.text
+msgid "Support ~assistive technology tools (program restart required)"
+msgstr "Support ~assistive technology tools (program restart required)"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_TEXTSELECTION.checkbox.text
+msgid "Use te~xt selection cursor in read-only text documents"
+msgstr "Use te~xt selection cursor in read-only text documents"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ANIMATED_GRAPHICS.checkbox.text
+msgid "Allow animated ~graphics"
+msgstr "Allow animated ~graphics"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ANIMATED_TEXTS.checkbox.text
+msgid "Allow animated ~text"
+msgstr "Allow animated ~text"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_TIPHELP.checkbox.text
+msgid "~Help tips disappear after "
+msgstr "~Help tips disappear after "
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FT_TIPHELP.fixedtext.text
+msgid "seconds"
+msgstr "seconds"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FL_HC_OPTIONS.fixedline.text
+msgid "Options for high contrast appearance"
+msgstr "Options for high contrast appearance"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_AUTO_DETECT_HC.checkbox.text
+msgid "Automatically ~detect high contrast mode of operating system"
+msgstr "Automatically ~detect high contrast mode of operating system"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_AUTOMATIC_FONT_COLOR.checkbox.text
+msgid "Use automatic font ~color for screen display"
+msgstr "Use automatic font ~colour for screen display"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_PAGE_PREVIEWS.checkbox.text
+msgid "~Use system colors for page previews"
+msgstr "~Use system colours for page previews"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_SEQUENCECHECKING.fixedline.text
+msgid "Sequence checking"
+msgstr "Sequence checking"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_SEQUENCECHECKING.checkbox.text
+msgid "Use se~quence checking"
+msgstr "Use se~quence checking"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_RESTRICTED.checkbox.text
+msgid "Restricted"
+msgstr "Restricted"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_TYPE_REPLACE.checkbox.text
+msgid "~Type and replace"
+msgstr "~Type and replace"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_CURSORCONTROL.fixedline.text
+msgid "Cursor control"
+msgstr "Cursor control"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FT_MOVEMENT.fixedtext.text
+msgid "Movement"
+msgstr "Movement"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.RB_MOVEMENT_LOGICAL.radiobutton.text
+msgid "Lo~gical"
+msgstr "Lo~gical"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.RB_MOVEMENT_VISUAL.radiobutton.text
+msgid "~Visual"
+msgstr "~Visual"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_GENERAL.fixedline.text
+msgid "General options"
+msgstr "General options"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FT_NUMERALS.fixedtext.text
+msgid "~Numerals"
+msgstr "~Numerals"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.1.stringlist.text
+msgid "Arabic"
+msgstr "Arabic"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.2.stringlist.text
+msgid "Hindi"
+msgstr "Hindi"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.3.stringlist.text
+msgctxt "optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.3.stringlist.text"
+msgid "System"
+msgstr "System"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.4.stringlist.text
+msgid "Context"
+msgstr "Context"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.tabpage.text
+msgctxt "optctl.src#RID_SVXPAGE_OPTIONS_CTL.tabpage.text"
+msgid "Complex Text Layout"
+msgstr "Complex Text Layout"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FL_POOLING.fixedline.text
+msgid "Connection pool"
+msgstr "Connection pool"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.CB_POOL_CONNS.checkbox.text
+msgid "Connection pooling enabled"
+msgstr "Connection pooling enabled"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_DRIVERS.fixedtext.text
+msgid "Drivers known in %PRODUCTNAME"
+msgstr "Drivers known in %PRODUCTNAME"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_DRIVERLABEL.fixedtext.text
+msgid "Current driver:"
+msgstr "Current driver:"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.CB_DRIVERPOOLING.checkbox.text
+msgid "Enable pooling for this driver"
+msgstr "Enable pooling for this driver"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_TIMEOUT.fixedtext.text
+msgid "Timeout (seconds)"
+msgstr "Timeout (seconds)"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_DRIVER_NAME.string.text
+msgid "Driver name"
+msgstr "Driver name"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_POOLED_FLAG.string.text
+msgid "Pool"
+msgstr "Pool"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_POOL_TIMEOUT.string.text
+msgid "Timeout"
+msgstr "Timeout"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_YES.string.text
+msgid "Yes"
+msgstr "Yes"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_NO.string.text
+msgid "No"
+msgstr "No"
+
+#: optgdlg.src#OFA_TP_MISC.FL_HELP.fixedline.text
+msgctxt "optgdlg.src#OFA_TP_MISC.FL_HELP.fixedline.text"
+msgid "Help"
+msgstr "Help"
+
+#: optgdlg.src#OFA_TP_MISC.CB_TOOLTIP.checkbox.text
+msgid "~Tips"
+msgstr "~Tips"
+
+#: optgdlg.src#OFA_TP_MISC.CB_EXTHELP.checkbox.text
+msgid "~Extended tips"
+msgstr "~Extended tips"
+
+#: optgdlg.src#OFA_TP_MISC.FT_HELPFORMAT.fixedtext.text
+msgid "Help ~formatting"
+msgstr "Help ~formatting"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.1.stringlist.text
+msgid "Default"
+msgstr "Default"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.2.stringlist.text
+msgid "High Contrast #1"
+msgstr "High Contrast #1"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.3.stringlist.text
+msgid "High Contrast #2"
+msgstr "High Contrast #2"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.4.stringlist.text
+msgid "High Contrast Black"
+msgstr "High Contrast Black"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.5.stringlist.text
+msgid "High Contrast White"
+msgstr "High Contrast White"
+
+#: optgdlg.src#OFA_TP_MISC.CB_HELPAGENT.checkbox.text
+msgid "~Help Agent"
+msgstr "~Help Agent"
+
+#: optgdlg.src#OFA_TP_MISC.PB_HELPAGENT_RESET.pushbutton.text
+msgid "~Reset Help Agent"
+msgstr "~Reset Help Agent"
+
+#: optgdlg.src#OFA_TP_MISC.FL_FILEDLG.fixedline.text
+msgid "Open/Save dialogs"
+msgstr "Open/Save dialogues"
+
+#: optgdlg.src#OFA_TP_MISC.CB_FILEDLG.checkbox.text
+msgid "~Use %PRODUCTNAME dialogs"
+msgstr "~Use %PRODUCTNAME dialogues"
+
+#: optgdlg.src#OFA_TP_MISC.CB_ODMADLG.checkbox.text
+msgid "Show ODMA DMS dialogs first"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.FL_PRINTDLG.fixedline.text
+msgid "Print dialogs"
+msgstr "Print dialogues"
+
+#: optgdlg.src#OFA_TP_MISC.CB_PRINTDLG.checkbox.text
+msgid "Use %PRODUCTNAME ~dialogs"
+msgstr "Use %PRODUCTNAME ~dialogs"
+
+#: optgdlg.src#OFA_TP_MISC.FL_DOCSTATUS.fixedline.text
+msgid "Document status"
+msgstr "Document status"
+
+#: optgdlg.src#OFA_TP_MISC.CB_DOCSTATUS.checkbox.text
+msgid "~Printing sets \"document modified\" status"
+msgstr "~Printing sets \"document modified\" status"
+
+#: optgdlg.src#OFA_TP_MISC.CB_SAVE_ALWAYS.checkbox.text
+msgid "Allow to save document even when the document is not modified"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.FL_TWOFIGURE.fixedline.text
+msgid "Year (two digits)"
+msgstr "Year (two digits)"
+
+#: optgdlg.src#OFA_TP_MISC.FT_INTERPRET.fixedtext.text
+msgid "Interpret as years between"
+msgstr "Interpret as years between"
+
+#: optgdlg.src#OFA_TP_MISC.FT_TOYEAR.fixedtext.text
+msgid "and "
+msgstr "and "
+
+#: optgdlg.src#OFA_TP_MISC.CB_EXPERIMENTAL.checkbox.text
+msgid "Enable experimental (unstable) features"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.CB_MACRORECORDER.checkbox.text
+msgid "Enable macro recording (limited)"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FL_USERINTERFACE.fixedline.text
+msgid "User Interface"
+msgstr "User Interface"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_WINDOWSIZE.fixedtext.text
+msgid "Sc~aling"
+msgstr "Sc~aling"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_ICONSIZESTYLE.fixedtext.text
+msgid "Icon size and style"
+msgstr "Icon size and style"
+
+#: optgdlg.src#OFA_TP_VIEW.STR_ICONSIZE.string.text
+msgid "Icon size"
+msgstr "Icon size"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.2.stringlist.text
+msgid "Small"
+msgstr "Small"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.3.stringlist.text
+msgid "Large"
+msgstr "Large"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.2.stringlist.text
+msgid "Galaxy (default)"
+msgstr "Galaxy (default)"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.3.stringlist.text
+msgid "High Contrast"
+msgstr "High Contrast"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.4.stringlist.text
+msgid "Industrial"
+msgstr "Industrial"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.5.stringlist.text
+msgid "Crystal"
+msgstr "Crystal"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.6.stringlist.text
+msgid "Tango"
+msgstr "Tango"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.7.stringlist.text
+msgid "Oxygen"
+msgstr "Oxygen"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.8.stringlist.text
+msgid "Classic"
+msgstr "Classic"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.9.stringlist.text
+msgid "Human"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.CB_SYSTEM_FONT.checkbox.text
+msgid "Use system ~font for user interface"
+msgstr "Use system ~font for user interface"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONTANTIALIASING.checkbox.text
+msgid "Screen font antialiasing"
+msgstr "Screen font antialiasing"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_LABEL.fixedtext.text
+msgid "from"
+msgstr "from"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_UNIT.fixedtext.text
+msgid "Pixels"
+msgstr "Pixels"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_MENU.fixedline.text
+msgid "Menu"
+msgstr "Menu"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MENU_ICONS.fixedtext.text
+msgid "Icons in menus"
+msgstr "Icons in menus"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.1.stringlist.text
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.1.stringlist.text"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.2.stringlist.text
+msgid "Hide"
+msgstr "Hide"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.3.stringlist.text
+msgid "Show"
+msgstr "Show"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_FONTLISTS.fixedline.text
+msgid "Font Lists"
+msgstr "Font Lists"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONT_SHOW.checkbox.text
+msgid "Show p~review of fonts"
+msgstr "Show p~review of fonts"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONT_HISTORY.checkbox.text
+msgid "Show font h~istory"
+msgstr "Show font h~istory"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_RENDERING.fixedline.text
+msgid "Graphics output"
+msgstr "Graphics output"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_USE_HARDACCELL.checkbox.text
+msgid "Use hardware acceleration"
+msgstr "Use hardware acceleration"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_USE_ANTIALIASE.checkbox.text
+msgid "Use Anti-Aliasing"
+msgstr "Use Anti-Aliasing"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_MOUSE.fixedline.text
+msgid "Mouse"
+msgstr "Mouse"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEPOS.fixedtext.text
+msgid "Mouse positioning"
+msgstr "Mouse positioning"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.1.stringlist.text
+msgid "Default button"
+msgstr "Default button"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.2.stringlist.text
+msgid "Dialog center"
+msgstr "Dialogue centre"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.3.stringlist.text
+msgid "No automatic positioning"
+msgstr "No automatic positioning"
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEMIDDLE.fixedtext.text
+msgid "Middle mouse button"
+msgstr "Middle mouse button"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.1.stringlist.text
+msgid "No function"
+msgstr "No function"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.2.stringlist.text
+msgid "Automatic scrolling"
+msgstr "Automatic scrolling"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.3.stringlist.text
+msgid "Paste clipboard"
+msgstr "Paste clipboard"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_SELECTION.fixedline.text
+msgid "Selection"
+msgstr "Selection"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_SELECTION.checkbox.text
+msgid "Transparency"
+msgstr "Transparency"
+
+#: optgdlg.src#OFA_TP_VIEW.MF_SELECTION.metricfield.text
+msgid "%"
+msgstr "%"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_UI_LANG.fixedline.text
+msgid "Language of"
+msgstr "Language of"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_USERINTERFACE.fixedtext.text
+msgid "~User interface"
+msgstr "~User interface"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_LOCALESETTING.fixedtext.text
+msgid "Locale setting"
+msgstr "Locale setting"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_DECIMALSEPARATOR.fixedtext.text
+msgid "Decimal separator key"
+msgstr "Decimal separator key"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_DECIMALSEPARATOR.checkbox.text
+msgid "~Same as locale setting ( %1 )"
+msgstr "~Same as locale setting ( %1 )"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_CURRENCY.fixedtext.text
+msgid "~Default currency"
+msgstr "~Default currency"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_LINGU_LANG.fixedline.text
+msgid "Default languages for documents"
+msgstr "Default languages for documents"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_WEST_LANG.fixedtext.text
+msgid "Western"
+msgstr "Western"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_ASIAN_LANG.fixedtext.text
+msgid "Asian"
+msgstr "Asian"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_COMPLEX_LANG.fixedtext.text
+msgid "C~TL"
+msgstr "C~TL"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_CURRENT_DOC.checkbox.text
+msgid "For the current document only"
+msgstr "For the current document only"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_ENHANCED.fixedline.text
+msgid "Enhanced language support"
+msgstr "Enhanced language support"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_ASIANSUPPORT.checkbox.text
+msgid "E~nabled for Asian languages"
+msgstr "E~nabled for Asian languages"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_CTLSUPPORT.checkbox.text
+msgid "Ena~bled for complex text layout (CTL)"
+msgstr "Ena~bled for complex text layout (CTL)"
+
+#: optgdlg.src#RID_SVX_MSGBOX_LANGUAGE_RESTART.infobox.text
+msgid "The language setting of the user interface has been updated and will take effect the next time you start %PRODUCTNAME %PRODUCTVERSION"
+msgstr "The language setting of the user interface has been updated and will take effect the next time you start %PRODUCTNAME %PRODUCTVERSION"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_WORD.fixedline.text
+msgid "Microsoft Word 97/2000/XP"
+msgstr "Microsoft Word 97/2000/XP"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_CODE.checkbox.text
+msgid "Load Basic ~code"
+msgstr "Load Basic ~code"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_WBCTBL.checkbox.text
+msgctxt "optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_WBCTBL.checkbox.text"
+msgid "E~xecutable code"
+msgstr "E~xecutable code"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_STG.checkbox.text
+msgid "Save ~original Basic code"
+msgstr "Save ~original Basic code"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_EXCEL.fixedline.text
+msgid "Microsoft Excel 97/2000/XP"
+msgstr "Microsoft Excel 97/2000/XP"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_CODE.checkbox.text
+msgid "Lo~ad Basic code"
+msgstr "Lo~ad Basic code"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_EXECTBL.checkbox.text
+msgctxt "optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_EXECTBL.checkbox.text"
+msgid "E~xecutable code"
+msgstr "E~xecutable code"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_STG.checkbox.text
+msgid "Sa~ve original Basic code"
+msgstr "Sa~ve original Basic code"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_PPOINT.fixedline.text
+msgid "Microsoft PowerPoint 97/2000/XP"
+msgstr "Microsoft PowerPoint 97/2000/XP"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_PBAS_CODE.checkbox.text
+msgid "Load Ba~sic code"
+msgstr "Load Ba~sic code"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_PBAS_STG.checkbox.text
+msgid "Sav~e original Basic code"
+msgstr "Sav~e original Basic code"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_HEADER1.string.text
+msgid "[L]"
+msgstr "[L]"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_HEADER2.string.text
+msgid "[S]"
+msgstr "[S]"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER1_EXPLANATION.fixedtext.text
+msgid "[L]: Load and convert the object"
+msgstr "[L]: Load and convert the object"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER2_EXPLANATION.fixedtext.text
+msgid "[S]: Convert and save the object"
+msgstr "[S]: Convert and save the object"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_MATH.string.text
+msgid "MathType to %PRODUCTNAME Math or reverse"
+msgstr "MathType to %PRODUCTNAME Math or reverse"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_WRITER.string.text
+msgid "WinWord to %PRODUCTNAME Writer or reverse"
+msgstr "WinWord to %PRODUCTNAME Writer or reverse"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_CALC.string.text
+msgid "Excel to %PRODUCTNAME Calc or reverse"
+msgstr "Excel to %PRODUCTNAME Calc or reverse"
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_IMPRESS.string.text
+msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
+msgstr "PowerPoint to %PRODUCTNAME Impress or reverse"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_TYPE.fixedtext.text
+msgid "Registered name"
+msgstr "Registered name"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_PATH.fixedtext.text
+msgid "Database file"
+msgstr "Database file"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text"
+msgid "~New..."
+msgstr "~New..."
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_EDIT.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Edit..."
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_DELETE.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text"
+msgid "Registered databases"
+msgstr "Registered databases"
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text"
+msgid "Registered databases"
+msgstr "Registered databases"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.FL_CERTPATH.fixedline.text
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.FL_CERTPATH.fixedline.text"
+msgid "Certificate Path"
+msgstr ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.FT_CERTPATH.fixedtext.text
+msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
+msgstr ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.PB_ADD.pushbutton.text
+#, fuzzy
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.PB_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Add..."
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_ADDDLGTEXT.string.text
+msgid "Select a Certificate directory"
+msgstr ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_MANUAL.string.text
+#, fuzzy
+msgid "manual"
+msgstr "Manual"
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_PROFILE.string.text
+msgid "Profile"
+msgstr ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.STR_DIRECTORY.string.text
+msgid "Directory"
+msgstr ""
+
+#: certpath.src#RID_SVXDLG_CERTPATH.modaldialog.text
+msgctxt "certpath.src#RID_SVXDLG_CERTPATH.modaldialog.text"
+msgid "Certificate Path"
+msgstr ""
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FL_EDIT_MODULES_OPTIONS.fixedline.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.FL_EDIT_MODULES_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Options"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FT_EDIT_MODULES_LANGUAGE.fixedtext.text
+msgid "Language"
+msgstr "Language"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_UP.pushbutton.text
+msgid "Move Up"
+msgstr "Move Up"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_DOWN.pushbutton.text
+msgid "Move Down"
+msgstr "Move Down"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_BACK.pushbutton.text
+#, fuzzy
+msgid "~Back"
+msgstr "~Back"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FT_EDIT_MODULES_NEWDICTSLINK.fixedtext.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.FT_EDIT_MODULES_NEWDICTSLINK.fixedtext.text"
+msgid "~Get more dictionaries online..."
+msgstr "~Get more dictionaries online..."
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_OK.okbutton.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_OK.okbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_SPELL.string.text
+msgid "Spelling"
+msgstr "Spelling"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_HYPH.string.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_HYPH.string.text"
+msgid "Hyphenation"
+msgstr "Hyphenation"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_THES.string.text
+msgid "Thesaurus"
+msgstr "Thesaurus"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_GRAMMAR.string.text
+msgid "Grammar"
+msgstr "Grammar"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.modaldialog.text
+msgid "Edit Modules"
+msgstr "Edit Modules"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_PRE_BREAK_DLG.string.text
+msgid "Characters before break"
+msgstr "Characters before break"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_POST_BREAK_DLG.string.text
+msgid "Characters after break"
+msgstr "Characters after break"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_MIN_WORDLEN_DLG.string.text
+msgid "Minimal word length"
+msgstr "Minimal word length"
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.modaldialog.text
+msgctxt "optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.modaldialog.text"
+msgid "Hyphenation"
+msgstr "Hyphenation"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FL_LINGUISTIC.fixedline.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FL_LINGUISTIC.fixedline.text"
+msgid "Writing aids"
+msgstr "Writing aids"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_MODULES.fixedtext.text
+msgid "Available language modules"
+msgstr "Available language modules"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_MODULES_EDIT.pushbutton.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_MODULES_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Edit..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_DICS.fixedtext.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_DICS.fixedtext.text"
+msgid "User-defined dictionaries"
+msgstr "User-defined dictionaries"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_NEW_DIC.pushbutton.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_NEW_DIC.pushbutton.text"
+msgid "~New..."
+msgstr "~New..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_EDIT_DIC.pushbutton.text
+msgid "Ed~it..."
+msgstr "Ed~it..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_DEL_DIC.pushbutton.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_DEL_DIC.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_OPTIONS.fixedtext.text
+msgid "~Options"
+msgstr "~Options"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_OPTIONS_EDIT.pushbutton.text
+msgid "Edi~t..."
+msgstr "Edi~t..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_OPTIONS_MOREDICTS.fixedtext.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_OPTIONS_MOREDICTS.fixedtext.text"
+msgid "~Get more dictionaries online..."
+msgstr "~Get more dictionaries online..."
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_CAPITAL_WORDS.string.text
+msgid "Check uppercase words"
+msgstr "Check uppercase words"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_WORDS_WITH_DIGITS.string.text
+msgid "Check words with numbers "
+msgstr "Check words with numbers "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_CAPITALIZATION.string.text
+msgid "Check capitalization"
+msgstr "Check capitalisation"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_SPELL_SPECIAL.string.text
+msgid "Check special regions"
+msgstr "Check special regions"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_SPELL_AUTO.string.text
+msgid "Check spelling as you type"
+msgstr "Check spelling as you type"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_GRAMMAR_AUTO.string.text
+msgid "Check grammar as you type"
+msgstr "Check grammar as you type"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_MIN_WORDLEN.string.text
+msgid "Minimal number of characters for hyphenation: "
+msgstr "Minimal number of characters for hyphenation: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_PRE_BREAK.string.text
+msgid "Characters before line break: "
+msgstr "Characters before line break: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_POST_BREAK.string.text
+msgid "Characters after line break: "
+msgstr "Characters after line break: "
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_HYPH_AUTO.string.text
+msgid "Hyphenate without inquiry"
+msgstr "Hyphenate without enquiry"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_HYPH_SPECIAL.string.text
+msgid "Hyphenate special regions"
+msgstr "Hyphenate special regions"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_MODULES_EDIT.string.text
+#, fuzzy
+msgid "Edit Available language modules"
+msgstr "Available language modules"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_DICS_EDIT_DIC.string.text
+#, fuzzy
+msgid "Edit User-defined dictionaries"
+msgstr "User-defined dictionaries"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_OPTIONS_EDIT.string.text
+#, fuzzy
+msgid "Edit Options"
+msgstr "Print Options"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.tabpage.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.tabpage.text"
+msgid "Options"
+msgstr "Options"
+
+#: optlingu.src#RID_SFXQB_DELDICT.querybox.text
+msgid "Do you want to delete the dictionary?"
+msgstr "Do you want to delete the dictionary?"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.FL_TREAT_AS_EQUAL.fixedline.text
+msgid "Treat as equal"
+msgstr "Treat as equal"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_CASE.checkbox.text
+msgid "~uppercase/lowercase"
+msgstr "~uppercase/lowercase"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_FULL_HALF_WIDTH.checkbox.text
+msgid "~full-width/half-width forms"
+msgstr "~full-width/half-width forms"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_HIRAGANA_KATAKANA.checkbox.text
+msgid "~hiragana/katakana"
+msgstr "~hiragana/katakana"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_CONTRACTIONS.checkbox.text
+msgid "~contractions (yo-on, sokuon)"
+msgstr "~contractions (yo-on, sokuon)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_MINUS_DASH_CHOON.checkbox.text
+msgid "~minus/dash/cho-on"
+msgstr "~minus/dash/cho-on"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_REPEAT_CHAR_MARKS.checkbox.text
+msgid "'re~peat character' marks"
+msgstr "'re~peat character' marks"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_VARIANT_FORM_KANJI.checkbox.text
+msgid "~variant-form kanji (itaiji)"
+msgstr "~variant-form kanji (itaiji)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_OLD_KANA_FORMS.checkbox.text
+msgid "~old Kana forms"
+msgstr "~old Kana forms"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_DIZI_DUZU.checkbox.text
+msgid "~di/zi, du/zu"
+msgstr "~di/zi, du/zu"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_BAVA_HAFA.checkbox.text
+msgid "~ba/va, ha/fa"
+msgstr "~ba/va, ha/fa"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_TSITHICHI_DHIZI.checkbox.text
+msgid "~tsi/thi/chi, dhi/zi"
+msgstr "~tsi/thi/chi, dhi/zi"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_HYUFYU_BYUVYU.checkbox.text
+msgid "h~yu/fyu, byu/vyu"
+msgstr "h~yu/fyu, byu/vyu"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_SESHE_ZEJE.checkbox.text
+msgid "~se/she, ze/je"
+msgstr "~se/she, ze/je"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_IAIYA.checkbox.text
+msgid "~ia/iya (piano/piyano)"
+msgstr "~ia/iya (piano/piyano)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_KIKU.checkbox.text
+msgid "~ki/ku (tekisuto/tekusuto)"
+msgstr "~ki/ku (tekisuto/tekusuto)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_PROLONGED_SOUNDMARK.checkbox.text
+msgid "Prolon~ged vowels (ka-/kaa)"
+msgstr "Prolon~ged vowels (ka-/kaa)"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.FL_IGNORE.fixedline.text
+msgid "Ignore"
+msgstr "Ignore"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_PUNCTUATION.checkbox.text
+msgid "Pu~nctuation characters"
+msgstr "Pu~nctuation characters"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_WHITESPACES.checkbox.text
+msgid "~Whitespace characters"
+msgstr "~Whitespace characters"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_MIDDLE_DOT.checkbox.text
+msgid "Midd~le dots"
+msgstr "Midd~le dots"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.tabpage.text
+msgctxt "optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.tabpage.text"
+msgid "Searching in Japanese"
+msgstr "Searching in Japanese"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.FT_URL.fixedtext.text
+msgid "~Database file"
+msgstr "~Database file"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.PB_BROWSEFILE.pushbutton.text
+msgid "~Browse..."
+msgstr "~Browse..."
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.FT_NAME.fixedtext.text
+msgid "Registered ~name"
+msgstr "Registered ~name"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.STR_EDIT_LINK.string.text
+msgid "Edit Database Link"
+msgstr "Edit Database Link"
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.STR_NEW_LINK.string.text
+msgid "Create Database Link"
+msgstr "Create Database Link"
+
+#: doclinkdialog.src#STR_LINKEDDOC_DOESNOTEXIST.string.text
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist."
+msgstr ""
+"The file\n"
+"$file$\n"
+"does not exist."
+
+#: doclinkdialog.src#STR_LINKEDDOC_NO_SYSTEM_FILE.string.text
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+msgstr ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+
+#: doclinkdialog.src#STR_NAME_CONFLICT.string.text
+msgid ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+msgstr ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+
+#: doclinkdialog.src#QUERY_DELETE_CONFIRM.querybox.text
+msgid "Do you want to delete the entry?"
+msgstr "Do you want to delete the entry?"
+
+#: optpath.src#RID_SFXPAGE_PATH.FT_TYPE.fixedtext.text
+#, fuzzy
+msgid "Type"
+msgstr "Type"
+
+#: optpath.src#RID_SFXPAGE_PATH.FT_PATH.fixedtext.text
+msgid "Path"
+msgstr "Path"
+
+#: optpath.src#RID_SFXPAGE_PATH.BTN_PATH.pushbutton.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.BTN_PATH.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Edit..."
+
+#: optpath.src#RID_SFXPAGE_PATH.BTN_STANDARD.pushbutton.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.BTN_STANDARD.pushbutton.text"
+msgid "~Default"
+msgstr "~Default"
+
+#: optpath.src#RID_SFXPAGE_PATH.GB_STD.fixedline.text
+msgid "Paths used by %PRODUCTNAME"
+msgstr "Paths used by %PRODUCTNAME"
+
+#: optpath.src#RID_SFXPAGE_PATH.STR_MULTIPATHDLG.string.text
+msgid "Edit Paths: %1"
+msgstr "Edit Paths: %1"
+
+#: optpath.src#RID_SFXPAGE_PATH.tabpage.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.tabpage.text"
+msgid "Paths"
+msgstr "Paths"
+
+#: optpath.src#RID_SVXERR_OPT_DOUBLEPATHS.errorbox.text
+msgid ""
+"The configuration and mail directories must be specified as separate directories.\n"
+"Please choose a new path."
+msgstr ""
+"The configuration and mail directories must be specified as separate directories.\n"
+"Please choose a new path."
+
+#: optpath.src#RID_SVXSTR_KEY_CONFIG_DIR.string.text
+msgid "Configuration"
+msgstr "Configuration"
+
+#: optpath.src#RID_SVXSTR_KEY_WORK_PATH.string.text
+msgid "My Documents"
+msgstr "My Documents"
+
+#: optpath.src#RID_SVXSTR_KEY_GRAPHICS_PATH.string.text
+msgid "Graphics"
+msgstr "Graphics"
+
+#: optpath.src#RID_SVXSTR_KEY_BITMAP_PATH.string.text
+msgid "Icons"
+msgstr "Icons"
+
+#: optpath.src#RID_SVXSTR_KEY_PALETTE_PATH.string.text
+msgid "Palettes"
+msgstr "Palettes"
+
+#: optpath.src#RID_SVXSTR_KEY_BACKUP_PATH.string.text
+msgid "Backups"
+msgstr "Backups"
+
+#: optpath.src#RID_SVXSTR_KEY_MODULES_PATH.string.text
+msgid "Modules"
+msgstr "Modules"
+
+#: optpath.src#RID_SVXSTR_KEY_TEMPLATE_PATH.string.text
+msgid "Templates"
+msgstr "Templates"
+
+#: optpath.src#RID_SVXSTR_KEY_GLOSSARY_PATH.string.text
+msgid "AutoText"
+msgstr "AutoText"
+
+#: optpath.src#RID_SVXSTR_KEY_DICTIONARY_PATH.string.text
+#, fuzzy
+msgid "Dictionaries"
+msgstr "Dictionaries"
+
+#: optpath.src#RID_SVXSTR_KEY_HELP_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_HELP_DIR.string.text"
+msgid "Help"
+msgstr "Help"
+
+#: optpath.src#RID_SVXSTR_KEY_GALLERY_DIR.string.text
+msgid "Gallery"
+msgstr "Gallery"
+
+#: optpath.src#RID_SVXSTR_KEY_STORAGE_DIR.string.text
+msgid "Message Storage"
+msgstr "Message Storage"
+
+#: optpath.src#RID_SVXSTR_KEY_TEMP_PATH.string.text
+msgid "Temporary files"
+msgstr "Temporary files"
+
+#: optpath.src#RID_SVXSTR_KEY_PLUGINS_PATH.string.text
+msgid "Plug-ins"
+msgstr "Plug-ins"
+
+#: optpath.src#RID_SVXSTR_KEY_FAVORITES_DIR.string.text
+msgid "Folder Bookmarks"
+msgstr "Folder Bookmarks"
+
+#: optpath.src#RID_SVXSTR_KEY_FILTER_PATH.string.text
+msgid "Filters"
+msgstr "Filters"
+
+#: optpath.src#RID_SVXSTR_KEY_ADDINS_PATH.string.text
+msgid "Add-ins"
+msgstr "Add-ins"
+
+#: optpath.src#RID_SVXSTR_KEY_USERCONFIG_PATH.string.text
+msgid "User Configuration"
+msgstr "User Configuration"
+
+#: optpath.src#RID_SVXSTR_KEY_USERDICTIONARY_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_USERDICTIONARY_DIR.string.text"
+msgid "User-defined dictionaries"
+msgstr "User-defined dictionaries"
+
+#: optpath.src#RID_SVXSTR_KEY_AUTOCORRECT_DIR.string.text
+msgid "AutoCorrect"
+msgstr "AutoCorrect"
+
+#: optpath.src#RID_SVXSTR_KEY_LINGUISTIC_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_LINGUISTIC_DIR.string.text"
+msgid "Writing aids"
+msgstr "Writing aids"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FL_OPTIONS.fixedline.text
+msgid "Online Update Options"
+msgstr "Online Update Options"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.CB_AUTOCHECK.checkbox.text
+msgid "~Check for updates automatically"
+msgstr "~Check for updates automatically"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYDAY.radiobutton.text
+msgid "Every Da~y"
+msgstr "Every Da~y"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYWEEK.radiobutton.text
+msgid "Every ~Week"
+msgstr "Every ~Week"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYMONTH.radiobutton.text
+msgid "Every ~Month"
+msgstr "Every ~Month"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FT_LASTCHECKED.fixedtext.text
+msgid "Last checked: %DATE%, %TIME%"
+msgstr "Last checked: %DATE%, %TIME%"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.PB_CHECKNOW.pushbutton.text
+msgid "Check ~now"
+msgstr "Check ~now"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.CB_AUTODOWNLOAD.checkbox.text
+msgid "~Download updates automatically"
+msgstr "~Download updates automatically"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FT_DESTPATHLABEL.fixedtext.text
+msgid "Download destination:"
+msgstr "Download destination:"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.PB_CHANGEPATH.pushbutton.text
+msgid "Ch~ange..."
+msgstr "Ch~ange..."
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.STR_NEVERCHECKED.string.text
+msgid "Last checked: Not yet"
+msgstr "Last checked: Not yet"
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.tabpage.text
+msgid "OnlineUpdate"
+msgstr "OnlineUpdate"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.FI_NEVERSHOWN.fixedtext.text
+msgid "Web login information (passwords are never shown)"
+msgstr "Web login information (passwords are never shown)"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_REMOVE.pushbutton.text
+msgid "Remove"
+msgstr "Remove"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_REMOVEALL.pushbutton.text
+msgid "Remove All"
+msgstr "Remove All"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CHANGE.pushbutton.text
+msgid "Change Password..."
+msgstr "Change Password..."
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CLOSE.cancelbutton.text
+msgctxt "webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.STR_WEBSITE.string.text
+msgid "Website"
+msgstr "Website"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.STR_USERNAME.string.text
+msgid "User name"
+msgstr "User name"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.modaldialog.text
+msgid "Stored Web Connection Information"
+msgstr "Stored Web Connection Information"
diff --git a/source/en-ZA/cui/source/tabpages.po b/source/en-ZA/cui/source/tabpages.po
new file mode 100644
index 00000000000..5b555b5ff16
--- /dev/null
+++ b/source/en-ZA/cui/source/tabpages.po
@@ -0,0 +1,5102 @@
+#. extracted from cui/source/tabpages.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Ftabpages.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-16 13:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_EVENT.string.text
+msgid "Event"
+msgstr "Event"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_ASSMACRO.string.text
+msgid "Assigned macro"
+msgstr "Assigned macro"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.FT_LABEL4LB_MACROS.fixedtext.text
+msgid "~Existing macros\n"
+msgstr "~Existing macros\n"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.PB_ASSIGN.pushbutton.text
+msgid "~Assign"
+msgstr "~Assign"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.PB_DELETE.pushbutton.text
+msgid "~Remove"
+msgstr "~Remove"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_MACROS.string.text
+msgid "Macros"
+msgstr "Macros"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.tabpage.text
+msgid "Assign Macro"
+msgstr "Assign Macro"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_POSITION.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Position"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POS_X.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POS_X.fixedtext.text"
+msgid "Position ~X"
+msgstr "Position ~X"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POS_Y.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POS_Y.fixedtext.text"
+msgid "Position ~Y"
+msgstr "Position ~Y"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POSREFERENCE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_POSREFERENCE.fixedtext.text"
+msgid "Base point"
+msgstr "Base point"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_POSRECT.control.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_POSRECT.control.text"
+msgid "-"
+msgstr "-"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_POSRECT.control.quickhelptext
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_POSRECT.control.quickhelptext"
+msgid "Base point"
+msgstr "Base point"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_SIZE.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Size"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_WIDTH.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_WIDTH.fixedtext.text"
+msgid "Wi~dth"
+msgstr "Wi~dth"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_HEIGHT.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "H~eight"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_SIZEREFERENCE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_SIZEREFERENCE.fixedtext.text"
+msgid "Base point"
+msgstr "Base point"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_SIZERECT.control.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_SIZERECT.control.text"
+msgid "-"
+msgstr "-"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_SIZERECT.control.quickhelptext
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CTL_SIZERECT.control.quickhelptext"
+msgid "Base point"
+msgstr "Base point"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.CBX_SCALE.checkbox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.CBX_SCALE.checkbox.text"
+msgid "~Keep ratio"
+msgstr "~Keep ratio"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_PROTECT.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_PROTECT.fixedline.text"
+msgid "Protect"
+msgstr "Protect"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_POSPROTECT.tristatebox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_POSPROTECT.tristatebox.text"
+msgid "Position"
+msgstr "Position"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_SIZEPROTECT.tristatebox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_SIZEPROTECT.tristatebox.text"
+msgid "~Size"
+msgstr "~Size"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ADJUST.fixedline.text
+msgid "Adapt"
+msgstr "Adapt"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_AUTOGROW_WIDTH.tristatebox.text
+msgid "~Fit width to text"
+msgstr "~Fit width to text"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_AUTOGROW_HEIGHT.tristatebox.text
+msgid "Fit ~height to text"
+msgstr "Fit ~height to text"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ANCHOR.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ANCHOR.fixedline.text"
+msgid "Anchor"
+msgstr "Anchor"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_ANCHOR.fixedtext.text
+msgid "~Anchor"
+msgstr "~Anchor"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.1.stringlist.text
+msgid "To paragraph"
+msgstr "To paragraph"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.2.stringlist.text
+msgid "As character"
+msgstr "As character"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.3.stringlist.text
+msgid "To page"
+msgstr "To page"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.4.stringlist.text
+msgid "To frame"
+msgstr "To frame"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_ORIENT.fixedtext.text
+msgid "P~osition"
+msgstr "P~osition"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.1.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.1.stringlist.text"
+msgid "From top"
+msgstr "From top"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.2.stringlist.text
+msgid "Above"
+msgstr "Above"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.3.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.3.stringlist.text"
+msgid "Centered"
+msgstr "Centered"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.4.stringlist.text
+msgid "Below"
+msgstr "Below"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.5.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.5.stringlist.text"
+msgid "Top of character"
+msgstr "Top of character"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.6.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.6.stringlist.text"
+msgid "Center of character"
+msgstr "Center of character"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.7.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.7.stringlist.text"
+msgid "Bottom of character"
+msgstr "Bottom of character"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.8.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.8.stringlist.text"
+msgid "Top of line"
+msgstr "Top of line"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.9.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.9.stringlist.text"
+msgid "Center of line"
+msgstr "Center of line"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.10.stringlist.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.10.stringlist.text"
+msgid "Bottom of line"
+msgstr "Bottom of line"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.tabpage.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.tabpage.text"
+msgid "Position and Size"
+msgstr "Position and Size"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FL_POSITION.fixedline.text
+msgid "Pivot point"
+msgstr "Pivot point"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_POS_X.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_POS_X.fixedtext.text"
+msgid "Position ~X"
+msgstr "Position ~X"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_POS_Y.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_POS_Y.fixedtext.text"
+msgid "Position ~Y"
+msgstr "Position ~Y"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_POSPRESETS.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_POSPRESETS.fixedtext.text"
+msgid "Default settings"
+msgstr "Default settings"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.CTL_RECT.control.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.CTL_RECT.control.text"
+msgid "-"
+msgstr "-"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.CTL_RECT.control.quickhelptext
+msgid "Rotation point"
+msgstr "Rotation point"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FL_ANGLE.fixedline.text
+msgid "Rotation angle"
+msgstr "Rotation angle"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "~Angle"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.MTR_FLD_ANGLE.metricfield.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " degrees"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLEPRESETS.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLEPRESETS.fixedtext.text"
+msgid "Default settings"
+msgstr "Default settings"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.CTL_ANGLE.control.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.CTL_ANGLE.control.text"
+msgid "-"
+msgstr "-"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.CTL_ANGLE.control.quickhelptext
+msgid "Rotation Angle"
+msgstr "Rotation Angle"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.tabpage.text
+msgid "Angle"
+msgstr "Angle"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FL_RADIUS.fixedline.text
+msgid "Corner radius"
+msgstr "Corner radius"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FT_RADIUS.fixedtext.text
+msgid "~Radius"
+msgstr "~Radius"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FL_SLANT.fixedline.text
+msgid "Slant"
+msgstr "Slant"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FT_ANGLE.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.FT_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "~Angle"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.MTR_FLD_ANGLE.metricfield.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " degrees"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.tabpage.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.tabpage.text"
+msgid "Slant & Corner Radius"
+msgstr "Slant & Corner Radius"
+
+#: transfrm.src#_POS_SIZE_TEXT.#define.text
+msgctxt "transfrm.src#_POS_SIZE_TEXT.#define.text"
+msgid "Position and Size"
+msgstr "Position and Size"
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.TAB_CONTROL.RID_SVXPAGE_ANGLE.pageitem.text
+msgid "Rotation"
+msgstr "Rotation"
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.TAB_CONTROL.RID_SVXPAGE_SLANT.pageitem.text
+msgctxt "transfrm.src#RID_SVXDLG_TRANSFORM.TAB_CONTROL.RID_SVXPAGE_SLANT.pageitem.text"
+msgid "Slant & Corner Radius"
+msgstr "Slant & Corner Radius"
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.tabdialog.text
+msgctxt "transfrm.src#RID_SVXDLG_TRANSFORM.tabdialog.text"
+msgid "Position and Size"
+msgstr "Position and Size"
+
+#: bbdlg.src#RID_SVXDLG_BBDLG.1.RID_SVXPAGE_BORDER.pageitem.text
+msgctxt "bbdlg.src#RID_SVXDLG_BBDLG.1.RID_SVXPAGE_BORDER.pageitem.text"
+msgid "Borders"
+msgstr "Borders"
+
+#: bbdlg.src#RID_SVXDLG_BBDLG.1.RID_SVXPAGE_BACKGROUND.pageitem.text
+msgctxt "bbdlg.src#RID_SVXDLG_BBDLG.1.RID_SVXPAGE_BACKGROUND.pageitem.text"
+msgid "Background"
+msgstr "Background"
+
+#: bbdlg.src#RID_SVXDLG_BBDLG.tabdialog.text
+msgid "Border / Background"
+msgstr "Border / Background"
+
+#: backgrnd.src#UNLINKED_IMAGE.#define.text
+msgid "Unlinked graphic"
+msgstr "Unlinked graphic"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_SELECTOR.fixedtext.text
+msgid "A~s"
+msgstr "A~s"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.1.stringlist.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.1.stringlist.text"
+msgid "Color"
+msgstr "Colour"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.2.stringlist.text
+msgid "Graphic"
+msgstr "Graphic"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_TBL_DESC.fixedtext.text
+msgid "F~or"
+msgstr "F~or"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.1.stringlist.text
+msgid "Cell"
+msgstr "Cell"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.2.stringlist.text
+msgid "Row"
+msgstr "Row"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.3.stringlist.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.3.stringlist.text"
+msgid "Table"
+msgstr "Table"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.1.stringlist.text
+msgid "Paragraph"
+msgstr "Paragraph"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.2.stringlist.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.2.stringlist.text"
+msgid "Character"
+msgstr "Character"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_BGDCOLOR.fixedline.text
+msgid "Background color"
+msgstr "Background colour"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_COL_TRANS.fixedtext.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_COL_TRANS.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Transparency"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_FILE.fixedline.text
+msgid "File"
+msgstr "File"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_BROWSE.pushbutton.text
+msgid "~Browse..."
+msgstr "~Browse..."
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_LINK.checkbox.text
+msgid "~Link"
+msgstr "~Link"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_POSITION.fixedline.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_POSITION.fixedline.text"
+msgid "Type"
+msgstr "Type"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_POSITION.radiobutton.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_POSITION.radiobutton.text"
+msgid "~Position"
+msgstr "~Position"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_AREA.radiobutton.text
+msgid "Ar~ea"
+msgstr "Ar~ea"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_TILE.radiobutton.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_TILE.radiobutton.text"
+msgid "~Tile"
+msgstr "~Tile"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FL_GRAPH_TRANS.fixedline.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.FL_GRAPH_TRANS.fixedline.text"
+msgid "Transparency"
+msgstr "Transparency"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_PREVIEW.checkbox.text
+msgid "Pre~view"
+msgstr "Pre~view"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.STR_BROWSE.string.text
+msgid "Find graphics"
+msgstr "Find graphics"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.tabpage.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.tabpage.text"
+msgid "Background"
+msgstr "Background"
+
+#: numpages.src#RID_SVXPAGE_PICK_BULLET.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_BULLET.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Selection"
+
+#: numpages.src#RID_SVXPAGE_PICK_SINGLE_NUM.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_SINGLE_NUM.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Selection"
+
+#: numpages.src#RID_SVXPAGE_PICK_NUM.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_NUM.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Selection"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_BMP.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr "Selection"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.CB_LINKED.checkbox.text
+msgid "~Link graphics"
+msgstr "~Link graphics"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.FT_ERROR.fixedtext.text
+msgid "The Gallery theme 'Bullets' is empty (no graphics)."
+msgstr "The Gallery theme 'Bullets' is empty (no graphics)."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_LEVEL.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_LEVEL.fixedtext.text"
+msgid "Level"
+msgstr "Level"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FL_FORMAT.fixedline.text
+msgid "Format"
+msgstr "Format"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_FMT.fixedtext.text
+msgid "~Numbering"
+msgstr "~Numbering"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.1.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.1.stringlist.text"
+msgid "1, 2, 3, ..."
+msgstr "1, 2, 3, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.2.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.2.stringlist.text"
+msgid "A, B, C, ..."
+msgstr "A, B, C, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.3.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.3.stringlist.text"
+msgid "a, b, c, ..."
+msgstr "a, b, c, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.4.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.4.stringlist.text"
+msgid "I, II, III, ..."
+msgstr "I, II, III, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.5.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.5.stringlist.text"
+msgid "i, ii, iii, ..."
+msgstr "i, ii, iii, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.6.stringlist.text
+#, fuzzy
+msgid "A, .., AA, .., AAA, ..."
+msgstr "A, .., AA, .., AAA, ... "
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.7.stringlist.text
+msgid "a, .., aa, .., aaa, ..."
+msgstr "a, .., aa, .., aaa, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.8.stringlist.text
+msgid "Bullet"
+msgstr "Bullet"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.9.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.9.stringlist.text"
+msgid "Graphics"
+msgstr "Graphics"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.10.stringlist.text
+msgid "Linked graphics"
+msgstr "Linked graphics"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.11.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.11.stringlist.text"
+msgid "None"
+msgstr "None"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.12.stringlist.text
+msgid "Native Numbering"
+msgstr "Native Numbering"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.13.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
+msgstr "А, Б, .., Аа, Аб, ... (Bulgarian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.14.stringlist.text
+msgid "а, б, .., аа, аб, ... (Bulgarian)"
+msgstr "а, б, .., аа, аб, ... (Bulgarian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.15.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
+msgstr "А, Б, .., Аа, Бб, ... (Bulgarian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.16.stringlist.text
+msgid "а, б, .., аа, бб, ... (Bulgarian)"
+msgstr "а, б, .., аа, бб, ... (Bulgarian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.17.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Russian)"
+msgstr "А, Б, .., Аа, Аб, ... (Russian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.18.stringlist.text
+msgid "а, б, .., аа, аб, ... (Russian)"
+msgstr "а, б, .., аа, аб, ... (Russian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.19.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Russian)"
+msgstr "А, Б, .., Аа, Бб, ... (Russian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.20.stringlist.text
+msgid "а, б, .., аа, бб, ... (Russian)"
+msgstr "а, б, .., аа, бб, ... (Russian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.21.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Serbian)"
+msgstr "А, Б, .., Аа, Аб, ... (Serbian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.22.stringlist.text
+msgid "а, б, .., аа, аб, ... (Serbian)"
+msgstr "а, б, .., аа, аб, ... (Serbian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.23.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Serbian)"
+msgstr "А, Б, .., Аа, Бб, ... (Serbian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.24.stringlist.text
+msgid "а, б, .., аа, бб, ... (Serbian)"
+msgstr "а, б, .., аа, бб, ... (Serbian)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.25.stringlist.text
+msgid "Α, Β, Γ, ... (Greek Upper Letter)"
+msgstr "Α, Β, Γ, ... (Greek Upper Letter)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.26.stringlist.text
+msgid "α, β, γ, ... (Greek Lower Letter)"
+msgstr "α, β, γ, ... (Greek Lower Letter)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_PREFIX.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_PREFIX.fixedtext.text"
+msgid "Before"
+msgstr "Before"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SUFFIX.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SUFFIX.fixedtext.text"
+msgid "After"
+msgstr "After"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_CHARFMT.fixedtext.text
+msgid "~Character Style"
+msgstr "~Character Style"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BUL_COLOR.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BUL_COLOR.fixedtext.text"
+msgid "Color"
+msgstr "Colour"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BUL_REL_SIZE.fixedtext.text
+msgid "~Relative size"
+msgstr "~Relative size"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALL_LEVEL.fixedtext.text
+msgid "Show sublevels"
+msgstr "Show sublevels"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_START.fixedtext.text
+msgid "Start at"
+msgstr "Start at"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALIGN.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALIGN.fixedtext.text"
+msgid "~Alignment"
+msgstr "~Alignment"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.1.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.1.stringlist.text"
+msgid "Left"
+msgstr "Left"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.2.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.2.stringlist.text"
+msgid "Centered"
+msgstr "Centered"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.3.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.3.stringlist.text"
+msgid "Right"
+msgstr "Right"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.STR_BULLET.string.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.STR_BULLET.string.text"
+msgid "Character"
+msgstr "Character"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BITMAP.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BITMAP.fixedtext.text"
+msgid "Graphics"
+msgstr "Graphics"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.MN_GRAPHIC_DLG.menuitem.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.MN_GRAPHIC_DLG.menuitem.text"
+msgid "From file..."
+msgstr "From file..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.MN_GALLERY.menuitem.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.MN_GALLERY.menuitem.text"
+msgid "Gallery"
+msgstr "Gallery"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.menubutton.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.menubutton.text"
+msgid "Select..."
+msgstr "Select..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SIZE.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SIZE.fixedtext.text"
+msgid "Width"
+msgstr "Width"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_MULT.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_MULT.fixedtext.text"
+msgid "Height"
+msgstr "Height"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.CB_RATIO.checkbox.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.CB_RATIO.checkbox.text"
+msgid "Keep ratio"
+msgstr "Keep ratio"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ORIENT.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ORIENT.fixedtext.text"
+msgid "Alignment"
+msgstr "Alignment"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.1.stringlist.text
+msgid "Top of baseline"
+msgstr "Top of baseline"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.2.stringlist.text
+msgid "Center of baseline"
+msgstr "Center of baseline"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.3.stringlist.text
+msgid "Bottom of baseline"
+msgstr "Bottom of baseline"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.4.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.4.stringlist.text"
+msgid "Top of character"
+msgstr "Top of character"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.5.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.5.stringlist.text"
+msgid "Center of character"
+msgstr "Center of character"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.6.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.6.stringlist.text"
+msgid "Bottom of character"
+msgstr "Bottom of character"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.7.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.7.stringlist.text"
+msgid "Top of line"
+msgstr "Top of line"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.8.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.8.stringlist.text"
+msgid "Center of line"
+msgstr "Center of line"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.9.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.9.stringlist.text"
+msgid "Bottom of line"
+msgstr "Bottom of line"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FL_SAME_LEVEL.fixedline.text
+msgid "All levels"
+msgstr "All levels"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.CB_SAME_LEVEL.checkbox.text
+msgid "~Consecutive numbering"
+msgstr "~Consecutive numbering"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.ST_POPUP_EMPTY_ENTRY.string.text
+msgid "There are no graphics in the 'Bullets' Gallery theme."
+msgstr "There are no graphics in the 'Bullets' Gallery theme."
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LEVEL.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LEVEL.fixedtext.text"
+msgid "Level"
+msgstr "Level"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FL_POSITION.fixedline.text
+msgid "Position and spacing"
+msgstr "Position and spacing"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_BORDERDIST.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.FT_BORDERDIST.fixedtext.text"
+msgid "Indent"
+msgstr "Indent"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.CB_RELATIVE.checkbox.text
+msgid "Relati~ve"
+msgstr "Relati~ve"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_INDENT.fixedtext.text
+msgid "Width of numbering"
+msgstr "Width of numbering"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_NUMDIST.fixedtext.text
+msgid "Minimum space numbering <-> text"
+msgstr "Minimum space numbering <-> text"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_ALIGN.fixedtext.text
+msgid "N~umbering alignment"
+msgstr "N~umbering alignment"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.1.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.1.stringlist.text"
+msgid "Left"
+msgstr "Left"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.2.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.2.stringlist.text"
+msgid "Centered"
+msgstr "Centered"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.3.stringlist.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.3.stringlist.text"
+msgid "Right"
+msgstr "Right"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LABEL_FOLLOWED_BY.fixedtext.text
+msgid "Numbering followed by"
+msgstr "Numbering followed by"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.1.stringlist.text
+msgid "Tab stop"
+msgstr "Tab stop"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.2.stringlist.text
+msgid "Space"
+msgstr "Space"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.3.stringlist.text
+msgid "Nothing"
+msgstr "Nothing"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LISTTAB.fixedtext.text
+msgid "at"
+msgstr "at"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_ALIGNED_AT.fixedtext.text
+msgid "Aligned at"
+msgstr "Aligned at"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_INDENT_AT.fixedtext.text
+msgid "Indent at"
+msgstr "Indent at"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.PB_STANDARD.pushbutton.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.PB_STANDARD.pushbutton.text"
+msgid "Default"
+msgstr "Default"
+
+#: numpages.src#RID_STR_EDIT_GRAPHIC.string.text
+msgid "Link"
+msgstr "Link"
+
+#: strings.src#RID_SVXSTR_DESC_GRADIENT.string.text
+msgid "Please enter a name for the gradient:"
+msgstr "Please enter a name for the gradient:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_GRADIENT.string.text
+msgid "Do you want to delete the gradient?"
+msgstr "Do you want to delete the gradient?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_GRADIENT.string.text
+msgid ""
+"The gradient was modified without saving. \n"
+"Modify the selected gradient or add a new gradient."
+msgstr ""
+"The gradient was modified without saving. \n"
+"Modify the selected gradient or add a new gradient."
+
+#: strings.src#RID_SVXSTR_DESC_NEW_BITMAP.string.text
+msgid "Please enter a name for the bitmap:"
+msgstr "Please enter a name for the bitmap:"
+
+#: strings.src#RID_SVXSTR_DESC_EXT_BITMAP.string.text
+msgid "Please enter a name for the external bitmap:"
+msgstr "Please enter a name for the external bitmap:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_BITMAP.string.text
+msgid "Are you sure you want to delete the bitmap?"
+msgstr "Are you sure you want to delete the bitmap?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_BITMAP.string.text
+msgid ""
+"The bitmap was modified without saving. \n"
+"Modify the selected bitmap or add a new bitmap."
+msgstr ""
+"The bitmap was modified without saving. \n"
+"Modify the selected bitmap or add a new bitmap."
+
+#: strings.src#RID_SVXSTR_DESC_LINESTYLE.string.text
+msgid "Please enter a name for the line style:"
+msgstr "Please enter a name for the line style:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_LINESTYLE.string.text
+msgid "Do you want to delete the line style?"
+msgstr "Do you want to delete the line style?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_LINESTYLE.string.text
+msgid ""
+"The line style was modified without saving. \n"
+"Modify the selected line style or add a new line style."
+msgstr ""
+"The line style was modified without saving. \n"
+"Modify the selected line style or add a new line style."
+
+#: strings.src#RID_SVXSTR_DESC_HATCH.string.text
+msgid "Please enter a name for the hatching:"
+msgstr "Please enter a name for the hatching:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_HATCH.string.text
+msgid "Do you want to delete the hatching?"
+msgstr "Do you want to delete the hatching?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_HATCH.string.text
+msgid ""
+"The hatching type was modified but not saved. \n"
+"Modify the selected hatching type or add a new hatching type."
+msgstr ""
+"The hatching type was modified but not saved. \n"
+"Modify the selected hatching type or add a new hatching type."
+
+#: strings.src#RID_SVXSTR_CHANGE.string.text
+msgid "Modify"
+msgstr "Modify"
+
+#: strings.src#RID_SVXSTR_ADD.string.text
+msgctxt "strings.src#RID_SVXSTR_ADD.string.text"
+msgid "Add"
+msgstr "Add"
+
+#: strings.src#RID_SVXSTR_DESC_COLOR.string.text
+msgid "Please enter a name for the new color:"
+msgstr "Please enter a name for the new colour:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_COLOR.string.text
+msgid "Do you want to delete the color?"
+msgstr "Do you want to delete the colour?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_COLOR.string.text
+msgid ""
+"The color was modified without saving.\n"
+"Modify the selected color or add a new color."
+msgstr ""
+"The colour was modified without saving.\n"
+"Modify the selected colour or add a new colour."
+
+#: strings.src#RID_SVXSTR_TABLE.string.text
+msgctxt "strings.src#RID_SVXSTR_TABLE.string.text"
+msgid "Table"
+msgstr "Table"
+
+#: strings.src#RID_SVXSTR_WRITE_DATA_ERROR.string.text
+msgid "The file could not be saved!"
+msgstr "The file could not be saved!"
+
+#: strings.src#RID_SVXSTR_READ_DATA_ERROR.string.text
+msgid "The file could not be loaded!"
+msgstr "The file could not be loaded!"
+
+#: strings.src#RID_SVXSTR_WARN_TABLE_OVERWRITE.string.text
+msgid "The list was modified without saving. Would you like to save the list now?"
+msgstr "The list was modified without saving. Would you like to save the list now?"
+
+#: strings.src#RID_SVXSTR_WARN_NAME_DUPLICATE.string.text
+msgid ""
+"The name you have entered already exists. \n"
+"Please choose another name."
+msgstr ""
+"The name you have entered already exists. \n"
+"Please choose another name."
+
+#: strings.src#RID_SVXSTR_DESC_LINEEND.string.text
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Please enter a name for the new arrowhead:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_LINEEND.string.text
+msgid "Do you want to delete the arrowhead?"
+msgstr "Do you want to delete the arrowhead?"
+
+#: strings.src#RID_SVXSTR_ASK_CHANGE_LINEEND.string.text
+msgid ""
+"The arrowhead was modified without saving.\n"
+"Would you like to save the arrowhead now?"
+msgstr ""
+"The arrowhead was modified without saving.\n"
+"Would you like to save the arrowhead now?"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_ALIGNMENT.fixedline.text
+msgid "Text alignment"
+msgstr "Text alignment"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_HORALIGN.fixedtext.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FT_HORALIGN.fixedtext.text"
+msgid "Hori~zontal"
+msgstr "Hori~zontal"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.1.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.1.stringlist.text"
+msgid "Default"
+msgstr "Default"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.2.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.2.stringlist.text"
+msgid "Left"
+msgstr "Left"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.3.stringlist.text
+msgid "Center"
+msgstr "Center"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.4.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.4.stringlist.text"
+msgid "Right"
+msgstr "Right"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.5.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.5.stringlist.text"
+msgid "Justified"
+msgstr "Justified"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.6.stringlist.text
+msgid "Filled"
+msgstr "Filled"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text"
+msgid "Distributed"
+msgstr "Distribution"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_INDENT.fixedtext.text
+msgid "I~ndent"
+msgstr "I~ndent"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_VERALIGN.fixedtext.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FT_VERALIGN.fixedtext.text"
+msgid "~Vertical"
+msgstr "~Vertical"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.1.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.1.stringlist.text"
+msgid "Default"
+msgstr "Default"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.2.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.2.stringlist.text"
+msgid "Top"
+msgstr "Top"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.3.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.3.stringlist.text"
+msgid "Middle"
+msgstr "Middle"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.4.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.4.stringlist.text"
+msgid "Bottom"
+msgstr "Bottom"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text"
+msgid "Justified"
+msgstr "Justified"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text"
+msgid "Distributed"
+msgstr "Distribution"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_ORIENTATION.fixedline.text
+msgid "Text orientation"
+msgstr "Text orientation"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text
+msgid "Ve~rtically stacked"
+msgstr "Ve~rtically stacked"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_DEGREES.fixedtext.text
+msgid "De~grees"
+msgstr "De~grees"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_BORDER_LOCK.fixedtext.text
+msgid "Re~ference edge"
+msgstr "Re~ference edge"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_ASIAN_VERTICAL.tristatebox.text
+msgid "Asian layout ~mode"
+msgstr "Asian layout ~mode"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_WRAP.fixedline.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FL_WRAP.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_WRAP.tristatebox.text
+msgid "~Wrap text automatically"
+msgstr "~Wrap text automatically"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_HYPH.tristatebox.text
+msgid "Hyphenation ~active"
+msgstr "Hyphenation ~active"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_SHRINK.tristatebox.text
+msgid "~Shrink to fit cell size"
+msgstr "~Shrink to fit cell size"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_TEXTFLOW.fixedtext.text
+msgid "Te~xt direction"
+msgstr "Te~xt direction"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_BOTTOMLOCK.string.text
+msgid "Text Extension From Lower Cell Border"
+msgstr "Text Extension From Lower Cell Border"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_TOPLOCK.string.text
+msgid "Text Extension From Upper Cell Border"
+msgstr "Text Extension From Upper Cell Border"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_CELLLOCK.string.text
+msgid "Text Extension Inside Cell"
+msgstr "Text Extension Inside Cell"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.tabpage.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.tabpage.text"
+msgid "Alignment"
+msgstr "Alignment"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_WEST.fixedline.text
+msgid "Western text font"
+msgstr "Western text font"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.1.stringlist.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.2.stringlist.text"
+msgid "Italic"
+msgstr "Italic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.3.stringlist.text"
+msgid "Bold"
+msgstr "Bold"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE.4.stringlist.text"
+msgid "Bold italic"
+msgstr "Bold italic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.1.stringlist.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.2.stringlist.text"
+msgid "Italic"
+msgstr "Italic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.3.stringlist.text"
+msgid "Bold"
+msgstr "Bold"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_WEST_STYLE_NOCJK.4.stringlist.text"
+msgid "Bold italic"
+msgstr "Bold italic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_SIZE.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_SIZE.fixedtext.text"
+msgid "Size"
+msgstr "Size"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_SIZE_NOCJK.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_SIZE_NOCJK.fixedtext.text"
+msgid "Size"
+msgstr "Size"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_LANG.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_LANG.fixedtext.text"
+msgid "Language"
+msgstr "Language"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_LANG_NOCJK.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_WEST_LANG_NOCJK.fixedtext.text"
+msgid "~Language"
+msgstr "~Language"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_EAST.fixedline.text
+msgid "Asian text font"
+msgstr "Asian text font"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.1.stringlist.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.2.stringlist.text"
+msgid "Italic"
+msgstr "Italic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.3.stringlist.text"
+msgid "Bold"
+msgstr "Bold"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_EAST_STYLE.4.stringlist.text"
+msgid "Bold italic"
+msgstr "Bold italic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_EAST_SIZE.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_EAST_SIZE.fixedtext.text"
+msgid "Size"
+msgstr "Size"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_EAST_LANG.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_EAST_LANG.fixedtext.text"
+msgid "Language"
+msgstr "Language"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_CTL.fixedline.text
+msgid "CTL font"
+msgstr "CTL font"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.1.stringlist.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.2.stringlist.text"
+msgid "Italic"
+msgstr "Italic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.3.stringlist.text"
+msgid "Bold"
+msgstr "Bold"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.LB_CTL_STYLE.4.stringlist.text"
+msgid "Bold italic"
+msgstr "Bold italic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_CTL_SIZE.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_CTL_SIZE.fixedtext.text"
+msgid "Size"
+msgstr "Size"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_CTL_LANG.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_CTL_LANG.fixedtext.text"
+msgid "Language"
+msgstr "Language"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.WIN_CHAR_PREVIEW.window.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.WIN_CHAR_PREVIEW.window.text"
+msgid "Example"
+msgstr "Example"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_COLOR2.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_COLOR2.fixedline.text"
+msgid "Color"
+msgstr "Colour"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_COLOR2.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FT_COLOR2.fixedtext.text"
+msgid "Font ~color"
+msgstr "Font ~colour"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_NOSTYLE.string.text
+msgid "No %1"
+msgstr "No %1"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TRANSPARENT.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TRANSPARENT.string.text"
+msgid "Transparent"
+msgstr "Transparent"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_FAMILY.string.text
+#, fuzzy
+msgid "Family"
+msgstr "Tamil"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_FONT.string.text
+msgid "Font"
+msgstr "Font"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_STYLE.string.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_STYLE.string.text"
+msgid "Style"
+msgstr "Style"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TYPEFACE.string.text
+msgid "Typeface"
+msgstr "Typeface"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_FONTCOLOR.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_FONTCOLOR.fixedtext.text"
+msgid "Font ~color"
+msgstr "Font ~colour"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_EFFECTS.fixedtext.text
+msgid "~Effects"
+msgstr "~Effects"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Without)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.2.stringlist.text"
+msgid "Capitals"
+msgstr "Capitals"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.3.stringlist.text"
+msgid "Lowercase"
+msgstr "Lowercase"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.4.stringlist.text"
+msgid "Title"
+msgstr "Title"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.5.stringlist.text
+msgid "Small capitals"
+msgstr "Small capitals"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_RELIEF.fixedtext.text
+msgid "~Relief"
+msgstr "~Relief"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Without)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.2.stringlist.text
+msgid "Embossed"
+msgstr "Embossed"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.3.stringlist.text
+msgid "Engraved"
+msgstr "Engraved"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_OUTLINE.tristatebox.text
+msgid "Out~line"
+msgstr "Out~line"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_SHADOW.tristatebox.text
+msgid "Sha~dow"
+msgstr "Sha~dow"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_BLINKING.tristatebox.text
+msgid "~Blinking"
+msgstr "~Blinking"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_CHARHIDDEN.tristatebox.text
+msgid "H~idden"
+msgstr "H~idden"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_OVERLINE.fixedtext.text
+msgid "~Overlining"
+msgstr "~Overlining"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Without)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.2.stringlist.text"
+msgid "Single"
+msgstr "Single"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.3.stringlist.text"
+msgid "Double"
+msgstr "Double"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.4.stringlist.text"
+msgid "Bold"
+msgstr "Bold"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.5.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.5.stringlist.text"
+msgid "Dotted"
+msgstr "Dotted"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.6.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.6.stringlist.text"
+msgid "Dotted (Bold)"
+msgstr "Dotted (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.7.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.7.stringlist.text"
+msgid "Dash"
+msgstr "Dash"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.8.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.8.stringlist.text"
+msgid "Dash (Bold)"
+msgstr "Dash (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.9.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.9.stringlist.text"
+msgid "Long Dash"
+msgstr "Long Dash"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.10.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.10.stringlist.text"
+msgid "Long Dash (Bold)"
+msgstr "Long Dash (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.11.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.11.stringlist.text"
+msgid "Dot Dash"
+msgstr "Dot Dash"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.12.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.12.stringlist.text"
+msgid "Dot Dash (Bold)"
+msgstr "Dot Dash (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.13.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.13.stringlist.text"
+msgid "Dot Dot Dash"
+msgstr "Dot Dot Dash"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.14.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.14.stringlist.text"
+msgid "Dot Dot Dash (Bold)"
+msgstr "Dot Dot Dash (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.15.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.15.stringlist.text"
+msgid "Wave"
+msgstr "Wave"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.16.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.16.stringlist.text"
+msgid "Wave (Bold)"
+msgstr "Wave (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.17.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_OVERLINE.17.stringlist.text"
+msgid "Double Wave"
+msgstr "Double Wave"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_OVERLINE_COLOR.fixedtext.text
+msgid "O~verline color"
+msgstr "O~verline colour"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_STRIKEOUT.fixedtext.text
+msgid "~Strikethrough"
+msgstr "~Strikethrough"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Without)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.2.stringlist.text"
+msgid "Single"
+msgstr "Single"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.3.stringlist.text"
+msgid "Double"
+msgstr "Double"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.4.stringlist.text"
+msgid "Bold"
+msgstr "Bold"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.5.stringlist.text
+msgid "With /"
+msgstr "With /"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.6.stringlist.text
+msgid "With X"
+msgstr "With X"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_UNDERLINE.fixedtext.text
+msgid "~Underlining"
+msgstr "~Underlining"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Without)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.2.stringlist.text"
+msgid "Single"
+msgstr "Single"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.3.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.3.stringlist.text"
+msgid "Double"
+msgstr "Double"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.4.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.4.stringlist.text"
+msgid "Bold"
+msgstr "Bold"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.5.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.5.stringlist.text"
+msgid "Dotted"
+msgstr "Dotted"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.6.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.6.stringlist.text"
+msgid "Dotted (Bold)"
+msgstr "Dotted (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.7.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.7.stringlist.text"
+msgid "Dash"
+msgstr "Dash"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.8.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.8.stringlist.text"
+msgid "Dash (Bold)"
+msgstr "Dash (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.9.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.9.stringlist.text"
+msgid "Long Dash"
+msgstr "Long Dash"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.10.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.10.stringlist.text"
+msgid "Long Dash (Bold)"
+msgstr "Long Dash (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.11.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.11.stringlist.text"
+msgid "Dot Dash"
+msgstr "Dot Dash"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.12.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.12.stringlist.text"
+msgid "Dot Dash (Bold)"
+msgstr "Dot Dash (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.13.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.13.stringlist.text"
+msgid "Dot Dot Dash"
+msgstr "Dot Dot Dash"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.14.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.14.stringlist.text"
+msgid "Dot Dot Dash (Bold)"
+msgstr "Dot Dot Dash (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.15.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.15.stringlist.text"
+msgid "Wave"
+msgstr "Wave"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.16.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.16.stringlist.text"
+msgid "Wave (Bold)"
+msgstr "Wave (Bold)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.17.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_UNDERLINE.17.stringlist.text"
+msgid "Double Wave"
+msgstr "Double Wave"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_UNDERLINE_COLOR.fixedtext.text
+msgid "U~nderline color"
+msgstr "U~nderline colour"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_INDIVIDUALWORDS.checkbox.text
+msgid "Individual ~words"
+msgstr "Individual ~words"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_EMPHASIS.fixedtext.text
+msgid "Emp~hasis mark"
+msgstr "Emp~hasis mark"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.1.stringlist.text"
+msgid "(Without)"
+msgstr "(Without)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.2.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.2.stringlist.text"
+msgid "Dot"
+msgstr "Dot"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.3.stringlist.text
+msgid "Circle"
+msgstr "Circle"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.4.stringlist.text
+msgid "Disc"
+msgstr "Disc"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.5.stringlist.text
+msgid "Accent"
+msgstr "Accent"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_POSITION.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_POSITION.fixedtext.text"
+msgid "~Position"
+msgstr "~Position"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_POSITION.1.stringlist.text
+msgid "Above text"
+msgstr "Above text"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_POSITION.2.stringlist.text
+msgid "Below text"
+msgstr "Below text"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.WIN_EFFECTS_PREVIEW.window.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.WIN_EFFECTS_PREVIEW.window.text"
+msgid "Example"
+msgstr "Example"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_CAPITALS.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_CAPITALS.string.text"
+msgid "Capitals"
+msgstr "Capitals"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_LOWERCASE.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_LOWERCASE.string.text"
+msgid "Lowercase"
+msgstr "Lowercase"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_TITLE.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_TITLE.string.text"
+msgid "Title"
+msgstr "Title"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_SMALL.string.text
+msgid "Small Capitals"
+msgstr "Small Capitals"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_OUTLINE.string.text
+msgid "Outline"
+msgstr "Outline"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_SHADOW.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_SHADOW.string.text"
+msgid "Shadow"
+msgstr "Shadow"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_BLINKING.string.text
+msgid "Blinking"
+msgstr "Blinking"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_CHARNAME_TRANSPARENT.string.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_CHARNAME_TRANSPARENT.string.text"
+msgid "Transparent"
+msgstr "Transparent"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_POSITION.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Position"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_HIGHPOS.radiobutton.text
+msgid "Superscript"
+msgstr "Superscript"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_NORMALPOS.radiobutton.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_NORMALPOS.radiobutton.text"
+msgid "Normal"
+msgstr "Normal"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_LOWPOS.radiobutton.text
+msgid "Subscript"
+msgstr "Subscript"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_HIGHLOW.fixedtext.text
+msgid "~Raise/lower by"
+msgstr "~Raise/lower by"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_HIGHLOW.checkbox.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_HIGHLOW.checkbox.text"
+msgid "A~utomatic"
+msgstr "A~utomatic"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_FONTSIZE.fixedtext.text
+msgid "Relative font size"
+msgstr "Relative font size"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_ROTATION_SCALING.fixedline.text
+msgid "Rotation / scaling"
+msgstr "Rotation / scaling"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_SCALING.fixedline.text
+msgid "Scaling"
+msgstr "Scaling"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_0_DEG.radiobutton.text
+msgid "~0 degrees"
+msgstr "~0 degrees"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_90_DEG.radiobutton.text
+msgid "~90 degrees"
+msgstr "~90 degrees"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_270_DEG.radiobutton.text
+msgid "~270 degrees"
+msgstr "~270 degrees"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_FIT_TO_LINE.checkbox.text
+msgid "Fit to line"
+msgstr "Fit to line"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_SCALE_WIDTH.fixedtext.text
+msgid "Scale ~width"
+msgstr "Scale ~width"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_KERNING2.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_KERNING2.fixedline.text"
+msgid "Spacing"
+msgstr "Spacing"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.1.stringlist.text"
+msgid "Default"
+msgstr "Default"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.2.stringlist.text
+msgid "Expanded"
+msgstr "Expanded"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.3.stringlist.text
+msgid "Condensed"
+msgstr "Condensed"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_KERNING2.fixedtext.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_KERNING2.fixedtext.text"
+msgid "b~y"
+msgstr "b~y"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_PAIRKERNING.checkbox.text
+msgid "~Pair kerning"
+msgstr "~Pair kerning"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.WIN_POS_PREVIEW.window.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.WIN_POS_PREVIEW.window.text"
+msgid "Example"
+msgstr "Example"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FL_SWITCHON.fixedline.text
+msgid "Double-lined"
+msgstr "Double-lined"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.CB_TWOLINES.checkbox.text
+msgid "~Write in double lines"
+msgstr "~Write in double lines"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FL_ENCLOSE.fixedline.text
+msgid "Enclosing character"
+msgstr "Enclosing character"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FT_STARTBRACKET.fixedtext.text
+msgid "I~nitial character"
+msgstr "I~nitial character"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.1.stringlist.text"
+msgid "(None)"
+msgstr "(None)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.2.stringlist.text
+msgid "("
+msgstr "("
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.3.stringlist.text
+msgid "["
+msgstr "["
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.4.stringlist.text
+msgid "<"
+msgstr "<"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.5.stringlist.text
+msgid "{"
+msgstr "{"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.6.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_STARTBRACKET.6.stringlist.text"
+msgid "Other Characters..."
+msgstr "Other Characters..."
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FT_ENDBRACKET.fixedtext.text
+msgid "Final charact~er"
+msgstr "Final charact~er"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.1.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.1.stringlist.text"
+msgid "(None)"
+msgstr "(None)"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.2.stringlist.text
+msgid ")"
+msgstr ")"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.3.stringlist.text
+msgid "]"
+msgstr "]"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.4.stringlist.text
+msgid ">"
+msgstr ">"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.5.stringlist.text
+msgid "}"
+msgstr "}"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.6.stringlist.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.ED_ENDBRACKET.6.stringlist.text"
+msgid "Other Characters..."
+msgstr "Other Characters..."
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.WIN_TWOLINES_PREVIEW.window.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.WIN_TWOLINES_PREVIEW.window.text"
+msgid "Example"
+msgstr "Example"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_REPLACE.pageitem.text
+msgid "Replace"
+msgstr "Replace"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_EXCEPT.pageitem.text
+msgid "Exceptions"
+msgstr "Exceptions"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_OPTIONS.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_OPTIONS.pageitem.text"
+msgid "Options"
+msgstr "Options"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOFMT_APPLY.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOFMT_APPLY.pageitem.text"
+msgid "Options"
+msgstr "Options"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_QUOTE.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_QUOTE.pageitem.text"
+msgid "Localized Options"
+msgstr "Localized Options"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.pageitem.text"
+msgid "Word Completion"
+msgstr "Word Completion"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_SMARTTAG_OPTIONS.pageitem.text
+msgctxt "autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_SMARTTAG_OPTIONS.pageitem.text"
+msgid "Smart Tags"
+msgstr "Smart Tags"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.FT_LANG.fixedtext.text
+msgid "Replacements and exceptions for language:"
+msgstr "Replacements and exceptions for language:"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.tabdialog.text
+msgid "AutoCorrect"
+msgstr "AutoCorrect"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_USE_REPLACE.string.text
+msgid "Use replacement table"
+msgstr "Use replacement table"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CPTL_STT_WORD.string.text
+msgid "Correct TWo INitial CApitals"
+msgstr "Correct TWo INitial CApitals"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CPTL_STT_SENT.string.text
+msgid "Capitalize first letter of every sentence"
+msgstr "Capitalize first letter of every sentence"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_BOLD_UNDER.string.text
+msgid "Automatic *bold* and _underline_"
+msgstr "Automatic *bold* and _underline_"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.STR_NO_DBL_SPACES.string.text
+msgid "Ignore double spaces"
+msgstr "Ignore double spaces"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_DETECT_URL.string.text
+msgid "URL Recognition"
+msgstr "URL Recognition"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_DASH.string.text
+msgid "Replace dashes"
+msgstr "Replace dashes"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CORRECT_ACCIDENTAL_CAPS_LOCK.string.text
+msgid "Correct accidental use of cAPS LOCK key"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_OPTIONS.tabpage.text
+msgid "Settings"
+msgstr "Settings"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.PB_EDIT.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.PB_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Edit..."
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER1.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER1.string.text"
+msgid "[M]"
+msgstr "[M]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER2.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER2.string.text"
+msgid "[T]"
+msgstr "[T]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.FT_HEADER1_EXPLANATION.fixedtext.text
+msgid "[M]: Replace while modifying existing text"
+msgstr "[M]: Replace while modifying existing text"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.FT_HEADER2_EXPLANATION.fixedtext.text
+msgid "[T]: AutoFormat/AutoCorrect while typing"
+msgstr "[T]: AutoFormat/AutoCorrect while typing"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_DEL_EMPTY_PARA.string.text
+msgid "Remove blank paragraphs"
+msgstr "Remove blank paragraphs"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_USER_STYLE.string.text
+msgid "Replace Custom Styles"
+msgstr "Replace Custom Styles"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_BULLET.string.text
+msgid "Replace bullets with: "
+msgstr "Replace bullets with: "
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_RIGHT_MARGIN.string.text
+msgid "Combine single line paragraphs if length greater than"
+msgstr "Combine single line paragraphs if length greater than"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_NUM.string.text
+msgid "Apply numbering - symbol: "
+msgstr "Apply numbering - symbol: "
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_BORDER.string.text
+msgid "Apply border"
+msgstr "Apply border"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_TABLE.string.text
+msgid "Create table"
+msgstr "Create table"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_REPLACE_TEMPLATES.string.text
+msgid "Apply Styles"
+msgstr "Apply Styles"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_DEL_SPACES_AT_STT_END.string.text
+msgid "Delete spaces and tabs at beginning and end of paragraph"
+msgstr "Delete spaces and tabs at beginning and end of paragraph"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_DEL_SPACES_BETWEEN_LINES.string.text
+msgid "Delete spaces and tabs at end and start of line"
+msgstr "Delete spaces and tabs at end and start of line"
+
+#: autocdlg.src#RID_OFADLG_PRCNT_SET.FL_PRCNT.fixedline.text
+msgid "Minimum size"
+msgstr "Minimum size"
+
+#: autocdlg.src#RID_OFADLG_PRCNT_SET.modaldialog.text
+msgid "Combine"
+msgstr "Combine"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_SHORT.fixedtext.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_SHORT.fixedtext.text"
+msgid "Repla~ce"
+msgstr "Repla~ce"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_REPLACE.fixedtext.text
+msgid "~With:"
+msgstr "~With:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.CB_TEXT_ONLY.checkbox.text
+msgid "~Text only"
+msgstr "~Text only"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.PB_NEW_REPLACE.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.PB_NEW_REPLACE.pushbutton.text"
+msgid "~New"
+msgstr "~New"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.PB_DELETE_REPLACE.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.PB_DELETE_REPLACE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.STR_MODIFY.string.text
+msgid "~Replace"
+msgstr "~Replace"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.FL_ABBREV.fixedline.text
+msgid "Abbreviations (no subsequent capital)"
+msgstr "Abbreviations (no subsequent capital)"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWABBREV.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWABBREV.pushbutton.text"
+msgid "~New"
+msgstr "~New"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELABBREV.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELABBREV.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.CB_AUTOABBREV.checkbox.text
+msgid "~AutoInclude"
+msgstr "~AutoInclude"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.FL_DOUBLECAPS.fixedline.text
+msgid "Words with TWo INitial CApitals"
+msgstr "Words with TWo INitial CApitals"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWDOUBLECAPS.pushbutton.text
+msgid "Ne~w"
+msgstr "Ne~w"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELDOUBLECAPS.pushbutton.text
+msgid "Dele~te"
+msgstr "Dele~te"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.CB_AUTOCAPS.checkbox.text
+msgid "A~utoInclude"
+msgstr "A~utoInclude"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_NEWABBREV.string.text
+#, fuzzy
+msgid "New abbreviations"
+msgstr "Abbreviation"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_DELABBREV.string.text
+#, fuzzy
+msgid "Delete abbreviations"
+msgstr "Delete options"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_NEWDOUBLECAPS.string.text
+msgid "New words with two initial capitals"
+msgstr "New words with two initial capitals"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_DELDOUBLECAPS.string.text
+msgid "Delete words with two initial capitals"
+msgstr "Delete words with two initial capitals"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER1.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER1.string.text"
+msgid "[M]"
+msgstr "[M]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER2.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER2.string.text"
+msgid "[T]"
+msgstr "[T]"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_NON_BREAK_SPACE.string.text
+msgid "Add non breaking space before specific punctuation marks in french text"
+msgstr "Add non breaking space before specific punctuation marks in french text"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_ORDINAL.string.text
+msgid "Format ordinal numbers suffixes (1st -> 1^st)"
+msgstr "Format ordinal numbers suffixes (1st -> 1^st)"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FL_SINGLE.fixedline.text
+msgid "Single quotes"
+msgstr "Single quotes"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_SGL_TYPO.checkbox.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_SGL_TYPO.checkbox.text"
+msgid "Repla~ce"
+msgstr "Repla~ce"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_SGL_STARTQUOTE.fixedtext.text
+msgid "~Start quote:"
+msgstr "~Start quote:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_SGL_ENDQUOTE.fixedtext.text
+msgid "~End quote:"
+msgstr "~End quote:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_SGL_STD.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_SGL_STD.pushbutton.text"
+msgid "~Default"
+msgstr "~Default"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FL_DOUBLE.fixedline.text
+msgid "Double quotes"
+msgstr "Double quotes"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_TYPO.checkbox.text
+msgid "Repl~ace"
+msgstr "Repl~ace"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_STARTQUOTE.fixedtext.text
+msgid "Start q~uote:"
+msgstr "Start q~uote:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_ENDQUOTE.fixedtext.text
+msgid "E~nd quote:"
+msgstr "E~nd quote:"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_DBL_STD.pushbutton.text
+msgid "De~fault"
+msgstr "De~fault"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_CHANGE_START.string.text
+msgid "Start quote"
+msgstr "Start quote"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_CHANGE_END.string.text
+msgid "End quote"
+msgstr "End quote"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_STANDARD.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_STANDARD.string.text"
+msgid "Default"
+msgstr "Default"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_STD.string.text
+#, fuzzy
+msgid "Single quotes default"
+msgstr "Single quotes"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_STD.string.text
+#, fuzzy
+msgid "Double quotes default"
+msgstr "Double quotes"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_START.string.text
+#, fuzzy
+msgid "Start quote of single quotes"
+msgstr "Single quotes"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_START.string.text
+#, fuzzy
+msgid "Start quote of double quotes"
+msgstr "Single quotes"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_END.string.text
+#, fuzzy
+msgid "End quote of single quotes"
+msgstr "Single quotes"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_END.string.text
+#, fuzzy
+msgid "End quote of double quotes"
+msgstr "Double quotes"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text"
+msgid "Localized Options"
+msgstr "Localized Options"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_ACTIV.checkbox.text
+msgid "Enable word ~completion"
+msgstr "Enable word ~completion"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_APPEND_SPACE.checkbox.text
+msgid "~Append space"
+msgstr "~Append space"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_AS_TIP.checkbox.text
+msgid "~Show as tip"
+msgstr "~Show as tip"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_COLLECT.checkbox.text
+msgid "C~ollect words"
+msgstr "C~ollect words"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_REMOVE_LIST.checkbox.text
+msgid "~When closing a document, remove the words collected from it from the list"
+msgstr "~When closing a document, remove the words collected from it from the list"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_EXPAND_KEY.fixedtext.text
+msgid "Acc~ept with"
+msgstr "Acc~ept with"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_MIN_WORDLEN.fixedtext.text
+msgid "Mi~n. word length"
+msgstr "Mi~n. word length"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_MAX_ENTRIES.fixedtext.text
+msgid "~Max. entries"
+msgstr "~Max. entries"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.PB_ENTRIES.pushbutton.text
+msgid "~Delete Entry"
+msgstr "~Delete Entry"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.tabpage.text"
+msgid "Word Completion"
+msgstr "Word Completion"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.CB_SMARTTAGS.checkbox.text
+msgid "Label text with smart tags"
+msgstr "Label text with smart tags"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.FT_SMARTTAGS.fixedtext.text
+msgid "Currently installed smart tags"
+msgstr "Currently installed smart tags"
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.PB_SMARTTAGS.pushbutton.text
+msgid "Properties..."
+msgstr "Properties..."
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.tabpage.text"
+msgid "Smart Tags"
+msgstr "Smart Tags"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_PAPER_SIZE.fixedline.text
+msgid "Paper format"
+msgstr "Paper format"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_FORMAT.fixedtext.text
+msgid "~Format"
+msgstr "~Format"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_WIDTH.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_PAPER_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Width"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_HEIGHT.fixedtext.text
+msgid "~Height"
+msgstr "~Height"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_ORIENTATION.fixedtext.text
+msgid "Orientation"
+msgstr "Orientation"
+
+#: page.src#RID_SVXPAGE_PAGE.RB_PORTRAIT.radiobutton.text
+msgid "~Portrait"
+msgstr "~Portrait"
+
+#: page.src#RID_SVXPAGE_PAGE.RB_LANDSCAPE.radiobutton.text
+msgid "L~andscape"
+msgstr "L~andscape"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TEXT_FLOW.fixedtext.text
+msgid "~Text direction"
+msgstr "~Text direction"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_TRAY.fixedtext.text
+msgid "Paper ~tray"
+msgstr "Paper ~tray"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_MARGIN.fixedline.text
+msgid "Margins"
+msgstr "Margins"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_LEFT_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_LEFT_MARGIN.fixedtext.text"
+msgid "~Left"
+msgstr "~Left"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_RIGHT_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_RIGHT_MARGIN.fixedtext.text"
+msgid "~Right"
+msgstr "~Right"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TOP_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_TOP_MARGIN.fixedtext.text"
+msgid "~Top"
+msgstr "~Top"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_BOTTOM_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_BOTTOM_MARGIN.fixedtext.text"
+msgid "~Bottom"
+msgstr "~Bottom"
+
+#: page.src#RID_SVXPAGE_PAGE.FL_LAYOUT.fixedline.text
+msgid "Layout settings"
+msgstr "Layout settings"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAGELAYOUT.fixedtext.text
+msgid "Page layout"
+msgstr "Page layout"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.1.stringlist.text
+msgid "Right and left"
+msgstr "Right and left"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.2.stringlist.text
+msgid "Mirrored"
+msgstr "Mirrored"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.3.stringlist.text
+msgid "Only right"
+msgstr "Only right"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.4.stringlist.text
+msgid "Only left"
+msgstr "Only left"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_NUMBER_FORMAT.fixedtext.text
+msgid "For~mat"
+msgstr "For~mat"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.1.stringlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.1.stringlist.text"
+msgid "A, B, C, ..."
+msgstr "A, B, C, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.2.stringlist.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.2.stringlist.text"
+msgid "a, b, c, ..."
+msgstr "a, b, c, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.3.stringlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.3.stringlist.text"
+msgid "I, II, III, ..."
+msgstr "I, II, III, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.4.stringlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.4.stringlist.text"
+msgid "i, ii, iii, ..."
+msgstr "i, ii, iii, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.5.stringlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.5.stringlist.text"
+msgid "1, 2, 3, ..."
+msgstr "1, 2, 3, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.6.stringlist.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.6.stringlist.text"
+msgid "None"
+msgstr "None"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TBL_ALIGN.fixedtext.text
+msgid "Table alignment"
+msgstr "Table alignment"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_HORZ.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_HORZ.checkbox.text"
+msgid "Hori~zontal"
+msgstr "Hori~zontal"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_VERT.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_VERT.checkbox.text"
+msgid "~Vertical"
+msgstr "~Vertical"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_ADAPT.checkbox.text
+msgid "~Fit object to paper format"
+msgstr "~Fit object to paper format"
+
+#: page.src#RID_SVXPAGE_PAGE.CB_REGISTER.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_REGISTER.checkbox.text"
+msgid "Register-true"
+msgstr "Register-true"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_REGISTER.fixedtext.text
+msgid "Reference ~Style"
+msgstr "Reference ~Style"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_INSIDE.string.text
+msgid "I~nner"
+msgstr "I~nner"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_OUTSIDE.string.text
+msgid "O~uter"
+msgstr "O~uter"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_QUERY_PRINTRANGE.string.text
+msgid ""
+"The margin settings are out of print range.\n"
+"\n"
+"Do you still want to apply these settings?"
+msgstr ""
+"The margin settings are out of print range.\n"
+"\n"
+"Do you still want to apply these settings?"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.1.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.1.itemlist.text"
+msgid "A6"
+msgstr "A6"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.2.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.2.itemlist.text"
+msgid "A5"
+msgstr "A5"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.3.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.3.itemlist.text"
+msgid "A4"
+msgstr "A4"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.4.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.4.itemlist.text"
+msgid "A3"
+msgstr "A3"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.5.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.5.itemlist.text"
+msgid "B6 (ISO)"
+msgstr "B6 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.6.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.6.itemlist.text"
+msgid "B5 (ISO)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.7.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.7.itemlist.text"
+msgid "B4 (ISO)"
+msgstr "B4 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.8.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.8.itemlist.text"
+msgid "Letter"
+msgstr "Letter"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.9.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.9.itemlist.text"
+msgid "Legal"
+msgstr "Legal"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.10.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.10.itemlist.text"
+msgid "Long Bond"
+msgstr "Long Bond"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.11.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.11.itemlist.text"
+msgid "Tabloid"
+msgstr "Tabloid"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.12.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.12.itemlist.text"
+msgid "B6 (JIS)"
+msgstr "B6 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.13.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.13.itemlist.text"
+msgid "B5 (JIS)"
+msgstr "B5 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.14.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.14.itemlist.text"
+msgid "B4 (JIS)"
+msgstr "B4 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.15.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.15.itemlist.text"
+msgid "16 Kai"
+msgstr "16 Kai"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.16.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.16.itemlist.text"
+msgid "32 Kai"
+msgstr "32 Kai"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.17.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.17.itemlist.text"
+msgid "Big 32 Kai"
+msgstr "Big 32 Kai"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.18.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.18.itemlist.text"
+msgid "User"
+msgstr "User"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.19.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.19.itemlist.text"
+msgid "DL Envelope"
+msgstr "DL Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.20.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.20.itemlist.text"
+msgid "C6 Envelope"
+msgstr "C6 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.21.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.21.itemlist.text"
+msgid "C6/5 Envelope"
+msgstr "C6/5 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.22.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.22.itemlist.text"
+msgid "C5 Envelope"
+msgstr "C5 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.23.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.23.itemlist.text"
+msgid "C4 Envelope"
+msgstr "C4 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.24.itemlist.text
+msgid "#6 3/4 (Personal) Envelope"
+msgstr "#6 3/4 (Personal) Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.25.itemlist.text
+msgid "#8 (Monarch) Envelope"
+msgstr "#8 (Monarch) Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.26.itemlist.text
+msgid "#9 Envelope"
+msgstr "#9 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.27.itemlist.text
+msgid "#10 Envelope"
+msgstr "#10 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.28.itemlist.text
+msgid "#11 Envelope"
+msgstr "#11 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.29.itemlist.text
+msgid "#12 Envelope"
+msgstr "#12 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.30.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.30.itemlist.text"
+msgid "Japanese Postcard"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text"
+msgid "A6"
+msgstr "A6"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.2.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.2.itemlist.text"
+msgid "A5"
+msgstr "A5"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.3.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.3.itemlist.text"
+msgid "A4"
+msgstr "A4"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.4.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.4.itemlist.text"
+msgid "A3"
+msgstr "A3"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.5.itemlist.text
+msgid "A2"
+msgstr "A2"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.6.itemlist.text
+msgid "A1"
+msgstr "A1"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.7.itemlist.text
+msgid "A0"
+msgstr "A0"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.8.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.8.itemlist.text"
+msgid "B6 (ISO)"
+msgstr "B6 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.9.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.9.itemlist.text"
+msgid "B5 (ISO)"
+msgstr "B5 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.10.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.10.itemlist.text"
+msgid "B4 (ISO)"
+msgstr "B4 (ISO)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.11.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.11.itemlist.text"
+msgid "Letter"
+msgstr "Letter"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.12.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.12.itemlist.text"
+msgid "Legal"
+msgstr "Legal"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.13.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.13.itemlist.text"
+msgid "Long Bond"
+msgstr "Long Bond"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.14.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.14.itemlist.text"
+msgid "Tabloid"
+msgstr "Tabloid"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.15.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.15.itemlist.text"
+msgid "B6 (JIS)"
+msgstr "B6 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.16.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.16.itemlist.text"
+msgid "B5 (JIS)"
+msgstr "B5 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.17.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.17.itemlist.text"
+msgid "B4 (JIS)"
+msgstr "B4 (JIS)"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.18.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.18.itemlist.text"
+msgid "16 Kai"
+msgstr "16 Kai"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.19.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.19.itemlist.text"
+msgid "32 Kai"
+msgstr "32 Kai"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.20.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.20.itemlist.text"
+msgid "Big 32 Kai"
+msgstr "Big 32 Kai"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.21.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.21.itemlist.text"
+msgid "User"
+msgstr "User"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.22.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.22.itemlist.text"
+msgid "DL Envelope"
+msgstr "DL Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.23.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.23.itemlist.text"
+msgid "C6 Envelope"
+msgstr "C6 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.24.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.24.itemlist.text"
+msgid "C6/5 Envelope"
+msgstr "C6/5 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.25.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.25.itemlist.text"
+msgid "C5 Envelope"
+msgstr "C5 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.26.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.26.itemlist.text"
+msgid "C4 Envelope"
+msgstr "C4 Envelope"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.27.itemlist.text
+msgid "Dia Slide"
+msgstr "Dia Slide"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.28.itemlist.text
+msgid "Screen 4:3"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.29.itemlist.text
+msgid "Screen 16:9"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.30.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.30.itemlist.text"
+msgid "Japanese Postcard"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text
+msgctxt "measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text"
+msgid "Line"
+msgstr "Line"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_LINE_DIST.fixedtext.text
+msgid "Line ~distance"
+msgstr "Line ~distance"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE_OVERHANG.fixedtext.text
+msgid "Guide ~overhang"
+msgstr "Guide ~overhang"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE_DIST.fixedtext.text
+msgid "~Guide distance"
+msgstr "~Guide distance"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE1_LEN.fixedtext.text
+msgid "~Left guide"
+msgstr "~Left guide"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE2_LEN.fixedtext.text
+msgid "~Right guide"
+msgstr "~Right guide"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_BELOW_REF_EDGE.tristatebox.text
+msgid "Measure ~below object"
+msgstr "Measure ~below object"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_DECIMALPLACES.fixedtext.text
+msgid "Decimal places"
+msgstr "Decimal places"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FL_LABEL.fixedline.text
+msgid "Legend"
+msgstr "Legend"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_POSITION.fixedtext.text
+msgid "~Text position"
+msgstr "~Text position"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_AUTOPOSV.tristatebox.text
+msgid "~AutoVertical"
+msgstr "~AutoVertical"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_AUTOPOSH.tristatebox.text
+msgid "A~utoHorizontal"
+msgstr "A~utoHorizontal"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_PARALLEL.tristatebox.text
+msgid "~Parallel to line"
+msgstr "~Parallel to line"
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_SHOW_UNIT.tristatebox.text
+msgid "Show ~meas. units"
+msgstr "Show ~meas. units"
+
+#: measure.src#RID_SVXPAGE_MEASURE.STR_MEASURE_AUTOMATIC.string.text
+msgctxt "measure.src#RID_SVXPAGE_MEASURE.STR_MEASURE_AUTOMATIC.string.text"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: measure.src#RID_SVXPAGE_MEASURE.tabpage.text
+msgid "Dimensioning"
+msgstr "Dimensioning"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_EFFECT.fixedline.text
+msgid "Text animation effects"
+msgstr "Text animation effects"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_EFFECTS.fixedtext.text
+msgid "E~ffect"
+msgstr "E~ffect"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.1.stringlist.text
+msgid "No Effect"
+msgstr "No Effect"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.2.stringlist.text
+msgid "Blink"
+msgstr "Blink"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.3.stringlist.text
+msgid "Scroll Through"
+msgstr "Scroll Through"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.4.stringlist.text
+msgid "Scroll Back and Forth"
+msgstr "Scroll Back and Forth"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.5.stringlist.text
+msgid "Scroll In"
+msgstr "Scroll In"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_DIRECTION.fixedtext.text
+msgid "Direction"
+msgstr "Direction"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_UP.imagebutton.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_UP.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_UP.imagebutton.quickhelptext
+msgid "To Top"
+msgstr "To Top"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_LEFT.imagebutton.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_LEFT.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_LEFT.imagebutton.quickhelptext
+msgid "To Left"
+msgstr "To Left"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_RIGHT.imagebutton.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_RIGHT.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_RIGHT.imagebutton.quickhelptext
+msgid "To Right"
+msgstr "To Right"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_DOWN.imagebutton.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_DOWN.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.BTN_DOWN.imagebutton.quickhelptext
+msgid "To Bottom"
+msgstr "To Bottom"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_PROPERTIES.fixedline.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_START_INSIDE.tristatebox.text
+msgid "S~tart inside"
+msgstr "S~tart inside"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_STOP_INSIDE.tristatebox.text
+msgid "Text visible when exiting"
+msgstr "Text visible when exiting"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_COUNT.fixedtext.text
+msgid "Animation cycles"
+msgstr "Animation cycles"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_ENDLESS.tristatebox.text
+msgid "~Continuous"
+msgstr "~Continuous"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_AMOUNT.fixedtext.text
+msgid "Increment"
+msgstr "Increment"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_PIXEL.tristatebox.text
+msgid "~Pixels"
+msgstr "~Pixels"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_AMOUNT.metricfield.text
+msgid " Pixel"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_DELAY.fixedtext.text
+msgid "Delay"
+msgstr "Delay"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_AUTO.tristatebox.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_AUTO.tristatebox.text"
+msgid "~Automatic"
+msgstr "~Automatic"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_DELAY.metricfield.text
+msgid " ms"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.tabpage.text
+msgid "Animation"
+msgstr "Animation"
+
+#: textanim.src#RID_SVXDLG_TEXT.1.RID_SVXPAGE_TEXTATTR.pageitem.text
+msgctxt "textanim.src#RID_SVXDLG_TEXT.1.RID_SVXPAGE_TEXTATTR.pageitem.text"
+msgid "Text"
+msgstr "Text"
+
+#: textanim.src#RID_SVXDLG_TEXT.1.RID_SVXPAGE_TEXTANIMATION.pageitem.text
+msgid "Text Animation"
+msgstr "Text Animation"
+
+#: textanim.src#RID_SVXDLG_TEXT.tabdialog.text
+msgctxt "textanim.src#RID_SVXDLG_TEXT.tabdialog.text"
+msgid "Text"
+msgstr "Text"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_BORDER.fixedline.text
+msgid "Line arrangement"
+msgstr "Line arrangement"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_DEFAULT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_DEFAULT.fixedtext.text"
+msgid "~Default"
+msgstr "~Default"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_USERDEF.fixedtext.text
+msgid "~User-defined"
+msgstr "~User-defined"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_LINE.fixedline.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FL_LINE.fixedline.text"
+msgid "Line"
+msgstr "Line"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_STYLE.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_STYLE.fixedtext.text"
+msgid "St~yle"
+msgstr "St~yle"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Width"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_COLOR.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_COLOR.fixedtext.text"
+msgid "~Color"
+msgstr "~Colour"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_LEFT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "~Left"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_RIGHT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_RIGHT.fixedtext.text"
+msgid "Right"
+msgstr "Right"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_TOP.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~Top"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_BOTTOM.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "~Bottom"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_SYNC.checkbox.text
+msgid "Synchronize"
+msgstr "Synchronize"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_DISTANCE.fixedline.text
+msgid "Spacing to contents"
+msgstr "Spacing to contents"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWPOS.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_SHADOWPOS.fixedtext.text"
+msgid "~Position"
+msgstr "~Position"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWSIZE.fixedtext.text
+msgid "Distan~ce"
+msgstr "Distan~ce"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWCOLOR.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_SHADOWCOLOR.fixedtext.text"
+msgid "C~olor"
+msgstr "C~olor"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_SHADOW.fixedline.text
+msgid "Shadow style"
+msgstr "Shadow style"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_PROPERTIES.fixedline.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_MERGEWITHNEXT.checkbox.text
+msgid "~Merge with next paragraph"
+msgstr "~Merge with next paragraph"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_MERGEADJACENTBORDERS.checkbox.text
+msgid "~Merge adjacent line styles"
+msgstr "~Merge adjacent line styles"
+
+#: border.src#RID_SVXPAGE_BORDER.tabpage.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.tabpage.text"
+msgid "Borders"
+msgstr "Borders"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_NONE.string.text
+msgid "Set No Borders"
+msgstr "Set No Borders"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_ONLYOUTER.string.text
+msgid "Set Outer Border Only"
+msgstr "Set Outer Border Only"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERHORI.string.text
+msgid "Set Outer Border and Horizontal Lines"
+msgstr "Set Outer Border and Horizontal Lines"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERALL.string.text
+msgid "Set Outer Border and All Inner Lines"
+msgstr "Set Outer Border and All Inner Lines"
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERINNER.string.text
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr "Set Outer Border Without Changing Inner Lines"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_DIAGONAL.string.text
+msgid "Set Diagonal Lines Only"
+msgstr "Set Diagonal Lines Only"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_ALL.string.text
+msgid "Set All Four Borders"
+msgstr "Set All Four Borders"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_LEFTRIGHT.string.text
+msgid "Set Left and Right Borders Only"
+msgstr "Set Left and Right Borders Only"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_TOPBOTTOM.string.text
+msgid "Set Top and Bottom Borders Only"
+msgstr "Set Top and Bottom Borders Only"
+
+#: border.src#RID_SVXSTR_PARA_PRESET_ONLYLEFT.string.text
+msgid "Set Left Border Only"
+msgstr "Set Left Border Only"
+
+#: border.src#RID_SVXSTR_HOR_PRESET_ONLYHOR.string.text
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr "Set Top and Bottom Borders, and All Inner Lines"
+
+#: border.src#RID_SVXSTR_VER_PRESET_ONLYVER.string.text
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr "Set Left and Right Borders, and All Inner Lines"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_NONE.string.text
+msgid "No Shadow"
+msgstr "No Shadow"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT.string.text
+msgid "Cast Shadow to Bottom Right"
+msgstr "Cast Shadow to Bottom Right"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_TOPRIGHT.string.text
+msgid "Cast Shadow to Top Right"
+msgstr "Cast Shadow to Top Right"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT.string.text
+msgid "Cast Shadow to Bottom Left"
+msgstr "Cast Shadow to Bottom Left"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_TOPLEFT.string.text
+msgid "Cast Shadow to Top Left"
+msgstr "Cast Shadow to Top Left"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_CROP.fixedline.text
+msgid "Crop"
+msgstr "Crop"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_LEFT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "~Left"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_RIGHT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_RIGHT.fixedtext.text"
+msgid "~Right"
+msgstr "~Right"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_TOP.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~Top"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_BOTTOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "~Bottom"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.RB_SIZECONST.radiobutton.text
+msgid "Keep image si~ze"
+msgstr "Keep image si~ze"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.RB_ZOOMCONST.radiobutton.text
+msgid "Keep ~scale"
+msgstr "Keep ~scale"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_ZOOM.fixedline.text
+msgid "Scale"
+msgstr "Scale"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTHZOOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTHZOOM.fixedtext.text"
+msgid "~Width"
+msgstr "~Width"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHTZOOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHTZOOM.fixedtext.text"
+msgid "H~eight"
+msgstr "H~eight"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_SIZE.fixedline.text
+msgid "Image size"
+msgstr "Image size"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTH.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Width"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "H~eight"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.PB_ORGSIZE.pushbutton.text
+msgid "~Original Size"
+msgstr "~Original Size"
+
+#. PPI is pixel per inch, %1 is a number
+#: grfpage.src#STR_PPI.string.text
+msgid "(%1 PPI)"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_TEXT.fixedline.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FL_TEXT.fixedline.text"
+msgid "Text"
+msgstr "Text"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_WIDTH.tristatebox.text
+msgid "Fit wi~dth to text"
+msgstr "Fit wi~dth to text"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_HEIGHT.tristatebox.text
+msgid "Fit h~eight to text"
+msgstr "Fit h~eight to text"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_FIT_TO_SIZE.tristatebox.text
+msgid "~Fit to frame"
+msgstr "~Fit to frame"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_CONTOUR.tristatebox.text
+msgid "~Adjust to contour"
+msgstr "~Adjust to contour"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_WORDWRAP_TEXT.tristatebox.text
+msgid "~Word wrap text in shape"
+msgstr "~Word wrap text in shape"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_SIZE.tristatebox.text
+msgid "~Resize shape to fit text"
+msgstr "~Resize shape to fit text"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_DISTANCE.fixedline.text
+msgid "Spacing to borders"
+msgstr "Spacing to borders"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_LEFT.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr "~Left"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_RIGHT.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_RIGHT.fixedtext.text"
+msgid "~Right"
+msgstr "~Right"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_TOP.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~Top"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_BOTTOM.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr "~Bottom"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_POSITION.fixedline.text
+msgid "Text anchor"
+msgstr "Text anchor"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_FULL_WIDTH.tristatebox.text
+msgid "Full ~width"
+msgstr "Full ~width"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.tabpage.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.tabpage.text"
+msgid "Text"
+msgstr "Text"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_TYPE.fixedtext.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.FT_TYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Type"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FL_DELTA.fixedline.text
+msgid "Line skew"
+msgstr "Line skew"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_1.fixedtext.text
+msgid "Line ~1"
+msgstr "Line ~1"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_2.fixedtext.text
+msgid "Line ~2"
+msgstr "Line ~2"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_3.fixedtext.text
+msgid "Line ~3"
+msgstr "Line ~3"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FL_DISTANCE.fixedline.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.FL_DISTANCE.fixedline.text"
+msgid "Line spacing"
+msgstr "Line spacing"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_HORZ_1.fixedtext.text
+msgid "~Begin horizontal"
+msgstr "~Begin horizontal"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_HORZ_2.fixedtext.text
+msgid "End ~horizontal"
+msgstr "End ~horizontal"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_VERT_1.fixedtext.text
+msgid "Begin ~vertical"
+msgstr "Begin ~vertical"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_VERT_2.fixedtext.text
+msgid "~End vertical"
+msgstr "~End vertical"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.CTL_PREVIEW.control.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.CTL_PREVIEW.control.text"
+msgid "-"
+msgstr "-"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.CTL_PREVIEW.control.quickhelptext
+msgid "Preview"
+msgstr "Preview"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.tabpage.text
+msgid "Connector"
+msgstr "Connector"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ABSTAND.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_ABSTAND.fixedtext.text"
+msgid "~Spacing"
+msgstr "~Spacing"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_WINKEL.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_WINKEL.fixedtext.text"
+msgid "~Angle"
+msgstr "~Angle"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.1.stringlist.text
+msgid "Free"
+msgstr "Free"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.2.stringlist.text
+msgid "30 Degrees"
+msgstr "30 Degrees"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.3.stringlist.text
+msgid "45 Degrees"
+msgstr "45 Degrees"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.4.stringlist.text
+msgid "60 Degrees"
+msgstr "60 Degrees"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.5.stringlist.text
+msgid "90 Degrees"
+msgstr "90 Degrees"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ.fixedtext.text
+msgid "~Extension"
+msgstr "~Extension"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.1.stringlist.text
+msgid "Optimal"
+msgstr "Optimal"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.2.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.2.stringlist.text"
+msgid "From top"
+msgstr "From top"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.3.stringlist.text
+msgid "From left"
+msgstr "From left"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.4.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.4.stringlist.text"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.5.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.5.stringlist.text"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_UM.fixedtext.text
+msgid "~By"
+msgstr "~By"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ_REL.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ_REL.fixedtext.text"
+msgid "~Position"
+msgstr "~Position"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_LAENGE.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_LAENGE.fixedtext.text"
+msgid "~Length"
+msgstr "~Length"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.CB_LAENGE.checkbox.text
+msgid "~Optimal"
+msgstr "~Optimal"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_1.string.text
+msgid "Straight Line"
+msgstr "Straight Line"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_2.string.text
+msgid "Angled Line"
+msgstr "Angled Line"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_3.string.text
+msgid "Angled Connector Line"
+msgstr "Angled Connector Line"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_4.string.text
+msgid "Double-angled line"
+msgstr "Double-angled line"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_HORZ_LIST.string.text
+msgid "Top;Middle;Bottom"
+msgstr "Top;Middle;Bottom"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_VERT_LIST.string.text
+msgid "Left;Middle;Right"
+msgstr "Left;Middle;Right"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.tabpage.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.tabpage.text"
+msgid "Callouts"
+msgstr "Callouts"
+
+#: labdlg.src#_POS_SIZE_TEXT.#define.text
+msgctxt "labdlg.src#_POS_SIZE_TEXT.#define.text"
+msgid "Position and Size"
+msgstr "Position and Size"
+
+#: labdlg.src#RID_SVXDLG_CAPTION.TAB_CONTROL.RID_SVXPAGE_CAPTION.pageitem.text
+msgid "Callout"
+msgstr "Callout"
+
+#: labdlg.src#RID_SVXDLG_CAPTION.tabdialog.text
+msgctxt "labdlg.src#RID_SVXDLG_CAPTION.tabdialog.text"
+msgid "Callouts"
+msgstr "Callouts"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_HORIZONTAL.fixedline.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_HORIZONTAL.fixedline.text"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_NONE.radiobutton.text
+msgid "~None"
+msgstr "~None"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_LEFT.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_LEFT.radiobutton.text"
+msgid "~Left"
+msgstr "~Left"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_CENTER.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_CENTER.radiobutton.text"
+msgid "~Center"
+msgstr "~Center"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_DISTANCE.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_DISTANCE.radiobutton.text"
+msgid "~Spacing"
+msgstr "~Spacing"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_RIGHT.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_RIGHT.radiobutton.text"
+msgid "~Right"
+msgstr "~Right"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_VERTICAL.fixedline.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_VERTICAL.fixedline.text"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_NONE.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_NONE.radiobutton.text"
+msgid "N~one"
+msgstr "N~one"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_TOP.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_TOP.radiobutton.text"
+msgid "~Top"
+msgstr "~Top"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_CENTER.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_CENTER.radiobutton.text"
+msgid "C~enter"
+msgstr "C~enter"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_DISTANCE.radiobutton.text
+msgid "S~pacing"
+msgstr "S~pacing"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_BOTTOM.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_BOTTOM.radiobutton.text"
+msgid "~Bottom"
+msgstr "~Bottom"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.tabpage.text
+msgid "Distribution"
+msgstr "Distribution"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_LEFTINDENT.fixedtext.text
+msgid "Before text"
+msgstr "Before text"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_RIGHTINDENT.fixedtext.text
+msgid "After text"
+msgstr "After text"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_FLINEINDENT.fixedtext.text
+msgid "~First line"
+msgstr "~First line"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_AUTO.checkbox.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_AUTO.checkbox.text"
+msgid "~Automatic"
+msgstr "~Automatic"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_INDENT.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_INDENT.fixedline.text"
+msgid "Indent"
+msgstr "Indent"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_TOPDIST.fixedtext.text
+msgid "Ab~ove paragraph"
+msgstr "Ab~ove paragraph"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_BOTTOMDIST.fixedtext.text
+msgid "Below paragraph"
+msgstr "Below paragraph"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_CONTEXTUALSPACING.checkbox.text
+msgid "Don't add space between paragraphs of the same style"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_DIST.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_DIST.fixedline.text"
+msgid "Spacing"
+msgstr "Spacing"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.1.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.1.stringlist.text"
+msgid "Single"
+msgstr "Single"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.2.stringlist.text
+msgid "1.5 lines"
+msgstr "1.5 lines"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.3.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.3.stringlist.text"
+msgid "Double"
+msgstr "Double"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.4.stringlist.text
+msgid "Proportional"
+msgstr "Proportional"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.5.stringlist.text
+msgid "At least"
+msgstr "At least"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.6.stringlist.text
+msgid "Leading"
+msgstr "Leading"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.ST_LINEDIST_ABS.string.text
+msgid "Fixed"
+msgstr "Fixed"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_LINEDIST.fixedtext.text
+msgid "of"
+msgstr "of"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_LINEDIST.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_LINEDIST.fixedline.text"
+msgid "Line spacing"
+msgstr "Line spacing"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_REGISTER.checkbox.text
+msgid "A~ctivate"
+msgstr "A~ctivate"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_REGISTER.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_REGISTER.fixedline.text"
+msgid "Register-true"
+msgstr "Register-true"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.tabpage.text
+msgid "Indents and Spacing"
+msgstr "Indents and Spacing"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_ALIGN.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_ALIGN.fixedline.text"
+msgid "Options"
+msgstr "Options"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_LEFTALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_LEFTALIGN.radiobutton.text"
+msgid "~Left"
+msgstr "~Left"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_RIGHTALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_RIGHTALIGN.radiobutton.text"
+msgid "Righ~t"
+msgstr "Righ~t"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_CENTERALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_CENTERALIGN.radiobutton.text"
+msgid "~Center"
+msgstr "~Center"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_JUSTIFYALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_JUSTIFYALIGN.radiobutton.text"
+msgid "Justified"
+msgstr "Justified"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.ST_LEFTALIGN_ASIAN.string.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.ST_LEFTALIGN_ASIAN.string.text"
+msgid "~Left/Top"
+msgstr "~Left/Top"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.ST_RIGHTALIGN_ASIAN.string.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.ST_RIGHTALIGN_ASIAN.string.text"
+msgid "Righ~t/Bottom"
+msgstr "Righ~t/Bottom"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_LASTLINE.fixedtext.text
+msgid "~Last line"
+msgstr "~Last line"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.1.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.1.stringlist.text"
+msgid "Default"
+msgstr "Default"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.2.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.2.stringlist.text"
+msgid "Left"
+msgstr "Left"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.3.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.3.stringlist.text"
+msgid "Centered"
+msgstr "Centered"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.4.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.4.stringlist.text"
+msgid "Justified"
+msgstr "Justified"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.CB_EXPAND.checkbox.text
+msgid "~Expand single word"
+msgstr "~Expand single word"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.CB_SNAP.checkbox.text
+msgid "Snap to text grid (if active)"
+msgstr "Snap to text grid (if active)"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_VERTALIGN.fixedline.text
+msgid "Text-to-text"
+msgstr "Text-to-text"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_VERTALIGN.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_VERTALIGN.fixedtext.text"
+msgid "~Alignment"
+msgstr "~Alignment"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.1.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.1.stringlist.text"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.2.stringlist.text
+msgid "Base line"
+msgstr "Base line"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.3.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.3.stringlist.text"
+msgid "Top"
+msgstr "Top"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.4.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.4.stringlist.text"
+msgid "Middle"
+msgstr "Middle"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.5.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.5.stringlist.text"
+msgid "Bottom"
+msgstr "Bottom"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_PROPERTIES.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_TEXTDIRECTION.fixedtext.text
+msgid "Text ~direction"
+msgstr "Text ~direction"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.tabpage.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.tabpage.text"
+msgid "Alignment"
+msgstr "Alignment"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_HYPHEN.tristatebox.text
+msgid "A~utomatically"
+msgstr "A~utomatically"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_HYPHENBEFORE.fixedtext.text
+msgid "C~haracters at line end"
+msgstr "C~haracters at line end"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_HYPHENAFTER.fixedtext.text
+msgid "Cha~racters at line begin"
+msgstr "Cha~racters at line begin"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_MAXHYPH.fixedtext.text
+msgid "~Maximum number of consecutive hyphens"
+msgstr "~Maximum number of consecutive hyphens"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_HYPHEN.fixedline.text
+msgid "Hyphenation"
+msgstr "Hyphenation"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_OPTIONS.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Options"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_BREAKS.fixedline.text
+msgid "Breaks"
+msgstr "Breaks"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_PAGEBREAK.tristatebox.text
+msgid "Insert"
+msgstr "Insert"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKTYPE.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKTYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Type"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKTYPE.1.stringlist.text
+msgid "Page"
+msgstr "Page"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKTYPE.2.stringlist.text
+msgid "Column"
+msgstr "Column"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKPOSITION.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKPOSITION.fixedtext.text"
+msgid "Position"
+msgstr "Position"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKPOSITION.1.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKPOSITION.1.stringlist.text"
+msgid "Before"
+msgstr "Before"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKPOSITION.2.stringlist.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKPOSITION.2.stringlist.text"
+msgid "After"
+msgstr "After"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_PAGECOLL.tristatebox.text
+msgid "With Page St~yle"
+msgstr "With Page St~yle"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_PAGENUM.fixedtext.text
+msgid "Page ~number"
+msgstr "Page ~number"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_KEEPTOGETHER.tristatebox.text
+msgid "~Do not split paragraph"
+msgstr "~Do not split paragraph"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.CB_KEEPTOGETHER.tristatebox.text
+msgid "~Keep with next paragraph"
+msgstr "~Keep with next paragraph"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_ORPHANS.tristatebox.text
+msgid "~Orphan control"
+msgstr "~Orphan control"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_ORPHANS.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_ORPHANS.fixedtext.text"
+msgid "Lines"
+msgstr "Lines"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_WIDOWS.tristatebox.text
+msgid "~Widow control"
+msgstr "~Widow control"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_WIDOWS.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_WIDOWS.fixedtext.text"
+msgid "Lines"
+msgstr "Lines"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.tabpage.text
+msgid "Text Flow"
+msgstr "Text Flow"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.FL_AS_OPTIONS.fixedline.text
+msgid "Line change"
+msgstr "Line change"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_FORBIDDEN.tristatebox.text
+msgid "Apply list of forbidden characters to the beginning and end of lines"
+msgstr "Apply list of forbidden characters to the beginning and end of lines"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_HANG_PUNC.tristatebox.text
+msgid "Allow hanging punctuation"
+msgstr "Allow hanging punctuation"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_SCRIPT_SPACE.tristatebox.text
+msgid "Apply spacing between Asian, Latin and Complex text"
+msgstr "Apply spacing between Asian, Latin and Complex text"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.tabpage.text
+msgid "Asian Typography"
+msgstr "Asian Typography"
+
+#: paragrph.src#STR_EXAMPLE.string.text
+#, fuzzy
+msgctxt "paragrph.src#STR_EXAMPLE.string.text"
+msgid "Example"
+msgstr "Example"
+
+#: paragrph.src#STR_PAGE_STYLE.string.text
+msgid "Page Style"
+msgstr "Page Style"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_CATEGORY.fixedtext.text
+msgid "~Category"
+msgstr "~Category"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.1.stringlist.text
+msgid "All"
+msgstr "All"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.2.stringlist.text
+msgid "User-defined"
+msgstr "User-defined"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.3.stringlist.text
+msgid "Number"
+msgstr "Number"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.4.stringlist.text
+msgid "Percent"
+msgstr "Percent"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.5.stringlist.text
+msgid "Currency"
+msgstr "Currency"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.6.stringlist.text
+msgid "Date"
+msgstr "Date"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.7.stringlist.text
+msgid "Time"
+msgstr "Time"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.8.stringlist.text
+msgid "Scientific"
+msgstr "Scientific"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.9.stringlist.text
+msgid "Fraction"
+msgstr "Fraction"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.10.stringlist.text
+msgid "Boolean Value"
+msgstr "Boolean Value"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.11.stringlist.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.11.stringlist.text"
+msgid "Text"
+msgstr "Text"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_EDFORMAT.fixedtext.text
+msgid "~Format code"
+msgstr "~Format code"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_FORMAT.fixedtext.text
+msgid "F~ormat"
+msgstr "F~ormat"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CURRENCY.1.stringlist.text
+msgid "Automatically"
+msgstr "Automatically"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_DECIMALS.fixedtext.text
+msgid "~Decimal places"
+msgstr "~Decimal places"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LEADZEROES.fixedtext.text
+msgid "Leading ~zeroes"
+msgstr "Leading ~zeroes"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.BTN_NEGRED.checkbox.text
+msgid "~Negative numbers red"
+msgstr "~Negative numbers red"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.BTN_THOUSAND.checkbox.text
+msgid "~Thousands separator"
+msgstr "~Thousands separator"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FL_OPTIONS.fixedline.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "Options"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LANGUAGE.fixedtext.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LANGUAGE.fixedtext.text"
+msgid "~Language"
+msgstr "~Language"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.CB_SOURCEFORMAT.checkbox.text
+msgid "So~urce format"
+msgstr "So~urce format"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.quickhelptext
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.quickhelptext"
+msgid "Add"
+msgstr "Add"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_REMOVE.imagebutton.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_REMOVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_REMOVE.imagebutton.quickhelptext
+msgid "Remove"
+msgstr "Remove"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_INFO.imagebutton.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_INFO.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_INFO.imagebutton.quickhelptext
+msgid "Edit Comment"
+msgstr "Edit Comment"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.STR_AUTO_ENTRY.string.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.STR_AUTO_ENTRY.string.text"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.tabpage.text
+msgid "Number Format"
+msgstr "Number Format"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_LTR.string.text
+msgid "Left-to-right"
+msgstr "Left-to-right"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_RTL.string.text
+msgid "Right-to-left"
+msgstr "Right-to-left"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_SUPER.string.text
+msgid "Use superordinate object settings"
+msgstr "Use superordinate object settings"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_LTR_HORI.string.text
+msgid "Left-to-right (horizontal)"
+msgstr "Left-to-right (horizontal)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_RTL_HORI.string.text
+msgid "Right-to-left (horizontal)"
+msgstr "Right-to-left (horizontal)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_RTL_VERT.string.text
+msgid "Right-to-left (vertical)"
+msgstr "Right-to-left (vertical)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_LTR_VERT.string.text
+msgid "Left-to-right (vertical)"
+msgstr "Left-to-right (vertical)"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_LINE.fixedline.text
+msgid "Line properties"
+msgstr "Line properties"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_STYLE.fixedtext.text
+msgid "~Style"
+msgstr "~Style"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_COLOR.fixedtext.text
+msgid "Colo~r"
+msgstr "Colo~r"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_WIDTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Width"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_TRANSPARENT.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_TRANSPARENT.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Transparency"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_LINE_ENDS.fixedline.text
+msgid "Arrow styles"
+msgstr "Arrow styles"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_STYLE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_STYLE.fixedtext.text"
+msgid "St~yle"
+msgstr "St~yle"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_WIDTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_WIDTH.fixedtext.text"
+msgid "Wi~dth"
+msgstr "Wi~dth"
+
+#: tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_START.tristatebox.text
+msgid "Ce~nter"
+msgstr "Ce~nter"
+
+#: tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_END.tristatebox.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_END.tristatebox.text"
+msgid "C~enter"
+msgstr "C~enter"
+
+#: tabline.src#RID_SVXPAGE_LINE.CBX_SYNCHRONIZE.checkbox.text
+msgid "Synchroni~ze ends"
+msgstr "Synchroni~ze ends"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_EDGE_STYLE.fixedline.text
+msgid "Corner style"
+msgstr "Corner style"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_EDGE_STYLE.fixedtext.text
+msgid "Sty~le"
+msgstr "Sty~le"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.1.stringlist.text
+msgid "Rounded"
+msgstr "Rounded"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.2.stringlist.text
+msgid "- none -"
+msgstr "- none -"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.3.stringlist.text
+msgid "Mitered"
+msgstr "Mitered"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.4.stringlist.text
+msgid "Beveled"
+msgstr "Beveled"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_SYMBOL_FORMAT.fixedline.text
+msgid "Icon"
+msgstr "Icon"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS_NONE.menuitem.text
+msgid "No Symbol"
+msgstr "No Symbol"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS_AUTO.menuitem.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS_AUTO.menuitem.text"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_GRAPHIC_DLG.menuitem.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_GRAPHIC_DLG.menuitem.text"
+msgid "From file..."
+msgstr "From file..."
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_GALLERY.menuitem.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_GALLERY.menuitem.text"
+msgid "Gallery"
+msgstr "Gallery"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS.menuitem.text
+msgid "Symbols"
+msgstr "Symbols"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.menubutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.menubutton.text"
+msgid "Select..."
+msgstr "Select..."
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_WIDTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_WIDTH.fixedtext.text"
+msgid "Width"
+msgstr "Width"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_HEIGHT.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_HEIGHT.fixedtext.text"
+msgid "Height"
+msgstr "Height"
+
+#: tabline.src#RID_SVXPAGE_LINE.CB_SYMBOL_RATIO.checkbox.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.CB_SYMBOL_RATIO.checkbox.text"
+msgid "Keep ratio"
+msgstr "Keep ratio"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_STYLE.string.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.STR_STYLE.string.text"
+msgid "Style"
+msgstr "Style"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_LB_START_STYLE.string.text
+#, fuzzy
+msgid "Start style"
+msgstr "Start date"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_LB_END_STYLE.string.text
+#, fuzzy
+msgid "End style"
+msgstr "Line style"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_MTR_FLD_START_WIDTH.string.text
+msgid "Start width"
+msgstr "Start width"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_MTR_FLD_END_WIDTH.string.text
+#, fuzzy
+msgid "End width"
+msgstr "Line width"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_CENTER_START.string.text
+#, fuzzy
+msgid "Start with center"
+msgstr "Startcenter"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_CENTER_END.string.text
+#, fuzzy
+msgid "End with center"
+msgstr "Right centre"
+
+#: tabline.src#RID_SVXPAGE_LINE.tabpage.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.tabpage.text"
+msgid "Lines"
+msgstr "Lines"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FL_DEFINITION.fixedline.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FL_DEFINITION.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_TYPE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_TYPE.fixedtext.text"
+msgid "~Type"
+msgstr "~Type"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_1.1.stringlist.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_1.1.stringlist.text"
+msgid "Dot"
+msgstr "Dot"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_1.2.stringlist.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_1.2.stringlist.text"
+msgid "Dash"
+msgstr "Dash"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_2.1.stringlist.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_2.1.stringlist.text"
+msgid "Dot"
+msgstr "Dot"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_2.2.stringlist.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.LB_TYPE_2.2.stringlist.text"
+msgid "Dash"
+msgstr "Dash"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_NUMBER.fixedtext.text
+msgid "~Number"
+msgstr "~Number"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_LENGTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_LENGTH.fixedtext.text"
+msgid "~Length"
+msgstr "~Length"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_DISTANCE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_DISTANCE.fixedtext.text"
+msgid "~Spacing"
+msgstr "~Spacing"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.CBX_SYNCHRONIZE.checkbox.text
+msgid "~Fit to line width"
+msgstr "~Fit to line width"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_LINESTYLE.fixedtext.text
+msgid "Line style"
+msgstr "Line style"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_ADD.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Add..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_MODIFY.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modify..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_DELETE.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Delete..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_LOAD.imagebutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Line Styles"
+msgstr "Load Line Styles"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_SAVE.imagebutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Line Styles"
+msgstr "Save Line Styles"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_TYPE.string.text
+#, fuzzy
+msgid "Start type"
+msgstr "Chart type"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_TYPE.string.text
+#, fuzzy
+msgid "End type"
+msgstr "Any type"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_NUM.string.text
+#, fuzzy
+msgid "Start number"
+msgstr "Restart numbering"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_NUM.string.text
+msgid "End number"
+msgstr "End number"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_LENGTH.string.text
+#, fuzzy
+msgid "Start length"
+msgstr "Start at"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_LENGTH.string.text
+#, fuzzy
+msgid "End length"
+msgstr "Line length"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.tabpage.text
+msgid "Define line styles"
+msgstr "Define line styles"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FL_TIP.fixedline.text
+msgid "Organize arrow styles"
+msgstr "Organize arrow styles"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FI_TIP.fixedtext.text
+msgid "Add a selected object to create new arrow styles."
+msgstr "Add a selected object to create new arrow styles."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FT_LINE_END_STYLE.fixedtext.text
+msgid "Arrow style"
+msgstr "Arrow style"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FT_TITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Title"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_ADD.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Add..."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_MODIFY.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modify..."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_DELETE.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Delete..."
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_LOAD.imagebutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Arrow Styles"
+msgstr "Load Arrow Styles"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_SAVE.imagebutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Arrow Styles"
+msgstr "Save Arrow Styles"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.tabpage.text
+msgid "Arrowheads"
+msgstr "Arrowheads"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE.pageitem.text
+msgctxt "tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE.pageitem.text"
+msgid "Line"
+msgstr "Line"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_SHADOW.pageitem.text
+msgctxt "tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_SHADOW.pageitem.text"
+msgid "Shadow"
+msgstr "Shadow"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE_DEF.pageitem.text
+msgid "Line Styles"
+msgstr "Line Styles"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINEEND_DEF.pageitem.text
+msgid "Arrow Styles"
+msgstr "Arrow Styles"
+
+#: tabline.src#RID_SVXDLG_LINE.tabdialog.text
+msgctxt "tabline.src#RID_SVXDLG_LINE.tabdialog.text"
+msgid "Line"
+msgstr "Line"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABPOS.fixedline.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABPOS.fixedline.text"
+msgid "Position"
+msgstr "Position"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABTYPE.fixedline.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABTYPE.fixedline.text"
+msgid "Type"
+msgstr "Type"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_LEFT.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_LEFT.radiobutton.text"
+msgid "~Left"
+msgstr "~Left"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_RIGHT.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_RIGHT.radiobutton.text"
+msgid "Righ~t"
+msgstr "Righ~t"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_CENTER.radiobutton.text
+msgid "C~entered"
+msgstr "C~entered"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_DECIMAL.radiobutton.text
+msgid "Deci~mal"
+msgstr "Deci~mal"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FT_TABTYPE_DECCHAR.fixedtext.text
+msgid "~Character"
+msgstr "~Character"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_FILLCHAR.fixedline.text
+msgid "Fill character"
+msgstr "Fill character"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_NO.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_NO.radiobutton.text"
+msgid "N~one"
+msgstr "N~one"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_OTHER.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_OTHER.radiobutton.text"
+msgid "Character"
+msgstr "Character"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_NEW.pushbutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_NEW.pushbutton.text"
+msgid "~New"
+msgstr "~New"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DELALL.pushbutton.text
+msgid "Delete ~All"
+msgstr "Delete ~All"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DEL.pushbutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DEL.pushbutton.text"
+msgid "~Delete"
+msgstr "~Delete"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.ST_LEFTTAB_ASIAN.string.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.ST_LEFTTAB_ASIAN.string.text"
+msgid "~Left/Top"
+msgstr "~Left/Top"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.ST_RIGHTTAB_ASIAN.string.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.ST_RIGHTTAB_ASIAN.string.text"
+msgid "Righ~t/Bottom"
+msgstr "Righ~t/Bottom"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.ST_FILLCHAR_OTHER.string.text
+#, fuzzy
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.ST_FILLCHAR_OTHER.string.text"
+msgid "Character"
+msgstr "Character"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.tabpage.text
+msgid "Tabs"
+msgstr "Tabs"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_SIZE.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Size"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_WIDTH.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr "~Width"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HEIGHT.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "H~eight"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_KEEPRATIO.checkbox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_KEEPRATIO.checkbox.text"
+msgid "~Keep ratio"
+msgstr "~Keep ratio"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_ANCHOR.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_ANCHOR.fixedline.text"
+msgid "Anchor"
+msgstr "Anchor"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOPAGE.radiobutton.text
+msgid "To ~page"
+msgstr "To ~page"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOPARA.radiobutton.text
+msgid "To paragrap~h"
+msgstr "To paragrap~h"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOCHAR.radiobutton.text
+msgid "To cha~racter"
+msgstr "To cha~racter"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_ASCHAR.radiobutton.text
+msgid "~As character"
+msgstr "~As character"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOFRAME.radiobutton.text
+msgid "To ~frame"
+msgstr "To ~frame"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_PROTECTION.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_PROTECTION.fixedline.text"
+msgid "Protect"
+msgstr "Protect"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_POSITION.tristatebox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_POSITION.tristatebox.text"
+msgid "Position"
+msgstr "Position"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_SIZE.tristatebox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_SIZE.tristatebox.text"
+msgid "~Size"
+msgstr "~Size"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_POSITION.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Position"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORI.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORI.fixedtext.text"
+msgid "Hori~zontal"
+msgstr "Hori~zontal"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORIBY.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORIBY.fixedtext.text"
+msgid "b~y"
+msgstr "b~y"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORITO.fixedtext.text
+msgid "~to"
+msgstr "~to"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_HORIMIRROR.checkbox.text
+msgid "~Mirror on even pages"
+msgstr "~Mirror on even pages"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERT.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERT.fixedtext.text"
+msgid "~Vertical"
+msgstr "~Vertical"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERTBY.fixedtext.text
+msgid "by"
+msgstr "by"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERTTO.fixedtext.text
+msgid "t~o"
+msgstr "t~o"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_FOLLOW.checkbox.text
+msgid "Follow text flow"
+msgstr "Follow text flow"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.tabpage.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.tabpage.text"
+msgid "Position and Size"
+msgstr "Position and Size"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FL_PROP.fixedline.text
+msgid "Transparency mode"
+msgstr "Transparency mode"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_OFF.radiobutton.text
+msgid "~No transparency"
+msgstr "~No transparency"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_LINEAR.radiobutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_LINEAR.radiobutton.text"
+msgid "~Transparency"
+msgstr "~Transparency"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_GRADIENT.radiobutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_GRADIENT.radiobutton.text"
+msgid "Gradient"
+msgstr "Gradient"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_TYPE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_TYPE.fixedtext.text"
+msgid "Ty~pe"
+msgstr "Ty~pe"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.1.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.1.stringlist.text"
+msgid "Linear"
+msgstr "Linear"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.2.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.2.stringlist.text"
+msgid "Axial"
+msgstr "Axial"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.3.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.3.stringlist.text"
+msgid "Radial"
+msgstr "Radial"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.4.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.4.stringlist.text"
+msgid "Ellipsoid"
+msgstr "Ellipsoid"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.5.stringlist.text
+msgid "Quadratic"
+msgstr "Quadratic"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.6.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.6.stringlist.text"
+msgid "Square"
+msgstr "Square"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_CENTER_X.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_CENTER_X.fixedtext.text"
+msgid "Center ~X"
+msgstr "Center ~X"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_CENTER_Y.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_CENTER_Y.fixedtext.text"
+msgid "Center ~Y"
+msgstr "Center ~Y"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_ANGLE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "~Angle"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.MTR_TRGR_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.MTR_TRGR_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " degrees"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_BORDER.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_BORDER.fixedtext.text"
+msgid "~Border"
+msgstr "~Border"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_START_VALUE.fixedtext.text
+msgid "~Start value"
+msgstr "~Start value"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_END_VALUE.fixedtext.text
+msgid "~End value"
+msgstr "~End value"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.tabpage.text"
+msgid "Transparency"
+msgstr "Transparency"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_PROP.fixedline.text
+msgid "Fill"
+msgstr "Fill"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.1.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.1.stringlist.text"
+msgid "None"
+msgstr "None"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.2.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.2.stringlist.text"
+msgid "Color"
+msgstr "Colour"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.3.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.3.stringlist.text"
+msgid "Gradient"
+msgstr "Gradient"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.4.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.4.stringlist.text"
+msgid "Hatching"
+msgstr "Hatching"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.5.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.5.stringlist.text"
+msgid "Bitmap"
+msgstr "Bitmap"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_STEPCOUNT.fixedline.text
+msgid "Increments"
+msgstr "Increments"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_STEPCOUNT.tristatebox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.TSB_STEPCOUNT.tristatebox.text"
+msgid "A~utomatic"
+msgstr "A~utomatic"
+
+#: tabarea.src#RID_SVXPAGE_AREA.CB_HATCHBCKGRD.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.CB_HATCHBCKGRD.checkbox.text"
+msgid "~Background color"
+msgstr "~Background colour"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_SIZE.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr "Size"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_ORIGINAL.tristatebox.text
+msgid "~Original"
+msgstr "~Original"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_SCALE.tristatebox.text
+msgid "Re~lative"
+msgstr "Re~lative"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_X_SIZE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FT_X_SIZE.fixedtext.text"
+msgid "Wi~dth"
+msgstr "Wi~dth"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_Y_SIZE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FT_Y_SIZE.fixedtext.text"
+msgid "H~eight"
+msgstr "H~eight"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_POSITION.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "Position"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_X_OFFSET.fixedtext.text
+msgid "~X Offset"
+msgstr "~X Offset"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_Y_OFFSET.fixedtext.text
+msgid "~Y Offset"
+msgstr "~Y Offset"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_TILE.tristatebox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.TSB_TILE.tristatebox.text"
+msgid "~Tile"
+msgstr "~Tile"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_STRETCH.tristatebox.text
+msgid "Auto~Fit"
+msgstr "Auto~Fit"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_OFFSET.fixedline.text
+msgid "Offset"
+msgstr "Offset"
+
+#: tabarea.src#RID_SVXPAGE_AREA.RBT_ROW.radiobutton.text
+msgid "Ro~w"
+msgstr "Ro~w"
+
+#: tabarea.src#RID_SVXPAGE_AREA.RBT_COLUMN.radiobutton.text
+msgid "Colu~mn"
+msgstr "Colu~mn"
+
+#: tabarea.src#RID_SVXPAGE_AREA.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.tabpage.text"
+msgid "Area"
+msgstr "Area"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.TSB_SHOW_SHADOW.tristatebox.text
+msgid "~Use shadow"
+msgstr "~Use shadow"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_POSITION.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_POSITION.fixedtext.text"
+msgid "~Position"
+msgstr "~Position"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_DISTANCE.fixedtext.text
+msgid "~Distance"
+msgstr "~Distance"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_SHADOW_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_SHADOW_COLOR.fixedtext.text"
+msgid "~Color"
+msgstr "~Colour"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_TRANSPARENT.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_TRANSPARENT.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Transparency"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.tabpage.text"
+msgid "Shadow"
+msgstr "Shadow"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_DISTANCE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_DISTANCE.fixedtext.text"
+msgid "~Spacing"
+msgstr "~Spacing"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_ANGLE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_ANGLE.fixedtext.text"
+msgid "A~ngle"
+msgstr "A~ngle"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.MTR_FLD_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " degrees"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_TYPE.fixedtext.text
+msgid "~Line type"
+msgstr "~Line type"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.1.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.1.stringlist.text"
+msgid "Single"
+msgstr "Single"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.2.stringlist.text
+msgid "Crossed"
+msgstr "Crossed"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.3.stringlist.text
+msgid "Triple"
+msgstr "Triple"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_COLOR.fixedtext.text
+msgid "Line ~color"
+msgstr "Line ~colour"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Add..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modify..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Delete..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_LOAD.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Hatches List"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_SAVE.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Hatches List"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.tabpage.text"
+msgid "Hatching"
+msgstr "Hatching"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_PIXEL_EDIT.fixedtext.text
+msgid "Pattern Editor"
+msgstr "Pattern Editor"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_COLOR.fixedtext.text
+msgid "~Foreground color"
+msgstr "~Foreground colour"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BACKGROUND_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BACKGROUND_COLOR.fixedtext.text"
+msgid "~Background color"
+msgstr "~Background colour"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text"
+msgid "Bitmap"
+msgstr "Bitmap"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Add..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modify..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_IMPORT.pushbutton.text
+msgid "~Import..."
+msgstr "~Import..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Delete..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_LOAD.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Bitmap List"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_SAVE.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Bitmap List"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.tabpage.text
+msgid "Bitmap Patterns"
+msgstr "Bitmap Patterns"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_TYPE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_TYPE.fixedtext.text"
+msgid "Ty~pe"
+msgstr "Ty~pe"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.1.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.1.stringlist.text"
+msgid "Linear"
+msgstr "Linear"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.2.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.2.stringlist.text"
+msgid "Axial"
+msgstr "Axial"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.3.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.3.stringlist.text"
+msgid "Radial"
+msgstr "Radial"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.4.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.4.stringlist.text"
+msgid "Ellipsoid"
+msgstr "Ellipsoid"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.5.stringlist.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.5.stringlist.text"
+msgid "Square"
+msgstr "Square"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.6.stringlist.text
+msgid "Rectangular"
+msgstr "Rectangular"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_CENTER_X.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_CENTER_X.fixedtext.text"
+msgid "Center ~X"
+msgstr "Center ~X"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_CENTER_Y.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_CENTER_Y.fixedtext.text"
+msgid "Center ~Y"
+msgstr "Center ~Y"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_ANGLE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_ANGLE.fixedtext.text"
+msgid "A~ngle"
+msgstr "A~ngle"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.MTR_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.MTR_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr " degrees"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_BORDER.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_BORDER.fixedtext.text"
+msgid "~Border"
+msgstr "~Border"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_COLOR_FROM.fixedtext.text
+msgid "~From"
+msgstr "~From"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_COLOR_TO.fixedtext.text
+msgid "~To"
+msgstr "~To"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr "~Add..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr "~Modify..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Delete..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_LOAD.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Gradients List"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_SAVE.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Gradients List"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.tabpage.text"
+msgid "Gradients"
+msgstr "Gradients"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FL_PROP.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Properties"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_NAME.fixedtext.text
+msgid "~Name"
+msgstr "~Name"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.FT_COLOR.fixedtext.text"
+msgid "C~olor"
+msgstr "C~olor"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_TABLE_NAME.fixedtext.text
+msgid "Color table"
+msgstr "Colour table"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.LB_COLORMODEL.1.stringlist.text
+msgid "RGB"
+msgstr "RGB"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.LB_COLORMODEL.2.stringlist.text
+msgid "CMYK"
+msgstr "CMYK"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_1.fixedtext.text
+msgid "~C"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_2.fixedtext.text
+msgid "~M"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_3.fixedtext.text
+msgid "~Y"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_4.fixedtext.text
+msgid "~K"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_ADD.pushbutton.text
+msgid "~Add"
+msgstr "~Add"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_WORK_ON.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_WORK_ON.pushbutton.text"
+msgid "~Edit..."
+msgstr "~Edit..."
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr "~Delete..."
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_MODIFY.pushbutton.text
+msgid "~Modify"
+msgstr "~Modify"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_LOAD.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_LOAD.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_LOAD.imagebutton.quickhelptext
+msgid "Load Color List"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_SAVE.imagebutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_SAVE.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_SAVE.imagebutton.quickhelptext
+msgid "Save Color List"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_EMBED.checkbox.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_EMBED.checkbox.text"
+msgid "Embed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.tabpage.text"
+msgid "Colors"
+msgstr "Colours"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_AREA.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_AREA.pageitem.text"
+msgid "Area"
+msgstr "Area"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_SHADOW.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_SHADOW.pageitem.text"
+msgid "Shadow"
+msgstr "Shadow"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_TRANSPARENCE.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_TRANSPARENCE.pageitem.text"
+msgid "Transparency"
+msgstr "Transparency"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_COLOR.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_COLOR.pageitem.text"
+msgid "Colors"
+msgstr "Colours"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_GRADIENT.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_GRADIENT.pageitem.text"
+msgid "Gradients"
+msgstr "Gradients"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_HATCH.pageitem.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_HATCH.pageitem.text"
+msgid "Hatching"
+msgstr "Hatching"
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_BITMAP.pageitem.text
+msgid "Bitmaps"
+msgstr "Bitmaps"
+
+#: tabarea.src#RID_SVXDLG_AREA.tabdialog.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.tabdialog.text"
+msgid "Area"
+msgstr "Area"
+
+#: tabarea.src#STR_LB_HATCHINGSTYLE.string.text
+#, fuzzy
+msgid "Hatching Style"
+msgstr "Hatching"
+
+#: tabarea.src#STR_CUI_COLORMODEL.string.text
+#, fuzzy
+msgid "Color Mode"
+msgstr "Contour Mode"
diff --git a/source/en-ZA/dbaccess/source/core/resource.po b/source/en-ZA/dbaccess/source/core/resource.po
new file mode 100644
index 00000000000..14d4269f0fd
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/core/resource.po
@@ -0,0 +1,306 @@
+#. extracted from dbaccess/source/core/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fcore%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-19 19:00+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: strings.src#RID_STR_TRIED_OPEN_TABLE.string.text
+msgid "Tried to open the table $name$."
+msgstr "Tried to open the table $name$."
+
+#: strings.src#RID_STR_CONNECTION_INVALID.string.text
+msgid "No connection could be established."
+msgstr "No connection could be established."
+
+#: strings.src#RID_STR_TABLE_IS_FILTERED.string.text
+msgid "The table $name$ already exists. It is not visible because it has been filtered out."
+msgstr "The table $name$ already exists. It is not visible because it has been filtered out."
+
+#: strings.src#RID_STR_NEED_CONFIG_WRITE_ACCESS.string.text
+msgid "You have no write access to the configuration data the object is based on."
+msgstr "You have no write access to the configuration data the object is based on."
+
+#: strings.src#RID_STR_COULDNOTCONNECT_UNSPECIFIED.string.text
+msgid "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective."
+msgstr "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective."
+
+#: strings.src#RID_STR_COULDNOTCONNECT_NODRIVER.string.text
+msgid "The connection to the external data source could not be established. No SDBC driver was found for the given URL."
+msgstr "The connection to the external data source could not be established. No SDBC driver was found for the given URL."
+
+#: strings.src#RID_STR_COULDNOTLOAD_MANAGER.string.text
+msgid "The connection to the external data source could not be established. The SDBC driver manager could not be loaded."
+msgstr "The connection to the external data source could not be established. The SDBC driver manager could not be loaded."
+
+#: strings.src#RID_STR_FORM.string.text
+msgid "Form"
+msgstr "Form"
+
+#: strings.src#RID_STR_REPORT.string.text
+msgid "Report"
+msgstr "Report"
+
+#: strings.src#RID_STR_DATASOURCE_NOT_STORED.string.text
+msgid "The data source was not saved. Please use the interface XStorable to save the data source."
+msgstr "The data source was not saved. Please use the interface XStorable to save the data source."
+
+#: strings.src#RID_STR_ONLY_QUERY.string.text
+msgid ""
+"The given command is not a SELECT statement.\n"
+"Only queries are allowed."
+msgstr ""
+"The given command is not a SELECT statement.\n"
+"Only queries are allowed."
+
+#: strings.src#RID_STR_NO_VALUE_CHANGED.string.text
+msgid "No values were modified."
+msgstr "No values were modified."
+
+#: strings.src#RID_STR_NO_XROWUPDATE.string.text
+msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
+msgstr "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
+
+#: strings.src#RID_STR_NO_XRESULTSETUPDATE.string.text
+msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
+msgstr "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
+
+#: strings.src#RID_STR_NO_UPDATE_MISSING_CONDITION.string.text
+msgid "Values could not be modified, due to a missing condition statement."
+msgstr "Values could not be modified, due to a missing condition statement."
+
+#: strings.src#RID_STR_NO_COLUMN_ADD.string.text
+msgid "The adding of columns is not supported."
+msgstr "The adding of columns is not supported."
+
+#: strings.src#RID_STR_NO_COLUMN_DROP.string.text
+msgid "The dropping of columns is not supported."
+msgstr "The dropping of columns is not supported."
+
+#: strings.src#RID_STR_NO_CONDITION_FOR_PK.string.text
+msgid "The WHERE condition could not be created for the primary key."
+msgstr "The WHERE condition could not be created for the primary key."
+
+#: strings.src#RID_STR_COLUMN_UNKNOWN_PROP.string.text
+msgid "The column does not support the property '%value'."
+msgstr "The column does not support the property '%value'."
+
+#: strings.src#RID_STR_COLUMN_NOT_SEARCHABLE.string.text
+msgid "The column is not searchable!"
+msgstr "The column is not searchable!"
+
+#: strings.src#RID_STR_NOT_SEQUENCE_INT8.string.text
+msgid "The value of the columns is not of the type Sequence<sal_Int8>."
+msgstr "The value of the columns is not of the type Sequence<sal_Int8>."
+
+#: strings.src#RID_STR_COLUMN_NOT_VALID.string.text
+msgid "The column is not valid."
+msgstr "The column is not valid."
+
+#: strings.src#RID_STR_COLUMN_MUST_VISIBLE.string.text
+msgid "The column '%name' must be visible as a column."
+msgstr "The column '%name' must be visible as a column."
+
+#: strings.src#RID_STR_NO_XQUERIESSUPPLIER.string.text
+msgid "The interface XQueriesSupplier is not available."
+msgstr "The interface XQueriesSupplier is not available."
+
+#: strings.src#RID_STR_NOT_SUPPORTED_BY_DRIVER.string.text
+msgid "The driver does not support this function."
+msgstr "The driver does not support this function."
+
+#: strings.src#RID_STR_NO_ABS_ZERO.string.text
+msgid "An 'absolute(0)' call is not allowed."
+msgstr "An 'absolute(0)' call is not allowed."
+
+#: strings.src#RID_STR_NO_RELATIVE.string.text
+msgid "Relative positioning is not allowed in this state."
+msgstr "Relative positioning is not allowed in this state."
+
+#: strings.src#RID_STR_NO_REFESH_AFTERLAST.string.text
+msgid "A row cannot be refreshed when the ResultSet is positioned after the last row."
+msgstr "A row cannot be refreshed when the ResultSet is positioned after the last row."
+
+#: strings.src#RID_STR_NO_MOVETOINSERTROW_CALLED.string.text
+msgid "A new row cannot be inserted when the ResultSet is not first moved to the insert row."
+msgstr "A new row cannot be inserted when the ResultSet is not first moved to the insert row."
+
+#: strings.src#RID_STR_NO_UPDATEROW.string.text
+msgid "A row cannot be modified in this state"
+msgstr "A row cannot be modified in this state"
+
+#: strings.src#RID_STR_NO_DELETEROW.string.text
+msgid "A row cannot be deleted in this state."
+msgstr "A row cannot be deleted in this state."
+
+#: strings.src#RID_STR_NO_TABLE_RENAME.string.text
+msgid "The driver does not support table renaming."
+msgstr "The driver does not support table renaming."
+
+#: strings.src#RID_STR_NO_ALTER_COLUMN_DEF.string.text
+msgid "The driver does not support the modification of column descriptions."
+msgstr "The driver does not support the modification of column descriptions."
+
+#: strings.src#RID_STR_COLUMN_ALTER_BY_NAME.string.text
+msgid "The driver does not support the modification of column descriptions by changing the name."
+msgstr "The driver does not support the modification of column descriptions by changing the name."
+
+#: strings.src#RID_STR_COLUMN_ALTER_BY_INDEX.string.text
+msgid "The driver does not support the modification of column descriptions by changing the index."
+msgstr "The driver does not support the modification of column descriptions by changing the index."
+
+#: strings.src#RID_STR_FILE_DOES_NOT_EXIST.string.text
+msgid "The file \"$file$\" does not exist."
+msgstr "The file \"$file$\" does not exist."
+
+#: strings.src#RID_STR_TABLE_DOES_NOT_EXIST.string.text
+msgid "There exists no table named \"$table$\"."
+msgstr "There exists no table named \"$table$\"."
+
+#: strings.src#RID_STR_QUERY_DOES_NOT_EXIST.string.text
+msgid "There exists no query named \"$table$\"."
+msgstr "There exists no query named \"$table$\"."
+
+#: strings.src#RID_STR_CONFLICTING_NAMES.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 "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."
+
+#: strings.src#RID_STR_COMMAND_LEADING_TO_ERROR.string.text
+msgid ""
+"The SQL command leading to this error is:\n"
+"\n"
+"$command$"
+msgstr ""
+"The SQL command leading to this error is:\n"
+"\n"
+"$command$"
+
+#: strings.src#RID_STR_STATEMENT_WITHOUT_RESULT_SET.string.text
+msgid "The SQL command does not describe a result set."
+msgstr "The SQL command does not describe a result set."
+
+#: strings.src#RID_STR_NAME_MUST_NOT_BE_EMPTY.string.text
+msgid "The name must not be empty."
+msgstr "The name must not be empty."
+
+#: strings.src#RID_STR_NO_NULL_OBJECTS_IN_CONTAINER.string.text
+msgid "The container cannot contain NULL objects."
+msgstr "The container cannot contain NULL objects."
+
+#: strings.src#RID_STR_NAME_ALREADY_USED.string.text
+msgid "There already is an object with the given name."
+msgstr "There already is an object with the given name."
+
+#: strings.src#RID_STR_OBJECT_CONTAINER_MISMATCH.string.text
+msgid "This object cannot be part of this container."
+msgstr "This object cannot be part of this container."
+
+#: strings.src#RID_STR_OBJECT_ALREADY_CONTAINED.string.text
+msgid "The object already is, with a different name, part of the container."
+msgstr "The object already is, with a different name, part of the container."
+
+#: strings.src#RID_STR_NAME_NOT_FOUND.string.text
+msgid "Unable to find the document '$name$'."
+msgstr "Unable to find the document '$name$'."
+
+#: strings.src#RID_STR_ERROR_WHILE_SAVING.string.text
+msgid ""
+"Could not save the document to $location$:\n"
+"$message$"
+msgstr ""
+"Could not save the document to $location$:\n"
+"$message$"
+
+#: strings.src#RID_NO_SUCH_DATA_SOURCE.string.text
+msgid ""
+"Error accessing data source '$name$':\n"
+"$error$"
+msgstr ""
+"Error accessing data source '$name$':\n"
+"$error$"
+
+#: strings.src#RID_STR_NO_SUB_FOLDER.string.text
+msgid "There exists no folder named \"$folder$\"."
+msgstr "There exists no folder named \"$folder$\"."
+
+#: strings.src#RID_STR_NO_DELETE_BEFORE_AFTER.string.text
+msgid "Cannot delete the before-first or after-last row."
+msgstr "Cannot delete the before-first or after-last row."
+
+#: strings.src#RID_STR_NO_DELETE_INSERT_ROW.string.text
+msgid "Cannot delete the insert-row."
+msgstr "Cannot delete the insert-row."
+
+#: strings.src#RID_STR_RESULT_IS_READONLY.string.text
+msgid "Result set is read only."
+msgstr "Result set is read only."
+
+#: strings.src#RID_STR_NO_DELETE_PRIVILEGE.string.text
+msgid "DELETE privilege not available."
+msgstr "DELETE privilege not available."
+
+#: strings.src#RID_STR_ROW_ALREADY_DELETED.string.text
+msgid "Current row is already deleted."
+msgstr "Current row is already deleted."
+
+#: strings.src#RID_STR_UPDATE_FAILED.string.text
+msgid "Current row could not be updated."
+msgstr "Current row could not be updated."
+
+#: strings.src#RID_STR_NO_INSERT_PRIVILEGE.string.text
+msgid "INSERT privilege not available."
+msgstr "INSERT privilege not available."
+
+#: strings.src#RID_STR_INTERNAL_ERROR.string.text
+msgid "Internal error: no statement object provided by the database driver."
+msgstr "Internal error: no statement object provided by the database driver."
+
+#: strings.src#RID_STR_EXPRESSION1.string.text
+msgid "Expression1"
+msgstr "Expression1"
+
+#: strings.src#RID_STR_NO_SQL_COMMAND.string.text
+msgid "No SQL command was provided."
+msgstr "No SQL command was provided."
+
+#: strings.src#RID_STR_INVALID_INDEX.string.text
+msgid "Invalid column index."
+msgstr "Invalid column index."
+
+#: strings.src#RID_STR_INVALID_CURSOR_STATE.string.text
+msgid "Invalid cursor state."
+msgstr "Invalid cursor state."
+
+#: strings.src#RID_STR_CURSOR_BEFORE_OR_AFTER.string.text
+msgid "The cursor points to before the first or after the last row."
+msgstr "The cursor points to before the first or after the last row."
+
+#: strings.src#RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER.string.text
+msgid "The rows before the first and after the last row don't have a bookmark."
+msgstr "The rows before the first and after the last row don't have a bookmark."
+
+#: strings.src#RID_STR_NO_BOOKMARK_DELETED.string.text
+msgid "The current row is deleted, and thus doesn't have a bookmark."
+msgstr "The current row is deleted, and thus doesn't have a bookmark."
+
+#: strings.src#RID_STR_NO_EMBEDDING.string.text
+msgid "Embedding of database documents is not supported."
+msgstr "Embedding of database documents is not supported."
+
+#: strings.src#RID_STR_CONNECTION_REQUEST.string.text
+msgid "A connection for the following URL was requested \"$name$\"."
+msgstr "A connection for the following URL was requested \"$name$\"."
+
+#: strings.src#RID_STR_MISSING_EXTENSION.string.text
+msgid "The extension is not installed."
+msgstr "The extension is not installed."
diff --git a/source/en-ZA/dbaccess/source/ext/macromigration.po b/source/en-ZA/dbaccess/source/ext/macromigration.po
new file mode 100644
index 00000000000..7999ce49cc0
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ext/macromigration.po
@@ -0,0 +1,213 @@
+#. extracted from dbaccess/source/ext/macromigration.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fext%2Fmacromigration.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-12-15 13:03+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_CLOSE_SUB_DOCS.string.text
+msgid "Prepare"
+msgstr "Prepare"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_BACKUP_DBDOC.string.text
+msgid "Backup Document"
+msgstr "Backup Document"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_MIGRATE.string.text
+msgid "Migrate"
+msgstr "Migrate"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_SUMMARY.string.text
+msgctxt "macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_SUMMARY.string.text"
+msgid "Summary"
+msgstr "Summary"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.modaldialog.text
+msgid "Database Document Macro Migration"
+msgstr "Database Document Macro Migration"
+
+#: macromigration.src#TP_PREPARE.FT_HEADER.fixedtext.text
+msgid "Welcome to the Database Macro Migration Wizard"
+msgstr "Welcome to the Database Macro Migration Wizard"
+
+#: macromigration.src#TP_PREPARE.FT_INTRODUCTION.fixedtext.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 ""
+"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."
+
+#: macromigration.src#TP_PREPARE.FT_CLOSE_DOC_ERROR.fixedtext.text
+msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
+msgstr "Not all objects could be closed. Please close them manually, and re-start the wizard."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_HEADER.fixedtext.text
+msgid "Backup your Document"
+msgstr "Backup your Document"
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_EXPLANATION.fixedtext.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 "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."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_SAVE_AS_LABEL.fixedtext.text
+msgid "Save To:"
+msgstr "Save To:"
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.PB_BROWSE_SAVE_AS_LOCATION.pushbutton.text
+msgid "Browse ..."
+msgstr "Browse ..."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_START_MIGRATION.fixedtext.text
+msgid "Press 'Next' to save a copy of your document, and to begin the migration."
+msgstr "Press 'Next' to save a copy of your document, and to begin the migration."
+
+#: macromigration.src#TP_MIGRATE.FT_HEADER.fixedtext.text
+msgid "Migration Progress"
+msgstr "Migration Progress"
+
+#: macromigration.src#TP_MIGRATE.FT_OBJECT_COUNT.fixedtext.text
+msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
+msgstr "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
+
+#: macromigration.src#TP_MIGRATE.FT_CURRENT_OBJECT_LABEL.fixedtext.text
+msgid "Current object:"
+msgstr "Current object:"
+
+#: macromigration.src#TP_MIGRATE.FT_CURRENT_PROGRESS_LABEL.fixedtext.text
+msgid "Current progress:"
+msgstr "Current progress:"
+
+#: macromigration.src#TP_MIGRATE.FT_ALL_PROGRESS_LABEL.fixedtext.text
+msgid "Overall progress:"
+msgstr "Overall progress:"
+
+#: macromigration.src#TP_MIGRATE.FT_OBJECT_COUNT_PROGRESS.fixedtext.text
+msgctxt "macromigration.src#TP_MIGRATE.FT_OBJECT_COUNT_PROGRESS.fixedtext.text"
+msgid "document $current$ of $overall$"
+msgstr "document $current$ of $overall$"
+
+#: macromigration.src#TP_MIGRATE.FT_MIGRATION_DONE.fixedtext.text
+msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
+msgstr "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
+
+#: macromigration.src#TP_SUMMARY.FT_HEADER.fixedtext.text
+msgctxt "macromigration.src#TP_SUMMARY.FT_HEADER.fixedtext.text"
+msgid "Summary"
+msgstr "Summary"
+
+#: macromigration.src#TP_SUMMARY.STR_SUCCESSFUL.string.text
+msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
+msgstr "The migration was successful. Below is a log of the actions which have been taken to your document."
+
+#: macromigration.src#TP_SUMMARY.STR_UNSUCCESSFUL.string.text
+msgid "The migration was not successful. Examine the migration log below for details."
+msgstr "The migration was not successful. Examine the migration log below for details."
+
+#. This refers to a form document inside a database document.
+#: macromigration.src#STR_FORM.string.text
+msgid "Form '$name$'"
+msgstr "Form '$name$'"
+
+#. This refers to a report document inside a database document.
+#: macromigration.src#STR_REPORT.string.text
+msgid "Report '$name$'"
+msgstr "Report '$name$'"
+
+#: macromigration.src#STR_OVERALL_PROGRESS.string.text
+msgctxt "macromigration.src#STR_OVERALL_PROGRESS.string.text"
+msgid "document $current$ of $overall$"
+msgstr "document $current$ of $overall$"
+
+#: macromigration.src#STR_DATABASE_DOCUMENT.string.text
+msgid "Database Document"
+msgstr "Database Document"
+
+#: macromigration.src#STR_SAVED_COPY_TO.string.text
+msgid "saved copy to $location$"
+msgstr "saved copy to $location$"
+
+#: macromigration.src#STR_MOVED_LIBRARY.string.text
+msgid "migrated $type$ library '$old$' to '$new$'"
+msgstr "migrated $type$ library '$old$' to '$new$'"
+
+#: macromigration.src#STR_LIBRARY_TYPE_AND_NAME.string.text
+msgid "$type$ library '$library$'"
+msgstr "$type$ library '$library$'"
+
+#: macromigration.src#STR_MIGRATING_LIBS.string.text
+msgid "migrating libraries ..."
+msgstr "migrating libraries ..."
+
+#: macromigration.src#STR_OOO_BASIC.string.text
+msgid "%PRODUCTNAME Basic"
+msgstr "%PRODUCTNAME Basic"
+
+#: macromigration.src#STR_JAVA_SCRIPT.string.text
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#: macromigration.src#STR_BEAN_SHELL.string.text
+msgid "BeanShell"
+msgstr "BeanShell"
+
+#: macromigration.src#STR_JAVA.string.text
+msgid "Java"
+msgstr "Java"
+
+#: macromigration.src#STR_PYTHON.string.text
+msgid "Python"
+msgstr "Python"
+
+#: macromigration.src#STR_DIALOG.string.text
+msgid "dialog"
+msgstr "dialogue"
+
+#: macromigration.src#STR_ERRORS.string.text
+msgid "Error(s)"
+msgstr "Error(s)"
+
+#: macromigration.src#STR_WARNINGS.string.text
+msgid "Warnings"
+msgstr "Warnings"
+
+#: macromigration.src#STR_EXCEPTION.string.text
+#, fuzzy
+msgid "caught exception:"
+msgstr "caught exception: "
+
+#: macromigration.src#ERR_INVALID_BACKUP_LOCATION.errorbox.text
+msgid "You need to choose a backup location other than the document location itself."
+msgstr "You need to choose a backup location other than the document location itself."
+
+#: macromigration.src#STR_INVALID_NUMBER_ARGS.string.text
+msgid "Invalid number of initialization arguments. Expected 1."
+msgstr "Invalid number of initialisation arguments. Expected 1."
+
+#: macromigration.src#STR_NO_DATABASE.string.text
+msgid "No database document found in the initialization arguments."
+msgstr "No database document found in the initialisation arguments."
+
+#: macromigration.src#STR_NOT_READONLY.string.text
+msgid "Not applicable to read-only documents."
+msgstr "Not applicable to read-only documents."
diff --git a/source/en-ZA/dbaccess/source/sdbtools/resource.po b/source/en-ZA/dbaccess/source/sdbtools/resource.po
new file mode 100644
index 00000000000..7e9617f9cbf
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/sdbtools/resource.po
@@ -0,0 +1,44 @@
+#. extracted from dbaccess/source/sdbtools/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fsdbtools%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: sdbt_strings.src#STR_QUERY_AND_TABLE_DISTINCT_NAMES.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 "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."
+
+#: sdbt_strings.src#STR_BASENAME_TABLE.string.text
+msgid "Table"
+msgstr "Table"
+
+#: sdbt_strings.src#STR_BASENAME_QUERY.string.text
+msgid "Query"
+msgstr "Query"
+
+#: sdbt_strings.src#STR_CONN_WITHOUT_QUERIES_OR_TABLES.string.text
+msgid "The given connection is no valid query and/or tables supplier."
+msgstr "The given connection is no valid query and/or tables supplier."
+
+#: sdbt_strings.src#STR_NO_TABLE_OBJECT.string.text
+msgid "The given object is no table object."
+msgstr "The given object is no table object."
+
+#: sdbt_strings.src#STR_INVALID_COMPOSITION_TYPE.string.text
+msgid "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
+msgstr "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
+
+#: sdbt_strings.src#STR_INVALID_COMMAND_TYPE.string.text
+msgid "Invalid command type - only TABLE and QUERY from com.sun.star.sdb.CommandType are allowed."
+msgstr "Invalid command type - only TABLE and QUERY from com.sun.star.sdb.CommandType are allowed."
diff --git a/source/en-ZA/dbaccess/source/ui/app.po b/source/en-ZA/dbaccess/source/ui/app.po
new file mode 100644
index 00000000000..5f88ad0d063
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/app.po
@@ -0,0 +1,297 @@
+#. extracted from dbaccess/source/ui/app.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fapp.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: app.src#RID_STR_NEW_FORM.string.text
+msgid "Create Form in Design View..."
+msgstr "Create Form in Design View..."
+
+#: app.src#RID_STR_NEW_FORM_AUTO.string.text
+msgid "Use Wizard to Create Form..."
+msgstr "Use Wizard to Create Form..."
+
+#: app.src#RID_STR_NEW_REPORT_AUTO.string.text
+msgid "Use Wizard to Create Report..."
+msgstr "Use Wizard to Create Report..."
+
+#: app.src#RID_STR_NEW_REPORT.string.text
+msgid "Create Report in Design View..."
+msgstr "Create Report in Design View..."
+
+#: app.src#RID_STR_NEW_QUERY.string.text
+msgid "Create Query in Design View..."
+msgstr "Create Query in Design View..."
+
+#: app.src#RID_STR_NEW_QUERY_SQL.string.text
+msgid "Create Query in SQL View..."
+msgstr "Create Query in SQL View..."
+
+#: app.src#RID_STR_NEW_QUERY_AUTO.string.text
+msgid "Use Wizard to Create Query..."
+msgstr "Use Wizard to Create Query..."
+
+#: app.src#RID_STR_NEW_TABLE.string.text
+msgid "Create Table in Design View..."
+msgstr "Create Table in Design View..."
+
+#: app.src#RID_STR_NEW_TABLE_AUTO.string.text
+msgid "Use Wizard to Create Table..."
+msgstr "Use Wizard to Create Table..."
+
+#: app.src#RID_STR_NEW_VIEW.string.text
+msgid "Create View..."
+msgstr "Create View..."
+
+#: app.src#RID_STR_FORMS_CONTAINER.string.text
+msgid "Forms"
+msgstr "Forms"
+
+#: app.src#RID_STR_REPORTS_CONTAINER.string.text
+msgid "Reports"
+msgstr "Reports"
+
+#: app.src#RID_MENU_APP_NEW.SID_APP_NEW_FORM.menuitem.text
+msgid "Form..."
+msgstr "Form..."
+
+#: app.src#RID_MENU_APP_NEW.SID_APP_NEW_REPORT.menuitem.text
+msgctxt "app.src#RID_MENU_APP_NEW.SID_APP_NEW_REPORT.menuitem.text"
+msgid "Report..."
+msgstr "Report..."
+
+#: app.src#RID_MENU_APP_NEW.SID_DB_NEW_VIEW_SQL.menuitem.text
+msgid "View (Simple)..."
+msgstr "View (Simple)..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_PASTE_SPECIAL.menuitem.text
+msgid "Paste Special..."
+msgstr "Paste Special..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_DELETE.menuitem.text
+msgid "Delete"
+msgstr "Delete"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_RENAME.menuitem.text
+msgid "Rename"
+msgstr "Rename"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_EDIT.menuitem.text
+msgid "Edit"
+msgstr "Edit"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_EDIT_SQL_VIEW.menuitem.text
+msgid "Edit in SQL View..."
+msgstr "Edit in SQL View..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_OPEN.menuitem.text
+msgid "Open"
+msgstr "Open"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_CONVERTTOVIEW.menuitem.text
+msgid "Create as View"
+msgstr "Create as View"
+
+#: app.src#RID_MENU_APP_EDIT.SID_FORM_CREATE_REPWIZ_PRE_SEL.menuitem.text
+msgid "Form Wizard..."
+msgstr "Form Wizard..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_APP_NEW_REPORT_PRE_SEL.menuitem.text
+msgctxt "app.src#RID_MENU_APP_EDIT.SID_APP_NEW_REPORT_PRE_SEL.menuitem.text"
+msgid "Report..."
+msgstr "Report..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_REPORT_CREATE_REPWIZ_PRE_SEL.menuitem.text
+msgid "Report Wizard..."
+msgstr "Report Wizard..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_SELECTALL.menuitem.text
+msgid "Select All"
+msgstr "Select All"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSPROPS.menuitem.text
+#, fuzzy
+msgid "Properties..."
+msgstr "Properties"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSCONNECTION_TYPE.menuitem.text
+#, fuzzy
+msgid "Connection Type..."
+msgstr "Connection Type"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSADVANCED_SETTINGS.menuitem.text
+#, fuzzy
+msgid "Advanced Settings..."
+msgstr "Advanced Settings"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.menuitem.text
+msgid "~Database"
+msgstr "~Database"
+
+#: app.src#STR_QUERY_DELETE_DATASOURCE.string.text
+msgid "Do you want to delete the data source '%1'?"
+msgstr "Do you want to delete the data source '%1'?"
+
+#: app.src#STR_APP_TITLE.string.text
+msgid " - %PRODUCTNAME Base"
+msgstr " - %PRODUCTNAME Base"
+
+#: app.src#RID_STR_REPORTS_HELP_TEXT_WIZARD.string.text
+msgid "The wizard will guide you through the steps necessary to create a report."
+msgstr "The wizard will guide you through the steps necessary to create a report."
+
+#: app.src#RID_STR_FORMS_HELP_TEXT.string.text
+msgid "Create a form by specifying the record source, controls, and control properties."
+msgstr "Create a form by specifying the record source, controls, and control properties."
+
+#: app.src#RID_STR_REPORT_HELP_TEXT.string.text
+msgid "Create a report by specifying the record source, controls, and control properties."
+msgstr "Create a report by specifying the record source, controls, and control properties."
+
+#: app.src#RID_STR_FORMS_HELP_TEXT_WIZARD.string.text
+msgid "The wizard will guide you through the steps necessary to create a form."
+msgstr "The wizard will guide you through the steps necessary to create a form."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT.string.text
+#, fuzzy
+msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
+msgstr "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT_SQL.string.text
+#, fuzzy
+msgid "Create a query entering an SQL statement directly."
+msgstr "Create a query entering an SQL statement directly."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT_WIZARD.string.text
+msgid "The wizard will guide you through the steps necessary to create a query."
+msgstr "The wizard will guide you through the steps necessary to create a query."
+
+#: app.src#RID_STR_TABLES_HELP_TEXT_DESIGN.string.text
+msgid "Create a table by specifying the field names and properties, as well as the data types."
+msgstr "Create a table by specifying the field names and properties, as well as the data types."
+
+#: app.src#RID_STR_TABLES_HELP_TEXT_WIZARD.string.text
+msgid "Choose from a selection of business and personal table samples, which you customize to create a table."
+msgstr "Choose from a selection of business and personal table samples, which you customise to create a table."
+
+#: app.src#RID_STR_VIEWS_HELP_TEXT_DESIGN.string.text
+msgid "Create a view by specifying the tables and field names you would like to have visible."
+msgstr "Create a view by specifying the tables and field names you would like to have visible."
+
+#: app.src#RID_STR_VIEWS_HELP_TEXT_WIZARD.string.text
+msgid "Opens the view wizard"
+msgstr "Opens the view wizard"
+
+#: app.src#STR_DATABASE.string.text
+msgid "Database"
+msgstr "Database"
+
+#: app.src#STR_TASKS.string.text
+msgid "Tasks"
+msgstr "Tasks"
+
+#: app.src#STR_DESCRIPTION.string.text
+msgid "Description"
+msgstr "Description"
+
+#: app.src#STR_PREVIEW.string.text
+msgid "Preview"
+msgstr "Preview"
+
+#: app.src#STR_DISABLEPREVIEW.string.text
+msgid "Disable Preview"
+msgstr "Disable Preview"
+
+#: app.src#APP_SAVEMODIFIED.querybox.text
+msgid ""
+"The database has been modified.\n"
+"Do you want to save the changes?"
+msgstr ""
+"The database has been modified.\n"
+"Do you want to save the changes?"
+
+#: app.src#APP_CLOSEDOCUMENTS.querybox.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 ""
+"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?"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_DISABLE_PREVIEW.menuitem.text
+msgid "None"
+msgstr "None"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_VIEW_DOCINFO_PREVIEW.menuitem.text
+msgid "Document Information"
+msgstr "Document Information"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_VIEW_DOC_PREVIEW.menuitem.text
+msgid "Document"
+msgstr "Document"
+
+#: app.src#RID_STR_FORM.string.text
+msgid "Form"
+msgstr "Form"
+
+#: app.src#RID_STR_REPORT.string.text
+msgid "Report"
+msgstr "Report"
+
+#: app.src#STR_FRM_LABEL.string.text
+msgid "F~orm name"
+msgstr "F~orm name"
+
+#: app.src#STR_RPT_LABEL.string.text
+msgid "~Report name"
+msgstr "~Report name"
+
+#: app.src#STR_FOLDER_LABEL.string.text
+msgid "F~older name"
+msgstr "F~older name"
+
+#: app.src#STR_SUB_DOCS_WITH_SCRIPTS.string.text
+msgid "The document contains forms or reports with embedded macros."
+msgstr "The document contains forms or reports with embedded macros."
+
+#: app.src#STR_SUB_DOCS_WITH_SCRIPTS_DETAIL.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 ""
+"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. "
+
+#: app.src#RID_STR_EMBEDDED_DATABASE.string.text
+msgid "Embedded database"
+msgstr "Embedded database"
+
+#: app.src#RID_STR_NO_DIFF_CAT.string.text
+msgid "You cannot select different categories."
+msgstr "You cannot select different categories."
+
+#: app.src#RID_STR_UNSUPPORTED_OBJECT_TYPE.string.text
+msgid "Unsupported object type found ($type$)."
+msgstr "Unsupported object type found ($type$)."
diff --git a/source/en-ZA/dbaccess/source/ui/browser.po b/source/en-ZA/dbaccess/source/ui/browser.po
new file mode 100644
index 00000000000..aabb2c725a8
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/browser.po
@@ -0,0 +1,174 @@
+#. extracted from dbaccess/source/ui/browser.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fbrowser.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: bcommon.src#RID_STR_TBL_TITLE.string.text
+msgctxt "bcommon.src#RID_STR_TBL_TITLE.string.text"
+msgid "Table #"
+msgstr "Table #"
+
+#: sbagrid.src#RID_SBA_GRID_COLCTXMENU.ID_BROWSER_COLATTRSET.menuitem.text
+msgid "Column ~Format..."
+msgstr "Column ~Format..."
+
+#: sbagrid.src#RID_SBA_GRID_COLCTXMENU.ID_BROWSER_COLUMNINFO.menuitem.text
+msgid "Copy Column D~escription"
+msgstr "Copy Column D~escription"
+
+#: sbagrid.src#RID_SBA_GRID_ROWCTXMENU.ID_BROWSER_TABLEATTR.menuitem.text
+msgid "Table Format..."
+msgstr "Table Format..."
+
+#: sbagrid.src#RID_SBA_GRID_ROWCTXMENU.ID_BROWSER_ROWHEIGHT.menuitem.text
+msgid "Row Height..."
+msgstr "Row Height..."
+
+#: sbagrid.src#RID_STR_UNDO_MODIFY_RECORD.string.text
+msgid "Undo: Data Input"
+msgstr "Undo: Data Input"
+
+#: sbagrid.src#RID_STR_SAVE_CURRENT_RECORD.string.text
+msgid "Save current record"
+msgstr "Save current record"
+
+#: sbagrid.src#STR_QRY_TITLE.string.text
+msgid "Query #"
+msgstr "Query #"
+
+#: sbagrid.src#STR_TBL_TITLE.string.text
+msgctxt "sbagrid.src#STR_TBL_TITLE.string.text"
+msgid "Table #"
+msgstr "Table #"
+
+#: sbagrid.src#STR_VIEW_TITLE.string.text
+msgid "View #"
+msgstr "View #"
+
+#: sbagrid.src#STR_NAME_ALREADY_EXISTS.string.text
+msgid "The name \"#\" already exists."
+msgstr "The name \"#\" already exists."
+
+#: sbagrid.src#STR_NO_COLUMNNAME_MATCHING.string.text
+msgid "No matching column names were found."
+msgstr "No matching column names were found."
+
+#: sbagrid.src#STR_ERROR_OCCURRED_WHILE_COPYING.string.text
+msgid "An error occurred. Do you want to continue copying?"
+msgstr "An error occurred. Do you want to continue copying?"
+
+#: sbagrid.src#STR_DATASOURCE_GRIDCONTROL_NAME.string.text
+msgid "Data source table view"
+msgstr "Data source table view"
+
+#: sbagrid.src#STR_DATASOURCE_GRIDCONTROL_DESC.string.text
+msgid "Shows the selected table or query."
+msgstr "Shows the selected table or query."
+
+#: sbabrw.src#QUERY_BRW_SAVEMODIFIED.querybox.text
+msgid ""
+"The current record has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"The current record has been changed.\n"
+"Do you want to save the changes?"
+
+#: sbabrw.src#QUERY_BRW_DELETE_ROWS.querybox.text
+msgid "Do you want to delete the selected data?"
+msgstr "Do you want to delete the selected data?"
+
+#: sbabrw.src#RID_STR_DATABROWSER_FILTERED.string.text
+msgid "(filtered)"
+msgstr "(filtered)"
+
+#: sbabrw.src#SBA_BROWSER_SETTING_ORDER.string.text
+msgid "Error setting the sort criteria"
+msgstr "Error setting the sort criteria"
+
+#: sbabrw.src#SBA_BROWSER_SETTING_FILTER.string.text
+msgid "Error setting the filter criteria"
+msgstr "Error setting the filter criteria"
+
+#: sbabrw.src#RID_STR_CONNECTION_LOST.string.text
+msgid "Connection lost"
+msgstr "Connection lost"
+
+#: sbabrw.src#RID_STR_QUERIES_CONTAINER.string.text
+msgid "Queries"
+msgstr "Queries"
+
+#: sbabrw.src#RID_STR_TABLES_CONTAINER.string.text
+msgid "Tables"
+msgstr "Tables"
+
+#: sbabrw.src#MID_EDIT_DATABASE.#define.text
+msgid "Edit ~Database File..."
+msgstr "Edit ~Database File..."
+
+#: sbabrw.src#MID_ADMINISTRATE.#define.text
+msgid "Registered databases ..."
+msgstr "Registered databases ..."
+
+#: sbabrw.src#MID_CLOSECONN.#define.text
+msgid "Disco~nnect"
+msgstr "Disco~nnect"
+
+#: sbabrw.src#STR_TITLE_CONFIRM_DELETION.string.text
+msgid "Confirm Deletion"
+msgstr "Confirm Deletion"
+
+#: sbabrw.src#STR_QUERY_DELETE_TABLE.string.text
+msgid "Do you want to delete the table '%1'?"
+msgstr "Do you want to delete the table '%1'?"
+
+#: sbabrw.src#QUERY_BRW_DELETE_QUERY_CONFIRM.querybox.text
+msgid "The query already exists. Do you want to delete it?"
+msgstr "The query already exists. Do you want to delete it?"
+
+#: sbabrw.src#QUERY_CONNECTION_LOST.querybox.text
+msgid "The connection to the database has been lost. Do you want to reconnect?"
+msgstr "The connection to the database has been lost. Do you want to reconnect?"
+
+#: sbabrw.src#STR_OPENTABLES_WARNINGS.string.text
+msgid "Warnings encountered"
+msgstr "Warnings encountered"
+
+#: sbabrw.src#STR_OPENTABLES_WARNINGS_DETAILS.string.text
+msgid "While retrieving the tables, warnings were reported by the database connection."
+msgstr "While retrieving the tables, warnings were reported by the database connection."
+
+#: sbabrw.src#STR_CONNECTING_DATASOURCE.string.text
+msgid "Connecting to \"$name$\" ..."
+msgstr "Connecting to \"$name$\" ..."
+
+#: sbabrw.src#STR_LOADING_QUERY.string.text
+msgid "Loading query $name$ ..."
+msgstr "Loading query $name$ ..."
+
+#: sbabrw.src#STR_LOADING_TABLE.string.text
+msgid "Loading table $name$ ..."
+msgstr "Loading table $name$ ..."
+
+#: sbabrw.src#STR_NO_TABLE_FORMAT_INSIDE.string.text
+msgid "No table format could be found."
+msgstr "No table format could be found."
+
+#: sbabrw.src#STR_COULDNOTCONNECT_DATASOURCE.string.text
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "The connection to the data source \"$name$\" could not be established."
+
+#: sbabrw.src#RID_MENU_REFRESH_DATA.ID_BROWSER_REFRESH_REBUILD.menuitem.text
+msgid "Rebuild"
+msgstr "Rebuild"
diff --git a/source/en-ZA/dbaccess/source/ui/control.po b/source/en-ZA/dbaccess/source/ui/control.po
new file mode 100644
index 00000000000..b9b94a0cba6
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/control.po
@@ -0,0 +1,92 @@
+#. extracted from dbaccess/source/ui/control.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fcontrol.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: undosqledit.src#STR_QUERY_UNDO_MODIFYSQLEDIT.string.text
+msgid "Modify SQL statement(s)"
+msgstr "Modify SQL statement(s)"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_NAME.string.text
+msgid "Table name"
+msgstr "Table name"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_INSERT.string.text
+msgid "Insert data"
+msgstr "Insert data"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_DELETE.string.text
+msgid "Delete data"
+msgstr "Delete data"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_UPDATE.string.text
+msgid "Modify data"
+msgstr "Modify data"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_ALTER.string.text
+msgid "Alter structure"
+msgstr "Alter structure"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_SELECT.string.text
+msgid "Read data"
+msgstr "Read data"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_REFERENCE.string.text
+msgid "Modify references"
+msgstr "Modify references"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_DROP.string.text
+msgid "Drop structure"
+msgstr "Drop structure"
+
+#: tabletree.src#MENU_TABLETREE_POPUP.MID_SORT_ASCENDING.menuitem.text
+msgid "Sort Ascending"
+msgstr "Sort Ascending"
+
+#: tabletree.src#MENU_TABLETREE_POPUP.MID_SORT_DECENDING.menuitem.text
+msgid "Sort Descending"
+msgstr "Sort Descending"
+
+#: tabletree.src#STR_COULDNOTCREATE_DRIVERMANAGER.string.text
+msgid "Cannot connect to the SDBC driver manager (#servicename#)."
+msgstr "Cannot connect to the SDBC driver manager (#servicename#)."
+
+#: tabletree.src#STR_NOREGISTEREDDRIVER.string.text
+msgid "A driver is not registered for the URL #connurl#."
+msgstr "A driver is not registered for the URL #connurl#."
+
+#: tabletree.src#STR_COULDNOTCONNECT.string.text
+msgid "No connection could be established for the URL #connurl#."
+msgstr "No connection could be established for the URL #connurl#."
+
+#: tabletree.src#STR_COULDNOTCONNECT_PLEASECHECK.string.text
+msgid "Please check the current settings, for example user name and password."
+msgstr "Please check the current settings, for example user name and password."
+
+#: tabletree.src#STR_NOTABLEINFO.string.text
+msgid "Successfully connected, but information about database tables is not available."
+msgstr "Successfully connected, but information about database tables is not available."
+
+#: tabletree.src#STR_ALL_TABLES.string.text
+msgid "All tables"
+msgstr "All tables"
+
+#: tabletree.src#STR_ALL_VIEWS.string.text
+msgid "All views"
+msgstr "All views"
+
+#: tabletree.src#STR_ALL_TABLES_AND_VIEWS.string.text
+msgid "All tables and views"
+msgstr "All tables and views"
diff --git a/source/en-ZA/dbaccess/source/ui/dlg.po b/source/en-ZA/dbaccess/source/ui/dlg.po
new file mode 100644
index 00000000000..40b105e4d6a
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/dlg.po
@@ -0,0 +1,1602 @@
+#. extracted from dbaccess/source/ui/dlg.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fdlg.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-12-15 13:03+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: textconnectionsettings.src#DLG_TEXT_CONNECTION_SETTINGS.modaldialog.text
+msgid "Text Connection Settings"
+msgstr "Text Connection Settings"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_NEW.toolboxitem.text
+msgid "New Index"
+msgstr "New Index"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_DROP.toolboxitem.text
+msgid "Delete Current Index"
+msgstr "Delete Current Index"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_RENAME.toolboxitem.text
+msgid "Rename Current Index"
+msgstr "Rename Current Index"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_SAVE.toolboxitem.text
+msgid "Save Current Index"
+msgstr "Save Current Index"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_RESET.toolboxitem.text
+msgid "Reset Current Index"
+msgstr "Reset Current Index"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FL_INDEXDETAILS.fixedline.text
+msgid "Index details"
+msgstr "Index details"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FT_DESC_LABEL.fixedtext.text
+msgid "Index identifier:"
+msgstr "Index identifier:"
+
+#: indexdialog.src#DLG_INDEXDESIGN.CB_UNIQUE.checkbox.text
+msgid "~Unique"
+msgstr "~Unique"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FT_FIELDS.fixedtext.text
+msgid "Fields"
+msgstr "Fields"
+
+#: indexdialog.src#DLG_INDEXDESIGN.PB_CLOSE.pushbutton.text
+msgctxt "indexdialog.src#DLG_INDEXDESIGN.PB_CLOSE.pushbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: indexdialog.src#DLG_INDEXDESIGN.modaldialog.text
+msgctxt "indexdialog.src#DLG_INDEXDESIGN.modaldialog.text"
+msgid "Indexes"
+msgstr "Indexes"
+
+#: indexdialog.src#STR_TAB_INDEX_SORTORDER.string.text
+msgctxt "indexdialog.src#STR_TAB_INDEX_SORTORDER.string.text"
+msgid "Sort order"
+msgstr "Sort order"
+
+#: indexdialog.src#STR_TAB_INDEX_FIELD.string.text
+msgid "Index field"
+msgstr "Index field"
+
+#: indexdialog.src#STR_ORDER_ASCENDING.string.text
+msgid "Ascending"
+msgstr "Ascending"
+
+#: indexdialog.src#STR_ORDER_DESCENDING.string.text
+msgid "Descending"
+msgstr "Descending"
+
+#: indexdialog.src#STR_CONFIRM_DROP_INDEX.string.text
+msgid "Do you really want to delete the index '$name$'?"
+msgstr "Do you really want to delete the index '$name$'?"
+
+#: indexdialog.src#STR_LOGICAL_INDEX_NAME.string.text
+msgid "index"
+msgstr "index"
+
+#: indexdialog.src#ERR_NEED_INDEX_FIELDS.errorbox.text
+msgid "The index must contain at least one field."
+msgstr "The index must contain at least one field."
+
+#: indexdialog.src#ERR_NEED_INDEX_FIELDS.errorbox.title
+msgid "Save Index"
+msgstr "Save Index"
+
+#: indexdialog.src#QUERY_SAVE_CURRENT_INDEX.querybox.text
+msgid "Do you want to save the changes made to the current index?"
+msgstr "Do you want to save the changes made to the current index?"
+
+#: indexdialog.src#QUERY_SAVE_CURRENT_INDEX.querybox.title
+msgid "Exit Index Design"
+msgstr "Exit Index Design"
+
+#: indexdialog.src#STR_INDEX_NAME_ALREADY_USED.string.text
+msgid "There is already another index named \"$name$\"."
+msgstr "There is already another index named \"$name$\"."
+
+#: indexdialog.src#STR_INDEXDESIGN_DOUBLE_COLUMN_NAME.string.text
+msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
+msgstr "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
+
+#: dlgattr.src#DLG_ATTR.1.pushbutton.text
+msgid "Bac~k"
+msgstr "Bac~k"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_CHAR.string.text
+msgid "Font"
+msgstr "Font"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_NUMBER.string.text
+msgid "Format"
+msgstr "Format"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_ALIGN.string.text
+msgid "Alignment"
+msgstr "Alignment"
+
+#: dlgattr.src#DLG_ATTR.ST_ROW.string.text
+msgid "Table Format"
+msgstr "Table Format"
+
+#: dlgattr.src#DLG_ATTR.tabdialog.text
+msgid "Field Format"
+msgstr "Field Format"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.RB_CASE_TABLES.radiobutton.text
+msgid "Tables"
+msgstr "Tables"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.RB_CASE_QUERIES.radiobutton.text
+msgid "Queries"
+msgstr "Queries"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.PB_ADDTABLE.pushbutton.text
+msgid "~Add"
+msgstr "~Add"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.PB_CLOSE.cancelbutton.text
+msgctxt "adtabdlg.src#DLG_JOIN_TABADD.PB_CLOSE.cancelbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.STR_ADD_TABLES.string.text
+msgid "Add Tables"
+msgstr "Add Tables"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.STR_ADD_TABLE_OR_QUERY.string.text
+msgid "Add Table or Query"
+msgstr "Add Table or Query"
+
+#: paramdialog.src#DLG_PARAMETERS.FL_PARAMS.fixedline.text
+msgid "~Parameters"
+msgstr "~Parameters"
+
+#: paramdialog.src#DLG_PARAMETERS.FT_VALUE.fixedtext.text
+msgid "~Value"
+msgstr "~Value"
+
+#: paramdialog.src#DLG_PARAMETERS.BT_TRAVELNEXT.pushbutton.text
+msgid "~Next"
+msgstr "~Next"
+
+#: paramdialog.src#DLG_PARAMETERS.STR_COULD_NOT_CONVERT_PARAM.string.text
+msgid "The entry could not be converted to a valid value for the \"$name$\"column"
+msgstr "The entry could not be converted to a valid value for the \"$name$\"column"
+
+#: paramdialog.src#DLG_PARAMETERS.modaldialog.text
+msgid "Parameter Input"
+msgstr "Parameter Input"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_DESCRIPTION.fixedtext.text
+msgid "Please enter a name for the object to be created:"
+msgstr "Please enter a name for the object to be created:"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_CATALOG.fixedtext.text
+msgid "~Catalog"
+msgstr "~Catalogue"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_SCHEMA.fixedtext.text
+msgid "~Schema"
+msgstr "~Schema"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TBL_LABEL.string.text
+msgid "~Table Name"
+msgstr "~Table Name"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_VW_LABEL.string.text
+msgid "~Name of table view"
+msgstr "~Name of table view"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_QRY_LABEL.string.text
+msgid "~Query name"
+msgstr "~Query name"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TITLE_RENAME.string.text
+msgid "Rename to"
+msgstr "Rename to"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TITLE_PASTE_AS.string.text
+msgid "Insert as"
+msgstr "Insert as"
+
+#: dlgsave.src#DLG_SAVE_AS.modaldialog.text
+msgid "Save As"
+msgstr "Save As"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FL_DETAILS.fixedline.text
+msgctxt "sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FL_DETAILS.fixedline.text"
+msgid "Details"
+msgstr "Details"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FT_ERRORLIST.fixedtext.text
+msgid "Error ~list:"
+msgstr "Error ~list:"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FT_DESCRIPTION.fixedtext.text
+msgid "~Description:"
+msgstr "~Description:"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.STR_EXCEPTION_STATUS.string.text
+msgid "SQL Status"
+msgstr "SQL Status"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.STR_EXCEPTION_ERRORCODE.string.text
+msgid "Error code"
+msgstr "Error code"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.modaldialog.text
+msgid "%PRODUCTNAME Base"
+msgstr "%PRODUCTNAME Base"
+
+#: sqlmessage.src#STR_EXPLAN_STRINGCONVERSION_ERROR.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 "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."
+
+#: sqlmessage.src#STR_EXCEPTION_ERROR.string.text
+msgid "Error"
+msgstr "Error"
+
+#: sqlmessage.src#STR_EXCEPTION_WARNING.string.text
+msgid "Warning"
+msgstr "Warning"
+
+#: sqlmessage.src#STR_EXCEPTION_INFO.string.text
+msgid "Information"
+msgstr "Information"
+
+#: sqlmessage.src#STR_EXCEPTION_DETAILS.string.text
+msgctxt "sqlmessage.src#STR_EXCEPTION_DETAILS.string.text"
+msgid "Details"
+msgstr "Details"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.quickhelptext
+msgid "Create New Directory"
+msgstr "Create New Directory"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_UP.imagebutton.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_UP.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_UP.imagebutton.quickhelptext
+msgid "Up One Level"
+msgstr "Up One Level"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.FT_EXPLORERFILE_FILENAME.fixedtext.text
+msgid "File ~name:"
+msgstr "File ~name:"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_SAVE.pushbutton.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_SAVE.pushbutton.text"
+msgid "Save"
+msgstr "Save"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.STR_PATHNAME.string.text
+msgid "~Path:"
+msgstr "~Path:"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.modaldialog.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.modaldialog.text"
+msgid "Save"
+msgstr "Save"
+
+#: CollectionView.src#STR_NEW_FOLDER.string.text
+msgid "Folder"
+msgstr "Folder"
+
+#: CollectionView.src#STR_ALREADYEXISTOVERWRITE.string.text
+msgid "The file already exists. Overwrite?"
+msgstr "The file already exists. Overwrite?"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_DBWIZARDTITLE.string.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.STR_DBWIZARDTITLE.string.text"
+msgid "Database Wizard"
+msgstr "Database Wizard"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_INTROPAGE.string.text
+msgid "Select database"
+msgstr "Select database"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_DBASE.string.text
+msgid "Set up dBASE connection"
+msgstr "Set up dBASE connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_TEXT.string.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_TEXT.string.text"
+msgid "Set up a connection to text files"
+msgstr "Set up a connection to text files"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MSACCESS.string.text
+msgid "Set up Microsoft Access connection"
+msgstr "Set up Microsoft Access connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_LDAP.string.text
+msgid "Set up LDAP connection"
+msgstr "Set up LDAP connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ADO.string.text
+msgid "Set up ADO connection"
+msgstr "Set up ADO connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_JDBC.string.text
+msgid "Set up JDBC connection"
+msgstr "Set up JDBC connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ORACLE.string.text
+msgid "Set up Oracle database connection"
+msgstr "Set up Oracle database connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MYSQL.string.text
+msgid "Set up MySQL connection"
+msgstr "Set up MySQL connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ODBC.string.text
+msgid "Set up ODBC connection"
+msgstr "Set up ODBC connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_SPREADSHEET.string.text
+msgid "Set up Spreadsheet connection"
+msgstr "Set up Spreadsheet connection"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_AUTHENTIFICATION.string.text
+msgid "Set up user authentication"
+msgstr "Set up user authentication"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MYSQL_NATIVE.string.text
+msgid "Set up MySQL server data"
+msgstr "Set up MySQL server data"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_FINAL.string.text
+msgid "Save and proceed"
+msgstr "Save and proceed"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.modaldialog.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.modaldialog.text"
+msgid "Database Wizard"
+msgstr "Database Wizard"
+
+#: dbadminsetup.src#STR_DATABASEDEFAULTNAME.string.text
+msgid "New Database"
+msgstr "New Database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQL_HEADERTEXT.fixedtext.text
+msgid "Set up a connection to a MySQL database"
+msgstr "Set up a connection to a MySQL database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQL_HELPTEXT.fixedtext.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 ""
+"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."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQLCONNECTIONMODE.fixedtext.text
+msgid "How do you want to connect to your MySQL database?"
+msgstr "How do you want to connect to your MySQL database?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIAODBC.radiobutton.text
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr "Connect using ODBC (Open Database Connectivity)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIAJDBC.radiobutton.text
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr "Connect using JDBC (Java Database Connectivity)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIANATIVE.radiobutton.text
+msgid "Connect directly"
+msgstr "Connect directly"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_AUTHENTIFICATIONHEADERTEXT.fixedtext.text
+msgid "Set up the user authentication"
+msgstr "Set up the user authentication"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_AUTHENTIFICATIONHELPTEXT.fixedtext.text
+msgid "Some databases require you to enter a user name."
+msgstr "Some databases require you to enter a user name."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_GENERALUSERNAME.fixedtext.text
+msgctxt "dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_GENERALUSERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~User name"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.CB_GENERALPASSWORDREQUIRED.checkbox.text
+msgid "Password re~quired"
+msgstr "Password re~quired"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.PB_TESTCONNECTION.pushbutton.text
+msgid "~Test Connection"
+msgstr "~Test Connection"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALHEADER.fixedtext.text
+msgid "Decide how to proceed after saving the database"
+msgstr "Decide how to proceed after saving the database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALHELPTEXT.fixedtext.text
+msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
+msgstr "Do you want the wizard to register the database in %PRODUCTNAME?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.RB_REGISTERDATASOURCE.radiobutton.text
+msgid "~Yes, register the database for me"
+msgstr "~Yes, register the database for me"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.RB_DONTREGISTERDATASOURCE.radiobutton.text
+msgid "N~o, do not register the database"
+msgstr "N~o, do not register the database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_ADDITIONALSETTINGS.fixedtext.text
+msgid "After the database file has been saved, what do you want to do?"
+msgstr "After the database file has been saved, what do you want to do?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.CB_OPENAFTERWARDS.checkbox.text
+msgid "Open the database for editing"
+msgstr "Open the database for editing"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.CB_STARTTABLEWIZARD.checkbox.text
+msgid "Create tables using the table wizard"
+msgstr "Create tables using the table wizard"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALTEXT.fixedtext.text
+msgid "Click 'Finish' to save the database."
+msgstr "Click 'Finish' to save the database."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQLJDBC_HEADERTEXT.string.text
+msgid "Set up connection to a MySQL database using JDBC"
+msgstr "Set up connection to a MySQL database using JDBC"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQLJDBC_HELPTEXT.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 ""
+"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."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQL_DRIVERCLASSTEXT.string.text
+msgid "MySQL JDBC d~river class:"
+msgstr "MySQL JDBC d~river class:"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQL_DEFAULT.string.text
+msgctxt "dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQL_DEFAULT.string.text"
+msgid "Default: 3306"
+msgstr "Default: 3306"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_NATIVE.FT_SETUP_WIZARD_HEADER.fixedtext.text
+msgid "Set up connection to a MySQL database"
+msgstr "Set up connection to a MySQL database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_NATIVE.FT_SETUP_WIZARD_HELP.fixedtext.text
+msgid "Please enter the required information to connect to a MySQL database."
+msgstr "Please enter the required information to connect to a MySQL database."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_DBASE.STR_DBASE_HEADERTEXT.string.text
+msgid "Set up a connection to dBASE files"
+msgstr "Set up a connection to dBASE files"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_DBASE.STR_DBASE_HELPTEXT.string.text
+msgid "Select the folder where the dBASE files are stored."
+msgstr "Select the folder where the dBASE files are stored."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_HEADERTEXT.string.text
+msgctxt "dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_HEADERTEXT.string.text"
+msgid "Set up a connection to text files"
+msgstr "Set up a connection to text files"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_HELPTEXT.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 "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_PATH_OR_FILE.string.text
+msgid "Path to text files"
+msgstr "Path to text files"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MSACCESS.STR_MSACCESS_HEADERTEXT.string.text
+msgid "Set up a connection to a Microsoft Access database"
+msgstr "Set up a connection to a Microsoft Access database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MSACCESS.STR_MSACCESS_HELPTEXT.string.text
+msgid "Please select the Microsoft Access file you want to access."
+msgstr "Please select the Microsoft Access file you want to access."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.FT_LDAP_HEADERTEXT.fixedtext.text
+msgid "Set up a connection to an LDAP directory"
+msgstr "Set up a connection to an LDAP directory"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.FT_LDAP_HELPTEXT.fixedtext.text
+msgid ""
+"Please enter the required information to connect to an LDAP directory.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Please enter the required information to connect to an LDAP directory.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.STR_LDAP_DEFAULT.string.text
+msgid "Default: 389"
+msgstr "Default: 389"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.CB_WIZ_USESSL.checkbox.text
+msgid "Use ~secure connection (SSL)"
+msgstr "Use ~secure connection (SSL)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ADO.STR_ADO_HEADERTEXT.string.text
+msgid "Set up a connection to an ADO database"
+msgstr "Set up a connection to an ADO database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ADO.STR_ADO_HELPTEXT.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 ""
+"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."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ODBC.STR_ODBC_HEADERTEXT.string.text
+msgid "Set up a connection to an ODBC database"
+msgstr "Set up a connection to an ODBC database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ODBC.STR_ODBC_HELPTEXT.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 ""
+"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."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_JDBC.STR_JDBC_HEADERTEXT.string.text
+msgid "Set up a connection to a JDBC database"
+msgstr "Set up a connection to a JDBC database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_JDBC.STR_JDBC_HELPTEXT.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 ""
+"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."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_HEADERTEXT.string.text
+msgid "Set up a connection to an Oracle database"
+msgstr "Set up a connection to an Oracle database"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_DEFAULT.string.text
+msgid "Default: 1521"
+msgstr "Default: 1521"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_DRIVERCLASSTEXT.string.text
+msgid "Oracle JDBC ~driver class"
+msgstr "Oracle JDBC ~driver class"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_HELPTEXT.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 ""
+"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."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEET_HEADERTEXT.string.text
+msgid "Set up a connection to spreadsheets"
+msgstr "Set up a connection to spreadsheets"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEET_HELPTEXT.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 ""
+"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
+"%PRODUCTNAME will open this file in read-only mode."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEETPATH.string.text
+msgid "~Location and file name"
+msgstr "~Location and file name"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.CB_SPREADSHEETPASSWORDREQUIRED.checkbox.text
+msgid "~Password required"
+msgstr "~Password required"
+
+#: directsql.src#DLG_DIRECTSQL.FL_SQL.fixedline.text
+msgid "SQL command"
+msgstr "SQL command"
+
+#: directsql.src#DLG_DIRECTSQL.FT_SQL.fixedtext.text
+msgid "Command to execute"
+msgstr "Command to execute"
+
+#: directsql.src#DLG_DIRECTSQL.PB_EXECUTE.pushbutton.text
+msgid "Execute"
+msgstr "Execute"
+
+#: directsql.src#DLG_DIRECTSQL.FT_HISTORY.fixedtext.text
+msgid "Previous commands"
+msgstr "Previous commands"
+
+#: directsql.src#DLG_DIRECTSQL.FL_STATUS.fixedline.text
+msgid "Status"
+msgstr "Status"
+
+#: directsql.src#DLG_DIRECTSQL.PB_CLOSE.pushbutton.text
+msgid "Close"
+msgstr "Close"
+
+#: directsql.src#DLG_DIRECTSQL.modaldialog.text
+msgid "Execute SQL Statement"
+msgstr "Execute SQL Statement"
+
+#: directsql.src#STR_COMMAND_EXECUTED_SUCCESSFULLY.string.text
+msgid "Command successfully executed."
+msgstr "Command successfully executed."
+
+#: directsql.src#STR_DIRECTSQL_CONNECTIONLOST.string.text
+msgid "The connection to the database has been lost. This dialog will be closed."
+msgstr "The connection to the database has been lost. This dialogue will be closed."
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.1.stringlist.text"
+msgid "ascending"
+msgstr "ascending"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.2.stringlist.text"
+msgid "descending"
+msgstr "descending"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.1.stringlist.text"
+msgid "ascending"
+msgstr "ascending"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.2.stringlist.text"
+msgid "descending"
+msgstr "descending"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.1.stringlist.text"
+msgid "ascending"
+msgstr "ascending"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.2.stringlist.text"
+msgid "descending"
+msgstr "descending"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERFIELD.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERFIELD.fixedtext.text"
+msgid "Field name"
+msgstr "Field name"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER1.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER1.fixedtext.text"
+msgid "and then"
+msgstr "and then"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER2.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER2.fixedtext.text"
+msgid "and then"
+msgstr "and then"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDEROPER.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDEROPER.fixedtext.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERDIR.fixedtext.text
+msgid "Order"
+msgstr "Order"
+
+#: queryorder.src#DLG_ORDERCRIT.FL_ORDER.fixedline.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FL_ORDER.fixedline.text"
+msgid "Sort order"
+msgstr "Sort order"
+
+#: queryorder.src#DLG_ORDERCRIT.STR_NOENTRY.string.text
+msgid "<none>"
+msgstr "<none>"
+
+#: queryorder.src#DLG_ORDERCRIT.modaldialog.text
+msgid "Sort Order"
+msgstr "Sort Order"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR1.fixedline.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR1.fixedline.text"
+msgid "General"
+msgstr "General"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_HOSTNAME.fixedtext.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FT_HOSTNAME.fixedtext.text"
+msgid "~Host name"
+msgstr "~Host name"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR2.fixedline.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR2.fixedline.text"
+msgid "User authentication"
+msgstr "User authentication"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_USERNAME.fixedtext.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FT_USERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~User name"
+
+#: ConnectionPage.src#PAGE_CONNECTION.CB_PASSWORD_REQUIRED.checkbox.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.CB_PASSWORD_REQUIRED.checkbox.text"
+msgid "Password required"
+msgstr "Password required"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR3.fixedline.text
+msgid "JDBC properties"
+msgstr "JDBC properties"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "~JDBC driver class"
+msgstr "~JDBC driver class"
+
+#: ConnectionPage.src#PAGE_CONNECTION.PB_TESTDRIVERCLASS.pushbutton.text
+msgid "Test Class"
+msgstr "Test Class"
+
+#: ConnectionPage.src#PAGE_CONNECTION.PB_TESTCONNECTION.pushbutton.text
+msgid "Test Connection"
+msgstr "Test Connection"
+
+#: ConnectionPage.src#STR_CONNECTION_TEST.string.text
+msgid "Connection Test"
+msgstr "Connection Test"
+
+#: ConnectionPage.src#STR_CONNECTION_SUCCESS.string.text
+msgid "The connection was established successfully."
+msgstr "The connection was established successfully."
+
+#: ConnectionPage.src#STR_CONNECTION_NO_SUCCESS.string.text
+msgid "The connection could not be established."
+msgstr "The connection could not be established."
+
+#: ConnectionPage.src#STR_JDBCDRIVER_SUCCESS.string.text
+msgid "The JDBC driver was loaded successfully."
+msgstr "The JDBC driver was loaded successfully."
+
+#: ConnectionPage.src#STR_JDBCDRIVER_NO_SUCCESS.string.text
+msgid "The JDBC driver could not be loaded."
+msgstr "The JDBC driver could not be loaded."
+
+#: ConnectionPage.src#STR_MSACCESS_FILTERNAME.string.text
+msgid "MS Access file"
+msgstr "MS Access file"
+
+#: ConnectionPage.src#STR_MSACCESS_2007_FILTERNAME.string.text
+msgid "MS Access 2007 file"
+msgstr "MS Access 2007 file"
+
+#: UserAdminDlg.src#DLG_DATABASE_USERADMIN.STR_PAGETITLE_USERADMIN.string.text
+msgid "User Settings"
+msgstr "User Settings"
+
+#: UserAdminDlg.src#DLG_DATABASE_USERADMIN.tabdialog.text
+msgid "User administration"
+msgstr "User administration"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.1.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.1.stringlist.text"
+msgid "AND"
+msgstr "AND"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.2.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND2.2.stringlist.text"
+msgid "OR"
+msgstr "OR"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.1.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.1.stringlist.text"
+msgid "AND"
+msgstr "AND"
+
+#: queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.2.stringlist.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.LB_WHERECOND3.2.stringlist.text"
+msgid "OR"
+msgstr "OR"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREFIELD.fixedtext.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.FT_WHEREFIELD.fixedtext.text"
+msgid "Field name"
+msgstr "Field name"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHERECOMP.fixedtext.text
+msgid "Condition"
+msgstr "Condition"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREVALUE.fixedtext.text
+msgid "Value"
+msgstr "Value"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREOPER.fixedtext.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.FT_WHEREOPER.fixedtext.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: queryfilter.src#DLG_FILTERCRIT.FL_FIELDS.fixedline.text
+msgid "Criteria"
+msgstr "Criteria"
+
+#: queryfilter.src#DLG_FILTERCRIT.STR_NOENTRY.string.text
+msgid "- none -"
+msgstr "- none -"
+
+#: queryfilter.src#DLG_FILTERCRIT.STR_COMPARE_OPERATORS.string.text
+msgid "=;<>;<;<=;>;>=;like;not like;null;not null"
+msgstr "=;<>;<;<=;>;>=;like;not like;null;not null"
+
+#: queryfilter.src#DLG_FILTERCRIT.modaldialog.text
+msgid "Standard Filter"
+msgstr "Standard Filter"
+
+#: dlgsize.src#DLG_ROWHEIGHT.FT_VALUE.fixedtext.text
+msgid "~Height"
+msgstr "~Height"
+
+#: dlgsize.src#DLG_ROWHEIGHT.CB_STANDARD.checkbox.text
+msgctxt "dlgsize.src#DLG_ROWHEIGHT.CB_STANDARD.checkbox.text"
+msgid "~Automatic"
+msgstr "~Automatic"
+
+#: dlgsize.src#DLG_ROWHEIGHT.modaldialog.text
+msgid "Row Height"
+msgstr "Row Height"
+
+#: dlgsize.src#DLG_COLWIDTH.FT_VALUE.fixedtext.text
+msgid "~Width"
+msgstr "~Width"
+
+#: dlgsize.src#DLG_COLWIDTH.CB_STANDARD.checkbox.text
+msgctxt "dlgsize.src#DLG_COLWIDTH.CB_STANDARD.checkbox.text"
+msgid "~Automatic"
+msgstr "~Automatic"
+
+#: dlgsize.src#DLG_COLWIDTH.modaldialog.text
+msgid "Column Width"
+msgstr "Column Width"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_TABLES.fixedtext.text
+msgid "~Table"
+msgstr "~Table"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FL_INDEXES.fixedline.text
+msgid "Assignment"
+msgstr "Assignment"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_TABLEINDEXES.fixedtext.text
+msgid "T~able indexes"
+msgstr "T~able indexes"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_ALLINDEXES.fixedtext.text
+msgid "~Free indexes"
+msgstr "~Free indexes"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.modaldialog.text
+msgctxt "dbfindex.src#DLG_DBASE_INDEXES.modaldialog.text"
+msgid "Indexes"
+msgstr "Indexes"
+
+#: advancedsettings.src#AUTO_DATAHANDLING_AUTO_Y_.FL_DATAHANDLING.fixedline.text
+msgid "Options"
+msgstr "Options"
+
+#: advancedsettings.src#AUTO_SQL92CHECK_AUTO_Y_.CB_SQL92CHECK.checkbox.text
+msgid "Use SQL92 naming constraints"
+msgstr "Use SQL92 naming constraints"
+
+#: advancedsettings.src#AUTO_APPENDTABLEALIAS_AUTO_Y_.CB_APPENDTABLEALIAS.checkbox.text
+msgid "Append the table alias name on SELECT statements"
+msgstr "Append the table alias name on SELECT statements"
+
+#: advancedsettings.src#AUTO_AS_BEFORE_CORR_NAME_AUTO_Y_.CB_AS_BEFORE_CORR_NAME.checkbox.text
+msgid "Use keyword AS before table alias names"
+msgstr "Use keyword AS before table alias names"
+
+#: advancedsettings.src#AUTO_ENABLEOUTERJOIN_AUTO_Y_.CB_ENABLEOUTERJOIN.checkbox.text
+msgid "Use Outer Join syntax '{OJ }'"
+msgstr "Use Outer Join syntax '{OJ }'"
+
+#: advancedsettings.src#AUTO_IGNOREDRIVER_PRIV_AUTO_Y_.CB_IGNOREDRIVER_PRIV.checkbox.text
+msgid "Ignore the privileges from the database driver"
+msgstr "Ignore the privileges from the database driver"
+
+#: advancedsettings.src#AUTO_PARAMETERNAMESUBST_AUTO_Y_.CB_PARAMETERNAMESUBST.checkbox.text
+msgid "Replace named parameters with '?'"
+msgstr "Replace named parameters with '?'"
+
+#: advancedsettings.src#AUTO_SUPPRESVERSIONCOLUMN_AUTO_Y_.CB_SUPPRESVERSIONCL.checkbox.text
+msgid "Display version columns (when available)"
+msgstr "Display version columns (when available)"
+
+#: advancedsettings.src#AUTO_CATALOG_AUTO_Y_.CB_CATALOG.checkbox.text
+msgid "Use catalog name in SELECT statements"
+msgstr "Use catalogue name in SELECT statements"
+
+#: advancedsettings.src#AUTO_SCHEMA_AUTO_Y_.CB_SCHEMA.checkbox.text
+msgid "Use schema name in SELECT statements"
+msgstr "Use schema name in SELECT statements"
+
+#: advancedsettings.src#AUTO_IGNOREINDEXAPPENDIX_AUTO_Y_.CB_IGNOREINDEXAPPENDIX.checkbox.text
+msgid "Create index with ASC or DESC statement"
+msgstr "Create index with ASC or DESC statement"
+
+#: advancedsettings.src#AUTO_DOSLINEENDS_AUTO_Y_.CB_DOSLINEENDS.checkbox.text
+msgid "End text lines with CR+LF"
+msgstr "End text lines with CR+LF"
+
+#: advancedsettings.src#AUTO_IGNORECURRENCY_AUTO_Y_.CB_IGNORECURRENCY.checkbox.text
+msgid "Ignore currency field information"
+msgstr "Ignore currency field information"
+
+#: advancedsettings.src#AUTO_CHECKREQUIRED_AUTO_Y_.CB_CHECK_REQUIRED.checkbox.text
+msgid "Form data input checks for required fields"
+msgstr "Form data input checks for required fields"
+
+#: advancedsettings.src#AUTO_ESCAPE_DATETIME_AUTO_Y_.CB_ESCAPE_DATETIME.checkbox.text
+msgid "Use ODBC conformant date/time literals"
+msgstr "Use ODBC conformant date/time literals"
+
+#: advancedsettings.src#AUTO_PRIMARY_KEY_SUPPORT_AUTO_Y_.CB_PRIMARY_KEY_SUPPORT.checkbox.text
+msgid "Supports primary keys"
+msgstr "Supports primary keys"
+
+#: advancedsettings.src#AUTO_RESPECTRESULTSETTYPE_AUTO_Y_.CB_RESPECTRESULTSETTYPE.checkbox.text
+msgid "Respect the result set type from the database driver"
+msgstr ""
+
+#: advancedsettings.src#WORKAROUND.1.stringlist.text
+msgid "Default"
+msgstr "Default"
+
+#: advancedsettings.src#WORKAROUND.2.stringlist.text
+msgid "SQL"
+msgstr "SQL"
+
+#: advancedsettings.src#WORKAROUND.3.stringlist.text
+msgid "Mixed"
+msgstr "Mixed"
+
+#: advancedsettings.src#WORKAROUND.4.stringlist.text
+msgid "MS Access"
+msgstr "MS Access"
+
+#: advancedsettings.src#AUTO_BOOLEANCOMPARISON_AUTO_Y_.FT_BOOLEANCOMPARISON.fixedtext.text
+msgid "Comparison of Boolean values"
+msgstr "Comparison of Boolean values"
+
+#: advancedsettings.src#AUTO_MAXROWSCAN_AUTO_Y_.FT_MAXROWSCAN.fixedtext.text
+msgid "Rows to scan column types"
+msgstr "Rows to scan column types"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FL_SEPARATORAUTO.fixedline.text
+msgid "Settings"
+msgstr "Settings"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.CB_RETRIEVE_AUTO.checkbox.text
+msgid "Re~trieve generated values"
+msgstr "Re~trieve generated values"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FT_AUTOINCREMENTVALUE.fixedtext.text
+msgid "~Auto-increment statement"
+msgstr "~Auto-increment statement"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FT_RETRIEVE_AUTO.fixedtext.text
+msgid "~Query of generated values"
+msgstr "~Query of generated values"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.STR_GENERATED_VALUE.string.text
+msgid "Generated Values"
+msgstr "Generated Values"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.STR_DS_BEHAVIOUR.string.text
+msgid "Special Settings"
+msgstr "Special Settings"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.tabdialog.text
+msgid "Advanced Settings"
+msgstr ""
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FL_USER.fixedline.text
+msgid "User selection"
+msgstr "User selection"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FT_USER.fixedtext.text
+msgid "Us~er:"
+msgstr "Us~er:"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_NEWUSER.pushbutton.text
+msgid "~Add User..."
+msgstr "~Add User..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_CHANGEPWD.pushbutton.text
+msgid "Change ~Password..."
+msgstr "Change ~Password..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_DELETEUSER.pushbutton.text
+msgid "~Delete User..."
+msgstr "~Delete User..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FL_TABLE_GRANTS.fixedline.text
+msgid "Access rights for selected user"
+msgstr "Access rights for selected user"
+
+#: UserAdmin.src#QUERY_USERADMIN_DELETE_USER.querybox.text
+msgid "Do you really want to delete the user?"
+msgstr "Do you really want to delete the user?"
+
+#: UserAdmin.src#STR_USERADMIN_NOT_AVAILABLE.string.text
+msgid "The database does not support user administration."
+msgstr "The database does not support user administration."
+
+#: UserAdmin.src#DLG_PASSWORD.FL_USER.fixedline.text
+msgid "User \"$name$: $\""
+msgstr "User \"$name$: $\""
+
+#: UserAdmin.src#DLG_PASSWORD.FT_OLDPASSWORD.fixedtext.text
+msgid "Old p~assword"
+msgstr "Old p~assword"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_PASSWORD.fixedtext.text
+msgid "~Password"
+msgstr "~Password"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_PASSWORD_REPEAT.fixedtext.text
+#, fuzzy
+msgid "~Confirm password"
+msgstr "~Confirm password"
+
+#: UserAdmin.src#DLG_PASSWORD.modaldialog.text
+msgid "Change Password"
+msgstr "Change Password"
+
+#: UserAdmin.src#STR_ERROR_PASSWORDS_NOT_IDENTICAL.string.text
+msgid "The passwords do not match. Please enter the password again."
+msgstr "The passwords do not match. Please enter the password again."
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_MYSQL_DATABASE_NAME.fixedtext.text
+msgid "~Database name"
+msgstr "~Database name"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_HOST_PORT.radiobutton.text
+msgid "Se~rver / Port"
+msgstr "Se~rver / Port"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_HOST_NAME.fixedtext.text
+msgid "~Server"
+msgstr "~Server"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_PORT.fixedtext.text
+msgid "~Port"
+msgstr "~Port"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_PORT_DEFAULT.fixedtext.text
+msgctxt "admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_PORT_DEFAULT.fixedtext.text"
+msgid "Default: 3306"
+msgstr "Default: 3306"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_SOCKET.radiobutton.text
+msgid "So~cket"
+msgstr "So~cket"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_NAMED_PIPE.radiobutton.text
+msgid "Named p~ipe"
+msgstr "Named p~ipe"
+
+#: AutoControls_tmpl.hrc#AUTO_BROWSECONTROLGROUP__AUTO_X__AUTO_Y__AUTOPAGE_X__AUTO_HID__AUTO_HID2_.PB_AUTOBROWSEURL.pushbutton.text
+msgid "Browse"
+msgstr "Browse"
+
+#: AutoControls_tmpl.hrc#AUTO_NAMECONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTODATABASENAME.fixedtext.text
+msgid "Database name"
+msgstr "Database name"
+
+#: AutoControls_tmpl.hrc#AUTO_HOSTCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOHOSTNAME.fixedtext.text
+msgid "Server"
+msgstr "Server"
+
+#: AutoControls_tmpl.hrc#AUTO_BASEDNCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOBASEDN.fixedtext.text
+msgid "Base ~DN"
+msgstr "Base ~DN"
+
+#: AutoControls_tmpl.hrc#AUTO_PORTCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOPORTNUMBER.fixedtext.text
+msgctxt "AutoControls_tmpl.hrc#AUTO_PORTCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOPORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "~Port number"
+
+#: AutoControls_tmpl.hrc#AUTO_CHARSET__AUTO_Y__AUTOPAGE_X__.FL_DATACONVERT.fixedline.text
+msgid "Data conversion"
+msgstr "Data conversion"
+
+#: AutoControls_tmpl.hrc#AUTO_CHARSET__AUTO_Y__AUTOPAGE_X__.FT_CHARSET.fixedtext.text
+msgid "~Character set"
+msgstr "~Character set"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOEXTENSIONHEADER.fixedtext.text
+msgid "Specify the type of files you want to access"
+msgstr "Specify the type of files you want to access"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSCTEXTFILES.radiobutton.text
+msgid "Plain text files (*.txt)"
+msgstr "Plain text files (*.txt)"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSCCSVFILES.radiobutton.text
+msgid "'Comma separated value' files (*.csv)"
+msgstr "'Comma separated value' files (*.csv)"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSOTHERS.radiobutton.text
+msgid "Custom:"
+msgstr "Custom:"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOOWNEXTENSIONAPPENDIX.fixedtext.text
+msgid "Custom: *.abc"
+msgstr "Custom: *.abc"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FL_AUTOSEPARATOR2.fixedline.text
+msgid "Row Format"
+msgstr "Row Format"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOFIELDSEPARATOR.fixedtext.text
+msgid "Field separator"
+msgstr "Field separator"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOTEXTSEPARATOR.fixedtext.text
+msgid "Text separator"
+msgstr "Text separator"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTODECIMALSEPARATOR.fixedtext.text
+msgid "Decimal separator"
+msgstr "Decimal separator"
+
+#: AutoControls_tmpl.hrc#FT_AUTOTHOUSANDSSEPARATOR.fixedtext.text
+msgid "Thousands separator"
+msgstr "Thousands separator"
+
+#: AutoControls_tmpl.hrc#CB_AUTOHEADER.checkbox.text
+msgid "~Text contains headers"
+msgstr "~Text contains headers"
+
+#: AutoControls_tmpl.hrc#STR_AUTOTEXT_FIELD_SEP_NONE.string.text
+msgid "{None}"
+msgstr "{None}"
+
+#. EM Dec 2002: \'Space\' refers to what you get when you hit the space bar on your keyboard.
+#: AutoControls_tmpl.hrc#STR_AUTOFIELDSEPARATORLIST.string.text
+msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
+msgstr ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
+
+#: AutoControls_tmpl.hrc#STR_AUTODELIMITER_MISSING.string.text
+msgid "#1 must be set."
+msgstr "#1 must be set."
+
+#: AutoControls_tmpl.hrc#STR_AUTODELIMITER_MUST_DIFFER.string.text
+msgid "#1 and #2 must be different."
+msgstr "#1 and #2 must be different."
+
+#: AutoControls_tmpl.hrc#STR_AUTONO_WILDCARDS.string.text
+msgid "Wildcards such as ?,* are not allowed in #1."
+msgstr "Wildcards such as ?,* are not allowed in #1."
+
+#: AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.FT_AUTOJDBCDRIVERCLASS.fixedtext.text
+msgid "JDBC d~river class"
+msgstr "JDBC d~river class"
+
+#: AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.PB_AUTOTESTDRIVERCLASS.pushbutton.text
+msgctxt "AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.PB_AUTOTESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Test class"
+
+#: AutoControls_tmpl.hrc#AUTO_SOCKETCONTROLGROUP_AUTO_Y_.FT_SOCKET.fixedtext.text
+msgid "Socket"
+msgstr "Socket"
+
+#: dbadmin2.src#STR_ENTER_CONNECTION_PASSWORD.string.text
+msgid "A password is needed to connect to the data source \"$name$\"."
+msgstr "A password is needed to connect to the data source \"$name$\"."
+
+#: dbadmin2.src#STR_ASK_FOR_DIRECTORY_CREATION.string.text
+msgid ""
+"The directory\n"
+"\n"
+"$path$\n"
+"\n"
+"does not exist. Should it be created?"
+msgstr ""
+"The directory\n"
+"\n"
+"$path$\n"
+"\n"
+"does not exist. Should it be created?"
+
+#: dbadmin2.src#STR_COULD_NOT_CREATE_DIRECTORY.string.text
+msgid "The directory $name$ could not be created."
+msgstr "The directory $name$ could not be created."
+
+#: dbadmin2.src#DLG_DOMAINPASSWORD.FT_PASSWORD.fixedline.text
+msgid "Please enter the ~password for the user 'DOMAIN'."
+msgstr "Please enter the ~password for the user 'DOMAIN'."
+
+#: dbadmin2.src#DLG_DOMAINPASSWORD.modaldialog.text
+msgid "Convert Database"
+msgstr "Convert Database"
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.FL_SEPARATOR1.fixedline.text
+msgid "Tables and table filter"
+msgstr "Tables and table filter"
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.FT_FILTER_EXPLANATION.fixedtext.text
+msgid "Mark the tables that should be visible for the applications."
+msgstr "Mark the tables that should be visible for the applications."
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.tabpage.text
+msgid "Tables Filter"
+msgstr "Tables Filter"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.WND_CONTROL.FL_INVOLVED_TABLES.fixedline.text
+msgid "Tables involved"
+msgstr "Tables involved"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.WND_CONTROL.FL_INVOLVED_FIELDS.fixedline.text
+msgid "Fields involved"
+msgstr "Fields involved"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.FL_CASC_UPD.fixedline.text
+msgid "Update options"
+msgstr "Update options"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_NO_CASC_UPD.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_NO_CASC_UPD.radiobutton.text"
+msgid "~No action"
+msgstr "~No action"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD.radiobutton.text
+msgid "~Update cascade"
+msgstr "~Update cascade"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD_NULL.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD_NULL.radiobutton.text"
+msgid "~Set null"
+msgstr "~Set null"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD_DEFAULT.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD_DEFAULT.radiobutton.text"
+msgid "Set ~default"
+msgstr "Set ~default"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.FL_CASC_DEL.fixedline.text
+msgid "Delete options"
+msgstr "Delete options"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_NO_CASC_DEL.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_NO_CASC_DEL.radiobutton.text"
+msgid "~No action"
+msgstr "~No action"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL.radiobutton.text
+msgid "Delete ~cascade"
+msgstr "Delete ~cascade"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL_NULL.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL_NULL.radiobutton.text"
+msgid "~Set null"
+msgstr "~Set null"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL_DEFAULT.radiobutton.text
+msgctxt "RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL_DEFAULT.radiobutton.text"
+msgid "Set ~default"
+msgstr "Set ~default"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.modaldialog.text
+msgid "Relations"
+msgstr "Relations"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.FT_DESCRIPTION.fixedtext.text
+msgid "Choose a data source:"
+msgstr "Choose a data source:"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.PB_MANAGE.pushbutton.text
+msgid "Organize..."
+msgstr "Organise..."
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.PB_CREATE.pushbutton.text
+msgid "Create..."
+msgstr "Create..."
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.STR_LOCAL_DATASOURCES.string.text
+msgid "Local Databases"
+msgstr "Local Databases"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.STR_DESCRIPTION2.string.text
+msgid "Choose a database"
+msgstr "Choose a database"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.modaldialog.text
+msgid "Data Source"
+msgstr "Data Source"
+
+#: AutoControls.src#STR_DBASE_PATH_OR_FILE.string.text
+msgid "Path to the dBASE files"
+msgstr "Path to the dBASE files"
+
+#: AutoControls.src#STR_FLAT_PATH_OR_FILE.string.text
+msgid "Path to the text files"
+msgstr "Path to the text files"
+
+#: AutoControls.src#STR_CALC_PATH_OR_FILE.string.text
+msgid "Path to the spreadsheet document"
+msgstr "Path to the spreadsheet document"
+
+#: AutoControls.src#STR_NAME_OF_ODBC_DATASOURCE.string.text
+msgid "Name of the ODBC data source on your system"
+msgstr "Name of the ODBC data source on your system"
+
+#: AutoControls.src#STR_MYSQL_DATABASE_NAME.string.text
+msgid "Name of the MySQL database"
+msgstr "Name of the MySQL database"
+
+#: AutoControls.src#STR_ORACLE_DATABASE_NAME.string.text
+msgid "Name of the Oracle database"
+msgstr "Name of the Oracle database"
+
+#: AutoControls.src#STR_MSACCESS_MDB_FILE.string.text
+msgid "Microsoft Access database file"
+msgstr "Microsoft Access database file"
+
+#: AutoControls.src#STR_NO_ADDITIONAL_SETTINGS.string.text
+msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
+msgstr "No more settings are necessary. To verify that the connection is working, click the '%test' button."
+
+#: AutoControls.src#STR_COMMONURL.string.text
+msgid "Datasource URL"
+msgstr "Datasource URL"
+
+#: AutoControls.src#STR_HOSTNAME.string.text
+msgctxt "AutoControls.src#STR_HOSTNAME.string.text"
+msgid "~Host name"
+msgstr "~Host name"
+
+#: AutoControls.src#STR_MOZILLA_PROFILE_NAME.string.text
+msgid "~Mozilla profile name"
+msgstr "~Mozilla profile name"
+
+#: AutoControls.src#STR_THUNDERBIRD_PROFILE_NAME.string.text
+msgid "~Thunderbird profile name"
+msgstr "~Thunderbird profile name"
+
+#: dbadmin.src#AUTO_USECATALOG_AUTO_Y_.CB_USECATALOG.checkbox.text
+msgid "Use catalog for file-based databases"
+msgstr "Use catalogue for file-based databases"
+
+#: dbadmin.src#AUTO_FIXEDLINE_CONNSETTINGS_AUTO_Y_.FL_SEPARATOR1.fixedline.text
+msgctxt "dbadmin.src#AUTO_FIXEDLINE_CONNSETTINGS_AUTO_Y_.FL_SEPARATOR1.fixedline.text"
+msgid "Connection Settings"
+msgstr "Connection Settings"
+
+#: dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_HOSTNAME.fixedtext.text
+msgctxt "dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_HOSTNAME.fixedtext.text"
+msgid "~Host name"
+msgstr "~Host name"
+
+#: dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "~Port number"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_GENERAL.string.text
+#, fuzzy
+msgid "Advanced Properties"
+msgstr "Advanced Properties"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_ADVANCED.string.text
+msgid "Additional Settings"
+msgstr "Additional Settings"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_CONNECTION.string.text
+msgid "Connection settings"
+msgstr "Connection settings"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.tabdialog.text
+msgctxt "dbadmin.src#DLG_DATABASE_ADMINISTRATION.tabdialog.text"
+msgid "Database properties"
+msgstr "Database properties"
+
+#: dbadmin.src#DLG_DATABASE_TYPE_CHANGE.modaldialog.text
+msgctxt "dbadmin.src#DLG_DATABASE_TYPE_CHANGE.modaldialog.text"
+msgid "Database properties"
+msgstr "Database properties"
+
+#: dbadmin.src#PAGE_GENERAL.FT_GENERALHEADERTEXT.fixedtext.text
+msgid "Welcome to the %PRODUCTNAME Database Wizard"
+msgstr "Welcome to the %PRODUCTNAME Database Wizard"
+
+#: dbadmin.src#PAGE_GENERAL.FT_GENERALHELPTEXT.fixedtext.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 "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCEHEADER.fixedtext.text
+msgid "What do you want to do?"
+msgstr "What do you want to do?"
+
+#: dbadmin.src#PAGE_GENERAL.RB_CREATEDBDATABASE.radiobutton.text
+msgid "Create a n~ew database"
+msgstr "Create a n~ew database"
+
+#: dbadmin.src#PAGE_GENERAL.RB_OPENEXISTINGDOC.radiobutton.text
+msgid "Open an existing database ~file"
+msgstr "Open an existing database ~file"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DOCLISTLABEL.fixedtext.text
+msgid "Recently used"
+msgstr "Recently used"
+
+#: dbadmin.src#PAGE_GENERAL.RB_GETEXISTINGDATABASE.radiobutton.text
+msgid "Connect to an e~xisting database"
+msgstr "Connect to an e~xisting database"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCETYPE_PRE.fixedtext.text
+msgid "Select the type of database to which you want to establish a connection."
+msgstr "Select the type of database to which you want to establish a connection."
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATATYPE.fixedtext.text
+msgid "Database ~type "
+msgstr "Database ~type "
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATATYPEAPPENDIX.fixedtext.text
+msgid "Database"
+msgstr "Database"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCETYPE_POST.fixedtext.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 ""
+"On the following pages, you can make detailed settings for the connection.\n"
+"\n"
+"The new settings you make will overwrite your existing settings."
+
+#: dbadmin.src#PAGE_GENERAL.STR_MYSQLENTRY.string.text
+msgid "MySQL"
+msgstr "MySQL"
+
+#: dbadmin.src#PAGE_GENERAL.STR_PARENTTITLE.string.text
+msgid "Data Source Properties: #"
+msgstr "Data Source Properties: #"
+
+#: dbadmin.src#PAGE_GENERAL.STR_COULDNOTLOAD_ODBCLIB.string.text
+msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
+msgstr "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
+
+#: dbadmin.src#PAGE_GENERAL.STR_UNSUPPORTED_DATASOURCE_TYPE.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 ""
+"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."
+
+#: dbadmin.src#PAGE_GENERAL.tabpage.text
+msgctxt "dbadmin.src#PAGE_GENERAL.tabpage.text"
+msgid "General"
+msgstr "General"
+
+#: dbadmin.src#PAGE_DBASE.FL_SEPARATOR1.fixedline.text
+msgid "Optional settings"
+msgstr "Optional settings"
+
+#: dbadmin.src#PAGE_DBASE.CB_SHOWDELETEDROWS.checkbox.text
+msgid "Display deleted records as well"
+msgstr "Display deleted records as well"
+
+#: dbadmin.src#PAGE_DBASE.FT_SPECIAL_MESSAGE.fixedtext.text
+#, fuzzy
+msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
+msgstr "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
+
+#: dbadmin.src#PAGE_DBASE.PB_INDICIES.pushbutton.text
+msgid "Indexes..."
+msgstr "Indexes..."
+
+#: dbadmin.src#PAGE_ODBC.FL_SEPARATOR1.fixedline.text
+msgid "Optional Settings"
+msgstr "Optional Settings"
+
+#: dbadmin.src#PAGE_ODBC.FT_OPTIONS.fixedtext.text
+msgid "ODBC ~options"
+msgstr "ODBC ~options"
+
+#: dbadmin.src#PAGE_MYSQL_JDBC.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "MySQL JDBC d~river class"
+msgstr "MySQL JDBC d~river class"
+
+#: dbadmin.src#PAGE_MYSQL_JDBC.PB_TESTDRIVERCLASS.pushbutton.text
+msgctxt "dbadmin.src#PAGE_MYSQL_JDBC.PB_TESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Test class"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.FL_SEPARATOR2.fixedline.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.FL_SEPARATOR2.fixedline.text"
+msgid "User authentication"
+msgstr "User authentication"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.FT_USERNAME.fixedtext.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.FT_USERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~User name"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.CB_PASSWORD_REQUIRED.checkbox.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.CB_PASSWORD_REQUIRED.checkbox.text"
+msgid "Password required"
+msgstr "Password required"
+
+#: dbadmin.src#PAGE_ORACLE_JDBC.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "Oracle JDBC d~river class"
+msgstr "Oracle JDBC d~river class"
+
+#: dbadmin.src#PAGE_ORACLE_JDBC.PB_TESTDRIVERCLASS.pushbutton.text
+msgctxt "dbadmin.src#PAGE_ORACLE_JDBC.PB_TESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Test class"
+
+#: dbadmin.src#PAGE_LDAP.FL_SEPARATOR1.fixedline.text
+msgctxt "dbadmin.src#PAGE_LDAP.FL_SEPARATOR1.fixedline.text"
+msgid "Connection Settings"
+msgstr "Connection Settings"
+
+#: dbadmin.src#PAGE_LDAP.FT_BASEDN.fixedtext.text
+msgid "~Base DN"
+msgstr "~Base DN"
+
+#: dbadmin.src#PAGE_LDAP.CB_USESSL.checkbox.text
+#, fuzzy
+msgid "Use secure connection (SSL)"
+msgstr "Use ~secure connection (SSL)"
+
+#: dbadmin.src#PAGE_LDAP.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#PAGE_LDAP.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "~Port number"
+
+#: dbadmin.src#PAGE_LDAP.FT_LDAPROWCOUNT.fixedtext.text
+msgid "Maximum number of ~records"
+msgstr "Maximum number of ~records"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_HOSTNAME.fixedtext.text
+msgid "~Hostname"
+msgstr "~Hostname"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#PAGE_USERDRIVER.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "~Port number"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_OPTIONS.fixedtext.text
+msgid "~Driver settings"
+msgstr "~Driver settings"
+
+#: dbadmin.src#STR_ERR_USE_CONNECT_TO.string.text
+msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
+msgstr "Please choose 'Connect to an existing database' to connect to an existing database instead."
diff --git a/source/en-ZA/dbaccess/source/ui/inc.po b/source/en-ZA/dbaccess/source/ui/inc.po
new file mode 100644
index 00000000000..7d0dafaf748
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/inc.po
@@ -0,0 +1,60 @@
+#. extracted from dbaccess/source/ui/inc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Finc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: toolbox_tmpl.hrc#MID_SBA_QRY_REFRESH.#define.text
+msgid "Refresh"
+msgstr "Refresh"
+
+#: toolbox_tmpl.hrc#MID_NEW_VIEW_DESIGN.#define.text
+msgid "New ~View Design"
+msgstr "New ~View Design"
+
+#: toolbox_tmpl.hrc#MID_NEW_TABLE_DESIGN.#define.text
+msgid "New ~Table Design"
+msgstr "New ~Table Design"
+
+#: toolbox_tmpl.hrc#MID_QUERY_WIZARD.#define.text
+msgid "Query AutoPilot..."
+msgstr "Query AutoPilot..."
+
+#: toolbox_tmpl.hrc#MID_QUERY_NEW_DESIGN.#define.text
+msgid "New ~Query (Design View)"
+msgstr "New ~Query (Design View)"
+
+#: toolbox_tmpl.hrc#MID_QUERY_EDIT_DESIGN.#define.text
+msgid "~Edit Query"
+msgstr "~Edit Query"
+
+#: toolbox_tmpl.hrc#MID_QUERY_NEW_SQL.#define.text
+msgid "New Query (~SQL View)"
+msgstr "New Query (~SQL View)"
+
+#: toolbox_tmpl.hrc#MID_DBUI_QUERY_EDIT_JOINCONNECTION.#define.text
+msgid "Edit..."
+msgstr "Edit..."
+
+#: toolbox_tmpl.hrc#MID_COLUMN_WIDTH.#define.text
+msgid "Column ~Width..."
+msgstr "Column ~Width..."
+
+#: toolbox_tmpl.hrc#MID_DOCUMENT_CREATE_REPWIZ.#define.text
+msgid "Report Wizard..."
+msgstr "Report Wizard..."
+
+#: toolbox_tmpl.hrc#MID_DOCUMENT_NEW_AUTOPILOT.#define.text
+msgid "Form AutoPilot..."
+msgstr "Form AutoPilot..."
diff --git a/source/en-ZA/dbaccess/source/ui/misc.po b/source/en-ZA/dbaccess/source/ui/misc.po
new file mode 100644
index 00000000000..20dedc0bd69
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/misc.po
@@ -0,0 +1,208 @@
+#. extracted from dbaccess/source/ui/misc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fmisc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-04-19 19:00+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbumiscres.src#RSC_CHARSETS.1.string.text
+msgid "System"
+msgstr "System"
+
+#: dbumiscres.src#STR_ERROR_DURING_CREATION.string.text
+msgid "Error during creation"
+msgstr "Error during creation"
+
+#: dbumiscres.src#STR_UNEXPECTED_ERROR.string.text
+msgid "An unexpected error occurred. The operation could not be performed."
+msgstr "An unexpected error occurred. The operation could not be performed."
+
+#: dbumiscres.src#STR_COULDNOTOPEN_LINKEDDOC.string.text
+msgid "The document \"$file$\" could not be opened."
+msgstr "The document \"$file$\" could not be opened."
+
+#: dbumiscres.src#STR_MISSING_TABLES_XDROP.string.text
+msgid "The table cannot be deleted because the database connection does not support this."
+msgstr "The table cannot be deleted because the database connection does not support this."
+
+#: dbumiscres.src#STR_BUTTON_TEXT_ALL.string.text
+msgctxt "dbumiscres.src#STR_BUTTON_TEXT_ALL.string.text"
+msgid "~All"
+msgstr "~All"
+
+#: dbumiscres.src#STR_UNDO_COLON.string.text
+msgid "Undo:"
+msgstr "Undo:"
+
+#: dbumiscres.src#STR_REDO_COLON.string.text
+msgid "Redo:"
+msgstr "Redo:"
+
+#: dbumiscres.src#STR_UNKNOWN_TYPE_FOUND.string.text
+msgid "No corresponding column type could be found for column '#1'."
+msgstr "No corresponding column type could be found for column '#1'."
+
+#: dbumiscres.src#STR_FILE_DOES_NOT_EXIST.string.text
+msgid "The file \"$file$\" does not exist."
+msgstr "The file \"$file$\" does not exist."
+
+#: dbumiscres.src#STR_WARNINGS_DURING_CONNECT.string.text
+msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
+msgstr "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
+
+#: dbumiscres.src#STR_NAMED_OBJECT_ALREADY_EXISTS.string.text
+msgid ""
+"The name '$#$' already exists.\n"
+"Please enter another name."
+msgstr ""
+"The name '$#$' already exists.\n"
+"Please enter another name."
+
+#: dbumiscres.src#RID_STR_EXTENSION_NOT_PRESENT.string.text
+msgid "The report, \"$file$\", requires the extension Oracle Report Builder."
+msgstr "The report, \"$file$\", requires the extension Oracle Report Builder."
+
+#: WizardPages.src#STR_WIZ_COLUMN_SELECT_TITEL.string.text
+msgid "Apply columns"
+msgstr "Apply columns"
+
+#: WizardPages.src#STR_WIZ_TYPE_SELECT_TITEL.string.text
+msgid "Type formatting"
+msgstr "Type formatting"
+
+#: WizardPages.src#STR_WIZ_PKEY_ALREADY_DEFINED.string.text
+msgid "The following fields have already been set as primary keys:\n"
+msgstr "The following fields have already been set as primary keys:\n"
+
+#: WizardPages.src#STR_WIZ_NAME_MATCHING_TITEL.string.text
+msgid "Assign columns"
+msgstr "Assign columns"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_HELP.helpbutton.text
+msgid "~Help"
+msgstr "~Help"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_CANCEL.cancelbutton.text
+msgid "~Cancel"
+msgstr "~Cancel"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_PREV.pushbutton.text
+msgid "< ~Back"
+msgstr "< ~Back"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_NEXT.pushbutton.text
+msgid "~Next>"
+msgstr "~Next>"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_OK.okbutton.text
+msgid "C~reate"
+msgstr "C~reate"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.modaldialog.text
+msgid "Copy RTF Table"
+msgstr "Copy RTF Table"
+
+#: WizardPages.src#TAB_WIZ_COLUMN_SELECT.FL_COLUMN_SELECT.fixedline.text
+msgid "Existing columns"
+msgstr "Existing columns"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FL_COLUMN_NAME.fixedline.text
+msgid "Column information"
+msgstr "Column information"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FL_AUTO_TYPE.fixedline.text
+msgid "Automatic type recognition"
+msgstr "Automatic type recognition"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FT_AUTO.fixedtext.text
+msgid "Lines (ma~x)"
+msgstr "Lines (ma~ximum)"
+
+#: WizardPages.src#RID_SBA_RTF_PKEYPOPUP.SID_TABLEDESIGN_TABED_PRIMARYKEY.menuitem.text
+msgid "Primary Key"
+msgstr "Primary Key"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.FT_TABLE_LEFT.fixedtext.text
+msgid "Source table: \n"
+msgstr "Source table: \n"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.FT_TABLE_RIGHT.fixedtext.text
+msgid "Destination table: \n"
+msgstr "Destination table: \n"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.PB_ALL.pushbutton.text
+msgctxt "WizardPages.src#TAB_WIZ_NAME_MATCHING.PB_ALL.pushbutton.text"
+msgid "~All"
+msgstr "~All"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.PB_NONE.pushbutton.text
+msgid "Non~e"
+msgstr "Non~e"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FT_TABLENAME.fixedtext.text
+msgid "Ta~ble name"
+msgstr "Ta~ble name"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FL_OPTIONS.fixedline.text
+msgid "Options"
+msgstr "Options"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_DEFDATA.radiobutton.text
+msgid "De~finition and data"
+msgstr "De~finition and data"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_DEF.radiobutton.text
+msgid "Def~inition"
+msgstr "Def~inition"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_VIEW.radiobutton.text
+msgid "A~s table view"
+msgstr "A~s table view"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_APPENDDATA.radiobutton.text
+msgid "Append ~data"
+msgstr "Append ~data"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.CB_USEHEADERLINE.checkbox.text
+msgid "Use first ~line as column names"
+msgstr "Use first ~line as column names"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.CB_PRIMARY_COLUMN.checkbox.text
+msgid "Crea~te primary key"
+msgstr "Crea~te primary key"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FT_KEYNAME.fixedtext.text
+msgid "Name"
+msgstr "Name"
+
+#: WizardPages.src#STR_WIZ_TABLE_COPY.string.text
+msgctxt "WizardPages.src#STR_WIZ_TABLE_COPY.string.text"
+msgid "Copy table"
+msgstr "Copy table"
+
+#: WizardPages.src#STR_COPYTABLE_TITLE_COPY.string.text
+msgctxt "WizardPages.src#STR_COPYTABLE_TITLE_COPY.string.text"
+msgid "Copy table"
+msgstr "Copy table"
+
+#: WizardPages.src#STR_INVALID_TABLE_NAME.string.text
+msgid "This table name is not valid in the current database."
+msgstr "This table name is not valid in the current database."
+
+#: WizardPages.src#STR_SUGGEST_APPEND_TABLE_DATA.string.text
+msgid "Choose the option 'Append data' on the first page to append data to an existing table."
+msgstr "Choose the option 'Append data' on the first page to append data to an existing table."
+
+#: WizardPages.src#STR_INVALID_TABLE_NAME_LENGTH.string.text
+msgid "Please change the table name. It is too long."
+msgstr "Please change the table name. It is too long."
diff --git a/source/en-ZA/dbaccess/source/ui/querydesign.po b/source/en-ZA/dbaccess/source/ui/querydesign.po
new file mode 100644
index 00000000000..d604e3cc261
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/querydesign.po
@@ -0,0 +1,315 @@
+#. extracted from dbaccess/source/ui/querydesign.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Fquerydesign.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: query.src#STR_QUERY_UNDO_TABWINSHOW.string.text
+msgid "Add Table Window"
+msgstr "Add Table Window"
+
+#: query.src#STR_QUERY_UNDO_MOVETABWIN.string.text
+msgid "Move table window"
+msgstr "Move table window"
+
+#: query.src#STR_QUERY_UNDO_INSERTCONNECTION.string.text
+msgid "Insert Join"
+msgstr "Insert Join"
+
+#: query.src#STR_QUERY_UNDO_REMOVECONNECTION.string.text
+msgid "Delete Join"
+msgstr "Delete Join"
+
+#: query.src#STR_QUERY_UNDO_SIZETABWIN.string.text
+msgid "Resize table window"
+msgstr "Resize table window"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDDELETE.string.text
+msgid "Delete Column"
+msgstr "Delete Column"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDMOVED.string.text
+msgid "Move column"
+msgstr "Move column"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDCREATE.string.text
+msgid "Add Column"
+msgstr "Add Column"
+
+#: query.src#RID_STR_TABLE_DOESNT_EXIST.string.text
+msgid "Invalid expression, table '$name$' does not exist."
+msgstr "Invalid expression, table '$name$' does not exist."
+
+#: query.src#RID_STR_FIELD_DOESNT_EXIST.string.text
+msgid "Invalid expression, field name '$name$' does not exist."
+msgstr "Invalid expression, field name '$name$' does not exist."
+
+#: query.src#RID_STR_TOMUCHTABLES.string.text
+msgid "The query covers #num# tables. The selected database type, however, can only process a maximum of #maxnum# table(s) per statement."
+msgstr "The query covers #num# tables. The selected database type, however, can only process a maximum of #maxnum# table(s) per statement."
+
+#: query.src#STR_QUERY_UNDO_TABWINDELETE.string.text
+msgid "Delete Table Window"
+msgstr "Delete Table Window"
+
+#: query.src#STR_QUERY_UNDO_MODIFY_CELL.string.text
+msgid "Edit Column Description"
+msgstr "Edit Column Description"
+
+#: query.src#STR_QUERY_UNDO_SIZE_COLUMN.string.text
+msgid "Adjust column width"
+msgstr "Adjust column width"
+
+#: query.src#STR_QUERY_SORTTEXT.string.text
+msgid "(not sorted);ascending;descending"
+msgstr "(not sorted);ascending;descending"
+
+#: query.src#STR_QUERY_FUNCTIONS.string.text
+msgid "(no function);Group"
+msgstr "(no function);Group"
+
+#: query.src#STR_QUERY_NOTABLE.string.text
+msgid "(no table)"
+msgstr "(no table)"
+
+#: query.src#STR_QRY_ORDERBY_UNRELATED.string.text
+msgid "The database only supports sorting for visible fields."
+msgstr "The database only supports sorting for visible fields."
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_FUNCTION.menuitem.text
+msgid "Functions"
+msgstr "Functions"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_TABLENAME.menuitem.text
+msgid "Table Name"
+msgstr "Table Name"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_ALIASNAME.menuitem.text
+msgid "Alias"
+msgstr "Alias"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_DISTINCT.menuitem.text
+msgid "Distinct Values"
+msgstr "Distinct Values"
+
+#: query.src#STR_QUERY_HANDLETEXT.string.text
+msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
+msgstr "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
+
+#: query.src#STR_QRY_TOO_MANY_COLUMNS.string.text
+msgid "There are too many columns."
+msgstr "There are too many columns."
+
+#: query.src#ERR_QRY_CRITERIA_ON_ASTERISK.errorbox.text
+msgid "A condition cannot be applied to field [*]"
+msgstr "A condition cannot be applied to field [*]"
+
+#: query.src#STR_QRY_TOO_LONG_STATEMENT.string.text
+msgid "The SQL statement created is too long."
+msgstr "The SQL statement created is too long."
+
+#: query.src#STR_QRY_TOOCOMPLEX.string.text
+msgid "Query is too complex"
+msgstr "Query is too complex"
+
+#: query.src#STR_QRY_NOSELECT.string.text
+msgid "Nothing has been selected."
+msgstr "Nothing has been selected."
+
+#: query.src#STR_QRY_TOOMANYCOND.string.text
+msgid "Too many search criteria"
+msgstr "Too many search criteria"
+
+#: query.src#STR_QRY_SYNTAX.string.text
+msgid "SQL syntax error"
+msgstr "SQL syntax error"
+
+#: query.src#ERR_QRY_ORDERBY_ON_ASTERISK.errorbox.text
+msgid "[*] cannot be used as a sort criterion."
+msgstr "[*] cannot be used as a sort criterion."
+
+#: query.src#STR_QRY_TOO_MANY_TABLES.string.text
+msgid "There are too many tables."
+msgstr "There are too many tables."
+
+#: query.src#STR_QRY_NATIVE.string.text
+msgid "The statement will not be applied when querying in the SQL dialect of the database."
+msgstr "The statement will not be applied when querying in the SQL dialect of the database."
+
+#: query.src#ERR_QRY_AMB_FIELD.errorbox.text
+msgid "Field name not found or not unique"
+msgstr "Field name not found or not unique"
+
+#: query.src#STR_QRY_ILLEGAL_JOIN.string.text
+msgid "Join could not be processed"
+msgstr "Join could not be processed"
+
+#: query.src#STR_SVT_SQL_SYNTAX_ERROR.string.text
+msgid "Syntax error in SQL statement"
+msgstr "Syntax error in SQL statement"
+
+#: query.src#STR_QUERYDESIGN_NO_VIEW_SUPPORT.string.text
+msgid "This database does not support table views."
+msgstr "This database does not support table views."
+
+#: query.src#STR_NO_ALTER_VIEW_SUPPORT.string.text
+msgid "This database does not support altering of existing table views."
+msgstr "This database does not support altering of existing table views."
+
+#: query.src#STR_QUERYDESIGN_NO_VIEW_ASK.string.text
+msgid "Do you want to create a query instead?"
+msgstr "Do you want to create a query instead?"
+
+#: query.src#ERR_QRY_NOSTATEMENT.errorbox.text
+msgid "No query could be created."
+msgstr "No query could be created."
+
+#: query.src#ERR_QRY_NOCRITERIA.errorbox.text
+msgid "No query could be created because no fields were selected."
+msgstr "No query could be created because no fields were selected."
+
+#: query.src#STR_DATASOURCE_DELETED.string.text
+msgid "The corresponding data source has been deleted. Therefore, data relevant to that data source cannot be saved."
+msgstr "The corresponding data source has been deleted. Therefore, data relevant to that data source cannot be saved."
+
+#: query.src#STR_QRY_COLUMN_NOT_FOUND.string.text
+msgid "The column '$name$' is unknown."
+msgstr "The column '$name$' is unknown."
+
+#: query.src#STR_QRY_JOIN_COLUMN_COMPARE.string.text
+msgid "Columns can only be compared using '='."
+msgstr "Columns can only be compared using '='."
+
+#: query.src#STR_QRY_LIKE_LEFT_NO_COLUMN.string.text
+msgid "You must use a column name before 'LIKE'."
+msgstr "You must use a column name before 'LIKE'."
+
+#: query.src#STR_QRY_CHECK_CASESENSITIVE.string.text
+msgid "The column could not be found. Please note that the database is case-sensitive."
+msgstr "The column could not be found. Please note that the database is case-sensitive."
+
+#: query.src#STR_QUERYDESIGN.string.text
+msgid " - %PRODUCTNAME Base: Query Design"
+msgstr " - %PRODUCTNAME Base: Query Design"
+
+#: query.src#STR_VIEWDESIGN.string.text
+msgid " - %PRODUCTNAME Base: View Design"
+msgstr " - %PRODUCTNAME Base: View Design"
+
+#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource will be inserted.
+#: query.src#STR_QUERY_SAVEMODIFIED.string.text
+msgid ""
+"$object$ has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"$object$ has been changed.\n"
+"Do you want to save the changes?"
+
+#. 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#STR_ERROR_PARSING_STATEMENT.string.text
+msgid "$object$ is based on an SQL command which could not be parsed."
+msgstr "$object$ is based on an SQL command which could not be parsed."
+
+#. 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#STR_INFO_OPENING_IN_SQL_VIEW.string.text
+msgid "$object$ will be opened in SQL view."
+msgstr "$object$ will be opened in SQL view."
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.1.string.text
+msgid "The table view"
+msgstr "The table view"
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.2.string.text
+msgid "The query"
+msgstr "The query"
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.3.string.text
+msgid "The SQL statement"
+msgstr "The SQL statement"
+
+#: query.src#STR_STATEMENT_WITHOUT_RESULT_SET.string.text
+msgid "The query does not create a result set, and thus cannot be part of another query."
+msgstr "The query does not create a result set, and thus cannot be part of another query."
+
+#: query.src#STR_NO_DATASOURCE_OR_CONNECTION.string.text
+msgid "Both the ActiveConnection and the DataSourceName parameter are missing or wrong - cannot initialize the query designer."
+msgstr "Both the ActiveConnection and the DataSourceName parameter are missing or wrong - cannot initialise the query designer."
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.FL_JOIN.fixedline.text
+msgid "Options"
+msgstr "Options"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.FT_LISTBOXTITLE.fixedtext.text
+msgid "~Type"
+msgstr "~Type"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.1.stringlist.text
+msgid "Inner join"
+msgstr "Inner join"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.2.stringlist.text
+msgid "Left join"
+msgstr "Left join"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.3.stringlist.text
+msgid "Right join"
+msgstr "Right join"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.4.stringlist.text
+msgid "Full (outer) join"
+msgstr "Full (outer) join"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.5.stringlist.text
+msgid "Cross join"
+msgstr "Cross join"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.CB_NATURAL.checkbox.text
+msgid "Natural"
+msgstr "Natural"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_CONTROL.FL_INVOLVED_TABLES.fixedline.text
+msgid "Tables involved"
+msgstr "Tables involved"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_CONTROL.FL_INVOLVED_FIELDS.fixedline.text
+msgid "Fields involved"
+msgstr "Fields involved"
+
+#: querydlg.src#DLG_QRY_JOIN.modaldialog.text
+msgid "Join Properties"
+msgstr "Join Properties"
+
+#: querydlg.src#STR_JOIN_TYPE_HINT.string.text
+msgid "Please note that some databases may not support this join type."
+msgstr "Please note that some databases may not support this join type."
+
+#: querydlg.src#STR_QUERY_INNER_JOIN.string.text
+msgid "Includes only records for which the contents of the related fields of both tables are identical."
+msgstr "Includes only records for which the contents of the related fields of both tables are identical."
+
+#: querydlg.src#STR_QUERY_LEFTRIGHT_JOIN.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 "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
+
+#: querydlg.src#STR_QUERY_FULL_JOIN.string.text
+msgid "Contains ALL records from '%1' and from '%2'."
+msgstr "Contains ALL records from '%1' and from '%2'."
+
+#: querydlg.src#STR_QUERY_CROSS_JOIN.string.text
+msgid "Contains the cartesian product of ALL records from '%1' and from '%2'."
+msgstr "Contains the cartesian product of ALL records from '%1' and from '%2'."
+
+#: querydlg.src#STR_QUERY_NATURAL_JOIN.string.text
+msgid "Contains only one column for each pair of equally-named columns from '%1' and from '%2'."
+msgstr "Contains only one column for each pair of equally-named columns from '%1' and from '%2'."
diff --git a/source/en-ZA/dbaccess/source/ui/relationdesign.po b/source/en-ZA/dbaccess/source/ui/relationdesign.po
new file mode 100644
index 00000000000..f5c6313bb41
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/relationdesign.po
@@ -0,0 +1,54 @@
+#. extracted from dbaccess/source/ui/relationdesign.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Frelationdesign.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: relation.src#STR_QUERY_REL_EDIT_RELATION.string.text
+msgid "This relation already exists. Do you want to edit it or create a new one?"
+msgstr "This relation already exists. Do you want to edit it or create a new one?"
+
+#: relation.src#STR_QUERY_REL_EDIT.string.text
+msgid "Edit..."
+msgstr "Edit..."
+
+#: relation.src#STR_QUERY_REL_CREATE.string.text
+msgid "Create..."
+msgstr "Create..."
+
+#: relation.src#STR_RELATIONDESIGN.string.text
+msgid " - %PRODUCTNAME Base: Relation design"
+msgstr " - %PRODUCTNAME Base: Relation design"
+
+#: relation.src#STR_RELATIONDESIGN_NOT_AVAILABLE.string.text
+msgid "The database does not support relations."
+msgstr "The database does not support relations."
+
+#: relation.src#RELATION_DESIGN_SAVEMODIFIED.querybox.text
+msgid ""
+"The relation design has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"The relation design has been changed.\n"
+"Do you want to save the changes?"
+
+#: relation.src#STR_QUERY_REL_DELETE_WINDOW.string.text
+msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
+msgstr "When you delete this table all corresponding relations will be deleted as well. Continue?"
+
+#: relation.src#STR_QUERY_REL_COULD_NOT_CREATE.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 ""
diff --git a/source/en-ZA/dbaccess/source/ui/tabledesign.po b/source/en-ZA/dbaccess/source/ui/tabledesign.po
new file mode 100644
index 00000000000..7b9e22c977b
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/tabledesign.po
@@ -0,0 +1,362 @@
+#. extracted from dbaccess/source/ui/tabledesign.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Ftabledesign.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: table.src#STR_TABLEDESIGN_DBFIELDTYPES.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 "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)"
+
+#: table.src#STR_TABLEDESIGN_UNDO_PRIMKEY.string.text
+msgctxt "table.src#STR_TABLEDESIGN_UNDO_PRIMKEY.string.text"
+msgid "Insert/remove primary key"
+msgstr "Insert/remove primary key"
+
+#: table.src#STR_VALUE_YES.string.text
+msgid "Yes"
+msgstr "Yes"
+
+#: table.src#STR_VALUE_NO.string.text
+msgid "No"
+msgstr "No"
+
+#: table.src#STR_VALUE_ASC.string.text
+msgid "Ascending"
+msgstr "Ascending"
+
+#: table.src#STR_VALUE_DESC.string.text
+msgid "Descending"
+msgstr "Descending"
+
+#: table.src#STR_VALUE_NONE.string.text
+msgid "<none>"
+msgstr "<none>"
+
+#: table.src#STR_TAB_FIELD_NAME.string.text
+msgid "Field name"
+msgstr "Field name"
+
+#: table.src#STR_TAB_FIELD_COLUMN_NAME.string.text
+msgid "Field Name"
+msgstr "Field Name"
+
+#: table.src#STR_TAB_FIELD_DATATYPE.string.text
+msgid "Field ~type"
+msgstr "Field ~type"
+
+#: table.src#STR_TAB_FIELD_COLUMN_DATATYPE.string.text
+msgid "Field Type"
+msgstr "Field Type"
+
+#: table.src#STR_TAB_FIELD_LENGTH.string.text
+msgid "Field length"
+msgstr "Field length"
+
+#: table.src#STR_TAB_HELP_TEXT.string.text
+msgid "Description"
+msgstr "Description"
+
+#: table.src#STR_COLUMN_DESCRIPTION.string.text
+msgid "Column Description"
+msgstr "Column Description"
+
+#: table.src#STR_TAB_FIELD_NULLABLE.string.text
+msgid "Input required"
+msgstr "Input required"
+
+#: table.src#STR_FIELD_AUTOINCREMENT.string.text
+msgid "~AutoValue"
+msgstr "~AutoValue"
+
+#: table.src#STR_TAB_PROPERTIES.string.text
+msgid "Field Properties"
+msgstr "Field Properties"
+
+#: table.src#STR_TABPAGE_GENERAL.string.text
+msgid "General"
+msgstr "General"
+
+#: table.src#STR_TAB_TABLE_DESCRIPTION.string.text
+msgid "Description:"
+msgstr "Description:"
+
+#: table.src#STR_TAB_TABLE_PROPERTIES.string.text
+msgid "Table properties"
+msgstr "Table properties"
+
+#: table.src#ERR_INVALID_LISTBOX_ENTRY.errorbox.text
+msgid "The text you entered is not a list element. "
+msgstr "The text you entered is not a list element. "
+
+#: table.src#RID_TABLEDESIGNROWPOPUPMENU.SID_TABLEDESIGN_INSERTROWS.menuitem.text
+msgid "Insert Rows"
+msgstr "Insert Rows"
+
+#: table.src#RID_TABLEDESIGNROWPOPUPMENU.SID_TABLEDESIGN_TABED_PRIMARYKEY.menuitem.text
+msgid "Primary Key"
+msgstr "Primary Key"
+
+#: table.src#STR_TABED_UNDO_CELLMODIFIED.string.text
+msgid "Modify cell"
+msgstr "Modify cell"
+
+#: table.src#STR_TABED_UNDO_ROWDELETED.string.text
+msgid "Delete row"
+msgstr "Delete row"
+
+#: table.src#STR_TABED_UNDO_TYPE_CHANGED.string.text
+msgid "Modify field type"
+msgstr "Modify field type"
+
+#: table.src#STR_TABED_UNDO_ROWINSERTED.string.text
+msgid "Insert row"
+msgstr "Insert row"
+
+#: table.src#STR_TABED_UNDO_NEWROWINSERTED.string.text
+msgid "Insert new row"
+msgstr "Insert new row"
+
+#: table.src#STR_TABED_UNDO_PRIMKEY.string.text
+msgctxt "table.src#STR_TABED_UNDO_PRIMKEY.string.text"
+msgid "Insert/remove primary key"
+msgstr "Insert/remove primary key"
+
+#: table.src#STR_DEFAULT_VALUE.string.text
+msgid "~Default value"
+msgstr "~Default value"
+
+#: table.src#STR_FIELD_REQUIRED.string.text
+msgid "~Entry required"
+msgstr "~Entry required"
+
+#: table.src#STR_TEXT_LENGTH.string.text
+msgctxt "table.src#STR_TEXT_LENGTH.string.text"
+msgid "~Length"
+msgstr "~Length"
+
+#: table.src#STR_NUMERIC_TYPE.string.text
+msgid "~Type"
+msgstr "~Type"
+
+#: table.src#STR_LENGTH.string.text
+msgctxt "table.src#STR_LENGTH.string.text"
+msgid "~Length"
+msgstr "~Length"
+
+#: table.src#STR_SCALE.string.text
+msgid "Decimal ~places"
+msgstr "Decimal ~places"
+
+#: table.src#STR_FORMAT.string.text
+msgid "Format example"
+msgstr "Format example"
+
+#: table.src#STR_HELP_BOOL_DEFAULT.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 ""
+"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."
+
+#: table.src#STR_HELP_DEFAULT_VALUE.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 ""
+"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."
+
+#: table.src#STR_HELP_FIELD_REQUIRED.string.text
+msgid "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data."
+msgstr "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data."
+
+#: table.src#STR_HELP_TEXT_LENGTH.string.text
+msgid "Enter the maximum text length permitted."
+msgstr "Enter the maximum text length permitted."
+
+#: table.src#STR_HELP_NUMERIC_TYPE.string.text
+msgid "Enter the number format."
+msgstr "Enter the number format."
+
+#: table.src#STR_HELP_LENGTH.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 ""
+"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."
+
+#: table.src#STR_HELP_SCALE.string.text
+msgid "Specify the number of decimal places permitted in this field."
+msgstr "Specify the number of decimal places permitted in this field."
+
+#: table.src#STR_HELP_FORMAT_CODE.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 "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)."
+
+#: table.src#STR_HELP_FORMAT_BUTTON.string.text
+msgid "This is where you determine the output format of the data."
+msgstr "This is where you determine the output format of the data."
+
+#: table.src#STR_HELP_AUTOINCREMENT.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 ""
+"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)."
+
+#: table.src#PB_FORMAT.pushbutton.text
+msgid "~..."
+msgstr "~..."
+
+#: table.src#STR_TABLEDESIGN_DUPLICATE_NAME.string.text
+msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
+msgstr "The table cannot be saved because column name \"$column$\" was assigned twice."
+
+#: table.src#STR_TBL_COLUMN_IS_KEYCOLUMN.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 "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?"
+
+#: table.src#STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE.string.text
+msgid "Primary Key Affected"
+msgstr "Primary Key Affected"
+
+#: table.src#STR_COLUMN_NAME.string.text
+msgid "Column"
+msgstr "Column"
+
+#: table.src#STR_QRY_CONTINUE.string.text
+msgid "Continue anyway?"
+msgstr "Continue anyway?"
+
+#: table.src#STR_STAT_WARNING.string.text
+msgid "Warning!"
+msgstr "Warning!"
+
+#: table.src#TABLE_DESIGN_SAVEMODIFIED.querybox.text
+msgid ""
+"The table has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"The table has been changed.\n"
+"Do you want to save the changes?"
+
+#: table.src#TABLE_QUERY_CONNECTION_LOST.querybox.text
+msgid ""
+"The connection to the database was lost! The table design can only be used with limited functionality without a connection.\n"
+"Reconnect?"
+msgstr ""
+"The connection to the database was lost! The table design can only be used with limited functionality without a connection.\n"
+"Reconnect?"
+
+#: table.src#STR_TABLEDESIGN_CONNECTION_MISSING.string.text
+msgid "The table could not be saved due to problems connecting to the database."
+msgstr "The table could not be saved due to problems connecting to the database."
+
+#: table.src#STR_TABLEDESIGN_DATASOURCE_DELETED.string.text
+msgid "The table filter could not be adjusted because the data source has been deleted."
+msgstr "The table filter could not be adjusted because the data source has been deleted."
+
+#: table.src#QUERY_SAVE_TABLE_EDIT_INDEXES.querybox.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 ""
+"Before you can edit the indexes of a table, you have to save it.\n"
+"Do you want to save the changes now?"
+
+#: table.src#STR_TABLEDESIGN_NO_PRIM_KEY_HEAD.string.text
+msgid "No primary key"
+msgstr "No primary key"
+
+#: table.src#STR_TABLEDESIGN_NO_PRIM_KEY.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 ""
+"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?"
+
+#: table.src#STR_TABLEDESIGN_TITLE.string.text
+msgid " - %PRODUCTNAME Base: Table Design"
+msgstr " - %PRODUCTNAME Base: Table Design"
+
+#: table.src#STR_TABLEDESIGN_ALTER_ERROR.string.text
+msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
+msgstr "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
+
+#: table.src#STR_TABLEDESIGN_SAVE_ERROR.string.text
+msgid "Error while saving the table design"
+msgstr "Error while saving the table design"
+
+#: table.src#STR_TABLEDESIGN_COULD_NOT_DROP_COL.string.text
+msgid "The column $column$ could not be deleted."
+msgstr "The column $column$ could not be deleted."
+
+#: table.src#TABLE_DESIGN_ALL_ROWS_DELETED.querybox.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 "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."
+
+#: table.src#STR_AUTOINCREMENT_VALUE.string.text
+msgid "A~uto-increment statement"
+msgstr "A~uto-increment statement"
+
+#: table.src#STR_HELP_AUTOINCREMENT_VALUE.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 ""
+"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."
+
+#: table.src#STR_NO_TYPE_INFO_AVAILABLE.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 ""
+"No type information could be retrieved from the database.\n"
+"The table design mode is not available for this data source."
+
+#: table.src#STR_CHANGE_COLUMN_NAME.string.text
+msgid "change field name"
+msgstr "change field name"
+
+#: table.src#STR_CHANGE_COLUMN_TYPE.string.text
+msgid "change field type"
+msgstr "change field type"
+
+#: table.src#STR_CHANGE_COLUMN_DESCRIPTION.string.text
+msgid "change field description"
+msgstr "change field description"
+
+#: table.src#STR_CHANGE_COLUMN_ATTRIBUTE.string.text
+msgid "change field attribute"
+msgstr "change field attribute"
diff --git a/source/en-ZA/dbaccess/source/ui/uno.po b/source/en-ZA/dbaccess/source/ui/uno.po
new file mode 100644
index 00000000000..8d38b63c506
--- /dev/null
+++ b/source/en-ZA/dbaccess/source/ui/uno.po
@@ -0,0 +1,68 @@
+#. extracted from dbaccess/source/ui/uno.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dbaccess%2Fsource%2Fui%2Funo.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbinteraction.src#STR_REMEMBERPASSWORD_SESSION.string.text
+msgid "~Remember password until end of session"
+msgstr "~Remember password until end of session"
+
+#: dbinteraction.src#STR_REMEMBERPASSWORD_PERSISTENT.string.text
+msgid "~Remember password"
+msgstr "~Remember password"
+
+#: copytablewizard.src#STR_CTW_NO_VIEWS_SUPPORT.string.text
+msgid "The destination database does not support views."
+msgstr "The destination database does not support views."
+
+#: copytablewizard.src#STR_CTW_NO_PRIMARY_KEY_SUPPORT.string.text
+msgid "The destination database does not support primary keys."
+msgstr "The destination database does not support primary keys."
+
+#: copytablewizard.src#STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR.string.text
+msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
+msgstr "no data access descriptor found, or no data access descriptor able to provide all necessary information"
+
+#: copytablewizard.src#STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT.string.text
+msgid "Only tables and queries are supported at the moment."
+msgstr "Only tables and queries are supported at the moment."
+
+#: copytablewizard.src#STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS.string.text
+msgid "The copy source's result set must support bookmarks."
+msgstr "The copy source's result set must support bookmarks."
+
+#: copytablewizard.src#STR_CTW_UNSUPPORTED_COLUMN_TYPE.string.text
+msgid "Unsupported source column type ($type$) at column position $pos$."
+msgstr "Unsupported source column type ($type$) at column position $pos$."
+
+#: copytablewizard.src#STR_CTW_ILLEGAL_PARAMETER_COUNT.string.text
+msgid "Illegal number of initialization parameters."
+msgstr "Illegal number of initialisation parameters."
+
+#: copytablewizard.src#STR_CTW_ERROR_DURING_INITIALIZATION.string.text
+msgid "An error occurred during initialization."
+msgstr "An error occurred during initialisation."
+
+#: copytablewizard.src#STR_CTW_ERROR_UNSUPPORTED_SETTING.string.text
+msgid "Unsupported setting in the copy source descriptor: $name$."
+msgstr "Unsupported setting in the copy source descriptor: $name$."
+
+#: copytablewizard.src#STR_CTW_ERROR_NO_QUERY.string.text
+msgid "To copy a query, your connection must be able to provide queries."
+msgstr "To copy a query, your connection must be able to provide queries."
+
+#: copytablewizard.src#STR_CTW_ERROR_INVALID_INTERACTIONHANDLER.string.text
+msgid "The given interaction handler is invalid."
+msgstr "The given interaction handler is invalid."
diff --git a/source/en-ZA/desktop/source/app.po b/source/en-ZA/desktop/source/app.po
new file mode 100644
index 00000000000..2bce38b4d4b
--- /dev/null
+++ b/source/en-ZA/desktop/source/app.po
@@ -0,0 +1,176 @@
+#. extracted from desktop/source/app.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fapp.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: desktop.src#STR_RECOVER_QUERY.string.text
+msgid "Should the file \"$1\" be restored?"
+msgstr "Should the file \"$1\" be restored?"
+
+#: desktop.src#STR_RECOVER_TITLE.string.text
+msgid "File Recovery"
+msgstr "File Recovery"
+
+#: desktop.src#STR_RECOVER_PREPARED.warningbox.text
+msgid ""
+"An unrecoverable error has occurred.\n"
+"\n"
+"All modified files have been saved and can\n"
+"probably be recovered at program restart."
+msgstr ""
+"An unrecoverable error has occurred.\n"
+"\n"
+"All modified files have been saved and can\n"
+"probably be recovered at program restart."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_CANNOT_START.string.text
+msgid "The application cannot be started. "
+msgstr "The application cannot be started. "
+
+#: desktop.src#STR_BOOTSTRAP_ERR_DIR_MISSING.string.text
+msgid "The configuration directory \"$1\" could not be found."
+msgstr "The configuration directory \"$1\" could not be found."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_PATH_INVALID.string.text
+msgid "The installation path is invalid."
+msgstr "The installation path is invalid."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_PATH.string.text
+msgid "The installation path is not available."
+msgstr "The installation path is not available."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_INTERNAL.string.text
+msgid "An internal error occurred."
+msgstr "An internal error occurred."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_FILE_CORRUPT.string.text
+msgid "The configuration file \"$1\" is corrupt."
+msgstr "The configuration file \"$1\" is corrupt."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_FILE_MISSING.string.text
+msgid "The configuration file \"$1\" was not found."
+msgstr "The configuration file \"$1\" was not found."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_SUPPORT.string.text
+msgid "The configuration file \"$1\" does not support the current version."
+msgstr "The configuration file \"$1\" does not support the current version."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_LANGUAGE_MISSING.string.text
+msgid "The user interface language cannot be determined."
+msgstr "The user interface language cannot be determined."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_SERVICE.string.text
+msgid "The component manager is not available."
+msgstr "The component manager is not available."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_CFG_SERVICE.string.text
+msgid "The configuration service is not available."
+msgstr "The configuration service is not available."
+
+#: desktop.src#STR_ASK_START_SETUP_MANUALLY.string.text
+msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
+msgstr "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
+
+#: desktop.src#STR_CONFIG_ERR_SETTINGS_INCOMPLETE.string.text
+msgid "The startup settings for accessing the central configuration are incomplete. "
+msgstr "The startup settings for accessing the central configuration are incomplete. "
+
+#: desktop.src#STR_CONFIG_ERR_CANNOT_CONNECT.string.text
+msgid "A connection to the central configuration could not be established. "
+msgstr "A connection to the central configuration could not be established. "
+
+#: desktop.src#STR_CONFIG_ERR_RIGHTS_MISSING.string.text
+msgid "You cannot access the central configuration because of missing access rights. "
+msgstr "You cannot access the central configuration because of missing access rights. "
+
+#: desktop.src#STR_CONFIG_ERR_ACCESS_GENERAL.string.text
+msgid "A general error occurred while accessing your central configuration. "
+msgstr "A general error occurred while accessing your central configuration. "
+
+#: desktop.src#STR_CONFIG_ERR_NO_WRITE_ACCESS.string.text
+msgid "The changes to your personal settings cannot be stored centrally because of missing access rights. "
+msgstr "The changes to your personal settings cannot be stored centrally because of missing access rights. "
+
+#: desktop.src#STR_BOOTSTRAP_ERR_CFG_DATAACCESS.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 cannot be started due to an error in accessing the %PRODUCTNAME configuration data.\n"
+"\n"
+"Please contact your system administrator."
+
+#: desktop.src#STR_INTERNAL_ERRMSG.string.text
+msgid "The following internal error has occurred: "
+msgstr "The following internal error has occurred: "
+
+#: desktop.src#QBX_USERDATALOCKED.querybox.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 ""
+"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?"
+
+#: desktop.src#STR_TITLE_USERDATALOCKED.string.text
+msgctxt "desktop.src#STR_TITLE_USERDATALOCKED.string.text"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: desktop.src#DLG_CMDLINEHELP.modaldialog.text
+msgid "Help Message..."
+msgstr ""
+
+#: desktop.src#EBX_ERR_PRINTDISABLED.errorbox.text
+msgid "Printing is disabled. No documents can be printed."
+msgstr "Printing is disabled. No documents can be printed."
+
+#: desktop.src#INFOBOX_EXPIRED.infobox.text
+msgid ""
+"This Evaluation Version has expired. To find out more about %PRODUCTNAME,\n"
+"visit http://www.oracle.com/us/products/applications/open-office."
+msgstr ""
+"This Evaluation Version has expired. To find out more about %PRODUCTNAME,\n"
+"visit http://www.oracle.com/us/products/applications/open-office."
+
+#: desktop.src#STR_TITLE_EXPIRED.string.text
+msgctxt "desktop.src#STR_TITLE_EXPIRED.string.text"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE.string.text
+msgid "The path manager is not available.\n"
+msgstr "The path manager is not available.\n"
+
+#: desktop.src#STR_BOOSTRAP_ERR_NOTENOUGHDISKSPACE.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 ""
+"%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"
+
+#: desktop.src#STR_BOOSTRAP_ERR_NOACCESSRIGHTS.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 ""
+"%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"
diff --git a/source/en-ZA/desktop/source/deployment/gui.po b/source/en-ZA/desktop/source/deployment/gui.po
new file mode 100644
index 00000000000..f261ccd44d5
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/gui.po
@@ -0,0 +1,535 @@
+#. extracted from desktop/source/deployment/gui.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fgui.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-12-15 13:03+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_gui_dialog.src#RID_STR_ADD_PACKAGES.string.text
+msgid "Add Extension(s)"
+msgstr "Add Extension(s)"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_REMOVE.string.text
+msgid "~Remove"
+msgstr "~Remove"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_ENABLE.string.text
+msgid "~Enable"
+msgstr "~Enable"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_DISABLE.string.text
+msgid "~Disable"
+msgstr "~Disable"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_CHECK_UPDATE.string.text
+msgid "~Update..."
+msgstr "~Update..."
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_OPTIONS.string.text
+msgid "~Options..."
+msgstr "~Options..."
+
+#: dp_gui_dialog.src#RID_STR_ADDING_PACKAGES.string.text
+msgctxt "dp_gui_dialog.src#RID_STR_ADDING_PACKAGES.string.text"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Adding %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_REMOVING_PACKAGES.string.text
+msgid "Removing %EXTENSION_NAME"
+msgstr "Removing %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_ENABLING_PACKAGES.string.text
+msgid "Enabling %EXTENSION_NAME"
+msgstr "Enabling %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_DISABLING_PACKAGES.string.text
+msgid "Disabling %EXTENSION_NAME"
+msgstr "Disabling %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_ACCEPT_LICENSE.string.text
+msgid "Accept license for %EXTENSION_NAME"
+msgstr "Accept licence for %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_INSTALL_FOR_ALL.string.text
+msgid "~For all users"
+msgstr "~For all users"
+
+#: dp_gui_dialog.src#RID_STR_INSTALL_FOR_ME.string.text
+msgid "~Only for me"
+msgstr "~Only for me"
+
+#: dp_gui_dialog.src#RID_STR_ERROR_UNKNOWN_STATUS.string.text
+msgid "Error: The status of this extension is unknown"
+msgstr "Error: The status of this extension is unknown"
+
+#: dp_gui_dialog.src#RID_STR_CLOSE_BTN.string.text
+msgctxt "dp_gui_dialog.src#RID_STR_CLOSE_BTN.string.text"
+msgid "Close"
+msgstr "Close"
+
+#: dp_gui_dialog.src#RID_STR_EXIT_BTN.string.text
+msgid "Quit"
+msgstr "Quit"
+
+#: dp_gui_dialog.src#RID_STR_NO_ADMIN_PRIVILEGE.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 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:"
+
+#: dp_gui_dialog.src#RID_STR_ERROR_MISSING_DEPENDENCIES.string.text
+msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:"
+msgstr "The extension cannot be enabled as the following system dependencies are not fulfilled:"
+
+#: dp_gui_dialog.src#RID_STR_ERROR_MISSING_LICENSE.string.text
+msgid "This extension is disabled because you haven't accepted the license yet.\n"
+msgstr "This extension is disabled because you haven't accepted the licence yet.\n"
+
+#: dp_gui_dialog.src#RID_STR_SHOW_LICENSE_CMD.string.text
+msgid "Show license"
+msgstr "Show license"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_HEADER.fixedtext.text
+msgid "Please follow these steps to proceed with the installation of the extension:"
+msgstr "Please follow these steps to proceed with the installation of the extension:"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_BODY_1.fixedtext.text
+msgid "1."
+msgstr "1."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_BODY_1_TXT.fixedtext.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 "Read the complete Licence Agreement. Use the scroll bar or the \\'Scroll Down\\' button in this dialogue to view the entire licence text."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_BODY_2.fixedtext.text
+msgid "2."
+msgstr "2."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.FT_LICENSE_BODY_2_TXT.fixedtext.text
+msgid "Accept the License Agreement for the extension by pressing the \\'Accept\\' button."
+msgstr "Accept the Licence Agreement for the extension by pressing the \\'Accept\\' button."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.PB_LICENSE_DOWN.pushbutton.text
+msgid "~Scroll Down"
+msgstr "~Scroll Down"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.BTN_LICENSE_ACCEPT.okbutton.text
+msgid "Accept"
+msgstr "Accept"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.BTN_LICENSE_DECLINE.cancelbutton.text
+msgid "Decline"
+msgstr "Decline"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.modaldialog.text
+#, fuzzy
+msgctxt "dp_gui_dialog.src#RID_DLG_LICENSE.modaldialog.text"
+msgid "Extension Software License Agreement"
+msgstr "Extension Software Licence Agreement"
+
+#: dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.RID_EM_BTN_CLOSE.okbutton.text
+#, fuzzy
+msgctxt "dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.RID_EM_BTN_CLOSE.okbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.modaldialog.text
+#, fuzzy
+msgctxt "dp_gui_dialog.src#RID_DLG_SHOW_LICENSE.modaldialog.text"
+msgid "Extension Software License Agreement"
+msgstr "Extension Software Licence Agreement"
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_INSTALL_EXTENSION.warningbox.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 ""
+"You are about to install the extension \\'%NAME\\'.\n"
+"Click \\'OK\\' to proceed with the installation.\n"
+"Click \\'Cancel\\' to stop the installation."
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_REMOVE_EXTENSION.warningbox.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 ""
+"You are about to remove the extension \\'%NAME\\'.\n"
+"Click \\'OK\\' to remove the extension.\n"
+"Click \\'Cancel\\' to stop removing the extension."
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_REMOVE_SHARED_EXTENSION.warningbox.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 ""
+"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."
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_ENABLE_SHARED_EXTENSION.warningbox.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 ""
+"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."
+
+#: dp_gui_dialog.src#RID_WARNINGBOX_DISABLE_SHARED_EXTENSION.warningbox.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 ""
+"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."
+
+#: dp_gui_dialog.src#RID_STR_UNSUPPORTED_PLATFORM.string.text
+msgid "The extension \\'%Name\\' does not work on this computer."
+msgstr "The extension \\'%Name\\' does not work on this computer."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CHECKING.fixedtext.text
+msgid "Checking..."
+msgstr "Checking..."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_UPDATE.fixedtext.text
+msgid "~Available extension updates"
+msgstr "~Available extension updates"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ALL.checkbox.text
+msgid "~Show all updates"
+msgstr "~Show all updates"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_DESCRIPTION.fixedline.text
+msgid "Description"
+msgstr "Description"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_PUBLISHER_LABEL.fixedtext.text
+msgid "Publisher:"
+msgstr "Publisher:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_RELEASENOTES_LABEL.fixedtext.text
+msgid "What is new:"
+msgstr "What is new:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_RELEASENOTES_LINK.fixedtext.text
+msgid "Release Notes"
+msgstr "Release Notes"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_OK.pushbutton.text
+msgid "~Install"
+msgstr "~Install"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CLOSE.pushbutton.text
+#, fuzzy
+msgctxt "dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CLOSE.pushbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ERROR.string.text
+msgid "Error"
+msgstr "Error"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NONE.string.text
+msgid "No new updates are available."
+msgstr "No new updates are available."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NOINSTALLABLE.string.text
+#, fuzzy
+msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
+msgstr "No installable updates are available. To see all updates, mark the check box 'Show all updates'."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_FAILURE.string.text
+msgid "An error occurred:"
+msgstr "An error occurred:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_UNKNOWNERROR.string.text
+msgid "Unknown error."
+msgstr "Unknown error."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODESCRIPTION.string.text
+#, fuzzy
+msgid "No more details are available for this update."
+msgstr "No descriptions available for this extension."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NOINSTALL.string.text
+msgid "The extension cannot be updated because:"
+msgstr "The extension cannot be updated because:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODEPENDENCY.string.text
+msgid "Required %PRODUCTNAME version doesn't match:"
+msgstr "Required %PRODUCTNAME version doesn't match:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODEPENDENCY_CUR_VER.string.text
+msgid "You have %PRODUCTNAME %VERSION"
+msgstr "You have %PRODUCTNAME %VERSION"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_BROWSERBASED.string.text
+msgid "browser based update"
+msgstr "browser based update"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_VERSION.string.text
+msgid "Version"
+msgstr "Version"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORE.string.text
+#, fuzzy
+msgid "Ignore this Update"
+msgstr "Ready to Update"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORE_ALL.string.text
+msgid "Ignore all Updates"
+msgstr "Ignore all Updates"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ENABLE.string.text
+#, fuzzy
+msgid "Enable Updates"
+msgstr "Online Update"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORED_UPDATE.string.text
+msgid "This update will be ignored.\n"
+msgstr "This update will be ignored.\n"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.modaldialog.text
+msgid "Extension Update"
+msgstr "Extension Update"
+
+#: dp_gui_updatedialog.src#RID_WARNINGBOX_UPDATE_SHARED_EXTENSION.warningbox.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 update the extensions.\n"
+"Click \\'Cancel\\' to stop updating the extensions."
+msgstr ""
+"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 update the extensions.\n"
+"Click \\'Cancel\\' to stop updating the extensions."
+
+#: dp_gui_versionboxes.src#RID_WARNINGBOX_VERSION_LESS.warningbox.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 ""
+"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."
+
+#: dp_gui_versionboxes.src#RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES.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 ""
+"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."
+
+#: dp_gui_versionboxes.src#RID_WARNINGBOX_VERSION_EQUAL.warningbox.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 ""
+"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."
+
+#: dp_gui_versionboxes.src#RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES.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 ""
+"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."
+
+#: dp_gui_versionboxes.src#RID_WARNINGBOX_VERSION_GREATER.warningbox.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 ""
+"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."
+
+#: dp_gui_versionboxes.src#RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES.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 ""
+"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."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_TYPE_EXTENSIONS.fixedtext.text
+msgid "Type of Extension"
+msgstr ""
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_BUNDLED.checkbox.text
+msgid "~Installation"
+msgstr ""
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_SHARED.checkbox.text
+msgid "~Shared"
+msgstr ""
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_CBX_USER.checkbox.text
+msgid "~User"
+msgstr "~User"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_ADD.pushbutton.text
+msgid "~Add..."
+msgstr "~Add..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_CHECK_UPDATES.pushbutton.text
+#, fuzzy
+msgid "~Check for Updates..."
+msgstr "Check for ~Updates..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_GET_EXTENSIONS.fixedtext.text
+msgid "Get more extensions online..."
+msgstr "Get more extensions online..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_PROGRESS.fixedtext.text
+msgctxt "dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_PROGRESS.fixedtext.text"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Adding %EXTENSION_NAME"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_CLOSE.okbutton.text
+msgctxt "dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_CLOSE.okbutton.text"
+msgid "Close"
+msgstr "Close"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.modelessdialog.text
+msgid "Extension Manager"
+msgstr "Extension Manager"
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_FT_MSG.fixedtext.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 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."
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_FT_PROGRESS.fixedtext.text
+msgctxt "dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_FT_PROGRESS.fixedtext.text"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Adding %EXTENSION_NAME"
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_BTN_CHECK_UPDATES.pushbutton.text
+#, fuzzy
+msgid "Check for ~Updates..."
+msgstr "Check for ~Updates..."
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_BTN_CLOSE.pushbutton.text
+msgid "Disable all"
+msgstr "Disable all"
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.modaldialog.text
+msgid "Extension Update Required"
+msgstr "Extension Update Required"
+
+#: dp_gui_dialog2.src#RID_QUERYBOX_INSTALL_FOR_ALL.querybox.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.\n"
+"\n"
+"For whom do you want to install the extension?\n"
+msgstr ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when installing an extension for all users in a multi user environment.\n"
+"\n"
+"For whom do you want to install the extension?\n"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_DOWNLOADING.fixedtext.text
+msgid "Downloading extensions..."
+msgstr "Downloading extensions..."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_RESULTS.fixedtext.text
+msgid "Result"
+msgstr "Result"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_OK.okbutton.text
+msgid "OK"
+msgstr "OK"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ABORT.cancelbutton.text
+msgid "Cancel Update"
+msgstr "Cancel Update"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_INSTALLING.string.text
+msgid "Installing extensions..."
+msgstr "Installing extensions..."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_FINISHED.string.text
+msgid "Installation finished"
+msgstr "Installation finished"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_NO_ERRORS.string.text
+msgid "No errors."
+msgstr "No errors."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD.string.text
+msgid "Error while downloading extension %NAME. "
+msgstr "Error while downloading extension %NAME. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED.string.text
+msgid "The error message is: "
+msgstr "The error message is: "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION.string.text
+msgid "Error while installing extension %NAME. "
+msgstr "Error while installing extension %NAME. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED.string.text
+msgid "The license agreement for extension %NAME was refused. "
+msgstr "The licence agreement for extension %NAME was refused. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL.string.text
+msgid "The extension will not be installed."
+msgstr "The extension will not be installed."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.modaldialog.text
+msgid "Download and Installation"
+msgstr "Download and Installation"
+
+#: dp_gui_dependencydialog.src#RID_DLG_DEPENDENCIES.RID_DLG_DEPENDENCIES_TEXT.fixedtext.text
+msgid ""
+"The extension cannot be installed as the following\n"
+"system dependencies are not fulfilled:"
+msgstr ""
+"The extension cannot be installed as the following\n"
+"system dependencies are not fulfilled:"
+
+#: dp_gui_dependencydialog.src#RID_DLG_DEPENDENCIES.modaldialog.text
+msgid "System dependencies check"
+msgstr "System dependencies check"
diff --git a/source/en-ZA/desktop/source/deployment/manager.po b/source/en-ZA/desktop/source/deployment/manager.po
new file mode 100644
index 00000000000..286804be42f
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/manager.po
@@ -0,0 +1,40 @@
+#. extracted from desktop/source/deployment/manager.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fmanager.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_manager.src#RID_STR_COPYING_PACKAGE.string.text
+msgid "Copying: "
+msgstr "Copying: "
+
+#: dp_manager.src#RID_STR_ERROR_WHILE_ADDING.string.text
+msgid "Error while adding: "
+msgstr "Error while adding: "
+
+#: dp_manager.src#RID_STR_ERROR_WHILE_REMOVING.string.text
+msgid "Error while removing: "
+msgstr "Error while removing: "
+
+#: dp_manager.src#RID_STR_PACKAGE_ALREADY_ADDED.string.text
+msgid "Extension has already been added: "
+msgstr "Extension has already been added: "
+
+#: dp_manager.src#RID_STR_NO_SUCH_PACKAGE.string.text
+msgid "There is no such extension deployed: "
+msgstr "There is no such extension deployed: "
+
+#: dp_manager.src#RID_STR_SYNCHRONIZING_REPOSITORY.string.text
+msgid "Synchronizing repository for %NAME extensions"
+msgstr "Synchronizing repository for %NAME extensions"
diff --git a/source/en-ZA/desktop/source/deployment/misc.po b/source/en-ZA/desktop/source/deployment/misc.po
new file mode 100644
index 00000000000..307f0d7f31e
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/misc.po
@@ -0,0 +1,32 @@
+#. extracted from desktop/source/deployment/misc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fmisc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-11-26 02:16+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_UNKNOWN.string.text
+msgid "Unknown"
+msgstr "Unknown"
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN.string.text
+msgid "Extension requires at least OpenOffice.org reference version %VERSION"
+msgstr ""
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX.string.text
+msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION"
+msgstr ""
+
+#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_LO_MIN.string.text
+msgid "Extension requires at least LibreOffice version %VERSION"
+msgstr ""
diff --git a/source/en-ZA/desktop/source/deployment/registry.po b/source/en-ZA/desktop/source/deployment/registry.po
new file mode 100644
index 00000000000..66ee11c2161
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/registry.po
@@ -0,0 +1,40 @@
+#. extracted from desktop/source/deployment/registry.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-04-05 21:52+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_registry.src#RID_STR_REGISTERING_PACKAGE.string.text
+msgid "Enabling: "
+msgstr "Enabling: "
+
+#: dp_registry.src#RID_STR_REVOKING_PACKAGE.string.text
+msgid "Disabling: "
+msgstr "Disabling: "
+
+#: dp_registry.src#RID_STR_CANNOT_DETECT_MEDIA_TYPE.string.text
+msgid "Cannot detect media-type: "
+msgstr "Cannot detect media-type: "
+
+#: dp_registry.src#RID_STR_UNSUPPORTED_MEDIA_TYPE.string.text
+msgid "This media-type is not supported: "
+msgstr "This media-type is not supported: "
+
+#: dp_registry.src#RID_STR_ERROR_WHILE_REGISTERING.string.text
+msgid "An error occurred while enabling: "
+msgstr "An error occurred while enabling: "
+
+#: dp_registry.src#RID_STR_ERROR_WHILE_REVOKING.string.text
+msgid "An error occurred while disabling: "
+msgstr "An error occurred while disabling: "
diff --git a/source/en-ZA/desktop/source/deployment/registry/component.po b/source/en-ZA/desktop/source/deployment/registry/component.po
new file mode 100644
index 00000000000..04ddf14845d
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/registry/component.po
@@ -0,0 +1,41 @@
+#. extracted from desktop/source/deployment/registry/component.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fcomponent.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-11 23:13+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_component.src#RID_STR_DYN_COMPONENT.string.text
+msgid "UNO Dynamic Library Component"
+msgstr "UNO Dynamic Library Component"
+
+#: dp_component.src#RID_STR_JAVA_COMPONENT.string.text
+msgid "UNO Java Component"
+msgstr "UNO Java Component"
+
+#: dp_component.src#RID_STR_PYTHON_COMPONENT.string.text
+msgid "UNO Python Component"
+msgstr "UNO Python Component"
+
+#: dp_component.src#RID_STR_COMPONENTS.string.text
+#, fuzzy
+msgid "UNO Components"
+msgstr "UNO Java Component"
+
+#: dp_component.src#RID_STR_RDB_TYPELIB.string.text
+msgid "UNO RDB Type Library"
+msgstr "UNO RDB Type Library"
+
+#: dp_component.src#RID_STR_JAVA_TYPELIB.string.text
+msgid "UNO Java Type Library"
+msgstr "UNO Java Type Library"
diff --git a/source/en-ZA/desktop/source/deployment/registry/configuration.po b/source/en-ZA/desktop/source/deployment/registry/configuration.po
new file mode 100644
index 00000000000..dfd7905d27b
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/registry/configuration.po
@@ -0,0 +1,24 @@
+#. extracted from desktop/source/deployment/registry/configuration.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fconfiguration.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_configuration.src#RID_STR_CONF_SCHEMA.string.text
+msgid "Configuration Schema"
+msgstr "Configuration Schema"
+
+#: dp_configuration.src#RID_STR_CONF_DATA.string.text
+msgid "Configuration Data"
+msgstr "Configuration Data"
diff --git a/source/en-ZA/desktop/source/deployment/registry/help.po b/source/en-ZA/desktop/source/deployment/registry/help.po
new file mode 100644
index 00000000000..874e43be60c
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/registry/help.po
@@ -0,0 +1,28 @@
+#. extracted from desktop/source/deployment/registry/help.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fhelp.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_help.src#RID_STR_HELP.string.text
+msgid "Help"
+msgstr "Help"
+
+#: dp_help.src#RID_STR_HELPPROCESSING_GENERAL_ERROR.string.text
+msgid "The extension cannot be installed because:\n"
+msgstr "The extension cannot be installed because:\n"
+
+#: dp_help.src#RID_STR_HELPPROCESSING_XMLPARSING_ERROR.string.text
+msgid "The extension will not be installed because an error occurred in the Help files:\n"
+msgstr "The extension will not be installed because an error occurred in the Help files:\n"
diff --git a/source/en-ZA/desktop/source/deployment/registry/package.po b/source/en-ZA/desktop/source/deployment/registry/package.po
new file mode 100644
index 00000000000..c2deaa49f71
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/registry/package.po
@@ -0,0 +1,20 @@
+#. extracted from desktop/source/deployment/registry/package.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fpackage.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_package.src#RID_STR_PACKAGE_BUNDLE.string.text
+msgid "Extension"
+msgstr "Extension"
diff --git a/source/en-ZA/desktop/source/deployment/registry/script.po b/source/en-ZA/desktop/source/deployment/registry/script.po
new file mode 100644
index 00000000000..784e1934e4a
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/registry/script.po
@@ -0,0 +1,32 @@
+#. extracted from desktop/source/deployment/registry/script.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fscript.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_script.src#RID_STR_BASIC_LIB.string.text
+msgid "%PRODUCTNAME Basic Library"
+msgstr "%PRODUCTNAME Basic Library"
+
+#: dp_script.src#RID_STR_DIALOG_LIB.string.text
+msgid "Dialog Library"
+msgstr "Dialogue Library"
+
+#: dp_script.src#RID_STR_CANNOT_DETERMINE_LIBNAME.string.text
+msgid "The library name could not be determined."
+msgstr "The library name could not be determined."
+
+#: dp_script.src#RID_STR_LIBNAME_ALREADY_EXISTS.string.text
+msgid "This library name already exists. Please choose a different name."
+msgstr "This library name already exists. Please choose a different name."
diff --git a/source/en-ZA/desktop/source/deployment/registry/sfwk.po b/source/en-ZA/desktop/source/deployment/registry/sfwk.po
new file mode 100644
index 00000000000..bbb8b7bd2df
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/registry/sfwk.po
@@ -0,0 +1,20 @@
+#. extracted from desktop/source/deployment/registry/sfwk.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fregistry%2Fsfwk.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dp_sfwk.src#RID_STR_SFWK_LIB.string.text
+msgid "%MACROLANG Library"
+msgstr "%MACROLANG Library"
diff --git a/source/en-ZA/desktop/source/deployment/unopkg.po b/source/en-ZA/desktop/source/deployment/unopkg.po
new file mode 100644
index 00000000000..15db98f6003
--- /dev/null
+++ b/source/en-ZA/desktop/source/deployment/unopkg.po
@@ -0,0 +1,56 @@
+#. extracted from desktop/source/deployment/unopkg.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Funopkg.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_1.string.text
+msgid "Extension Software License Agreement of $NAME:"
+msgstr "Extension Software Licence Agreement of $NAME:"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_2.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 "Read the complete Licence Agreement displayed above. Accept the Licence Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup."
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_3.string.text
+msgid "[Enter \"yes\" or \"no\"]:"
+msgstr "[Enter \"yes\" or \"no\"]:"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_4.string.text
+msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
+msgstr "Your input was not correct. Please enter \"yes\" or \"no\":"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_YES.string.text
+msgid "YES"
+msgstr "YES"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_Y.string.text
+msgid "Y"
+msgstr "Y"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_NO.string.text
+msgid "NO"
+msgstr "NO"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_N.string.text
+msgid "N"
+msgstr "N"
+
+#: unopkg.src#RID_STR_CONCURRENTINSTANCE.string.text
+msgid "unopkg cannot be started. The lock file indicates it as already running. If this does not apply, delete the lock file at:"
+msgstr "unopkg cannot be started. The lock file indicates it as already running. If this does not apply, delete the lock file at:"
+
+#: unopkg.src#RID_STR_UNOPKG_ERROR.string.text
+msgid "ERROR: "
+msgstr "ERROR: "
diff --git a/source/en-ZA/dictionaries/af_ZA.po b/source/en-ZA/dictionaries/af_ZA.po
new file mode 100644
index 00000000000..ef30bb1cc7e
--- /dev/null
+++ b/source/en-ZA/dictionaries/af_ZA.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/af_ZA.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Faf_ZA.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Afrikaans spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/an_ES.po b/source/en-ZA/dictionaries/an_ES.po
new file mode 100644
index 00000000000..345e27588f4
--- /dev/null
+++ b/source/en-ZA/dictionaries/an_ES.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/an_ES.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fan_ES.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Aragonese spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/ar.po b/source/en-ZA/dictionaries/ar.po
new file mode 100644
index 00000000000..ce2f97e09e7
--- /dev/null
+++ b/source/en-ZA/dictionaries/ar.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/ar.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Far.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Arabic spelling dictionary, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/be_BY.po b/source/en-ZA/dictionaries/be_BY.po
new file mode 100644
index 00000000000..e21b5bcce3b
--- /dev/null
+++ b/source/en-ZA/dictionaries/be_BY.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/be_BY.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbe_BY.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Belarusian spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/bg_BG.po b/source/en-ZA/dictionaries/bg_BG.po
new file mode 100644
index 00000000000..cd09fa74495
--- /dev/null
+++ b/source/en-ZA/dictionaries/bg_BG.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/bg_BG.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbg_BG.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Bulgarian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/bn_BD.po b/source/en-ZA/dictionaries/bn_BD.po
new file mode 100644
index 00000000000..b3eb46ce743
--- /dev/null
+++ b/source/en-ZA/dictionaries/bn_BD.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/bn_BD.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbn_BD.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Bengali spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/br_FR.po b/source/en-ZA/dictionaries/br_FR.po
new file mode 100644
index 00000000000..3e423a5f80d
--- /dev/null
+++ b/source/en-ZA/dictionaries/br_FR.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/br_FR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbr_FR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Breton spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/ca.po b/source/en-ZA/dictionaries/ca.po
new file mode 100644
index 00000000000..b7a5e5c8d50
--- /dev/null
+++ b/source/en-ZA/dictionaries/ca.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/ca.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fca.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Catalan spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/cs_CZ.po b/source/en-ZA/dictionaries/cs_CZ.po
new file mode 100644
index 00000000000..1f773c7c242
--- /dev/null
+++ b/source/en-ZA/dictionaries/cs_CZ.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/cs_CZ.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fcs_CZ.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Czech spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/da_DK.po b/source/en-ZA/dictionaries/da_DK.po
new file mode 100644
index 00000000000..f0589660c19
--- /dev/null
+++ b/source/en-ZA/dictionaries/da_DK.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/da_DK.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fda_DK.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Danish spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/de.po b/source/en-ZA/dictionaries/de.po
new file mode 100644
index 00000000000..273fa17be29
--- /dev/null
+++ b/source/en-ZA/dictionaries/de.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/de.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fde.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "German (Austria, Germany, Switzerland) spelling dictionaries, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/el_GR.po b/source/en-ZA/dictionaries/el_GR.po
new file mode 100644
index 00000000000..9e8d401e444
--- /dev/null
+++ b/source/en-ZA/dictionaries/el_GR.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/el_GR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fel_GR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Greek spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/en.po b/source/en-ZA/dictionaries/en.po
new file mode 100644
index 00000000000..81bfa360fdd
--- /dev/null
+++ b/source/en-ZA/dictionaries/en.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/en.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fen.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-10-07 14:44+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/en/dialog.po b/source/en-ZA/dictionaries/en/dialog.po
new file mode 100644
index 00000000000..7c7f22ea5d1
--- /dev/null
+++ b/source/en-ZA/dictionaries/en/dialog.po
@@ -0,0 +1,171 @@
+#. extracted from dictionaries/en/dialog.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fen%2Fdialog.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: en_en_US.properties#spelling.property.text
+msgid "Grammar checking"
+msgstr ""
+
+#: en_en_US.properties#hlp_grammar.property.text
+msgid "Check more grammar errors."
+msgstr ""
+
+#: en_en_US.properties#grammar.property.text
+msgid "Possible mistakes"
+msgstr ""
+
+#: en_en_US.properties#hlp_cap.property.text
+msgid "Check missing capitalization of sentences."
+msgstr ""
+
+#: en_en_US.properties#cap.property.text
+msgid "Capitalization"
+msgstr ""
+
+#: en_en_US.properties#hlp_dup.property.text
+msgid "Check repeated words."
+msgstr ""
+
+#: en_en_US.properties#dup.property.text
+msgid "Word duplication"
+msgstr ""
+
+#: en_en_US.properties#hlp_pair.property.text
+msgid "Check missing or extra parentheses and quotation marks."
+msgstr ""
+
+#: en_en_US.properties#pair.property.text
+msgid "Parentheses"
+msgstr ""
+
+#: en_en_US.properties#punctuation.property.text
+msgid "Punctuation"
+msgstr ""
+
+#: en_en_US.properties#hlp_spaces.property.text
+msgid "Check single spaces between words."
+msgstr ""
+
+#: en_en_US.properties#spaces.property.text
+msgid "Word spacing"
+msgstr ""
+
+#: en_en_US.properties#hlp_mdash.property.text
+msgid "Force unspaced em dash instead of spaced en dash."
+msgstr ""
+
+#: en_en_US.properties#mdash.property.text
+msgid "Em dash"
+msgstr ""
+
+#: en_en_US.properties#hlp_ndash.property.text
+msgid "Force spaced en dash instead of unspaced em dash."
+msgstr ""
+
+#: en_en_US.properties#ndash.property.text
+msgid "En dash"
+msgstr ""
+
+#: en_en_US.properties#hlp_quotation.property.text
+msgid "Check double quotation marks: \"x\" → “x”"
+msgstr ""
+
+#: en_en_US.properties#quotation.property.text
+msgid "Quotation marks"
+msgstr ""
+
+#: en_en_US.properties#hlp_times.property.text
+msgid "Check true multiplication sign: 5x5 → 5×5"
+msgstr ""
+
+#: en_en_US.properties#times.property.text
+msgid "Multiplication sign"
+msgstr ""
+
+#: en_en_US.properties#hlp_spaces2.property.text
+msgid "Check single spaces between sentences."
+msgstr ""
+
+#: en_en_US.properties#spaces2.property.text
+msgid "Sentence spacing"
+msgstr ""
+
+#: en_en_US.properties#hlp_spaces3.property.text
+msgid "Check more than two extra space characters between words and sentences."
+msgstr ""
+
+#: en_en_US.properties#spaces3.property.text
+msgid "More spaces"
+msgstr ""
+
+#: en_en_US.properties#hlp_minus.property.text
+msgid "Change hyphen characters to real minus signs."
+msgstr ""
+
+#: en_en_US.properties#minus.property.text
+msgid "Minus sign"
+msgstr ""
+
+#: en_en_US.properties#hlp_apostrophe.property.text
+msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
+msgstr ""
+
+#: en_en_US.properties#apostrophe.property.text
+msgid "Apostrophe"
+msgstr ""
+
+#: en_en_US.properties#hlp_ellipsis.property.text
+msgid "Change three dots with ellipsis."
+msgstr ""
+
+#: en_en_US.properties#ellipsis.property.text
+msgid "Ellipsis"
+msgstr ""
+
+#: en_en_US.properties#others.property.text
+msgid "Others"
+msgstr "Others"
+
+#: en_en_US.properties#hlp_metric.property.text
+msgid "Measurement conversion from °F, mph, ft, in, lb, gal and miles."
+msgstr ""
+
+#: en_en_US.properties#metric.property.text
+msgid "Convert to metric (°C, km/h, m, kg, l)"
+msgstr ""
+
+#: en_en_US.properties#hlp_numsep.property.text
+msgid "Common (1000000 → 1,000,000) or ISO (1000000 → 1 000 000)."
+msgstr ""
+
+#: en_en_US.properties#numsep.property.text
+msgid "Thousand separation of large numbers"
+msgstr ""
+
+#: en_en_US.properties#hlp_nonmetric.property.text
+msgid "Measurement conversion from °C; km/h; cm, m, km; kg; l."
+msgstr ""
+
+#: en_en_US.properties#nonmetric.property.text
+msgid "Convert to non-metric (°F, mph, ft, lb, gal)"
+msgstr ""
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Dictionaries"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.en.Label.value.text
+msgid "English sentence checking"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/es_ES.po b/source/en-ZA/dictionaries/es_ES.po
new file mode 100644
index 00000000000..98447094e65
--- /dev/null
+++ b/source/en-ZA/dictionaries/es_ES.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/es_ES.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fes_ES.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Spanish spelling dictionary"
+msgstr "Spanish spelling dictionary"
diff --git a/source/en-ZA/dictionaries/et_EE.po b/source/en-ZA/dictionaries/et_EE.po
new file mode 100644
index 00000000000..b8b6c4b60af
--- /dev/null
+++ b/source/en-ZA/dictionaries/et_EE.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/et_EE.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fet_EE.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Estonian spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/fr_FR.po b/source/en-ZA/dictionaries/fr_FR.po
new file mode 100644
index 00000000000..3f5913065ee
--- /dev/null
+++ b/source/en-ZA/dictionaries/fr_FR.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/fr_FR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Ffr_FR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "French spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/gd_GB.po b/source/en-ZA/dictionaries/gd_GB.po
new file mode 100644
index 00000000000..a70d74f4766
--- /dev/null
+++ b/source/en-ZA/dictionaries/gd_GB.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/gd_GB.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgd_GB.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Scottish Gaelic spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/gl.po b/source/en-ZA/dictionaries/gl.po
new file mode 100644
index 00000000000..535d84d386a
--- /dev/null
+++ b/source/en-ZA/dictionaries/gl.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/gl.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgl.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-10-07 14:44+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Galician spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/gu_IN.po b/source/en-ZA/dictionaries/gu_IN.po
new file mode 100644
index 00000000000..78b5cb7b88e
--- /dev/null
+++ b/source/en-ZA/dictionaries/gu_IN.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/gu_IN.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgu_IN.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Gujarati spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/he_IL.po b/source/en-ZA/dictionaries/he_IL.po
new file mode 100644
index 00000000000..f2a2a5ca995
--- /dev/null
+++ b/source/en-ZA/dictionaries/he_IL.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/he_IL.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhe_IL.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Hebrew spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/hi_IN.po b/source/en-ZA/dictionaries/hi_IN.po
new file mode 100644
index 00000000000..9240cc097d8
--- /dev/null
+++ b/source/en-ZA/dictionaries/hi_IN.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/hi_IN.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhi_IN.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Hindi spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/hr_HR.po b/source/en-ZA/dictionaries/hr_HR.po
new file mode 100644
index 00000000000..9b4640250e9
--- /dev/null
+++ b/source/en-ZA/dictionaries/hr_HR.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/hr_HR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhr_HR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Croatian spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/hu_HU.po b/source/en-ZA/dictionaries/hu_HU.po
new file mode 100644
index 00000000000..f331ab8d47e
--- /dev/null
+++ b/source/en-ZA/dictionaries/hu_HU.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/hu_HU.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhu_HU.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-10-07 14:44+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/hu_HU/dialog.po b/source/en-ZA/dictionaries/hu_HU/dialog.po
new file mode 100644
index 00000000000..6ee56f72fb3
--- /dev/null
+++ b/source/en-ZA/dictionaries/hu_HU/dialog.po
@@ -0,0 +1,153 @@
+#. extracted from dictionaries/hu_HU/dialog.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhu_HU%2Fdialog.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: hu_HU_en_US.properties#spelling.property.text
+msgid "Spelling"
+msgstr "Spelling"
+
+#: hu_HU_en_US.properties#cap.property.text
+msgid "Capitalization"
+msgstr ""
+
+#: hu_HU_en_US.properties#par.property.text
+msgid "Parentheses"
+msgstr ""
+
+#: hu_HU_en_US.properties#wordpart.property.text
+msgid "Word parts of compounds"
+msgstr ""
+
+#: hu_HU_en_US.properties#comma.property.text
+msgid "Comma usage"
+msgstr ""
+
+#: hu_HU_en_US.properties#proofreading.property.text
+msgid "Proofreading"
+msgstr ""
+
+#: hu_HU_en_US.properties#style.property.text
+msgid "Style checking"
+msgstr ""
+
+#: hu_HU_en_US.properties#compound.property.text
+msgid "Underline typo-like compound words"
+msgstr ""
+
+#: hu_HU_en_US.properties#allcompound.property.text
+msgid "Underline all generated compound words"
+msgstr ""
+
+#: hu_HU_en_US.properties#grammar.property.text
+msgid "Possible mistakes"
+msgstr ""
+
+#: hu_HU_en_US.properties#money.property.text
+msgid "Consistency of money amounts"
+msgstr ""
+
+#: hu_HU_en_US.properties#duplication.property.text
+msgctxt "hu_HU_en_US.properties#duplication.property.text"
+msgid "Word duplication"
+msgstr ""
+
+#: hu_HU_en_US.properties#dup0.property.text
+msgctxt "hu_HU_en_US.properties#dup0.property.text"
+msgid "Word duplication"
+msgstr ""
+
+#: hu_HU_en_US.properties#dup.property.text
+msgid "Duplication within clauses"
+msgstr ""
+
+#: hu_HU_en_US.properties#dup2.property.text
+msgid "Duplication within sentences"
+msgstr ""
+
+#: hu_HU_en_US.properties#dup3.property.text
+msgid "Allow previous checkings with affixes"
+msgstr ""
+
+#: hu_HU_en_US.properties#numpart.property.text
+msgid "Thousand separation of numbers"
+msgstr ""
+
+#: hu_HU_en_US.properties#typography.property.text
+msgid "Typography"
+msgstr ""
+
+#: hu_HU_en_US.properties#quot.property.text
+msgid "Quotation marks"
+msgstr ""
+
+#: hu_HU_en_US.properties#apost.property.text
+msgid "Apostrophe"
+msgstr ""
+
+#: hu_HU_en_US.properties#dash.property.text
+msgid "En dash"
+msgstr ""
+
+#: hu_HU_en_US.properties#elli.property.text
+msgid "Ellipsis"
+msgstr ""
+
+#: hu_HU_en_US.properties#ligature.property.text
+msgid "Ligature suggestion"
+msgstr ""
+
+#: hu_HU_en_US.properties#noligature.property.text
+msgid "Underline ligatures"
+msgstr ""
+
+#: hu_HU_en_US.properties#frac.property.text
+msgid "Fractions"
+msgstr "Fractions"
+
+#: hu_HU_en_US.properties#thin.property.text
+msgid "Thin space"
+msgstr ""
+
+#: hu_HU_en_US.properties#spaces.property.text
+msgid "Double spaces"
+msgstr ""
+
+#: hu_HU_en_US.properties#spaces2.property.text
+msgid "More spaces"
+msgstr ""
+
+#: hu_HU_en_US.properties#idx.property.text
+msgid "Indices"
+msgstr ""
+
+#: hu_HU_en_US.properties#minus.property.text
+msgid "Minus"
+msgstr ""
+
+#: hu_HU_en_US.properties#SI.property.text
+msgid "Measurements"
+msgstr ""
+
+#: hu_HU_en_US.properties#hyphen.property.text
+msgid "Hyphenation of ambiguous words"
+msgstr ""
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Dictionaries"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.hu_HU.Label.value.text
+msgid "Hungarian sentence checking"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/it_IT.po b/source/en-ZA/dictionaries/it_IT.po
new file mode 100644
index 00000000000..35e03baa8a5
--- /dev/null
+++ b/source/en-ZA/dictionaries/it_IT.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/it_IT.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fit_IT.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Italian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/ku_TR.po b/source/en-ZA/dictionaries/ku_TR.po
new file mode 100644
index 00000000000..8221db99190
--- /dev/null
+++ b/source/en-ZA/dictionaries/ku_TR.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/ku_TR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fku_TR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Kurdish (Turkey) spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/lt_LT.po b/source/en-ZA/dictionaries/lt_LT.po
new file mode 100644
index 00000000000..c3f8ae7debd
--- /dev/null
+++ b/source/en-ZA/dictionaries/lt_LT.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/lt_LT.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Flt_LT.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Lithuanian spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/lv_LV.po b/source/en-ZA/dictionaries/lv_LV.po
new file mode 100644
index 00000000000..39f338503c4
--- /dev/null
+++ b/source/en-ZA/dictionaries/lv_LV.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/lv_LV.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Flv_LV.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Latvian spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/ne_NP.po b/source/en-ZA/dictionaries/ne_NP.po
new file mode 100644
index 00000000000..e5a87892533
--- /dev/null
+++ b/source/en-ZA/dictionaries/ne_NP.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/ne_NP.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fne_NP.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Nepali spelling dictionary, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/nl_NL.po b/source/en-ZA/dictionaries/nl_NL.po
new file mode 100644
index 00000000000..4d80598b1de
--- /dev/null
+++ b/source/en-ZA/dictionaries/nl_NL.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/nl_NL.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fnl_NL.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Dutch spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/no.po b/source/en-ZA/dictionaries/no.po
new file mode 100644
index 00000000000..73180021ff9
--- /dev/null
+++ b/source/en-ZA/dictionaries/no.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/no.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fno.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/oc_FR.po b/source/en-ZA/dictionaries/oc_FR.po
new file mode 100644
index 00000000000..4368a23557a
--- /dev/null
+++ b/source/en-ZA/dictionaries/oc_FR.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/oc_FR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Foc_FR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Occitan spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/pl_PL.po b/source/en-ZA/dictionaries/pl_PL.po
new file mode 100644
index 00000000000..322e8166c86
--- /dev/null
+++ b/source/en-ZA/dictionaries/pl_PL.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/pl_PL.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpl_PL.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Polish spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/pt_BR.po b/source/en-ZA/dictionaries/pt_BR.po
new file mode 100644
index 00000000000..1e2dee5d72a
--- /dev/null
+++ b/source/en-ZA/dictionaries/pt_BR.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/pt_BR.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpt_BR.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Brazilian Portuguese spelling Dictionary (1990 Spelling Agreement), and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/pt_PT.po b/source/en-ZA/dictionaries/pt_PT.po
new file mode 100644
index 00000000000..2e4c9e66a04
--- /dev/null
+++ b/source/en-ZA/dictionaries/pt_PT.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/pt_PT.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fpt_PT.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "European Portuguese spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/ro.po b/source/en-ZA/dictionaries/ro.po
new file mode 100644
index 00000000000..db82d4acf10
--- /dev/null
+++ b/source/en-ZA/dictionaries/ro.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/ro.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fro.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Romanian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/ru_RU.po b/source/en-ZA/dictionaries/ru_RU.po
new file mode 100644
index 00000000000..502008c3c62
--- /dev/null
+++ b/source/en-ZA/dictionaries/ru_RU.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/ru_RU.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fru_RU.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Russian spelling dictionary, hyphenation rules, thesaurus, and grammar checker"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/ru_RU/dialog.po b/source/en-ZA/dictionaries/ru_RU/dialog.po
new file mode 100644
index 00000000000..c0804a53f96
--- /dev/null
+++ b/source/en-ZA/dictionaries/ru_RU/dialog.po
@@ -0,0 +1,83 @@
+#. extracted from dictionaries/ru_RU/dialog.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fru_RU%2Fdialog.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: ru_RU_en_US.properties#abbreviation.property.text
+msgid "Abbreviation"
+msgstr ""
+
+#: ru_RU_en_US.properties#grammar.property.text
+msgid "Grammar"
+msgstr "Grammar"
+
+#: ru_RU_en_US.properties#hyphen.property.text
+msgid "Compound words with hyphen"
+msgstr ""
+
+#: ru_RU_en_US.properties#comma.property.text
+msgid "Comma usage"
+msgstr ""
+
+#: ru_RU_en_US.properties#common.property.text
+msgid "General error"
+msgstr ""
+
+#: ru_RU_en_US.properties#multiword.property.text
+msgid "Multiword expressions"
+msgstr ""
+
+#: ru_RU_en_US.properties#together.property.text
+msgid "Together/separately"
+msgstr ""
+
+#: ru_RU_en_US.properties#proofreading.property.text
+msgid "Proofreading"
+msgstr ""
+
+#: ru_RU_en_US.properties#space.property.text
+msgid "Space mistake"
+msgstr ""
+
+#: ru_RU_en_US.properties#typographica.property.text
+msgid "Typographica"
+msgstr ""
+
+#: ru_RU_en_US.properties#dup.property.text
+msgid "Word duplication within clauses"
+msgstr ""
+
+#: ru_RU_en_US.properties#dup2.property.text
+msgid "Word duplication within sentences"
+msgstr ""
+
+#: ru_RU_en_US.properties#others.property.text
+msgid "Others"
+msgstr "Others"
+
+#: ru_RU_en_US.properties#numsep.property.text
+msgid "Separation of large numbers (ISO)"
+msgstr ""
+
+#: ru_RU_en_US.properties#quotation.property.text
+msgid "Quotation"
+msgstr "Quotation"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Dictionaries"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.ru_RU.Label.value.text
+msgid "Grammar checking (Russian)"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/si_LK.po b/source/en-ZA/dictionaries/si_LK.po
new file mode 100644
index 00000000000..cec437cbe18
--- /dev/null
+++ b/source/en-ZA/dictionaries/si_LK.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/si_LK.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsi_LK.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Sinhala spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/sk_SK.po b/source/en-ZA/dictionaries/sk_SK.po
new file mode 100644
index 00000000000..52faf4e7609
--- /dev/null
+++ b/source/en-ZA/dictionaries/sk_SK.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/sk_SK.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsk_SK.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Slovak spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/sl_SI.po b/source/en-ZA/dictionaries/sl_SI.po
new file mode 100644
index 00000000000..72cacf7e7cb
--- /dev/null
+++ b/source/en-ZA/dictionaries/sl_SI.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/sl_SI.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsl_SI.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Slovenian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/sr.po b/source/en-ZA/dictionaries/sr.po
new file mode 100644
index 00000000000..4dedca2a5a1
--- /dev/null
+++ b/source/en-ZA/dictionaries/sr.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/sr.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsr.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Serbian (Cyrillic and Latin) spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/sv_SE.po b/source/en-ZA/dictionaries/sv_SE.po
new file mode 100644
index 00000000000..168eacdc34b
--- /dev/null
+++ b/source/en-ZA/dictionaries/sv_SE.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/sv_SE.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsv_SE.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:46+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Swedish spelling dictionary, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/sw_TZ.po b/source/en-ZA/dictionaries/sw_TZ.po
new file mode 100644
index 00000000000..44ae6bda480
--- /dev/null
+++ b/source/en-ZA/dictionaries/sw_TZ.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/sw_TZ.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fsw_TZ.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Swahili spelling dictionary"
+msgstr "Swahili spelling dictionary"
diff --git a/source/en-ZA/dictionaries/te_IN.po b/source/en-ZA/dictionaries/te_IN.po
new file mode 100644
index 00000000000..4c57e9208e4
--- /dev/null
+++ b/source/en-ZA/dictionaries/te_IN.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/te_IN.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fte_IN.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Telugu spelling dictionary, and hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/th_TH.po b/source/en-ZA/dictionaries/th_TH.po
new file mode 100644
index 00000000000..c6d42a04451
--- /dev/null
+++ b/source/en-ZA/dictionaries/th_TH.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/th_TH.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fth_TH.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Thai spelling dictionary"
+msgstr "Thai spelling dictionary"
diff --git a/source/en-ZA/dictionaries/uk_UA.po b/source/en-ZA/dictionaries/uk_UA.po
new file mode 100644
index 00000000000..1531c94406d
--- /dev/null
+++ b/source/en-ZA/dictionaries/uk_UA.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/uk_UA.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fuk_UA.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Ukrainian spelling dictionary, hyphenation rules, and thesaurus"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/vi.po b/source/en-ZA/dictionaries/vi.po
new file mode 100644
index 00000000000..a0574981c9a
--- /dev/null
+++ b/source/en-ZA/dictionaries/vi.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/vi.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fvi.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-10-07 14:44+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Vietnamese spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/zu_ZA.po b/source/en-ZA/dictionaries/zu_ZA.po
new file mode 100644
index 00000000000..e89f529de82
--- /dev/null
+++ b/source/en-ZA/dictionaries/zu_ZA.po
@@ -0,0 +1,19 @@
+#. extracted from dictionaries/zu_ZA.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: LibO 350-l10n\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fzu_ZA.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-10-07 14:45+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: description.xml#dispname.dispname.description.text
+msgid "Zulu hyphenation rules"
+msgstr ""
diff --git a/source/en-ZA/editeng/source/accessibility.po b/source/en-ZA/editeng/source/accessibility.po
new file mode 100644
index 00000000000..94fdd279934
--- /dev/null
+++ b/source/en-ZA/editeng/source/accessibility.po
@@ -0,0 +1,24 @@
+#. extracted from editeng/source/accessibility.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Faccessibility.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: accessibility.src#RID_SVXSTR_A11Y_IMAGEBULLET_DESCRIPTION.string.text
+msgid "Image bullet in paragraph"
+msgstr "Image bullet in paragraph"
+
+#: accessibility.src#RID_SVXSTR_A11Y_IMAGEBULLET_NAME.string.text
+msgid "Image bullet"
+msgstr "Image bullet"
diff --git a/source/en-ZA/editeng/source/editeng.po b/source/en-ZA/editeng/source/editeng.po
new file mode 100644
index 00000000000..25ee43800b0
--- /dev/null
+++ b/source/en-ZA/editeng/source/editeng.po
@@ -0,0 +1,84 @@
+#. extracted from editeng/source/editeng.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fediteng.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-06-16 13:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: editeng.src#RID_EDITUNDO_DEL.string.text
+msgid "Delete"
+msgstr "Delete"
+
+#: editeng.src#RID_EDITUNDO_MOVE.string.text
+msgid "Move"
+msgstr "Move"
+
+#: editeng.src#RID_EDITUNDO_INSERT.string.text
+msgid "Insert"
+msgstr "Insert"
+
+#: editeng.src#RID_EDITUNDO_REPLACE.string.text
+msgid "Replace"
+msgstr "Replace"
+
+#: editeng.src#RID_EDITUNDO_SETATTRIBS.string.text
+msgid "Apply attributes"
+msgstr "Apply attributes"
+
+#: editeng.src#RID_EDITUNDO_RESETATTRIBS.string.text
+msgid "Reset attributes"
+msgstr "Reset attributes"
+
+#: editeng.src#RID_EDITUNDO_INDENT.string.text
+msgid "Indent"
+msgstr "Indent"
+
+#: editeng.src#RID_EDITUNDO_SETSTYLE.string.text
+msgid "Apply Styles"
+msgstr "Apply Styles"
+
+#: editeng.src#RID_EDITUNDO_TRANSLITERATE.string.text
+msgid "~Change Case"
+msgstr "~Change Case"
+
+#: editeng.src#RID_MENU_SPELL.MN_SPELLING.menuitem.text
+msgid "~Spellcheck..."
+msgstr "~Spellcheck..."
+
+#: editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text
+#, fuzzy
+msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text"
+msgid "~Add"
+msgstr "~Add"
+
+#: editeng.src#RID_MENU_SPELL.MN_INSERT_SINGLE.menuitem.text
+#, fuzzy
+msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT_SINGLE.menuitem.text"
+msgid "~Add"
+msgstr "~Add"
+
+#: editeng.src#RID_MENU_SPELL.MN_IGNORE.menuitem.text
+msgid "Ignore All"
+msgstr "Ignore All"
+
+#: editeng.src#RID_MENU_SPELL.MN_AUTOCORR.menuitem.text
+msgid "AutoCorrect"
+msgstr "AutoCorrect"
+
+#: editeng.src#RID_STR_WORD.string.text
+msgid "Word is %x"
+msgstr "Word is %x"
+
+#: editeng.src#RID_STR_PARAGRAPH.string.text
+msgid "Paragraph is %x"
+msgstr "Paragraph is %x"
diff --git a/source/en-ZA/editeng/source/items.po b/source/en-ZA/editeng/source/items.po
new file mode 100644
index 00000000000..74267d8fdb1
--- /dev/null
+++ b/source/en-ZA/editeng/source/items.po
@@ -0,0 +1,979 @@
+#. extracted from editeng/source/items.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fitems.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-04-19 20:41+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: svxitems.src#RID_SVXITEMS_TRUE.string.text
+msgid "True"
+msgstr "True"
+
+#: svxitems.src#RID_SVXITEMS_FALSE.string.text
+msgid "False"
+msgstr "False"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_NONE.string.text
+msgid "No break"
+msgstr "No break"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_BEFORE.string.text
+msgid "Break before new column"
+msgstr "Break before new column"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_AFTER.string.text
+msgid "Break after new column"
+msgstr "Break after new column"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_BOTH.string.text
+msgid "Break before and after new column"
+msgstr "Break before and after new column"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_BEFORE.string.text
+msgid "Break before new page"
+msgstr "Break before new page"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_AFTER.string.text
+msgid "Break after new page"
+msgstr "Break after new page"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_BOTH.string.text
+msgid "Break before and after new page"
+msgstr "Break before and after new page"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_NONE.string.text
+msgid "No Shadow"
+msgstr "No Shadow"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_TOPLEFT.string.text
+msgid "Shadow top left"
+msgstr "Shadow top left"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_TOPRIGHT.string.text
+msgid "Shadow top right"
+msgstr "Shadow top right"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_BOTTOMLEFT.string.text
+msgid "Shadow bottom left"
+msgstr "Shadow bottom left"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_BOTTOMRIGHT.string.text
+msgid "Shadow bottom right"
+msgstr "Shadow bottom right"
+
+#: svxitems.src#RID_SVXITEMS_COLOR.string.text
+msgid "Color "
+msgstr "Colour "
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BLACK.string.text
+msgid "Black"
+msgstr "Black"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BLUE.string.text
+msgid "Blue"
+msgstr "Blue"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_GREEN.string.text
+msgid "Green"
+msgstr "Green"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_CYAN.string.text
+msgid "Cyan"
+msgstr "Cyan"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_RED.string.text
+msgid "Red"
+msgstr "Red"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_MAGENTA.string.text
+msgid "Magenta"
+msgstr "Magenta"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BROWN.string.text
+msgid "Brown"
+msgstr "Brown"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_GRAY.string.text
+msgid "Gray"
+msgstr "Grey"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTGRAY.string.text
+msgid "Light Gray"
+msgstr "Light Grey"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTBLUE.string.text
+msgid "Light Blue"
+msgstr "Light Blue"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTGREEN.string.text
+msgid "Light Green"
+msgstr "Light Green"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTCYAN.string.text
+msgid "Light Cyan"
+msgstr "Light Cyan"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTRED.string.text
+msgid "Light Red"
+msgstr "Light Red"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTMAGENTA.string.text
+msgid "Light Magenta"
+msgstr "Light Magenta"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_YELLOW.string.text
+msgid "Yellow"
+msgstr "Yellow"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_WHITE.string.text
+msgid "White"
+msgstr "White"
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_NONE.string.text
+msgid "Not Italic"
+msgstr "Not Italic"
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_OBLIQUE.string.text
+msgid "Oblique italic"
+msgstr "Oblique italic"
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_NORMAL.string.text
+msgid "Italic"
+msgstr "Italic"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_THIN.string.text
+msgid "thin"
+msgstr "thin"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_ULTRALIGHT.string.text
+msgid "ultra thin"
+msgstr "ultra thin"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_LIGHT.string.text
+msgid "light"
+msgstr "light"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_SEMILIGHT.string.text
+msgid "semi light"
+msgstr "semi light"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_NORMAL.string.text
+msgid "normal"
+msgstr "normal"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_MEDIUM.string.text
+msgid "medium"
+msgstr "medium"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_SEMIBOLD.string.text
+msgid "semi bold"
+msgstr "semi bold"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_BOLD.string.text
+msgid "bold"
+msgstr "bold"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_ULTRABOLD.string.text
+msgid "ultra bold"
+msgstr "ultra bold"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_BLACK.string.text
+msgid "black"
+msgstr "black"
+
+#: svxitems.src#RID_SVXITEMS_UL_NONE.string.text
+msgid "No underline"
+msgstr "No underline"
+
+#: svxitems.src#RID_SVXITEMS_UL_SINGLE.string.text
+msgid "Single underline"
+msgstr "Single underline"
+
+#: svxitems.src#RID_SVXITEMS_UL_DOUBLE.string.text
+msgid "Double underline"
+msgstr "Double underline"
+
+#: svxitems.src#RID_SVXITEMS_UL_DOTTED.string.text
+msgid "Dotted underline"
+msgstr "Dotted underline"
+
+#: svxitems.src#RID_SVXITEMS_UL_DONTKNOW.string.text
+msgid "Underline"
+msgstr "Underline"
+
+#: svxitems.src#RID_SVXITEMS_UL_DASH.string.text
+msgid "Underline (dashes)"
+msgstr "Underline (dashes)"
+
+#: svxitems.src#RID_SVXITEMS_UL_LONGDASH.string.text
+msgid "Underline (long dashes)"
+msgstr "Underline (long dashes)"
+
+#: svxitems.src#RID_SVXITEMS_UL_DASHDOT.string.text
+msgid "Underline (dot dash)"
+msgstr "Underline (dot dash)"
+
+#: svxitems.src#RID_SVXITEMS_UL_DASHDOTDOT.string.text
+msgid "Underline (dot dot dash)"
+msgstr "Underline (dot dot dash)"
+
+#: svxitems.src#RID_SVXITEMS_UL_SMALLWAVE.string.text
+msgid "Underline (small wave)"
+msgstr "Underline (small wave)"
+
+#: svxitems.src#RID_SVXITEMS_UL_WAVE.string.text
+msgid "Underline (Wave)"
+msgstr "Underline (Wave)"
+
+#: svxitems.src#RID_SVXITEMS_UL_DOUBLEWAVE.string.text
+msgid "Underline (Double wave)"
+msgstr "Underline (Double wave)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLD.string.text
+msgid "Underlined (Bold)"
+msgstr "Underlined (Bold)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDOTTED.string.text
+msgid "Dotted underline (Bold)"
+msgstr "Dotted underline (Bold)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASH.string.text
+msgid "Underline (Dash bold)"
+msgstr "Underline (Dash bold)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDLONGDASH.string.text
+msgid "Underline (long dash, bold)"
+msgstr "Underline (long dash, bold)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASHDOT.string.text
+msgid "Underline (dot dash, bold)"
+msgstr "Underline (dot dash, bold)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASHDOTDOT.string.text
+msgid "Underline (dot dot dash, bold)"
+msgstr "Underline (dot dot dash, bold)"
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDWAVE.string.text
+msgid "Underline (wave, bold)"
+msgstr "Underline (wave, bold)"
+
+#: svxitems.src#RID_SVXITEMS_OL_NONE.string.text
+msgid "No overline"
+msgstr "No overline"
+
+#: svxitems.src#RID_SVXITEMS_OL_SINGLE.string.text
+msgid "Single overline"
+msgstr "Single overline"
+
+#: svxitems.src#RID_SVXITEMS_OL_DOUBLE.string.text
+msgid "Double overline"
+msgstr "Double overline"
+
+#: svxitems.src#RID_SVXITEMS_OL_DOTTED.string.text
+msgid "Dotted overline"
+msgstr "Dotted overline"
+
+#: svxitems.src#RID_SVXITEMS_OL_DONTKNOW.string.text
+msgid "Overline"
+msgstr "Overline"
+
+#: svxitems.src#RID_SVXITEMS_OL_DASH.string.text
+msgid "Overline (dashes)"
+msgstr "Overline (dashes)"
+
+#: svxitems.src#RID_SVXITEMS_OL_LONGDASH.string.text
+msgid "Overline (long dashes)"
+msgstr "Overline (long dashes)"
+
+#: svxitems.src#RID_SVXITEMS_OL_DASHDOT.string.text
+msgid "Overline (dot dash)"
+msgstr "Overline (dot dash)"
+
+#: svxitems.src#RID_SVXITEMS_OL_DASHDOTDOT.string.text
+msgid "Overline (dot dot dash)"
+msgstr "Overline (dot dot dash)"
+
+#: svxitems.src#RID_SVXITEMS_OL_SMALLWAVE.string.text
+msgid "Overline (small wave)"
+msgstr "Overline (small wave)"
+
+#: svxitems.src#RID_SVXITEMS_OL_WAVE.string.text
+msgid "Overline (Wave)"
+msgstr "Overline (Wave)"
+
+#: svxitems.src#RID_SVXITEMS_OL_DOUBLEWAVE.string.text
+msgid "Overline (Double wave)"
+msgstr "Overline (Double wave)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLD.string.text
+msgid "Overlined (Bold)"
+msgstr "Overlined (Bold)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDOTTED.string.text
+msgid "Dotted overline (Bold)"
+msgstr "Dotted overline (Bold)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASH.string.text
+msgid "Overline (Dash bold)"
+msgstr "Overline (Dash bold)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDLONGDASH.string.text
+msgid "Overline (long dash, bold)"
+msgstr "Overline (long dash, bold)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASHDOT.string.text
+msgid "Overline (dot dash, bold)"
+msgstr "Overline (dot dash, bold)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASHDOTDOT.string.text
+msgid "Overline (dot dot dash, bold)"
+msgstr "Overline (dot dot dash, bold)"
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDWAVE.string.text
+msgid "Overline (wave, bold)"
+msgstr "Overline (wave, bold)"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_NONE.string.text
+msgid "No strikethrough"
+msgstr "No strikethrough"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_SINGLE.string.text
+msgid "Single strikethrough"
+msgstr "Single strikethrough"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_DOUBLE.string.text
+msgid "Double strikethrough"
+msgstr "Double strikethrough"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_BOLD.string.text
+msgid "Bold strikethrough"
+msgstr "Bold strikethrough"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_SLASH.string.text
+msgid "Strike through with slash"
+msgstr "Strike through with slash"
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_X.string.text
+msgid "Strike through with Xes"
+msgstr "Strike through with Xes"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_NONE.string.text
+msgid "None"
+msgstr "None"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_VERSALIEN.string.text
+msgid "Caps"
+msgstr "Caps"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_GEMEINE.string.text
+msgid "Lowercase"
+msgstr "Lowercase"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_TITEL.string.text
+msgid "Title"
+msgstr "Title"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_KAPITAELCHEN.string.text
+msgid "Small caps"
+msgstr "Small caps"
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_OFF.string.text
+msgid "Normal position"
+msgstr "Normal position"
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_SUPER.string.text
+msgid "Superscript "
+msgstr "Superscript "
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_SUB.string.text
+msgid "Subscript "
+msgstr "Subscript "
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_AUTO.string.text
+msgid "automatic"
+msgstr "automatic"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_LEFT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_LEFT.string.text"
+msgid "Align left"
+msgstr "Align left"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_RIGHT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_RIGHT.string.text"
+msgid "Align right"
+msgstr "Align right"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_BLOCK.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_BLOCK.string.text"
+msgid "Justify"
+msgstr "Justify"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_CENTER.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_CENTER.string.text"
+msgid "Centered"
+msgstr "Centered"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_BLOCKLINE.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_BLOCKLINE.string.text"
+msgid "Justify"
+msgstr "Justify"
+
+#: svxitems.src#RID_SVXITEMS_TAB_DECIMAL_CHAR.string.text
+msgid "Decimal Symbol:"
+msgstr "Decimal Symbol:"
+
+#: svxitems.src#RID_SVXITEMS_TAB_FILL_CHAR.string.text
+msgid "Fill character:"
+msgstr "Fill character:"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_LEFT.string.text
+msgid "Left"
+msgstr "Left"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_RIGHT.string.text
+msgid "Right"
+msgstr "Right"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_DECIMAL.string.text
+msgid "Decimal"
+msgstr "Decimal"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_CENTER.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_TAB_ADJUST_CENTER.string.text"
+msgid "Centered"
+msgstr "Centered"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_DEFAULT.string.text
+msgid "Default"
+msgstr "Default"
+
+#: svxitems.src#RID_SOLID.string.text
+msgid "Single, solid"
+msgstr "Single, solid"
+
+#: svxitems.src#RID_DOTTED.string.text
+msgid "Single, dotted"
+msgstr "Single, dotted"
+
+#: svxitems.src#RID_DASHED.string.text
+msgid "Single, dashed"
+msgstr "Single, dashed"
+
+#: svxitems.src#RID_DOUBLE.string.text
+msgid "Double"
+msgstr "Double"
+
+#: svxitems.src#RID_THINTHICK_SMALLGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: small"
+msgstr "Double, inside: fine, outside: thick, spacing: small"
+
+#: svxitems.src#RID_THINTHICK_MEDIUMGAP.string.text
+#, fuzzy
+msgid "Double, inside: fine, outside: thick, spacing: medium"
+msgstr "Double, inside: thin, outside: thick, spacing: large"
+
+#: svxitems.src#RID_THINTHICK_LARGEGAP.string.text
+#, fuzzy
+msgid "Double, inside: fine, outside: thick, spacing: large"
+msgstr "Double, inside: thin, outside: thick, spacing: large"
+
+#: svxitems.src#RID_THICKTHIN_SMALLGAP.string.text
+#, fuzzy
+msgid "Double, inside: thick, outside: fine, spacing: small"
+msgstr "Double, inside: thick, outside: thin, spacing: small"
+
+#: svxitems.src#RID_THICKTHIN_MEDIUMGAP.string.text
+#, fuzzy
+msgid "Double, inside: thick, outside: fine, spacing: medium"
+msgstr "Double, inside: thick, outside: thin, spacing: small"
+
+#: svxitems.src#RID_THICKTHIN_LARGEGAP.string.text
+#, fuzzy
+msgid "Double, inside: thick, outside: fine, spacing: large"
+msgstr "Double, inside: thin, outside: thick, spacing: large"
+
+#: svxitems.src#RID_EMBOSSED.string.text
+msgid "3D embossed"
+msgstr "3D embossed"
+
+#: svxitems.src#RID_ENGRAVED.string.text
+msgid "3D engraved"
+msgstr "3D engraved"
+
+#: svxitems.src#RID_INSET.string.text
+#, fuzzy
+msgid "Inset"
+msgstr "Insert"
+
+#: svxitems.src#RID_OUTSET.string.text
+#, fuzzy
+msgid "Outset"
+msgstr "Outside"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_MM.string.text
+msgid "mm"
+msgstr "mm"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_CM.string.text
+msgid "cm"
+msgstr "cm"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_INCH.string.text
+msgid "inch"
+msgstr "inch"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_POINT.string.text
+msgid "pt"
+msgstr "pt"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_TWIP.string.text
+msgid "twip"
+msgstr "twip"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_PIXEL.string.text
+msgid "pixel"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOWED_TRUE.string.text
+msgid "Shadowed"
+msgstr "Shadowed"
+
+#: svxitems.src#RID_SVXITEMS_SHADOWED_FALSE.string.text
+msgid "Not Shadowed"
+msgstr "Not Shadowed"
+
+#: svxitems.src#RID_SVXITEMS_BLINK_TRUE.string.text
+msgid "Blinking"
+msgstr "Blinking"
+
+#: svxitems.src#RID_SVXITEMS_BLINK_FALSE.string.text
+msgid "Not Blinking"
+msgstr "Not Blinking"
+
+#: svxitems.src#RID_SVXITEMS_AUTOKERN_TRUE.string.text
+msgid "Pair Kerning"
+msgstr "Pair Kerning"
+
+#: svxitems.src#RID_SVXITEMS_AUTOKERN_FALSE.string.text
+msgid "No pair kerning"
+msgstr "No pair kerning"
+
+#: svxitems.src#RID_SVXITEMS_WORDLINE_TRUE.string.text
+msgid "Individual words"
+msgstr "Individual words"
+
+#: svxitems.src#RID_SVXITEMS_WORDLINE_FALSE.string.text
+msgid "Not Words Only"
+msgstr "Not Words Only"
+
+#: svxitems.src#RID_SVXITEMS_CONTOUR_TRUE.string.text
+msgid "Outline"
+msgstr "Outline"
+
+#: svxitems.src#RID_SVXITEMS_CONTOUR_FALSE.string.text
+msgid "No Outline"
+msgstr "No Outline"
+
+#: svxitems.src#RID_SVXITEMS_PRINT_TRUE.string.text
+msgid "Print"
+msgstr "Print"
+
+#: svxitems.src#RID_SVXITEMS_PRINT_FALSE.string.text
+msgid "Don't print"
+msgstr "Don't print"
+
+#: svxitems.src#RID_SVXITEMS_OPAQUE_TRUE.string.text
+msgid "Opaque"
+msgstr "Opaque"
+
+#: svxitems.src#RID_SVXITEMS_OPAQUE_FALSE.string.text
+msgid "Not Opaque"
+msgstr "Not Opaque"
+
+#: svxitems.src#RID_SVXITEMS_FMTKEEP_TRUE.string.text
+msgid "Keep with next paragraph"
+msgstr "Keep with next paragraph"
+
+#: svxitems.src#RID_SVXITEMS_FMTKEEP_FALSE.string.text
+msgid "Don't Keep Paragraphs Together"
+msgstr "Don't Keep Paragraphs Together"
+
+#: svxitems.src#RID_SVXITEMS_FMTSPLIT_TRUE.string.text
+msgid "Split paragraph"
+msgstr "Split paragraph"
+
+#: svxitems.src#RID_SVXITEMS_FMTSPLIT_FALSE.string.text
+msgid "Don't split paragraph"
+msgstr "Don't split paragraph"
+
+#: svxitems.src#RID_SVXITEMS_PROT_CONTENT_TRUE.string.text
+msgid "Contents protected"
+msgstr "Contents protected"
+
+#: svxitems.src#RID_SVXITEMS_PROT_CONTENT_FALSE.string.text
+msgid "Contents not protected"
+msgstr "Contents not protected"
+
+#: svxitems.src#RID_SVXITEMS_PROT_SIZE_TRUE.string.text
+msgid "Size protected"
+msgstr "Size protected"
+
+#: svxitems.src#RID_SVXITEMS_PROT_SIZE_FALSE.string.text
+msgid "Size not protected"
+msgstr "Size not protected"
+
+#: svxitems.src#RID_SVXITEMS_PROT_POS_TRUE.string.text
+msgid "Position protected"
+msgstr "Position protected"
+
+#: svxitems.src#RID_SVXITEMS_PROT_POS_FALSE.string.text
+msgid "Position not protected"
+msgstr "Position not protected"
+
+#: svxitems.src#RID_SVXITEMS_TRANSPARENT_TRUE.string.text
+msgid "Transparent"
+msgstr "Transparent"
+
+#: svxitems.src#RID_SVXITEMS_TRANSPARENT_FALSE.string.text
+msgid "Not Transparent"
+msgstr "Not Transparent"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_TRUE.string.text
+msgid "Hyphenation"
+msgstr "Hyphenation"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_FALSE.string.text
+msgid "No hyphenation"
+msgstr "No hyphenation"
+
+#: svxitems.src#RID_SVXITEMS_PAGE_END_TRUE.string.text
+msgid "Page End"
+msgstr "Page End"
+
+#: svxitems.src#RID_SVXITEMS_PAGE_END_FALSE.string.text
+msgid "No Page End"
+msgstr "No Page End"
+
+#: svxitems.src#RID_SVXITEMS_SIZE_WIDTH.string.text
+msgid "Width: "
+msgstr "Width: "
+
+#: svxitems.src#RID_SVXITEMS_SIZE_HEIGHT.string.text
+msgid "Height: "
+msgstr "Height: "
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_LEFT.string.text
+msgid "Indent left "
+msgstr "Indent left "
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_FLINE.string.text
+msgid "First Line "
+msgstr "First Line "
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_RIGHT.string.text
+msgid "Indent right "
+msgstr "Indent right "
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_COMPLETE.string.text
+msgid "Shadow: "
+msgstr "Shadow: "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_COMPLETE.string.text
+msgid "Borders "
+msgstr "Borders "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_NONE.string.text
+msgid "No border"
+msgstr "No border"
+
+#: svxitems.src#RID_SVXITEMS_BORDER_TOP.string.text
+msgid "top "
+msgstr "top "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_BOTTOM.string.text
+msgid "bottom "
+msgstr "bottom "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_LEFT.string.text
+msgid "left "
+msgstr "left "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_RIGHT.string.text
+msgid "right "
+msgstr "right "
+
+#: svxitems.src#RID_SVXITEMS_BORDER_DISTANCE.string.text
+msgid "Spacing "
+msgstr "Spacing "
+
+#: svxitems.src#RID_SVXITEMS_ULSPACE_UPPER.string.text
+msgid "From top "
+msgstr "From top "
+
+#: svxitems.src#RID_SVXITEMS_ULSPACE_LOWER.string.text
+msgid "From bottom "
+msgstr "From bottom "
+
+#. pb: %1 == will be replaced by the number of lines
+#: svxitems.src#RID_SVXITEMS_LINES.string.text
+msgid "%1 Lines"
+msgstr "%1 Lines"
+
+#: svxitems.src#RID_SVXITEMS_WIDOWS_COMPLETE.string.text
+msgid "Widow control"
+msgstr "Widow control"
+
+#: svxitems.src#RID_SVXITEMS_ORPHANS_COMPLETE.string.text
+msgid "Orphan control"
+msgstr "Orphan control"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MINLEAD.string.text
+msgid "Characters at end of line"
+msgstr "Characters at end of line"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MINTRAIL.string.text
+msgid "Characters at beginning of line"
+msgstr "Characters at beginning of line"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MAX.string.text
+msgid "Hyphens"
+msgstr "Hyphens"
+
+#: svxitems.src#RID_SVXITEMS_PAGEMODEL_COMPLETE.string.text
+msgid "Page Style: "
+msgstr "Page Style: "
+
+#: svxitems.src#RID_SVXITEMS_KERNING_COMPLETE.string.text
+msgid "Kerning "
+msgstr "Kerning "
+
+#: svxitems.src#RID_SVXITEMS_KERNING_EXPANDED.string.text
+msgid "locked "
+msgstr "locked "
+
+#: svxitems.src#RID_SVXITEMS_KERNING_CONDENSED.string.text
+msgid "Condensed "
+msgstr "Condensed "
+
+#: svxitems.src#RID_SVXITEMS_GRAPHIC.string.text
+msgid "Graphic"
+msgstr "Graphic"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_NONE_STYLE.string.text
+msgid "none"
+msgstr "none"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_DOT_STYLE.string.text
+msgid "Dots "
+msgstr "Dots "
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_CIRCLE_STYLE.string.text
+msgid "Circle "
+msgstr "Circle "
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_DISC_STYLE.string.text
+msgid "Filled circle "
+msgstr "Filled circle "
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_ACCENT_STYLE.string.text
+msgid "Accent "
+msgstr "Accent "
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_ABOVE_POS.string.text
+msgid "Above"
+msgstr "Above"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_BELOW_POS.string.text
+msgid "Below"
+msgstr "Below"
+
+#: svxitems.src#RID_SVXITEMS_TWOLINES_OFF.string.text
+msgid "Double-lined off"
+msgstr "Double-lined off"
+
+#: svxitems.src#RID_SVXITEMS_TWOLINES.string.text
+msgid "Double-lined"
+msgstr "Double-lined"
+
+#: svxitems.src#RID_SVXITEMS_SCRPTSPC_OFF.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_SCRPTSPC_OFF.string.text"
+msgid "No automatic character spacing"
+msgstr "No automatic character spacing"
+
+#: svxitems.src#RID_SVXITEMS_SCRPTSPC_ON.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_SCRPTSPC_ON.string.text"
+msgid "No automatic character spacing"
+msgstr "No automatic character spacing"
+
+#: svxitems.src#RID_SVXITEMS_HNGPNCT_OFF.string.text
+msgid "No hanging punctuation at line end"
+msgstr "No hanging punctuation at line end"
+
+#: svxitems.src#RID_SVXITEMS_HNGPNCT_ON.string.text
+msgid "Hanging punctuation at line end"
+msgstr "Hanging punctuation at line end"
+
+#: svxitems.src#RID_SVXITEMS_FORBIDDEN_RULE_OFF.string.text
+msgid "Apply list of forbidden characters to beginning and end of lines"
+msgstr "Apply list of forbidden characters to beginning and end of lines"
+
+#: svxitems.src#RID_SVXITEMS_FORBIDDEN_RULE_ON.string.text
+msgid "Don't apply list of forbidden characters to beginning and end of lines"
+msgstr "Don't apply list of forbidden characters to beginning and end of lines"
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE_OFF.string.text
+msgid "No rotated characters"
+msgstr "No rotated characters"
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE.string.text
+msgid "Character rotated by $(ARG1)°"
+msgstr "Character rotated by $(ARG1)°"
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE_FITLINE.string.text
+msgid "Fit to line"
+msgstr "Fit to line"
+
+#: svxitems.src#RID_SVXITEMS_CHARSCALE.string.text
+msgid "Characters scaled $(ARG1)%"
+msgstr "Characters scaled $(ARG1)%"
+
+#: svxitems.src#RID_SVXITEMS_CHARSCALE_OFF.string.text
+msgid "No scaled characters"
+msgstr "No scaled characters"
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_NONE.string.text
+msgid "No relief"
+msgstr "No relief"
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_EMBOSSED.string.text
+msgid "Relief"
+msgstr "Relief"
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_ENGRAVED.string.text
+msgid "Engraved"
+msgstr "Engraved"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_AUTO.string.text
+msgid "Automatic text alignment"
+msgstr "Automatic text alignment"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_BASELINE.string.text
+msgid "Text aligned to base line"
+msgstr "Text aligned to base line"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_TOP.string.text
+msgid "Text aligned top"
+msgstr "Text aligned top"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_CENTER.string.text
+msgid "Text aligned middle"
+msgstr "Text aligned middle"
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_BOTTOM.string.text
+msgid "Text aligned bottom"
+msgstr "Text aligned bottom"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_HORI_LEFT_TOP.string.text
+msgid "Text direction left-to-right (horizontal)"
+msgstr "Text direction left-to-right (horizontal)"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_HORI_RIGHT_TOP.string.text
+msgid "Text direction right-to-left (horizontal)"
+msgstr "Text direction right-to-left (horizontal)"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT.string.text
+msgid "Text direction right-to-left (vertical)"
+msgstr "Text direction right-to-left (vertical)"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT.string.text
+msgid "Text direction left-to-right (vertical)"
+msgstr "Text direction left-to-right (vertical)"
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_ENVIRONMENT.string.text
+msgid "Use superordinate object text direction setting"
+msgstr "Use superordinate object text direction setting"
+
+#: svxitems.src#RID_SVXITEMS_PARASNAPTOGRID_ON.string.text
+msgid "Paragraph snaps to text grid (if active)"
+msgstr "Paragraph snaps to text grid (if active)"
+
+#: svxitems.src#RID_SVXITEMS_PARASNAPTOGRID_OFF.string.text
+msgid "Paragraph does not snap to text grid"
+msgstr "Paragraph does not snap to text grid"
+
+#: svxitems.src#RID_SVXITEMS_CHARHIDDEN_FALSE.string.text
+msgid "Not hidden"
+msgstr "Not hidden"
+
+#: svxitems.src#RID_SVXITEMS_CHARHIDDEN_TRUE.string.text
+msgid "Hidden"
+msgstr "Hidden"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_STANDARD.string.text
+msgid "Horizontal alignment default"
+msgstr "Horizontal alignment default"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text"
+msgid "Align left"
+msgstr "Align left"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_CENTER.string.text
+msgid "Centered horizontally"
+msgstr "Centred horizontally"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text"
+msgid "Align right"
+msgstr "Align right"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text"
+msgid "Justify"
+msgstr "Justify"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_REPEAT.string.text
+msgid "Repeat alignment"
+msgstr "Repeat alignment"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_STANDARD.string.text
+msgid "Vertical alignment default"
+msgstr "Vertical alignment default"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_TOP.string.text
+msgid "Align to top"
+msgstr "Align to top"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_CENTER.string.text
+msgid "Centered vertically"
+msgstr "Centred vertically"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_BOTTOM.string.text
+msgid "Align to bottom"
+msgstr "Align to bottom"
+
+#: svxitems.src#RID_SVXITEMS_JUSTMETHOD_AUTO.string.text
+msgid "Automatic"
+msgstr "Automatic"
+
+#: svxitems.src#RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE.string.text
+msgid "Distributed"
+msgstr ""
+
+#: page.src#RID_SVXSTR_PAPERBIN.string.text
+msgid "Paper tray"
+msgstr "Paper tray"
+
+#: page.src#RID_SVXSTR_PAPERBIN_SETTINGS.string.text
+msgid "[From printer settings]"
+msgstr "[From printer settings]"
diff --git a/source/en-ZA/editeng/source/misc.po b/source/en-ZA/editeng/source/misc.po
new file mode 100644
index 00000000000..0c8b90f9421
--- /dev/null
+++ b/source/en-ZA/editeng/source/misc.po
@@ -0,0 +1,48 @@
+#. extracted from editeng/source/misc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Fmisc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: lingu.src#RID_SVXQB_CONTINUE.querybox.text
+msgid "Continue checking at beginning of document?"
+msgstr "Continue checking at beginning of document?"
+
+#: lingu.src#RID_SVXQB_BW_CONTINUE.querybox.text
+msgid "Continue checking at end of document?"
+msgstr "Continue checking at end of document?"
+
+#: lingu.src#RID_SVXSTR_HMERR_THESAURUS.string.text
+msgid ""
+"No thesaurus is available for the selected language. \n"
+"Please check your installation and install the desired language\n"
+msgstr ""
+"No thesaurus is available for the selected language. \n"
+"Please check your installation and install the desired language\n"
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_UNKNOWN.string.text
+msgid ""
+"Word cannot be added to dictionary\n"
+"due to unknown reason."
+msgstr ""
+"Word cannot be added to dictionary\n"
+"due to unknown reason."
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_FULL.string.text
+msgid "The dictionary is already full."
+msgstr "The dictionary is already full."
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_READONLY.string.text
+msgid "The dictionary is read-only."
+msgstr "The dictionary is read-only."
diff --git a/source/en-ZA/editeng/source/outliner.po b/source/en-ZA/editeng/source/outliner.po
new file mode 100644
index 00000000000..877f8d73157
--- /dev/null
+++ b/source/en-ZA/editeng/source/outliner.po
@@ -0,0 +1,40 @@
+#. extracted from editeng/source/outliner.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+editeng%2Fsource%2Foutliner.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: outliner.src#RID_OUTLUNDO_HEIGHT.string.text
+msgid "Move"
+msgstr "Move"
+
+#: outliner.src#RID_OUTLUNDO_DEPTH.string.text
+msgid "Indent"
+msgstr "Indent"
+
+#: outliner.src#RID_OUTLUNDO_EXPAND.string.text
+msgid "Show subpoints"
+msgstr "Show subpoints"
+
+#: outliner.src#RID_OUTLUNDO_COLLAPSE.string.text
+msgid "Collapse"
+msgstr "Collapse"
+
+#: outliner.src#RID_OUTLUNDO_ATTR.string.text
+msgid "Apply attributes"
+msgstr "Apply attributes"
+
+#: outliner.src#RID_OUTLUNDO_INSERT.string.text
+msgid "Insert"
+msgstr "Insert"
diff --git a/source/en-ZA/extensions/source/abpilot.po b/source/en-ZA/extensions/source/abpilot.po
new file mode 100644
index 00000000000..723d0a9cfdd
--- /dev/null
+++ b/source/en-ZA/extensions/source/abpilot.po
@@ -0,0 +1,226 @@
+#. extracted from extensions/source/abpilot.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fabpilot.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_SELECT_ABTYPE.string.text
+msgid "Address book type"
+msgstr "Address book type"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_INVOKE_ADMIN_DIALOG.string.text
+msgid "Connection Settings"
+msgstr "Connection Settings"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_TABLE_SELECTION.string.text
+msgid "Table selection"
+msgstr "Table selection"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_MANUAL_FIELD_MAPPING.string.text
+msgctxt "abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_MANUAL_FIELD_MAPPING.string.text"
+msgid "Field Assignment"
+msgstr "Field Assignment"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_FINAL_CONFIRM.string.text
+msgid "Data Source Title"
+msgstr "Data Source Title"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.modaldialog.text
+msgid "Address Book Data Source Wizard"
+msgstr "Address Book Data Source Wizard"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.FT_TYPE_HINTS.fixedtext.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 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."
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.FL_TYPE.fixedline.text
+msgid "Please select the type of your external address book:"
+msgstr "Please select the type of your external address book:"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_EVOLUTION.radiobutton.text
+msgid "Evolution"
+msgstr "Evolution"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_EVOLUTION_GROUPWISE.radiobutton.text
+msgid "Groupwise"
+msgstr "Groupwise"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_EVOLUTION_LDAP.radiobutton.text
+msgid "Evolution LDAP"
+msgstr "Evolution LDAP"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_MORK.radiobutton.text
+msgid "Mozilla / Netscape"
+msgstr "Mozilla / Netscape"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_THUNDERBIRD.radiobutton.text
+msgid "Thunderbird/Icedove"
+msgstr ""
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_KAB.radiobutton.text
+msgid "KDE address book"
+msgstr "KDE address book"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_MACAB.radiobutton.text
+msgid "Mac OS X address book"
+msgstr "Mac OS X address book"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_LDAP.radiobutton.text
+msgid "LDAP address data"
+msgstr "LDAP address data"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OUTLOOK.radiobutton.text
+msgid "Outlook address book"
+msgstr "Outlook address book"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OUTLOOKEXPRESS.radiobutton.text
+msgid "Windows system address book"
+msgstr "Windows system address book"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OTHER.radiobutton.text
+msgid "Other external data source"
+msgstr "Other external data source"
+
+#: abspilot.src#RID_PAGE_ADMININVOKATION.FT_ADMINEXPLANATION.fixedtext.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 ""
+"To set up the new data source, additional information is required.\n"
+"\n"
+"Click the following button to open another dialogue in which you then enter the necessary information."
+
+#: abspilot.src#RID_PAGE_ADMININVOKATION.PB_INVOKE_ADMIN_DIALOG.pushbutton.text
+msgid "Settings"
+msgstr "Settings"
+
+#: abspilot.src#RID_PAGE_ADMININVOKATION.FT_ERROR.fixedtext.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 ""
+"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."
+
+#: abspilot.src#RID_PAGE_TABLESELECTION_AB.FL_TOOMUCHTABLES.fixedtext.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 ""
+"The external data source you have chosen contains more than one address book.\n"
+"Please select the one you mainly want to work with:"
+
+#: abspilot.src#RID_PAGE_FIELDMAPPING.FT_FIELDASSIGMENTEXPL.fixedtext.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 ""
+"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 dialogue where you can enter the settings for your data source."
+
+#: abspilot.src#RID_PAGE_FIELDMAPPING.PB_INVOKE_FIELDS_DIALOG.pushbutton.text
+msgctxt "abspilot.src#RID_PAGE_FIELDMAPPING.PB_INVOKE_FIELDS_DIALOG.pushbutton.text"
+msgid "Field Assignment"
+msgstr "Field Assignment"
+
+#: abspilot.src#RID_PAGE_FINAL.FT_FINISH_EXPL.fixedtext.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 ""
+"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."
+
+#: abspilot.src#RID_PAGE_FINAL.FT_LOCATION.fixedtext.text
+msgid "Location"
+msgstr "Location"
+
+#: abspilot.src#RID_PAGE_FINAL.PB_BROWSE.pushbutton.text
+msgid "Browse..."
+msgstr "Browse..."
+
+#: abspilot.src#RID_PAGE_FINAL.CB_REGISTER_DS.checkbox.text
+msgid "Make this address book available to all modules in %PRODUCTNAME."
+msgstr "Make this address book available to all modules in %PRODUCTNAME."
+
+#: abspilot.src#RID_PAGE_FINAL.FT_NAME_EXPL.fixedtext.text
+msgid "Address book name"
+msgstr "Address book name"
+
+#: abspilot.src#RID_PAGE_FINAL.FT_DUPLICATENAME.fixedtext.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 "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
+
+#: abspilot.src#RID_ERR_NEEDTYPESELECTION.errorbox.text
+msgid "Please select a type of address book."
+msgstr "Please select a type of address book."
+
+#: abspilot.src#RID_QRY_NOTABLES.querybox.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 ""
+"The data source does not contain any tables.\n"
+"Do you want to set it up as an address data source, anyway?"
+
+#: abspilot.src#RID_QRY_NO_EVO_GW.querybox.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 ""
+
+#: abspilot.src#RID_STR_DEFAULT_NAME.string.text
+msgid "Addresses"
+msgstr "Addresses"
+
+#: abspilot.src#RID_STR_ADMINDIALOGTITLE.string.text
+msgid "Create Address Data Source"
+msgstr "Create Address Data Source"
+
+#: abspilot.src#RID_STR_NOCONNECTION.string.text
+msgid "The connection could not be established."
+msgstr "The connection could not be established."
+
+#: abspilot.src#RID_STR_PLEASECHECKSETTINGS.string.text
+msgid "Please check the settings made for the data source."
+msgstr "Please check the settings made for the data source."
+
+#: abspilot.src#RID_STR_FIELDDIALOGTITLE.string.text
+msgid "Address Data - Field Assignment"
+msgstr "Address Data - Field Assignment"
+
+#: abspilot.src#RID_STR_NOFIELDSASSIGNED.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 ""
+"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...\""
diff --git a/source/en-ZA/extensions/source/bibliography.po b/source/en-ZA/extensions/source/bibliography.po
new file mode 100644
index 00000000000..ed89ceb658e
--- /dev/null
+++ b/source/en-ZA/extensions/source/bibliography.po
@@ -0,0 +1,315 @@
+#. extracted from extensions/source/bibliography.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fbibliography.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: bib.src#RID_BIB_STR_FIELDSELECTION.string.text
+msgid "Field selection:"
+msgstr "Field selection:"
+
+#: bib.src#RID_BIB_STR_TABWIN_PREFIX.string.text
+msgid "Table;Query;Sql;Sql [Native]"
+msgstr "Table;Query;Sql;Sql [Native]"
+
+#: bib.src#RID_BIB_STR_FRAME_TITLE.string.text
+msgid "Bibliography Database"
+msgstr "Bibliography Database"
+
+#: bib.src#RID_MAP_QUESTION.string.text
+msgid "Do you want to edit the column arrangement?"
+msgstr "Do you want to edit the column arrangement?"
+
+#: sections.src#RID_TP_GENERAL.ST_ERROR_PREFIX.string.text
+msgid "The following column names could not be assigned:\n"
+msgstr "The following column names could not be assigned:\n"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_ARTICLE.string.text
+msgid "Article"
+msgstr "Article"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_BOOK.string.text
+msgid "Book"
+msgstr "Book"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_BOOKLET.string.text
+msgid "Brochures"
+msgstr "Brochures"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CONFERENCE.string.text
+msgctxt "sections.src#RID_TP_GENERAL.ST_TYPE_CONFERENCE.string.text"
+msgid "Conference proceedings"
+msgstr "Conference proceedings"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INBOOK.string.text
+msgid "Book excerpt"
+msgstr "Book excerpt"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INCOLLECTION.string.text
+msgid "Book excerpt with title"
+msgstr "Book excerpt with title"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INPROCEEDINGS.string.text
+msgctxt "sections.src#RID_TP_GENERAL.ST_TYPE_INPROCEEDINGS.string.text"
+msgid "Conference proceedings"
+msgstr "Conference proceedings"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_JOURNAL.string.text
+msgid "Journal"
+msgstr "Journal"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MANUAL.string.text
+msgid "Techn. documentation"
+msgstr "Techn. documentation"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MASTERSTHESIS.string.text
+msgid "Thesis"
+msgstr "Thesis"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MISC.string.text
+msgid "Miscellaneous"
+msgstr "Miscellaneous"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_PHDTHESIS.string.text
+msgid "Dissertation"
+msgstr "Dissertation"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_PROCEEDINGS.string.text
+msgctxt "sections.src#RID_TP_GENERAL.ST_TYPE_PROCEEDINGS.string.text"
+msgid "Conference proceedings"
+msgstr "Conference proceedings"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_TECHREPORT.string.text
+msgid "Research report"
+msgstr "Research report"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_UNPUBLISHED.string.text
+msgid "Unpublished"
+msgstr "Unpublished"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_EMAIL.string.text
+msgid "e-mail"
+msgstr "e-mail"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_WWW.string.text
+msgid "WWW document"
+msgstr "WWW document"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM1.string.text
+msgid "User-defined1"
+msgstr "User-defined1"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM2.string.text
+msgid "User-defined2"
+msgstr "User-defined2"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM3.string.text
+msgid "User-defined3"
+msgstr "User-defined3"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM4.string.text
+msgid "User-defined4"
+msgstr "User-defined4"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM5.string.text
+msgid "User-defined5"
+msgstr "User-defined5"
+
+#: sections.src#RID_TP_GENERAL.tabpage.text
+msgid "General"
+msgstr "General"
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_INSERT.menuitem.text
+msgid "Insert Section..."
+msgstr "Insert Section..."
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_REMOVE.menuitem.text
+msgid "Delete Section..."
+msgstr "Delete Section..."
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_CHG_NAME.menuitem.text
+msgid "Modify Name..."
+msgstr "Modify Name..."
+
+#: sections.src#ST_IDENTIFIER.string.text
+msgid "~Short name"
+msgstr "~Short name"
+
+#: sections.src#ST_AUTHTYPE.string.text
+msgid "~Type"
+msgstr "~Type"
+
+#: sections.src#ST_YEAR.string.text
+msgid "~Year"
+msgstr "~Year"
+
+#: sections.src#ST_AUTHOR.string.text
+msgid "Author(s)"
+msgstr "Author(s)"
+
+#: sections.src#ST_TITLE.string.text
+msgid "Tit~le"
+msgstr "Tit~le"
+
+#: sections.src#ST_PUBLISHER.string.text
+msgid "~Publisher"
+msgstr "~Publisher"
+
+#: sections.src#ST_ADDRESS.string.text
+msgid "A~ddress"
+msgstr "A~ddress"
+
+#: sections.src#ST_ISBN.string.text
+msgid "~ISBN"
+msgstr "~ISBN"
+
+#: sections.src#ST_CHAPTER.string.text
+msgid "~Chapter"
+msgstr "~Chapter"
+
+#: sections.src#ST_PAGE.string.text
+msgid "Pa~ge(s)"
+msgstr "Pa~ge(s)"
+
+#: sections.src#ST_EDITOR.string.text
+msgid "Editor"
+msgstr "Editor"
+
+#: sections.src#ST_EDITION.string.text
+msgid "Ed~ition"
+msgstr "Ed~ition"
+
+#: sections.src#ST_BOOKTITLE.string.text
+msgid "~Book title"
+msgstr "~Book title"
+
+#: sections.src#ST_VOLUME.string.text
+msgid "Volume"
+msgstr "Volume"
+
+#: sections.src#ST_HOWPUBLISHED.string.text
+msgid "Publication t~ype"
+msgstr "Publication t~ype"
+
+#: sections.src#ST_ORGANIZATION.string.text
+msgid "Organi~zation"
+msgstr "Organi~sation"
+
+#: sections.src#ST_INSTITUTION.string.text
+msgid "Instit~ution"
+msgstr "Instit~ution"
+
+#: sections.src#ST_SCHOOL.string.text
+msgid "University"
+msgstr "University"
+
+#: sections.src#ST_REPORT.string.text
+msgid "Type of re~port"
+msgstr "Type of re~port"
+
+#: sections.src#ST_MONTH.string.text
+msgid "~Month"
+msgstr "~Month"
+
+#: sections.src#ST_JOURNAL.string.text
+msgid "~Journal"
+msgstr "~Journal"
+
+#: sections.src#ST_NUMBER.string.text
+msgid "Numb~er"
+msgstr "Numb~er"
+
+#: sections.src#ST_SERIES.string.text
+msgid "Se~ries"
+msgstr "Se~ries"
+
+#: sections.src#ST_ANNOTE.string.text
+msgid "Ann~otation"
+msgstr "Ann~otation"
+
+#: sections.src#ST_NOTE.string.text
+msgid "~Note"
+msgstr "~Note"
+
+#: sections.src#ST_URL.string.text
+msgid "URL"
+msgstr "URL"
+
+#: sections.src#ST_CUSTOM1.string.text
+msgid "User-defined field ~1"
+msgstr "User-defined field ~1"
+
+#: sections.src#ST_CUSTOM2.string.text
+msgid "User-defined field ~2"
+msgstr "User-defined field ~2"
+
+#: sections.src#ST_CUSTOM3.string.text
+msgid "User-defined field ~3"
+msgstr "User-defined field ~3"
+
+#: sections.src#ST_CUSTOM4.string.text
+msgid "User-defined field ~4"
+msgstr "User-defined field ~4"
+
+#: sections.src#ST_CUSTOM5.string.text
+msgid "User-defined field ~5"
+msgstr "User-defined field ~5"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_FT_SOURCE.toolboxitem.text
+msgid "Table"
+msgstr "Table"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_FT_QUERY.toolboxitem.text
+msgid "Search Key"
+msgstr "Search Key"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_AUTOFILTER.toolboxitem.text
+msgid "AutoFilter"
+msgstr "AutoFilter"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_FILTERCRIT.toolboxitem.text
+msgid "Standard Filter"
+msgstr "Standard Filter"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_REMOVEFILTER.toolboxitem.text
+msgid "Remove Filter"
+msgstr "Remove Filter"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_COL_ASSIGN.toolboxitem.text
+msgid "Column Arrangement"
+msgstr "Column Arrangement"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_CHANGESOURCE.toolboxitem.text
+msgid "Data Source"
+msgstr "Data Source"
+
+#: datman.src#RID_DLG_MAPPING.GB_MAPPING.fixedline.text
+msgid "Column names"
+msgstr "Column names"
+
+#: datman.src#RID_DLG_MAPPING.ST_NONE.string.text
+msgid "<none>"
+msgstr "<none>"
+
+#: datman.src#RID_DLG_MAPPING.modaldialog.text
+msgid "Column Layout for Table %1"
+msgstr "Column Layout for Table %1"
+
+#: datman.src#RID_DLG_DBCHANGE.ST_ENTRY.string.text
+msgid "Entry"
+msgstr "Entry"
+
+#: datman.src#RID_DLG_DBCHANGE.modaldialog.text
+msgid "Choose Data Source"
+msgstr "Choose Data Source"
diff --git a/source/en-ZA/extensions/source/dbpilots.po b/source/en-ZA/extensions/source/dbpilots.po
new file mode 100644
index 00000000000..c3ed64ac0ef
--- /dev/null
+++ b/source/en-ZA/extensions/source/dbpilots.po
@@ -0,0 +1,269 @@
+#. extracted from extensions/source/dbpilots.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fdbpilots.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-19 20:11+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbpilots.src#RID_DLG_GROUPBOXWIZARD.modaldialog.text
+msgid "Group Element Wizard"
+msgstr "Group Element Wizard"
+
+#: dbpilots.src#RID_DLG_GRIDWIZARD.modaldialog.text
+msgid "Table Element Wizard"
+msgstr "Table Element Wizard"
+
+#: dbpilots.src#RID_STR_LISTWIZARD_TITLE.string.text
+msgid "List Box Wizard"
+msgstr "List Box Wizard"
+
+#: dbpilots.src#RID_STR_COMBOWIZARD_TITLE.string.text
+msgid "Combo Box Wizard"
+msgstr "Combo Box Wizard"
+
+#: dbpilots.src#RID_STR_COULDNOTOPENTABLE.string.text
+msgid "The table connection to the data source could not be established."
+msgstr "The table connection to the data source could not be established."
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOLABELS.fixedtext.text
+msgid "Which ~names do you want to give the option fields?"
+msgstr "Which ~names do you want to give the option fields?"
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOBUTTONS.fixedtext.text
+msgctxt "groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOBUTTONS.fixedtext.text"
+msgid "~Option fields"
+msgstr "~Option fields"
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.tabpage.text
+msgctxt "groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.tabpage.text"
+msgid "Data"
+msgstr "Data"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.FT_DEFAULTSELECTION.fixedtext.text
+msgid "Should one option field be selected as a default?"
+msgstr "Should one option field be selected as a default?"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.RB_DEFSELECTION_YES.radiobutton.text
+msgid "~Yes, the following:"
+msgstr "~Yes, the following:"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.RB_DEFSELECTION_NO.radiobutton.text
+msgid "No, one particular field is not going to be selected."
+msgstr "No, one particular field is not going to be selected."
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.tabpage.text
+msgid "Default Field Selection"
+msgstr "Default Field Selection"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_OPTIONVALUES_EXPL.fixedtext.text
+msgid "When you select an option, the option group is given a specific value."
+msgstr "When you select an option, the option group is given a specific value."
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_OPTIONVALUES.fixedtext.text
+msgid "Which ~value do you want to assign to each option?"
+msgstr "Which ~value do you want to assign to each option?"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_RADIOBUTTONS.fixedtext.text
+msgctxt "groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_RADIOBUTTONS.fixedtext.text"
+msgid "~Option fields"
+msgstr "~Option fields"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.tabpage.text
+msgid "Field Values"
+msgstr "Field Values"
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.FT_NAMEIT.fixedtext.text
+msgid "Which ~caption is to be given to your option group?"
+msgstr "Which ~caption is to be given to your option group?"
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.FT_THATSALL.fixedtext.text
+msgid "These were all details needed to create the option group."
+msgstr "These were all details needed to create the option group."
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.tabpage.text
+msgid "Create Option Group"
+msgstr "Create Option Group"
+
+#: groupboxpages.src#RID_STR_GROUPWIZ_DBFIELD.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 "You can either save the value of the option group in a database field or use it for a later action."
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FL_FRAME.fixedline.text
+msgid "Table element"
+msgstr "Table element"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FT_EXISTING_FIELDS.fixedtext.text
+msgctxt "gridpages.src#RID_PAGE_GW_FIELDSELECTION.FT_EXISTING_FIELDS.fixedtext.text"
+msgid "Existing fields"
+msgstr "Existing fields"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FT_SELECTED_FIELDS.fixedtext.text
+msgid "Selected fields"
+msgstr "Selected fields"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.tabpage.text
+msgctxt "gridpages.src#RID_PAGE_GW_FIELDSELECTION.tabpage.text"
+msgid "Field Selection"
+msgstr "Field Selection"
+
+#: gridpages.src#RID_STR_DATEPOSTFIX.string.text
+msgid " (Date)"
+msgstr " (Date)"
+
+#: gridpages.src#RID_STR_TIMEPOSTFIX.string.text
+msgid " (Time)"
+msgstr " (Time)"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FL_DATA.fixedline.text
+msgctxt "commonpagesdbp.src#RID_PAGE_TABLESELECTION.FL_DATA.fixedline.text"
+msgid "Data"
+msgstr "Data"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_EXPLANATION.fixedtext.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 ""
+"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."
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_DATASOURCE.fixedtext.text
+msgid "~Data source:"
+msgstr "~Data source:"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.PB_FORMDATASOURCE.pushbutton.text
+msgid "~..."
+msgstr "~..."
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_TABLE.fixedtext.text
+msgid "~Table / Query:"
+msgstr "~Table / Query:"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.tabpage.text
+msgctxt "commonpagesdbp.src#RID_PAGE_TABLESELECTION.tabpage.text"
+msgid "Data"
+msgstr "Data"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.FT_DATABASEFIELD_QUEST.fixedtext.text
+msgid "Do you want to save the value in a database field?"
+msgstr "Do you want to save the value in a database field?"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.RB_STOREINFIELD_YES.radiobutton.text
+msgid "~Yes, I want to save it in the following database field:"
+msgstr "~Yes, I want to save it in the following database field:"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.RB_STOREINFIELD_NO.radiobutton.text
+msgid "~No, I only want to save the value in the form."
+msgstr "~No, I only want to save the value in the form."
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.tabpage.text
+msgid "Database Field"
+msgstr "Database Field"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FL_FORMSETINGS.fixedline.text
+msgid "Form"
+msgstr "Form"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMDATASOURCELABEL.fixedtext.text
+msgid "Data source"
+msgstr "Data source"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMCONTENTTYPELABEL.fixedtext.text
+msgid "Content type"
+msgstr "Content type"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMTABLELABEL.fixedtext.text
+msgid "Content"
+msgstr "Content"
+
+#: commonpagesdbp.src#RID_STR_TYPE_TABLE.string.text
+msgid "Table"
+msgstr "Table"
+
+#: commonpagesdbp.src#RID_STR_TYPE_QUERY.string.text
+msgid "Query"
+msgstr "Query"
+
+#: commonpagesdbp.src#RID_STR_TYPE_COMMAND.string.text
+msgid "SQL command"
+msgstr "SQL command"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.FL_FRAME.fixedline.text
+msgid "Control"
+msgstr "Control"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.FT_SELECTTABLE_LABEL.fixedtext.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 ""
+"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:"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.tabpage.text
+msgid "Table Selection"
+msgstr "Table Selection"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.FT_TABLEFIELDS.fixedtext.text
+msgctxt "listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.FT_TABLEFIELDS.fixedtext.text"
+msgid "Existing fields"
+msgstr "Existing fields"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.FT_DISPLAYEDFIELD.fixedtext.text
+msgid "Display field"
+msgstr "Display field"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.STR_FIELDINFO_COMBOBOX.string.text
+msgid "The contents of the field selected will be shown in the combo box list."
+msgstr "The contents of the field selected will be shown in the combo box list."
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.STR_FIELDINFO_LISTBOX.string.text
+msgid "The contents of the selected field will be shown in the list box if the linked fields are identical."
+msgstr "The contents of the selected field will be shown in the list box if the linked fields are identical."
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.tabpage.text
+msgctxt "listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.tabpage.text"
+msgid "Field Selection"
+msgstr "Field Selection"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_FIELDLINK_DESC.fixedtext.text
+msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
+msgstr "This is where you select fields with matching contents so that the value from the display field will be shown."
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_VALUELISTFIELD.fixedtext.text
+msgid "Field from the ~Value Table"
+msgstr "Field from the ~Value Table"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_TABLEFIELD.fixedtext.text
+msgid "Field from the ~List Table"
+msgstr "Field from the ~List Table"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.tabpage.text
+msgid "Field Link"
+msgstr "Field Link"
+
+#: listcombopages.src#RID_STR_COMBOWIZ_DBFIELD.string.text
+msgid "You can either save the value of the combo box in a database field or use it for display purposes."
+msgstr "You can either save the value of the combo box in a database field or use it for display purposes."
diff --git a/source/en-ZA/extensions/source/propctrlr.po b/source/en-ZA/extensions/source/propctrlr.po
new file mode 100644
index 00000000000..650d054fb9f
--- /dev/null
+++ b/source/en-ZA/extensions/source/propctrlr.po
@@ -0,0 +1,1583 @@
+#. extracted from extensions/source/propctrlr.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fpropctrlr.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-19 19:49+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: propres.src#RID_STR_STANDARD.string.text
+msgctxt "propres.src#RID_STR_STANDARD.string.text"
+msgid "Default"
+msgstr "Default"
+
+#: propres.src#RID_STR_PROPPAGE_DEFAULT.string.text
+msgid "General"
+msgstr "General"
+
+#: propres.src#RID_STR_PROPPAGE_DATA.string.text
+msgid "Data"
+msgstr "Data"
+
+#: propres.src#RID_RSC_ENUM_YESNO.1.string.text
+msgctxt "propres.src#RID_RSC_ENUM_YESNO.1.string.text"
+msgid "No"
+msgstr "No"
+
+#: propres.src#RID_RSC_ENUM_YESNO.2.string.text
+msgctxt "propres.src#RID_RSC_ENUM_YESNO.2.string.text"
+msgid "Yes"
+msgstr "Yes"
+
+#: propres.src#RID_STR_HELP_SECTION_LABEL.string.text
+msgctxt "propres.src#RID_STR_HELP_SECTION_LABEL.string.text"
+msgid "Help"
+msgstr "Help"
+
+#: propres.src#RID_EMBED_IMAGE_PLACEHOLDER.string.text
+msgid "<Embedded-Image>"
+msgstr "<Embedded-Image>"
+
+#: propres.src#RID_STR_TEXT_FORMAT.string.text
+msgctxt "propres.src#RID_STR_TEXT_FORMAT.string.text"
+msgid "Text"
+msgstr "Text"
+
+#: newdatatype.src#RID_DLG_NEW_DATA_TYPE.FT_LABEL.fixedtext.text
+msgid "Type a name for the new data type:"
+msgstr "Type a name for the new data type:"
+
+#: newdatatype.src#RID_DLG_NEW_DATA_TYPE.modaldialog.text
+msgid "New Data Type"
+msgstr "New Data Type"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS.pageitem.text
+msgctxt "fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS.pageitem.text"
+msgid "Font"
+msgstr "Font"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS_EXT.pageitem.text
+msgid "Font Effects"
+msgstr "Font Effects"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.tabdialog.text
+msgid "Character"
+msgstr "Character"
+
+#: taborder.src#RID_DLG_TABORDER.FT_CONTROLS.fixedtext.text
+msgid "Controls"
+msgstr "Controls"
+
+#: taborder.src#RID_DLG_TABORDER.PB_MOVE_UP.pushbutton.text
+msgid "Move Up"
+msgstr "Move Up"
+
+#: taborder.src#RID_DLG_TABORDER.PB_MOVE_DOWN.pushbutton.text
+msgid "Move Down"
+msgstr "Move Down"
+
+#: taborder.src#RID_DLG_TABORDER.PB_AUTO_ORDER.pushbutton.text
+msgid "Automatic Sort"
+msgstr "Automatic Sort"
+
+#: taborder.src#RID_DLG_TABORDER.modaldialog.text
+msgid "Tab Order"
+msgstr "Tab Order"
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.1.fixedtext.text
+msgid "These are control fields that can be used as label fields for the $control_class$ $control_name$."
+msgstr "These are control fields that can be used as label fields for the $control_class$ $control_name$."
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.1.checkbox.text
+msgid "~No assignment"
+msgstr "~No assignment"
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.modaldialog.text
+msgid "Label Field Selection"
+msgstr "Label Field Selection"
+
+#: selectlabeldialog.src#RID_STR_FORMS.string.text
+msgid "Forms"
+msgstr "Forms"
+
+#: pcrmiscres.src#RID_STR_CONFIRM_DELETE_DATA_TYPE.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 ""
+"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."
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_PUSHBUTTON.string.text
+msgid "Button"
+msgstr "Button"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_RADIOBUTTON.string.text
+msgid "Option Button"
+msgstr "Option Button"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_CHECKBOX.string.text
+msgid "Check Box"
+msgstr "Tick Box"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FIXEDTEXT.string.text
+msgctxt "pcrmiscres.src#RID_STR_PROPTITLE_FIXEDTEXT.string.text"
+msgid "Label Field"
+msgstr "Label Field"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_GROUPBOX.string.text
+msgid "Group Box"
+msgstr "Group Box"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_EDIT.string.text
+msgid "Text Box"
+msgstr "Text Box"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FORMATTED.string.text
+msgid "Formatted Field"
+msgstr "Formatted Field"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_LISTBOX.string.text
+msgid "List Box"
+msgstr "List Box"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_COMBOBOX.string.text
+msgid "Combo Box"
+msgstr "Combo Box"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_IMAGEBUTTON.string.text
+msgid "Image Button"
+msgstr "Image Button"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_HIDDENCONTROL.string.text
+msgid "Hidden Control"
+msgstr "Hidden Control"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_UNKNOWNCONTROL.string.text
+msgid "Control (unknown type)"
+msgstr "Control (unknown type)"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_IMAGECONTROL.string.text
+msgid "Image Control"
+msgstr "Image Control"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FILECONTROL.string.text
+msgid "File Selection"
+msgstr "File Selection"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_DATEFIELD.string.text
+msgid "Date Field"
+msgstr "Date Field"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_TIMEFIELD.string.text
+msgid "Time Field"
+msgstr "Time Field"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_NUMERICFIELD.string.text
+msgid "Numeric Field"
+msgstr "Numeric Field"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_CURRENCYFIELD.string.text
+msgid "Currency Field"
+msgstr "Currency Field"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_PATTERNFIELD.string.text
+msgid "Pattern Field"
+msgstr "Pattern Field"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_DBGRID.string.text
+msgid "Table Control "
+msgstr "Table Control "
+
+#: formlinkdialog.src#RID_DLG_FORMLINKS.FT_EXPLANATION.fixedtext.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 "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."
+
+#: formlinkdialog.src#RID_DLG_FORMLINKS.modaldialog.text
+msgid "Link fields"
+msgstr "Link fields"
+
+#: formlinkdialog.src#PB_SUGGEST.pushbutton.text
+msgid "Suggest"
+msgstr "Suggest"
+
+#: formlinkdialog.src#STR_DETAIL_FORM.string.text
+msgid "Sub Form"
+msgstr "Sub Form"
+
+#: formlinkdialog.src#STR_MASTER_FORM.string.text
+msgid "Master Form"
+msgstr "Master Form"
+
+#. # will be replace with a name.
+#: formlinkdialog.src#STR_ERROR_RETRIEVING_COLUMNS.string.text
+msgid "The columns of '#' could not be retrieved."
+msgstr "The columns of '#' could not be retrieved."
+
+#: formres.src#RID_STR_EDITMASK.string.text
+msgid "Edit mask"
+msgstr "Edit mask"
+
+#: formres.src#RID_STR_LITERALMASK.string.text
+msgid "Literal mask"
+msgstr "Literal mask"
+
+#: formres.src#RID_STR_READONLY.string.text
+msgctxt "formres.src#RID_STR_READONLY.string.text"
+msgid "Read-only"
+msgstr "Read-only"
+
+#: formres.src#RID_STR_ENABLED.string.text
+msgid "Enabled"
+msgstr "Enabled"
+
+#: formres.src#RID_STR_ENABLE_VISIBLE.string.text
+msgid "Visible"
+msgstr "Visible"
+
+#: formres.src#RID_STR_AUTOCOMPLETE.string.text
+msgid "AutoFill"
+msgstr "AutoFill"
+
+#: formres.src#RID_STR_LINECOUNT.string.text
+msgid "Line count"
+msgstr "Line count"
+
+#: formres.src#RID_STR_MAXTEXTLEN.string.text
+msgid "Max. text length"
+msgstr "Maximum text length"
+
+#: formres.src#RID_STR_SPIN.string.text
+msgid "Spin Button"
+msgstr "Spin Button"
+
+#: formres.src#RID_STR_STRICTFORMAT.string.text
+msgid "Strict format"
+msgstr "Strict format"
+
+#: formres.src#RID_STR_SHOWTHOUSANDSEP.string.text
+msgid "Thousands separator"
+msgstr "Thousands separator"
+
+#: formres.src#RID_STR_PRINTABLE.string.text
+msgid "Printable"
+msgstr "Printable"
+
+#: formres.src#RID_STR_TARGET_URL.string.text
+msgctxt "formres.src#RID_STR_TARGET_URL.string.text"
+msgid "URL"
+msgstr "URL"
+
+#: formres.src#RID_STR_TARGET_FRAME.string.text
+msgctxt "formres.src#RID_STR_TARGET_FRAME.string.text"
+msgid "Frame"
+msgstr "Frame"
+
+#: formres.src#RID_STR_HELPTEXT.string.text
+msgid "Help text"
+msgstr "Help text"
+
+#: formres.src#RID_STR_HELPURL.string.text
+msgid "Help URL"
+msgstr "Help URL"
+
+#: formres.src#RID_STR_TAG.string.text
+msgid "Additional information"
+msgstr "Additional information"
+
+#: formres.src#RID_STR_ECHO_CHAR.string.text
+msgid "Password character"
+msgstr "Password character"
+
+#: formres.src#RID_STR_TRISTATE.string.text
+msgid "Tristate"
+msgstr "Tristate"
+
+#: formres.src#RID_STR_EMPTY_IS_NULL.string.text
+msgid "Empty string is NULL"
+msgstr "Empty string is NULL"
+
+#: formres.src#RID_STR_DECIMAL_ACCURACY.string.text
+msgid "Decimal accuracy"
+msgstr "Decimal accuracy"
+
+#: formres.src#RID_STR_IMAGE_URL.string.text
+msgid "Graphics"
+msgstr "Graphics"
+
+#: formres.src#RID_STR_DEFAULT_SELECT_SEQ.string.text
+msgid "Default selection"
+msgstr "Default selection"
+
+#: formres.src#RID_STR_DEFAULT_BUTTON.string.text
+msgid "Default button"
+msgstr "Default button"
+
+#: formres.src#RID_STR_LABELCONTROL.string.text
+msgctxt "formres.src#RID_STR_LABELCONTROL.string.text"
+msgid "Label Field"
+msgstr "Label Field"
+
+#: formres.src#RID_STR_LABEL.string.text
+msgid "Label"
+msgstr "Label"
+
+#: formres.src#RID_STR_ALIGN.string.text
+msgid "Alignment"
+msgstr "Alignment"
+
+#: formres.src#RID_STR_VERTICAL_ALIGN.string.text
+msgid "Vert. Alignment"
+msgstr "Vert. Alignment"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.1.string.text
+msgid "Top"
+msgstr "Top"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.2.string.text
+msgid "Middle"
+msgstr "Middle"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.3.string.text
+msgid "Bottom"
+msgstr "Bottom"
+
+#: formres.src#RID_STR_IMAGEPOSITION.string.text
+msgid "Graphics alignment"
+msgstr "Graphics alignment"
+
+#: formres.src#RID_STR_FONT.string.text
+msgctxt "formres.src#RID_STR_FONT.string.text"
+msgid "Font"
+msgstr "Font"
+
+#: formres.src#RID_STR_BACKGROUNDCOLOR.string.text
+msgid "Background color"
+msgstr "Background colour"
+
+#: formres.src#RID_STR_BORDER.string.text
+msgid "Border"
+msgstr "Border"
+
+#: formres.src#RID_STR_ICONSIZE.string.text
+msgid "Icon size"
+msgstr "Icon size"
+
+#: formres.src#RID_RSC_ENUM_ICONSIZE_TYPE.1.string.text
+msgid "Small"
+msgstr "Small"
+
+#: formres.src#RID_RSC_ENUM_ICONSIZE_TYPE.2.string.text
+msgid "Large"
+msgstr "Large"
+
+#: formres.src#RID_STR_SHOW_POSITION.string.text
+msgid "Positioning"
+msgstr "Positioning"
+
+#: formres.src#RID_STR_SHOW_NAVIGATION.string.text
+msgid "Navigation"
+msgstr "Navigation"
+
+#: formres.src#RID_STR_SHOW_RECORDACTIONS.string.text
+msgid "Acting on a record"
+msgstr "Acting on a record"
+
+#: formres.src#RID_STR_SHOW_FILTERSORT.string.text
+msgid "Filtering / Sorting"
+msgstr "Filtering / Sorting"
+
+#: formres.src#RID_STR_HSCROLL.string.text
+msgid "Horizontal scroll bar"
+msgstr "Horizontal scroll bar"
+
+#: formres.src#RID_STR_VSCROLL.string.text
+msgid "Vertical scroll bar"
+msgstr "Vertical scroll bar"
+
+#: formres.src#RID_STR_WORDBREAK.string.text
+msgid "Word break"
+msgstr "Word break"
+
+#: formres.src#RID_STR_MULTILINE.string.text
+msgid "Multiline input"
+msgstr "Multiline input"
+
+#: formres.src#RID_STR_MULTISELECTION.string.text
+msgid "Multiselection"
+msgstr "Multiselection"
+
+#: formres.src#RID_STR_NAME.string.text
+msgid "Name"
+msgstr "Name"
+
+#: formres.src#RID_STR_GROUP_NAME.string.text
+msgid "Group name"
+msgstr "Group name"
+
+#: formres.src#RID_STR_TABINDEX.string.text
+msgid "Tab order"
+msgstr "Tab order"
+
+#: formres.src#RID_STR_WHEEL_BEHAVIOR.string.text
+msgid "Mouse wheel scroll"
+msgstr "Mouse wheel scroll"
+
+#: formres.src#RID_STR_FILTER.string.text
+msgid "Filter"
+msgstr "Filter"
+
+#: formres.src#RID_STR_SORT_CRITERIA.string.text
+msgid "Sort"
+msgstr "Sort"
+
+#: formres.src#RID_STR_RECORDMARKER.string.text
+msgid "Record marker"
+msgstr "Record marker"
+
+#: formres.src#RID_STR_FILTERPROPOSAL.string.text
+msgid "Filter proposal"
+msgstr "Filter proposal"
+
+#: formres.src#RID_STR_NAVIGATION.string.text
+msgid "Navigation bar"
+msgstr "Navigation bar"
+
+#: formres.src#RID_STR_CYCLE.string.text
+msgid "Cycle"
+msgstr "Cycle"
+
+#: formres.src#RID_STR_TABSTOP.string.text
+msgid "Tabstop"
+msgstr "Tabstop"
+
+#: formres.src#RID_STR_CONTROLSOURCE.string.text
+msgid "Data field"
+msgstr "Data field"
+
+#: formres.src#RID_STR_DROPDOWN.string.text
+msgid "Dropdown"
+msgstr "Dropdown"
+
+#: formres.src#RID_STR_BOUNDCOLUMN.string.text
+msgid "Bound field"
+msgstr "Bound field"
+
+#: formres.src#RID_STR_LISTSOURCE.string.text
+msgid "List content"
+msgstr "List content"
+
+#: formres.src#RID_STR_LISTSOURCETYPE.string.text
+msgid "Type of list contents"
+msgstr "Type of list contents"
+
+#: formres.src#RID_STR_CURSORSOURCE.string.text
+msgid "Content"
+msgstr "Content"
+
+#: formres.src#RID_STR_CURSORSOURCETYPE.string.text
+msgid "Content type"
+msgstr "Content type"
+
+#: formres.src#RID_STR_ALLOW_ADDITIONS.string.text
+msgid "Allow additions"
+msgstr "Allow additions"
+
+#: formres.src#RID_STR_ALLOW_DELETIONS.string.text
+msgid "Allow deletions"
+msgstr "Allow deletions"
+
+#: formres.src#RID_STR_ALLOW_EDITS.string.text
+msgid "Allow modifications"
+msgstr "Allow modifications"
+
+#: formres.src#RID_STR_DATAENTRY.string.text
+msgid "Add data only"
+msgstr "Add data only"
+
+#: formres.src#RID_STR_DATASOURCE.string.text
+msgid "Data source"
+msgstr "Data source"
+
+#: formres.src#RID_STR_MASTERFIELDS.string.text
+msgid "Link master fields"
+msgstr "Link master fields"
+
+#: formres.src#RID_STR_SLAVEFIELDS.string.text
+msgid "Link slave fields"
+msgstr "Link slave fields"
+
+#: formres.src#RID_STR_VALUEMIN.string.text
+msgid "Value min."
+msgstr "Value minimum"
+
+#: formres.src#RID_STR_VALUEMAX.string.text
+msgid "Value max."
+msgstr "Value maximum"
+
+#: formres.src#RID_STR_VALUESTEP.string.text
+msgid "Incr./decrement value"
+msgstr "Incr./decrement value"
+
+#: formres.src#RID_STR_CURRENCYSYMBOL.string.text
+msgid "Currency symbol"
+msgstr "Currency symbol"
+
+#: formres.src#RID_STR_DATEMIN.string.text
+msgid "Date min."
+msgstr "Date minimum"
+
+#: formres.src#RID_STR_DATEMAX.string.text
+msgid "Date max."
+msgstr "Date maximum"
+
+#: formres.src#RID_STR_DATEFORMAT.string.text
+msgid "Date format"
+msgstr "Date format"
+
+#: formres.src#RID_STR_SELECTEDITEMS.string.text
+msgid "Selection"
+msgstr "Selection"
+
+#: formres.src#RID_STR_TIMEMIN.string.text
+msgid "Time min."
+msgstr "Time minimum"
+
+#: formres.src#RID_STR_TIMEMAX.string.text
+msgid "Time max."
+msgstr "Time maximum"
+
+#: formres.src#RID_STR_TIMEFORMAT.string.text
+msgid "Time format"
+msgstr "Time format"
+
+#: formres.src#RID_STR_CURRSYM_POSITION.string.text
+msgid "Prefix symbol"
+msgstr "Prefix symbol"
+
+#: formres.src#RID_STR_VALUE.string.text
+msgid "Value"
+msgstr "Value"
+
+#: formres.src#RID_STR_FORMATKEY.string.text
+msgid "Formatting"
+msgstr "Formatting"
+
+#: formres.src#RID_STR_CLASSID.string.text
+msgid "Class ID"
+msgstr "Class ID"
+
+#: formres.src#RID_STR_HEIGHT.string.text
+msgid "Height"
+msgstr "Height"
+
+#: formres.src#RID_STR_WIDTH.string.text
+msgid "Width"
+msgstr "Width"
+
+#: formres.src#RID_STR_LISTINDEX.string.text
+msgid "List index"
+msgstr "List index"
+
+#: formres.src#RID_STR_ROWHEIGHT.string.text
+msgid "Row height"
+msgstr "Row height"
+
+#: formres.src#RID_STR_FILLCOLOR.string.text
+msgid "Fill color"
+msgstr "Fill colour"
+
+#: formres.src#RID_STR_LINECOLOR.string.text
+msgid "Line color"
+msgstr "Line colour"
+
+#: formres.src#RID_STR_REFVALUE.string.text
+msgid "Reference value (on)"
+msgstr "Reference value (on)"
+
+#: formres.src#RID_STR_UNCHECKEDREFVALUE.string.text
+msgid "Reference value (off)"
+msgstr "Reference value (off)"
+
+#: formres.src#RID_STR_STRINGITEMLIST.string.text
+msgid "List entries"
+msgstr "List entries"
+
+#: formres.src#RID_STR_BUTTONTYPE.string.text
+msgid "Action"
+msgstr "Action"
+
+#: formres.src#RID_STR_SUBMIT_ACTION.string.text
+msgctxt "formres.src#RID_STR_SUBMIT_ACTION.string.text"
+msgid "URL"
+msgstr "URL"
+
+#: formres.src#RID_STR_SUBMIT_METHOD.string.text
+msgid "Type of submission"
+msgstr "Type of submission"
+
+#: formres.src#RID_STR_DEFAULT_STATE.string.text
+msgid "Default status"
+msgstr "Default status"
+
+#: formres.src#RID_STR_SUBMIT_ENCODING.string.text
+msgid "Submission encoding"
+msgstr "Submission encoding"
+
+#: formres.src#RID_STR_DEFAULTVALUE.string.text
+msgid "Default value"
+msgstr "Default value"
+
+#: formres.src#RID_STR_DEFAULTTEXT.string.text
+msgid "Default text"
+msgstr "Default text"
+
+#: formres.src#RID_STR_DEFAULTDATE.string.text
+msgid "Default date"
+msgstr "Default date"
+
+#: formres.src#RID_STR_DEFAULTTIME.string.text
+msgid "Default time"
+msgstr "Default time"
+
+#: formres.src#RID_STR_SUBMIT_TARGET.string.text
+msgctxt "formres.src#RID_STR_SUBMIT_TARGET.string.text"
+msgid "Frame"
+msgstr "Frame"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.1.string.text
+msgid "Without frame"
+msgstr "Without frame"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.2.string.text
+msgid "3D look"
+msgstr "3D look"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_BORDER_TYPE.3.string.text"
+msgid "Flat"
+msgstr "Flat"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.1.string.text
+msgid "Valuelist"
+msgstr "Valuelist"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.2.string.text"
+msgid "Table"
+msgstr "Table"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.3.string.text"
+msgid "Query"
+msgstr "Query"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.4.string.text
+msgid "Sql"
+msgstr "Sql"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.5.string.text
+msgid "Sql [Native]"
+msgstr "Sql [Native]"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.6.string.text
+msgid "Tablefields"
+msgstr "Tablefields"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.1.string.text
+msgid "Left"
+msgstr "Left"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.2.string.text
+msgid "Center"
+msgstr "Center"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.3.string.text
+msgid "Right"
+msgstr "Right"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_BUTTONTYPE.1.string.text"
+msgid "None"
+msgstr "None"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.2.string.text
+msgid "Submit form"
+msgstr "Submit form"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.3.string.text
+msgid "Reset form"
+msgstr "Reset form"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.4.string.text
+msgid "Open document/web page"
+msgstr "Open document/web page"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.5.string.text
+msgid "First record"
+msgstr "First record"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.6.string.text
+msgid "Previous record"
+msgstr "Previous record"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.7.string.text
+msgid "Next record"
+msgstr "Next record"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.8.string.text
+msgid "Last record"
+msgstr "Last record"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.9.string.text
+msgid "Save record"
+msgstr "Save record"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.10.string.text
+msgid "Undo data entry"
+msgstr "Undo data entry"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.11.string.text
+msgid "New record"
+msgstr "New record"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.12.string.text
+msgid "Delete record"
+msgstr "Delete record"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.13.string.text
+msgid "Refresh form"
+msgstr "Refresh form"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_METHOD.1.string.text
+msgid "Get"
+msgstr "Get"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_METHOD.2.string.text
+msgid "Post"
+msgstr "Post"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.1.string.text"
+msgid "URL"
+msgstr "URL"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.2.string.text
+msgid "Multipart"
+msgstr "Multipart"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.3.string.text"
+msgid "Text"
+msgstr "Text"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.1.string.text
+msgid "Standard (short)"
+msgstr "Standard (short)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.2.string.text
+msgid "Standard (short YY)"
+msgstr "Standard (short YY)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.3.string.text
+msgid "Standard (short YYYY)"
+msgstr "Standard (short YYYY)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.4.string.text
+msgid "Standard (long)"
+msgstr "Standard (long)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.5.string.text
+msgid "DD/MM/YY"
+msgstr "DD/MM/YY"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.6.string.text
+msgid "MM/DD/YY"
+msgstr "MM/DD/YY"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.7.string.text
+msgid "YY/MM/DD"
+msgstr "YY/MM/DD"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.8.string.text
+msgid "DD/MM/YYYY"
+msgstr "DD/MM/YYYY"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.9.string.text
+msgid "MM/DD/YYYY"
+msgstr "MM/DD/YYYY"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.10.string.text
+msgid "YYYY/MM/DD"
+msgstr "YYYY/MM/DD"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.11.string.text
+msgid "YY-MM-DD"
+msgstr "YY-MM-DD"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.12.string.text
+msgid "YYYY-MM-DD"
+msgstr "YYYY-MM-DD"
+
+#: formres.src#RID_RSC_ENUM_TIMEFORMAT_LIST.1.string.text
+msgid "13:45"
+msgstr "13:45"
+
+#: formres.src#RID_RSC_ENUM_TIMEFORMAT_LIST.2.string.text
+msgid "13:45:00"
+msgstr "13:45:00"
+
+#: formres.src#RID_RSC_ENUM_TIMEFORMAT_LIST.3.string.text
+msgid "01:45 PM"
+msgstr "01:45 PM"
+
+#: formres.src#RID_RSC_ENUM_TIMEFORMAT_LIST.4.string.text
+msgid "01:45:00 PM"
+msgstr "01:45:00 PM"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.1.string.text
+msgid "Not Selected"
+msgstr "Not Selected"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.2.string.text
+msgid "Selected"
+msgstr "Selected"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.3.string.text
+msgid "Not Defined"
+msgstr "Not Defined"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.1.string.text
+msgid "All records"
+msgstr "All records"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.2.string.text
+msgid "Active record"
+msgstr "Active record"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.3.string.text
+msgid "Current page"
+msgstr "Current page"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_NAVIGATION.1.string.text"
+msgid "No"
+msgstr "No"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_NAVIGATION.2.string.text"
+msgid "Yes"
+msgstr "Yes"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.3.string.text
+msgid "Parent Form"
+msgstr "Parent Form"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SELECTION_TYPE.1.string.text"
+msgid "None"
+msgstr "None"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.2.string.text
+msgid "Single"
+msgstr "Single"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.3.string.text
+msgid "Multi"
+msgstr "Multi"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.4.string.text
+msgid "Range"
+msgstr "Range"
+
+#: formres.src#RID_STR_EVT_APPROVEPARAMETER.string.text
+msgid "Fill parameters"
+msgstr "Fill parameters"
+
+#: formres.src#RID_STR_EVT_ACTIONPERFORMED.string.text
+msgid "Execute action"
+msgstr "Execute action"
+
+#: formres.src#RID_STR_EVT_AFTERUPDATE.string.text
+msgid "After updating"
+msgstr "After updating"
+
+#: formres.src#RID_STR_EVT_BEFOREUPDATE.string.text
+msgid "Before updating"
+msgstr "Before updating"
+
+#: formres.src#RID_STR_EVT_APPROVEROWCHANGE.string.text
+msgid "Before record action"
+msgstr "Before record action"
+
+#: formres.src#RID_STR_EVT_ROWCHANGE.string.text
+msgid "After record action"
+msgstr "After record action"
+
+#: formres.src#RID_STR_EVT_CONFIRMDELETE.string.text
+msgid "Confirm deletion"
+msgstr "Confirm deletion"
+
+#: formres.src#RID_STR_EVT_ERROROCCURRED.string.text
+msgid "Error occurred"
+msgstr "Error occurred"
+
+#: formres.src#RID_STR_EVT_FOCUSGAINED.string.text
+msgid "When receiving focus"
+msgstr "When receiving focus"
+
+#: formres.src#RID_STR_EVT_FOCUSLOST.string.text
+msgid "When losing focus"
+msgstr "When losing focus"
+
+#: formres.src#RID_STR_EVT_ITEMSTATECHANGED.string.text
+msgid "Item status changed"
+msgstr "Item status changed"
+
+#: formres.src#RID_STR_EVT_KEYTYPED.string.text
+msgid "Key pressed"
+msgstr "Key pressed"
+
+#: formres.src#RID_STR_EVT_KEYUP.string.text
+msgid "Key released"
+msgstr "Key released"
+
+#: formres.src#RID_STR_EVT_LOADED.string.text
+msgid "When loading"
+msgstr "When loading"
+
+#: formres.src#RID_STR_EVT_RELOADING.string.text
+msgid "Before reloading"
+msgstr "Before reloading"
+
+#: formres.src#RID_STR_EVT_RELOADED.string.text
+msgid "When reloading"
+msgstr "When reloading"
+
+#: formres.src#RID_STR_EVT_MOUSEDRAGGED.string.text
+msgid "Mouse moved while key pressed"
+msgstr "Mouse moved while key pressed"
+
+#: formres.src#RID_STR_EVT_MOUSEENTERED.string.text
+msgid "Mouse inside"
+msgstr "Mouse inside"
+
+#: formres.src#RID_STR_EVT_MOUSEEXITED.string.text
+msgid "Mouse outside"
+msgstr "Mouse outside"
+
+#: formres.src#RID_STR_EVT_MOUSEMOVED.string.text
+msgid "Mouse moved"
+msgstr "Mouse moved"
+
+#: formres.src#RID_STR_EVT_MOUSEPRESSED.string.text
+msgid "Mouse button pressed"
+msgstr "Mouse button pressed"
+
+#: formres.src#RID_STR_EVT_MOUSERELEASED.string.text
+msgid "Mouse button released"
+msgstr "Mouse button released"
+
+#: formres.src#RID_STR_EVT_POSITIONING.string.text
+msgid "Before record change"
+msgstr "Before record change"
+
+#: formres.src#RID_STR_EVT_POSITIONED.string.text
+msgid "After record change"
+msgstr "After record change"
+
+#: formres.src#RID_STR_EVT_RESETTED.string.text
+msgid "After resetting"
+msgstr "After resetting"
+
+#: formres.src#RID_STR_EVT_APPROVERESETTED.string.text
+msgid "Prior to reset"
+msgstr "Prior to reset"
+
+#: formres.src#RID_STR_EVT_APPROVEACTIONPERFORMED.string.text
+msgid "Approve action"
+msgstr "Approve action"
+
+#: formres.src#RID_STR_EVT_SUBMITTED.string.text
+msgid "Before submitting"
+msgstr "Before submitting"
+
+#: formres.src#RID_STR_EVT_TEXTCHANGED.string.text
+msgid "Text modified"
+msgstr "Text modified"
+
+#: formres.src#RID_STR_EVT_UNLOADING.string.text
+msgid "Before unloading"
+msgstr "Before unloading"
+
+#: formres.src#RID_STR_EVT_UNLOADED.string.text
+msgid "When unloading"
+msgstr "When unloading"
+
+#: formres.src#RID_STR_EVT_CHANGED.string.text
+msgid "Changed"
+msgstr "Changed"
+
+#: formres.src#RID_STR_EVENTS.string.text
+msgid "Events"
+msgstr "Events"
+
+#: formres.src#RID_STR_ESCAPE_PROCESSING.string.text
+msgid "Analyze SQL command"
+msgstr "Analyse SQL command"
+
+#: formres.src#RID_STR_POSITIONX.string.text
+msgid "PositionX"
+msgstr "PositionX"
+
+#: formres.src#RID_STR_POSITIONY.string.text
+msgid "PositionY"
+msgstr "PositionY"
+
+#: formres.src#RID_STR_TITLE.string.text
+msgid "Title"
+msgstr "Title"
+
+#: formres.src#RID_STR_STEP.string.text
+msgid "Page (step)"
+msgstr "Page (step)"
+
+#: formres.src#RID_STR_PROGRESSVALUE.string.text
+msgid "Progress value"
+msgstr "Progress value"
+
+#: formres.src#RID_STR_PROGRESSVALUE_MIN.string.text
+msgid "Progress value min."
+msgstr "Progress value minimum"
+
+#: formres.src#RID_STR_PROGRESSVALUE_MAX.string.text
+msgid "Progress value max."
+msgstr "Progress value maximum"
+
+#: formres.src#RID_STR_SCROLLVALUE.string.text
+msgid "Scroll value"
+msgstr "Scroll value"
+
+#: formres.src#RID_STR_SCROLLVALUE_MAX.string.text
+msgid "Scroll value max."
+msgstr "Scroll value maximum"
+
+#: formres.src#RID_STR_SCROLLVALUE_MIN.string.text
+msgid "Scroll value min."
+msgstr "Scroll value minimum"
+
+#: formres.src#RID_STR_DEFAULT_SCROLLVALUE.string.text
+msgid "Default scroll value"
+msgstr "Default scroll value"
+
+#: formres.src#RID_STR_LINEINCREMENT.string.text
+msgid "Small change"
+msgstr "Small change"
+
+#: formres.src#RID_STR_BLOCKINCREMENT.string.text
+msgid "Large change"
+msgstr "Large change"
+
+#: formres.src#RID_STR_REPEAT_DELAY.string.text
+msgid "Delay"
+msgstr "Delay"
+
+#: formres.src#RID_STR_REPEAT.string.text
+msgid "Repeat"
+msgstr "Repeat"
+
+#: formres.src#RID_STR_VISIBLESIZE.string.text
+msgid "Visible size"
+msgstr "Visible size"
+
+#: formres.src#RID_STR_ORIENTATION.string.text
+msgid "Orientation"
+msgstr "Orientation"
+
+#: formres.src#RID_RSC_ENUM_ORIENTATION.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_ORIENTATION.1.string.text"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: formres.src#RID_RSC_ENUM_ORIENTATION.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_ORIENTATION.2.string.text"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: formres.src#RID_STR_EVT_ADJUSTMENTVALUECHANGED.string.text
+msgid "While adjusting"
+msgstr "While adjusting"
+
+#: formres.src#RID_STR_DATE.string.text
+msgid "Date"
+msgstr "Date"
+
+#: formres.src#RID_STR_STATE.string.text
+msgid "State"
+msgstr "State"
+
+#: formres.src#RID_STR_TIME.string.text
+msgid "Time"
+msgstr "Time"
+
+#: formres.src#RID_STR_SCALEIMAGE.string.text
+msgid "Scale"
+msgstr "Scale"
+
+#: formres.src#RID_STR_PUSHBUTTONTYPE.string.text
+msgid "Button type"
+msgstr "Button type"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.1.string.text"
+msgid "Default"
+msgstr "Default"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.2.string.text
+msgid "OK"
+msgstr "OK"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.3.string.text
+msgid "Cancel"
+msgstr "Cancel"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.4.string.text
+msgctxt "formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.4.string.text"
+msgid "Help"
+msgstr "Help"
+
+#: formres.src#RID_STR_UNABLETOCONNECT.string.text
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "The connection to the data source \"$name$\" could not be established."
+
+#: formres.src#RID_STR_TEXT.string.text
+msgctxt "formres.src#RID_STR_TEXT.string.text"
+msgid "Text"
+msgstr "Text"
+
+#: formres.src#RID_STR_BOUND_CELL.string.text
+msgid "Linked cell"
+msgstr "Linked cell"
+
+#: formres.src#RID_STR_LIST_CELL_RANGE.string.text
+msgid "Source cell range"
+msgstr "Source cell range"
+
+#: formres.src#RID_STR_CELL_EXCHANGE_TYPE.string.text
+msgid "Contents of the linked cell"
+msgstr "Contents of the linked cell"
+
+#: formres.src#RID_RSC_ENUM_CELL_EXCHANGE_TYPE.1.string.text
+msgid "The selected entry"
+msgstr "The selected entry"
+
+#: formres.src#RID_RSC_ENUM_CELL_EXCHANGE_TYPE.2.string.text
+msgid "Position of the selected entry"
+msgstr "Position of the selected entry"
+
+#: formres.src#RID_STR_SHOW_SCROLLBARS.string.text
+msgid "Scrollbars"
+msgstr "Scrollbars"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.1.string.text
+msgid "Single-line"
+msgstr "Single-line"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.2.string.text
+msgid "Multi-line"
+msgstr "Multi-line"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.3.string.text
+msgid "Multi-line with formatting"
+msgstr "Multi-line with formatting"
+
+#: formres.src#RID_STR_SYMBOLCOLOR.string.text
+msgid "Symbol color"
+msgstr "Symbol colour"
+
+#: formres.src#RID_STR_LINEEND_FORMAT.string.text
+msgid "Text lines end with"
+msgstr "Text lines end with"
+
+#: formres.src#RID_RSC_ENUM_LINEEND_FORMAT.1.string.text
+msgid "LF (Unix)"
+msgstr "LF (Unix)"
+
+#: formres.src#RID_RSC_ENUM_LINEEND_FORMAT.2.string.text
+msgid "CR+LF (Windows)"
+msgstr "CR+LF (Windows)"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.1.string.text"
+msgid "None"
+msgstr "None"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.2.string.text"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.3.string.text"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.4.string.text
+msgid "Both"
+msgstr "Both"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_COMMAND_TYPE.1.string.text"
+msgid "Table"
+msgstr "Table"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_COMMAND_TYPE.2.string.text"
+msgid "Query"
+msgstr "Query"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.3.string.text
+msgid "SQL command"
+msgstr "SQL command"
+
+#: formres.src#RID_STR_TOGGLE.string.text
+msgid "Toggle"
+msgstr "Toggle"
+
+#: formres.src#RID_STR_FOCUSONCLICK.string.text
+msgid "Take Focus on Click"
+msgstr "Take Focus on Click"
+
+#: formres.src#RID_STR_HIDEINACTIVESELECTION.string.text
+msgid "Hide selection"
+msgstr "Hide selection"
+
+#: formres.src#RID_STR_VISUALEFFECT.string.text
+msgid "Style"
+msgstr "Style"
+
+#: formres.src#RID_RSC_ENUM_VISUALEFFECT.1.string.text
+msgid "3D"
+msgstr "3D"
+
+#: formres.src#RID_RSC_ENUM_VISUALEFFECT.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_VISUALEFFECT.2.string.text"
+msgid "Flat"
+msgstr "Flat"
+
+#: formres.src#RID_STR_BORDERCOLOR.string.text
+msgid "Border color"
+msgstr "Border colour"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.1.string.text
+msgid "Left top"
+msgstr "Left top"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.2.string.text
+msgid "Left centered"
+msgstr "Left centred"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.3.string.text
+msgid "Left bottom"
+msgstr "Left bottom"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.4.string.text
+msgid "Right top"
+msgstr "Right top"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.5.string.text
+msgid "Right centered"
+msgstr "Right centred"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.6.string.text
+msgid "Right bottom"
+msgstr "Right bottom"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.7.string.text
+msgid "Above left"
+msgstr "Above left"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.8.string.text
+msgid "Above centered"
+msgstr "Above centred"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.9.string.text
+msgid "Above right"
+msgstr "Above right"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.10.string.text
+msgid "Below left"
+msgstr "Below left"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.11.string.text
+msgid "Below centered"
+msgstr "Below centred"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.12.string.text
+msgid "Below right"
+msgstr "Below right"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.13.string.text
+msgid "Centered"
+msgstr "Centred"
+
+#: formres.src#RID_STR_AUTOLINEBREAK.string.text
+msgid "Wrap text automatically"
+msgstr "Wrap text automatically"
+
+#: formres.src#RID_STR_TEXTTYPE.string.text
+msgid "Text type"
+msgstr "Text type"
+
+#: formres.src#RID_RSC_ENUM_SHOWHIDE.1.string.text
+msgid "Hide"
+msgstr "Hide"
+
+#: formres.src#RID_RSC_ENUM_SHOWHIDE.2.string.text
+msgid "Show"
+msgstr "Show"
+
+#: formres.src#RID_STR_XML_DATA_MODEL.string.text
+msgid "XML data model"
+msgstr "XML data model"
+
+#: formres.src#RID_STR_BIND_EXPRESSION.string.text
+msgid "Binding expression"
+msgstr "Binding expression"
+
+#: formres.src#RID_STR_XSD_REQUIRED.string.text
+msgid "Required"
+msgstr "Required"
+
+#: formres.src#RID_STR_LIST_BINDING.string.text
+msgid "List entry source"
+msgstr "List entry source"
+
+#: formres.src#RID_STR_XSD_RELEVANT.string.text
+msgid "Relevant"
+msgstr "Relevant"
+
+#: formres.src#RID_STR_XSD_READONLY.string.text
+msgctxt "formres.src#RID_STR_XSD_READONLY.string.text"
+msgid "Read-only"
+msgstr "Read-only"
+
+#: formres.src#RID_STR_XSD_CONSTRAINT.string.text
+msgid "Constraint"
+msgstr "Constraint"
+
+#: formres.src#RID_STR_XSD_CALCULATION.string.text
+msgid "Calculation"
+msgstr "Calculation"
+
+#: formres.src#RID_STR_XSD_DATA_TYPE.string.text
+msgid "Data type"
+msgstr "Data type"
+
+#: formres.src#RID_STR_XSD_WHITESPACES.string.text
+msgid "Whitespaces"
+msgstr "Whitespaces"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.1.string.text
+msgid "Preserve"
+msgstr "Preserve"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.2.string.text
+msgid "Replace"
+msgstr "Replace"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.3.string.text
+msgid "Collapse"
+msgstr "Collapse"
+
+#: formres.src#RID_STR_XSD_PATTERN.string.text
+msgid "Pattern"
+msgstr "Pattern"
+
+#: formres.src#RID_STR_XSD_LENGTH.string.text
+msgid "Length"
+msgstr "Length"
+
+#: formres.src#RID_STR_XSD_MIN_LENGTH.string.text
+msgid "Length (at least)"
+msgstr "Length (at least)"
+
+#: formres.src#RID_STR_XSD_MAX_LENGTH.string.text
+msgid "Length (at most)"
+msgstr "Length (at most)"
+
+#: formres.src#RID_STR_XSD_TOTAL_DIGITS.string.text
+msgid "Digits (total)"
+msgstr "Digits (total)"
+
+#: formres.src#RID_STR_XSD_FRACTION_DIGITS.string.text
+msgid "Digits (fraction)"
+msgstr "Digits (fraction)"
+
+#: formres.src#RID_STR_XSD_MAX_INCLUSIVE.string.text
+msgid "Max. (inclusive)"
+msgstr "Maximum (inclusive)"
+
+#: formres.src#RID_STR_XSD_MAX_EXCLUSIVE.string.text
+msgid "Max. (exclusive)"
+msgstr "Maximum (exclusive)"
+
+#: formres.src#RID_STR_XSD_MIN_INCLUSIVE.string.text
+msgid "Min. (inclusive)"
+msgstr "Minimum (inclusive)"
+
+#: formres.src#RID_STR_XSD_MIN_EXCLUSIVE.string.text
+msgid "Min. (exclusive)"
+msgstr "Minimum (exclusive)"
+
+#: formres.src#RID_STR_SUBMISSION_ID.string.text
+msgid "Submission"
+msgstr "Submission"
+
+#: formres.src#RID_STR_BINDING_UI_NAME.string.text
+msgid "Binding"
+msgstr "Binding"
+
+#: formres.src#RID_STR_SELECTION_TYPE.string.text
+msgid "Selection type"
+msgstr "Selection type"
+
+#: formres.src#RID_STR_ROOT_DISPLAYED.string.text
+msgid "Root displayed"
+msgstr "Root displayed"
+
+#: formres.src#RID_STR_SHOWS_HANDLES.string.text
+msgid "Show handles"
+msgstr "Show handles"
+
+#: formres.src#RID_STR_SHOWS_ROOT_HANDLES.string.text
+msgid "Show root handles"
+msgstr "Show root handles"
+
+#: formres.src#RID_STR_EDITABLE.string.text
+msgid "Editable"
+msgstr "Editable"
+
+#: formres.src#RID_STR_INVOKES_STOP_NOT_EDITING.string.text
+msgid "Invokes stop node editing"
+msgstr "Invokes stop node editing"
+
+#: formres.src#RID_STR_DECORATION.string.text
+msgid "With title bar"
+msgstr "With title bar"
+
+#: formres.src#RID_STR_NOLABEL.string.text
+msgid "No Label"
+msgstr "No Label"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCALE_MODE.1.string.text"
+msgid "No"
+msgstr "No"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.2.string.text
+msgid "Keep Ratio"
+msgstr "Keep Ratio"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.3.string.text
+msgid "Fit to Size"
+msgstr "Fit to Size"
+
+#: formres.src#RID_STR_INPUT_REQUIRED.string.text
+msgid "Input required"
+msgstr "Input required"
+
+#: formres.src#RID_STR_WRITING_MODE.string.text
+msgid "Text direction"
+msgstr "Text direction"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.1.string.text
+msgid "Left-to-right"
+msgstr "Left-to-right"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.2.string.text
+msgid "Right-to-left"
+msgstr "Right-to-left"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.3.string.text
+msgid "Use superordinate object settings"
+msgstr "Use superordinate object settings"
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.1.string.text
+msgid "Never"
+msgstr "Never"
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.2.string.text
+msgid "When focused"
+msgstr "When focused"
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.3.string.text
+msgid "Always"
+msgstr "Always"
+
+#: formres.src#RID_STR_ANCHOR_TYPE.string.text
+msgid "Anchor"
+msgstr "Anchor"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.1.string.text
+msgid "To Paragraph"
+msgstr "To Paragraph"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.2.string.text
+msgid "As Character"
+msgstr "As Character"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.3.string.text"
+msgid "To Page"
+msgstr "To Page"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.4.string.text
+msgid "To Frame"
+msgstr "To Frame"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.5.string.text
+msgid "To Character"
+msgstr "To Character"
+
+#: formres.src#RID_RSC_ENUM_SHEET_ANCHOR_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SHEET_ANCHOR_TYPE.1.string.text"
+msgid "To Page"
+msgstr "To Page"
+
+#: formres.src#RID_RSC_ENUM_SHEET_ANCHOR_TYPE.2.string.text
+msgid "To Cell"
+msgstr "To Cell"
+
+#. That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_REGULAR.string.text
+msgid "Regular"
+msgstr "Regular"
+
+#. That's the 'Bold Italic' as used for a font style, so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_BOLD_ITALIC.string.text
+msgid "Bold Italic"
+msgstr "Bold Italic"
+
+#. That's the 'Italic' as used for a font style, so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_ITALIC.string.text
+msgid "Italic"
+msgstr "Italic"
+
+#. That's the 'Bold' as used for a font style, so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_BOLD.string.text
+msgid "Bold"
+msgstr "Bold"
+
+#: formres.src#RID_STR_FONT_DEFAULT.string.text
+msgid "(Default)"
+msgstr "(Default)"
diff --git a/source/en-ZA/extensions/source/scanner.po b/source/en-ZA/extensions/source/scanner.po
new file mode 100644
index 00000000000..19148022b9f
--- /dev/null
+++ b/source/en-ZA/extensions/source/scanner.po
@@ -0,0 +1,134 @@
+#. extracted from extensions/source/scanner.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fscanner.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: grid.src#GRID_DIALOG.GRID_DIALOG_RESET_BTN.pushbutton.text
+msgctxt "grid.src#GRID_DIALOG.GRID_DIALOG_RESET_BTN.pushbutton.text"
+msgid "Set"
+msgstr "Set"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_LINEAR_ASCENDING.string.text
+msgid "Linear ascending"
+msgstr "Linear ascending"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_LINEAR_DESCENDING.string.text
+msgid "Linear descending"
+msgstr "Linear descending"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_RESET.string.text
+msgid "Original values"
+msgstr "Original values"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_EXPONENTIAL.string.text
+msgid "Exponential increasing"
+msgstr "Exponential increasing"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_DEVICEINFO_BTN.pushbutton.text
+msgid ""
+"About\n"
+" Dev~ice"
+msgstr ""
+"About\n"
+" Dev~ice"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_PREVIEW_BTN.pushbutton.text
+msgid ""
+"Create\n"
+"Preview"
+msgstr ""
+"Create\n"
+"Preview"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BTN.pushbutton.text
+msgid "Scan"
+msgstr "Scan"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_PREVIEW_BOX.fixedline.text
+msgid "Preview"
+msgstr "Preview"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCANAREA_BOX.fixedline.text
+msgid "Scan area"
+msgstr "Scan area"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_LEFT_TXT.fixedtext.text
+msgid "Left:"
+msgstr "Left:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_TOP_TXT.fixedtext.text
+msgid "Top:"
+msgstr "Top:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_RIGHT_TXT.fixedtext.text
+msgid "Right:"
+msgstr "Right:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BOTTOM_TXT.fixedtext.text
+msgid "Bottom:"
+msgstr "Bottom:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_DEVICE_BOX_TXT.fixedtext.text
+msgid "Device used:"
+msgstr "Device used:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_RESOLUTION_TXT.fixedtext.text
+msgid "Resolution [~DPI]"
+msgstr "Resolution [~DPI]"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_ADVANCED_TXT.fixedtext.text
+msgid "Show advanced options"
+msgstr "Show advanced options"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_OPTION_TXT.fixedtext.text
+msgid "Options:"
+msgstr "Options:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_NUMERIC_VECTOR_TXT.fixedtext.text
+msgid "Vector element"
+msgstr "Vector element"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BUTTON_OPTION_BTN.pushbutton.text
+msgctxt "sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BUTTON_OPTION_BTN.pushbutton.text"
+msgid "Set"
+msgstr "Set"
+
+#: sanedlg.src#RID_SANE_DIALOG.modaldialog.text
+msgid "Scanner"
+msgstr "Scanner"
+
+#: sanedlg.src#RID_SANE_DEVICEINFO_TXT.string.text
+msgid ""
+"Device: %s\n"
+"Vendor: %s\n"
+"Model: %s\n"
+"Type: %s"
+msgstr ""
+"Device: %s\n"
+"Vendor: %s\n"
+"Model: %s\n"
+"Type: %s"
+
+#: sanedlg.src#RID_SANE_SCANERROR_TXT.string.text
+msgid "An error occurred while scanning."
+msgstr "An error occurred while scanning."
+
+#: sanedlg.src#RID_SANE_NORESOLUTIONOPTION_TXT.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 "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."
+
+#: sanedlg.src#RID_SANE_NOSANELIB_TXT.string.text
+msgid "The SANE interface could not be initialized. Scanning is not possible."
+msgstr "The SANE interface could not be initialised. Scanning is not possible."
diff --git a/source/en-ZA/extensions/source/update/check.po b/source/en-ZA/extensions/source/update/check.po
new file mode 100644
index 00000000000..deb6811eb25
--- /dev/null
+++ b/source/en-ZA/extensions/source/update/check.po
@@ -0,0 +1,237 @@
+#. extracted from extensions/source/update/check.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fupdate%2Fcheck.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-06-16 13:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: updatehdl.src#RID_UPDATE_STR_CHECKING.string.text
+msgid "Checking..."
+msgstr "Checking..."
+
+#: updatehdl.src#RID_UPDATE_STR_CHECKING_ERR.string.text
+msgid "Checking for an update failed."
+msgstr "Checking for an update failed."
+
+#: updatehdl.src#RID_UPDATE_STR_NO_UPD_FOUND.string.text
+msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
+msgstr "%PRODUCTNAME %PRODUCTVERSION is up to date."
+
+#: updatehdl.src#RID_UPDATE_STR_UPD_FOUND.string.text
+#, fuzzy
+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 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."
+
+#: updatehdl.src#RID_UPDATE_STR_DLG_TITLE.string.text
+msgid "Check for Updates"
+msgstr "Check for Updates"
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_PAUSE.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
+msgstr "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_ERR.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
+msgstr "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_WARN.string.text
+msgid ""
+"The download location is: %DOWNLOAD_PATH.\n"
+"\n"
+"Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location."
+msgstr ""
+"The download location is: %DOWNLOAD_PATH.\n"
+"\n"
+"Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_DESCR.string.text
+msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
+msgstr "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_UNAVAIL.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 ""
+"The automatic download of the update is currently not available.\n"
+"\n"
+"Click 'Download...' to download %PRODUCTNAME %NEXTVERSION manually from the web site."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOADING.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
+msgstr "Downloading %PRODUCTNAME %NEXTVERSION..."
+
+#: updatehdl.src#RID_UPDATE_STR_READY_INSTALL.string.text
+msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
+msgstr "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
+
+#: updatehdl.src#RID_UPDATE_STR_CANCEL_TITLE.string.text
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: updatehdl.src#RID_UPDATE_STR_CANCEL_DOWNLOAD.string.text
+msgid "Do you really want to cancel the download?"
+msgstr "Do you really want to cancel the download?"
+
+#: updatehdl.src#RID_UPDATE_STR_BEGIN_INSTALL.string.text
+msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
+msgstr "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_NOW.string.text
+msgid "Install ~now"
+msgstr "Install ~now"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_LATER.string.text
+msgid "Install ~later"
+msgstr "Install ~later"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_ERROR.string.text
+msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
+msgstr "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
+
+#: updatehdl.src#RID_UPDATE_STR_OVERWRITE_WARNING.string.text
+msgid "A file with that name already exists! Do you want to overwrite the existing file?"
+msgstr "A file with that name already exists! Do you want to overwrite the existing file?"
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_WARNING.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 "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?"
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_RELOAD.string.text
+msgid "Reload File"
+msgstr "Reload File"
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_CONTINUE.string.text
+msgid "Continue"
+msgstr "Continue"
+
+#: updatehdl.src#RID_UPDATE_STR_PERCENT.string.text
+msgid "%PERCENT%"
+msgstr "%PERCENT%"
+
+#: updatehdl.src#RID_UPDATE_FT_STATUS.string.text
+msgid "Status"
+msgstr "Status"
+
+#: updatehdl.src#RID_UPDATE_FT_DESCRIPTION.string.text
+msgid "Description"
+msgstr "Description"
+
+#: updatehdl.src#RID_UPDATE_BTN_CLOSE.string.text
+msgid "Close"
+msgstr "Close"
+
+#: updatehdl.src#RID_UPDATE_BTN_DOWNLOAD.string.text
+msgid "~Download"
+msgstr "~Download"
+
+#: updatehdl.src#RID_UPDATE_BTN_INSTALL.string.text
+msgid "~Install"
+msgstr "~Install"
+
+#: updatehdl.src#RID_UPDATE_BTN_PAUSE.string.text
+msgid "~Pause"
+msgstr "~Pause"
+
+#: updatehdl.src#RID_UPDATE_BTN_RESUME.string.text
+msgid "~Resume"
+msgstr "~Resume"
+
+#: updatehdl.src#RID_UPDATE_BTN_CANCEL.string.text
+msgid "Cancel"
+msgstr "Cancel"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_AVAIL.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_AVAIL.string.text"
+msgid "%PRODUCTNAME update available"
+msgstr "%PRODUCTNAME update available"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_AVAIL.string.text
+#, fuzzy
+msgid "Click the icon to start the download."
+msgstr "Click here to start the download."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN.string.text"
+msgid "%PRODUCTNAME update available"
+msgstr "%PRODUCTNAME update available"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_NO_DOWN.string.text
+#, fuzzy
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_NO_DOWN.string.text"
+msgid "Click the icon for more information."
+msgstr "Click here for more information."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_AUTO_START.string.text
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_T_AUTO_START.string.text"
+msgid "%PRODUCTNAME update available"
+msgstr "%PRODUCTNAME update available"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_AUTO_START.string.text
+msgid "Download of update begins."
+msgstr "Download of update begins."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOADING.string.text
+msgid "Download of update in progress"
+msgstr "Download of update in progress"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED.string.text
+msgid "Download of update paused"
+msgstr "Download of update paused"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED.string.text
+#, fuzzy
+msgid "Click the icon to resume."
+msgstr "Click here to resume."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING.string.text
+msgid "Download of update stalled"
+msgstr "Download of update stalled"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_ERROR_DOWNLOADING.string.text
+#, fuzzy
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_ERROR_DOWNLOADING.string.text"
+msgid "Click the icon for more information."
+msgstr "Click here for more information."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL.string.text
+msgid "Download of update completed"
+msgstr "Download of update completed"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL.string.text
+#, fuzzy
+msgid "Click the icon to start the installation."
+msgstr "Click here to start the installation."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL.string.text
+msgid "Updates for extensions available"
+msgstr "Updates for extensions available"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_EXT_UPD_AVAIL.string.text
+#, fuzzy
+msgctxt "updatehdl.src#RID_UPDATE_BUBBLE_EXT_UPD_AVAIL.string.text"
+msgid "Click the icon for more information."
+msgstr "Click here for more information."
diff --git a/source/en-ZA/extensions/source/update/check/org/openoffice/Office.po b/source/en-ZA/extensions/source/update/check/org/openoffice/Office.po
new file mode 100644
index 00000000000..0880d4abac8
--- /dev/null
+++ b/source/en-ZA/extensions/source/update/check/org/openoffice/Office.po
@@ -0,0 +1,19 @@
+#. extracted from extensions/source/update/check/org/openoffice/Office.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+extensions%2Fsource%2Fupdate%2Fcheck%2Forg%2Fopenoffice%2FOffice.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: Addons.xcu#.Addons.AddonUI.OfficeHelp.UpdateCheckJob.Title.value.text
+msgid "Check for ~Updates..."
+msgstr ""
diff --git a/source/en-ZA/filter/source/config/fragments/filters.po b/source/en-ZA/filter/source/config/fragments/filters.po
new file mode 100644
index 00000000000..a94d7624f9a
--- /dev/null
+++ b/source/en-ZA/filter/source/config/fragments/filters.po
@@ -0,0 +1,394 @@
+#. extracted from filter/source/config/fragments/filters.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Ffilters.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-06-13 10:12+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: StarDraw_5_0_Vorlage__StarImpress__ui.xcu#StarDraw_5.0_Vorlage__StarImpress_.UIName.value.text
+msgid "StarDraw 5.0 Template (Impress)"
+msgstr ""
+
+#: calc_OOXML_ui.xcu#Calc_Office_Open_XML.UIName.value.text
+msgid "Office Open XML Spreadsheet"
+msgstr "Office Open XML Spreadsheet"
+
+#: StarWriter_5_0_Vorlage_Template_ui.xcu#StarWriter_5.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 5.0 Template"
+msgstr "StarWriter 5.0 Template"
+
+#: calc8_template_ui.xcu#calc8_template.UIName.value.text
+msgid "ODF Spreadsheet Template"
+msgstr "ODF Spreadsheet Template"
+
+#: impress8_draw_ui.xcu#impress8_draw.UIName.value.text
+msgid "ODF Drawing (Impress)"
+msgstr "ODF Drawing (Impress)"
+
+#: writer_web_StarOffice_XML_Writer_Web_Template_ui.xcu#writer_web_StarOffice_XML_Writer_Web_Template.UIName.value.text
+msgid "%productname% %formatversion% HTML Template"
+msgstr "%productname% %formatversion% HTML Template"
+
+#: StarOffice_XML__Base__ui.xcu#StarOffice_XML__Base_.UIName.value.text
+msgid "ODF Database"
+msgstr "ODF Database"
+
+#: writer8_ui.xcu#writer8.UIName.value.text
+msgctxt "writer8_ui.xcu#writer8.UIName.value.text"
+msgid "ODF Text Document"
+msgstr "ODF Text Document"
+
+#: StarDraw_3_0_Vorlage_ui.xcu#StarDraw_3.0_Vorlage.UIName.value.text
+msgid "StarDraw 3.0 Template"
+msgstr "StarDraw 3.0 Template"
+
+#: Text__encoded___StarWriter_GlobalDocument__ui.xcu#Text__encoded___StarWriter/GlobalDocument_.UIName.value.text
+msgid "Text Encoded (Master Document)"
+msgstr ""
+
+#: calc_MS_Excel_2007_Binary_ui.xcu#Calc_MS_Excel_2007_Binary.UIName.value.text
+msgid "Microsoft Excel 2007 Binary"
+msgstr "Microsoft Excel 2007 Binary"
+
+#: impress_OOXML_ui.xcu#Impress_Office_Open_XML.UIName.value.text
+msgid "Office Open XML Presentation"
+msgstr "Office Open XML Presentation"
+
+#: StarOffice_XML__Math__ui.xcu#StarOffice_XML__Math_.UIName.value.text
+msgid "%productname% %formatversion% Formula"
+msgstr "%productname% %formatversion% Formula"
+
+#: MS_Word_2007_XML_ui.xcu#MS_Word_2007_XML.UIName.value.text
+#, fuzzy
+msgid "Microsoft Word 2007/2010 XML"
+msgstr "Microsoft Word 2007 XML"
+
+#: StarWriter_3_0_Vorlage_Template_ui.xcu#StarWriter_3.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 3.0 Template"
+msgstr "StarWriter 3.0 Template"
+
+#: draw8_ui.xcu#draw8.UIName.value.text
+msgid "ODF Drawing"
+msgstr "ODF Drawing"
+
+#: writer_web_StarOffice_XML_Writer_ui.xcu#writer_web_StarOffice_XML_Writer.UIName.value.text
+#, fuzzy
+msgid "%productname% %formatversion% Text Document (Writer/Web)"
+msgstr "%productname% %formatversion% Text Document Template"
+
+#: StarOffice_XML__Calc__ui.xcu#StarOffice_XML__Calc_.UIName.value.text
+msgid "%productname% %formatversion% Spreadsheet"
+msgstr "%productname% %formatversion% Spreadsheet"
+
+#: draw8_template_ui.xcu#draw8_template.UIName.value.text
+msgid "ODF Drawing Template"
+msgstr "ODF Drawing Template"
+
+#: MS_Excel_4_0_Vorlage_Template_ui.xcu#MS_Excel_4.0_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 4.0 Template"
+msgstr "Microsoft Excel 4.0 Template"
+
+#: writer_StarOffice_XML_Writer_Template_ui.xcu#writer_StarOffice_XML_Writer_Template.UIName.value.text
+msgid "%productname% %formatversion% Text Document Template"
+msgstr "%productname% %formatversion% Text Document Template"
+
+#: impress_StarOffice_XML_Impress_Template_ui.xcu#impress_StarOffice_XML_Impress_Template.UIName.value.text
+msgid "%productname% %formatversion% Presentation Template"
+msgstr "%productname% %formatversion% Presentation Template"
+
+#: writerweb8_writer_template_ui.xcu#writerweb8_writer_template.UIName.value.text
+msgid "HTML Document Template"
+msgstr "HTML Document Template"
+
+#: impress_MS_PowerPoint_2007_XML_Template_ui.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgctxt "impress_MS_PowerPoint_2007_XML_Template_ui.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML Template"
+msgstr "Microsoft PowerPoint 2007 XML Template"
+
+#: MS_Excel_5_0_95_Vorlage_Template_ui.xcu#MS_Excel_5.0/95_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 5.0 Template"
+msgstr "Microsoft Excel 5.0 Template"
+
+#: MS_Word_2003_XML_ui.xcu#MS_Word_2003_XML.UIName.value.text
+msgid "Microsoft Word 2003 XML"
+msgstr "Microsoft Word 2003 XML"
+
+#: writer_globaldocument_StarOffice_XML_Writer_GlobalDocument_ui.xcu#writer_globaldocument_StarOffice_XML_Writer_GlobalDocument.UIName.value.text
+msgid "%productname% %formatversion% Master Document"
+msgstr "%productname% %formatversion% Master Document"
+
+#: StarWriter_5_0_GlobalDocument_ui.xcu#StarWriter_5.0/GlobalDocument.UIName.value.text
+msgid "StarWriter 5.0 Master Document"
+msgstr "StarWriter 5.0 Master Document"
+
+#: MS_Excel_97_Vorlage_Template_ui.xcu#MS_Excel_97_Vorlage/Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 97/2000/XP/2003 Template"
+msgstr "Microsoft Excel 97/2000/XP Template"
+
+#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu#Impress_MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text
+#, fuzzy
+msgid "Microsoft PowerPoint 2007/2010 XML AutoPlay"
+msgstr "Microsoft PowerPoint 2007 XML Template"
+
+#: draw_html_Export_ui.xcu#draw_html_Export.UIName.value.text
+msgid "HTML Document (Draw)"
+msgstr ""
+
+#: MS_Word_2007_XML_Template.xcu#MS_Word_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgctxt "MS_Word_2007_XML_Template.xcu#MS_Word_2007_XML_Template.UIName.value.text"
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Microsoft Word 2007 XML Template"
+
+#: StarCalc_5_0_Vorlage_Template_ui.xcu#StarCalc_5.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 5.0 Template"
+msgstr "StarCalc 5.0 Template"
+
+#: calc8_ui.xcu#calc8.UIName.value.text
+msgid "ODF Spreadsheet"
+msgstr "ODF Spreadsheet"
+
+#: MS_Word_97_Vorlage_ui.xcu#MS_Word_97_Vorlage.UIName.value.text
+#, fuzzy
+msgid "Microsoft Word 97/2000/XP/2003 Template"
+msgstr "Microsoft Word 97/2000/XP Template"
+
+#: StarCalc_4_0_Vorlage_Template_ui.xcu#StarCalc_4.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 4.0 Template"
+msgstr "StarCalc 4.0 Template"
+
+#: writerweb8_writer_ui.xcu#writerweb8_writer.UIName.value.text
+msgid "%productname% Text (Writer/Web)"
+msgstr ""
+
+#: impress8_template_ui.xcu#impress8_template.UIName.value.text
+msgid "ODF Presentation Template"
+msgstr "ODF Presentation Template"
+
+#: Text_ui.xcu#Text.UIName.value.text
+msgid "Text"
+msgstr "Text"
+
+#: writer_globaldocument_StarOffice_XML_Writer_ui.xcu#writer_globaldocument_StarOffice_XML_Writer.UIName.value.text
+msgctxt "writer_globaldocument_StarOffice_XML_Writer_ui.xcu#writer_globaldocument_StarOffice_XML_Writer.UIName.value.text"
+msgid "%productname% %formatversion% Text Document"
+msgstr "%productname% %formatversion% Text Document"
+
+#: StarDraw_5_0_Vorlage_ui.xcu#StarDraw_5.0_Vorlage.UIName.value.text
+msgid "StarDraw 5.0 Template"
+msgstr "StarDraw 5.0 Template"
+
+#: writerglobal8_writer_ui.xcu#writerglobal8_writer.UIName.value.text
+msgctxt "writerglobal8_writer_ui.xcu#writerglobal8_writer.UIName.value.text"
+msgid "ODF Text Document"
+msgstr "ODF Text Document"
+
+#: StarOffice_XML__Writer__ui.xcu#StarOffice_XML__Writer_.UIName.value.text
+msgctxt "StarOffice_XML__Writer__ui.xcu#StarOffice_XML__Writer_.UIName.value.text"
+msgid "%productname% %formatversion% Text Document"
+msgstr "%productname% %formatversion% Text Document"
+
+#: impress_MS_PowerPoint_2007_XML_ui.xcu#Impress_MS_PowerPoint_2007_XML.UIName.value.text
+#, fuzzy
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft PowerPoint 2007 XML"
+
+#: HTML_MasterDoc_ui.xcu#HTML_MasterDoc.UIName.value.text
+msgid "HTML Document (Master Document)"
+msgstr ""
+
+#: StarWriter_4_0_GlobalDocument_ui.xcu#StarWriter_4.0/GlobalDocument.UIName.value.text
+msgid "StarWriter 4.0 Master Document"
+msgstr "StarWriter 4.0 Master Document"
+
+#: StarWriter_Web_4_0_Vorlage_Template_ui.xcu#StarWriter/Web_4.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter/Web 4.0 Template"
+msgstr "StarWriter/Web 4.0 Template"
+
+#: StarImpress_5_0_Vorlage_ui.xcu#StarImpress_5.0_Vorlage.UIName.value.text
+msgid "StarImpress 5.0 Template"
+msgstr "StarImpress 5.0 Template"
+
+#: writer8_template_ui.xcu#writer8_template.UIName.value.text
+msgid "ODF Text Document Template"
+msgstr "ODF Text Document Template"
+
+#: OOXML_Text_Template_ui.xcu#Office_Open_XML_Text_Template.UIName.value.text
+msgid "Office Open XML Text Template"
+msgstr "Office Open XML Text Template"
+
+#: math8_ui.xcu#math8.UIName.value.text
+msgid "ODF Formula"
+msgstr "ODF Formula"
+
+#: calc_MS_Excel_2007_XML_ui.xcu#Calc_MS_Excel_2007_XML.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 2007/2010 XML"
+msgstr "Microsoft Excel 2007 XML"
+
+#: StarOffice_XML__Chart__ui.xcu#StarOffice_XML__Chart_.UIName.value.text
+msgid "%productname% %formatversion% Chart"
+msgstr "%productname% %formatversion% Chart"
+
+#: MS_Word_2007_XML_Template_ui.xcu#MS_Word_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgctxt "MS_Word_2007_XML_Template_ui.xcu#MS_Word_2007_XML_Template.UIName.value.text"
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Microsoft Word 2007 XML Template"
+
+#: HTML__StarWriter__ui.xcu#HTML__StarWriter_.UIName.value.text
+msgid "HTML Document (Writer)"
+msgstr ""
+
+#: MS_Excel_2003_XML_ui.xcu#MS_Excel_2003_XML.UIName.value.text
+msgid "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2003 XML"
+
+#: UOF_spreadsheet_ui.xcu#UOF_spreadsheet.UIName.value.text
+msgid "Unified Office Format spreadsheet"
+msgstr "Unified Office Format spreadsheet"
+
+#: StarDraw_3_0_Vorlage__StarImpress__ui.xcu#StarDraw_3.0_Vorlage__StarImpress_.UIName.value.text
+msgid "StarDraw 3.0 Template (Impress)"
+msgstr ""
+
+#: StarImpress_4_0_Vorlage_ui.xcu#StarImpress_4.0_Vorlage.UIName.value.text
+msgid "StarImpress 4.0 Template"
+msgstr "StarImpress 4.0 Template"
+
+#: calc_OOXML_Template_ui.xcu#Calc_Office_Open_XML_Template.UIName.value.text
+msgid "Office Open XML Spreadsheet Template"
+msgstr "Office Open XML Spreadsheet Template"
+
+#: calc_MS_Excel_2007_XML_Template_ui.xcu#Calc_MS_Excel_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 2007/2010 XML Template"
+msgstr "Microsoft Excel 2007 XML Template"
+
+#: impress_MS_PowerPoint_2007_XML_Template.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgctxt "impress_MS_PowerPoint_2007_XML_Template.xcu#Impress_MS_PowerPoint_2007_XML_Template.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML Template"
+msgstr "Microsoft PowerPoint 2007 XML Template"
+
+#: HTML_ui.xcu#HTML.UIName.value.text
+msgid "HTML Document"
+msgstr "HTML Document"
+
+#: impress8_ui.xcu#impress8.UIName.value.text
+msgid "ODF Presentation"
+msgstr "ODF Presentation"
+
+#: impress_OOXML_Template_ui.xcu#Impress_Office_Open_XML_Template.UIName.value.text
+msgid "Office Open XML Presentation Template"
+msgstr "Office Open XML Presentation Template"
+
+#: Text__StarWriter_Web__ui.xcu#Text__StarWriter/Web_.UIName.value.text
+msgid "Text (Writer/Web)"
+msgstr ""
+
+#: calc_HTML_WebQuery_ui.xcu#calc_HTML_WebQuery.UIName.value.text
+msgid "Web Page Query (Calc)"
+msgstr ""
+
+#: StarOffice_XML__Impress__ui.xcu#StarOffice_XML__Impress_.UIName.value.text
+msgid "%productname% %formatversion% Presentation"
+msgstr "%productname% %formatversion% Presentation"
+
+#: MS_PowerPoint_97_Vorlage_ui.xcu#MS_PowerPoint_97_Vorlage.UIName.value.text
+#, fuzzy
+msgid "Microsoft PowerPoint 97/2000/XP/2003 Template"
+msgstr "Microsoft PowerPoint 97/2000/XP Template"
+
+#: Text__encoded__ui.xcu#Text__encoded_.UIName.value.text
+msgid "Text Encoded"
+msgstr "Text Encoded"
+
+#: writerglobal8_ui.xcu#writerglobal8.UIName.value.text
+msgid "ODF Master Document"
+msgstr "ODF Master Document"
+
+#: UOF_text_ui.xcu#UOF_text.UIName.value.text
+msgid "Unified Office Format text"
+msgstr "Unified Office Format text"
+
+#: Text__encoded___StarWriter_Web__ui.xcu#Text__encoded___StarWriter/Web_.UIName.value.text
+msgid "Text Encoded (Writer/Web)"
+msgstr ""
+
+#: chart8_ui.xcu#chart8.UIName.value.text
+msgid "ODF Chart"
+msgstr "ODF Chart"
+
+#: StarWriter_Web_5_0_Vorlage_Template_ui.xcu#StarWriter/Web_5.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter/Web 5.0 Template"
+msgstr "StarWriter/Web 5.0 Template"
+
+#: OOXML_Text_ui.xcu#Office_Open_XML_Text.UIName.value.text
+msgid "Office Open XML Text"
+msgstr "Office Open XML Text"
+
+#: draw_StarOffice_XML_Draw_Template_ui.xcu#draw_StarOffice_XML_Draw_Template.UIName.value.text
+msgid "%productname% %formatversion% Drawing Template"
+msgstr "%productname% %formatversion% Drawing Template"
+
+#: StarOffice_XML__Draw__ui.xcu#StarOffice_XML__Draw_.UIName.value.text
+msgid "%productname% %formatversion% Drawing"
+msgstr "%productname% %formatversion% Drawing"
+
+#: impress_StarOffice_XML_Draw_ui.xcu#impress_StarOffice_XML_Draw.UIName.value.text
+#, fuzzy
+msgid "%productname% %formatversion% Drawing (Impress)"
+msgstr "%productname% %formatversion% Drawing Template"
+
+#: StarCalc_3_0_Vorlage_Template_ui.xcu#StarCalc_3.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 3.0 Template"
+msgstr "StarCalc 3.0 Template"
+
+#: MS_Word_95_Vorlage_ui.xcu#MS_Word_95_Vorlage.UIName.value.text
+msgid "Microsoft Word 95 Template"
+msgstr "Microsoft Word 95 Template"
+
+#: MS_Excel_95_Vorlage_Template_ui.xcu#MS_Excel_95_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 95 Template"
+msgstr "Microsoft Excel 95 Template"
+
+#: calc_StarOffice_XML_Calc_Template_ui.xcu#calc_StarOffice_XML_Calc_Template.UIName.value.text
+msgid "%productname% %formatversion% Spreadsheet Template"
+msgstr "%productname% %formatversion% Spreadsheet Template"
+
+#: UOF_presentation_ui.xcu#UOF_presentation.UIName.value.text
+msgid "Unified Office Format presentation"
+msgstr "Unified Office Format presentation"
+
+#: impress_html_Export_ui.xcu#impress_html_Export.UIName.value.text
+msgid "HTML Document (Impress)"
+msgstr ""
+
+#: StarImpress_5_0__packed__ui.xcu#StarImpress_5.0__packed_.UIName.value.text
+msgid "StarImpress 5.0 Packed"
+msgstr "StarImpress 5.0 Packed"
+
+#: StarWriter_4_0_Vorlage_Template_ui.xcu#StarWriter_4.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 4.0 Template"
+msgstr "StarWriter 4.0 Template"
+
+#: Text___txt___csv__StarCalc__ui.xcu#Text___txt___csv__StarCalc_.UIName.value.text
+msgid "Text CSV"
+msgstr "Text CSV"
+
+#: HTML__StarCalc__ui.xcu#HTML__StarCalc_.UIName.value.text
+msgid "HTML Document (Calc)"
+msgstr ""
diff --git a/source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po b/source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po
new file mode 100644
index 00000000000..c172f632565
--- /dev/null
+++ b/source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po
@@ -0,0 +1,226 @@
+#. extracted from filter/source/config/fragments/internalgraphicfilters.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Finternalgraphicfilters.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-19 19:55+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: xpm_Import.xcu#xpm_Import.UIName.value.text
+msgctxt "xpm_Import.xcu#xpm_Import.UIName.value.text"
+msgid "XPM - X PixMap"
+msgstr "XPM - X PixMap"
+
+#: wmf_Import.xcu#wmf_Import.UIName.value.text
+msgctxt "wmf_Import.xcu#wmf_Import.UIName.value.text"
+msgid "WMF - Windows Metafile"
+msgstr "WMF - Windows Metafile"
+
+#: eps_Import.xcu#eps_Import.UIName.value.text
+msgctxt "eps_Import.xcu#eps_Import.UIName.value.text"
+msgid "EPS - Encapsulated PostScript"
+msgstr "EPS - Encapsulated PostScript"
+
+#: tga_Import.xcu#tga_Import.UIName.value.text
+msgid "TGA - Truevision Targa"
+msgstr "TGA - Truevision Targa"
+
+#: met_Import.xcu#met_Import.UIName.value.text
+msgctxt "met_Import.xcu#met_Import.UIName.value.text"
+msgid "MET - OS/2 Metafile"
+msgstr "MET - OS/2 Metafile"
+
+#: bmp_Import.xcu#bmp_Import.UIName.value.text
+msgctxt "bmp_Import.xcu#bmp_Import.UIName.value.text"
+msgid "BMP - Windows Bitmap"
+msgstr "BMP - Windows Bitmap"
+
+#: emf_Import.xcu#emf_Import.UIName.value.text
+msgctxt "emf_Import.xcu#emf_Import.UIName.value.text"
+msgid "EMF - Enhanced Metafile"
+msgstr "EMF - Enhanced Metafile"
+
+#: ras_Import.xcu#ras_Import.UIName.value.text
+msgctxt "ras_Import.xcu#ras_Import.UIName.value.text"
+msgid "RAS - Sun Raster Image"
+msgstr "RAS - Sun Raster Image"
+
+#: dxf_Import.xcu#dxf_Import.UIName.value.text
+msgid "DXF - AutoCAD Interchange Format"
+msgstr "DXF - AutoCAD Interchange Format"
+
+#: pcd_Import_Base4.xcu#pcd_Import_Base4.UIName.value.text
+msgid "PCD - Kodak Photo CD (384x256)"
+msgstr "PCD - Kodak Photo CD (384x256)"
+
+#: ppm_Export.xcu#ppm_Export.UIName.value.text
+msgctxt "ppm_Export.xcu#ppm_Export.UIName.value.text"
+msgid "PPM - Portable Pixelmap"
+msgstr "PPM - Portable Pixelmap"
+
+#: eps_Export.xcu#eps_Export.UIName.value.text
+msgctxt "eps_Export.xcu#eps_Export.UIName.value.text"
+msgid "EPS - Encapsulated PostScript"
+msgstr "EPS - Encapsulated PostScript"
+
+#: pcx_Import.xcu#pcx_Import.UIName.value.text
+msgid "PCX - Zsoft Paintbrush"
+msgstr "PCX - Zsoft Paintbrush"
+
+#: svg_Export.xcu#svg_Export.UIName.value.text
+msgctxt "svg_Export.xcu#svg_Export.UIName.value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - Scalable Vector Graphics"
+
+#: png_Export.xcu#png_Export.UIName.value.text
+msgctxt "png_Export.xcu#png_Export.UIName.value.text"
+msgid "PNG - Portable Network Graphic"
+msgstr "PNG - Portable Network Graphic"
+
+#: pcd_Import_Base16.xcu#pcd_Import_Base16.UIName.value.text
+msgid "PCD - Kodak Photo CD (192x128)"
+msgstr "PCD - Kodak Photo CD (192x128)"
+
+#: pcd_Import_Base.xcu#pcd_Import_Base.UIName.value.text
+msgid "PCD - Kodak Photo CD (768x512)"
+msgstr "PCD - Kodak Photo CD (768x512)"
+
+#: tif_Export.xcu#tif_Export.UIName.value.text
+msgctxt "tif_Export.xcu#tif_Export.UIName.value.text"
+msgid "TIFF - Tagged Image File Format"
+msgstr "TIFF - Tagged Image File Format"
+
+#: svm_Import.xcu#svm_Import.UIName.value.text
+msgctxt "svm_Import.xcu#svm_Import.UIName.value.text"
+msgid "SVM - StarView Metafile"
+msgstr "SVM - StarView Metafile"
+
+#: tif_Import.xcu#tif_Import.UIName.value.text
+msgctxt "tif_Import.xcu#tif_Import.UIName.value.text"
+msgid "TIFF - Tagged Image File Format"
+msgstr "TIFF - Tagged Image File Format"
+
+#: pbm_Import.xcu#pbm_Import.UIName.value.text
+msgctxt "pbm_Import.xcu#pbm_Import.UIName.value.text"
+msgid "PBM - Portable Bitmap"
+msgstr "PBM - Portable Bitmap"
+
+#: png_Import.xcu#png_Import.UIName.value.text
+msgctxt "png_Import.xcu#png_Import.UIName.value.text"
+msgid "PNG - Portable Network Graphic"
+msgstr "PNG - Portable Network Graphic"
+
+#: xpm_Export.xcu#xpm_Export.UIName.value.text
+msgctxt "xpm_Export.xcu#xpm_Export.UIName.value.text"
+msgid "XPM - X PixMap"
+msgstr "XPM - X PixMap"
+
+#: pct_Export.xcu#pct_Export.UIName.value.text
+msgctxt "pct_Export.xcu#pct_Export.UIName.value.text"
+msgid "PCT - Mac Pict"
+msgstr "PCT - Mac Pict"
+
+#: wmf_Export.xcu#wmf_Export.UIName.value.text
+msgctxt "wmf_Export.xcu#wmf_Export.UIName.value.text"
+msgid "WMF - Windows Metafile"
+msgstr "WMF - Windows Metafile"
+
+#: svg_Import.xcu#svg_Import.UIName.value.text
+msgctxt "svg_Import.xcu#svg_Import.UIName.value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - Scalable Vector Graphics"
+
+#: sgv_Import.xcu#sgv_Import.UIName.value.text
+msgid "SGV - StarDraw 2.0"
+msgstr "SGV - StarDraw 2.0"
+
+#: emf_Export.xcu#emf_Export.UIName.value.text
+msgctxt "emf_Export.xcu#emf_Export.UIName.value.text"
+msgid "EMF - Enhanced Metafile"
+msgstr "EMF - Enhanced Metafile"
+
+#: met_Export.xcu#met_Export.UIName.value.text
+msgctxt "met_Export.xcu#met_Export.UIName.value.text"
+msgid "MET - OS/2 Metafile"
+msgstr "MET - OS/2 Metafile"
+
+#: psd_Import.xcu#psd_Import.UIName.value.text
+msgid "PSD - Adobe Photoshop"
+msgstr "PSD - Adobe Photoshop"
+
+#: jpg_Import.xcu#jpg_Import.UIName.value.text
+msgctxt "jpg_Import.xcu#jpg_Import.UIName.value.text"
+msgid "JPEG - Joint Photographic Experts Group"
+msgstr "JPEG - Joint Photographic Experts Group"
+
+#: pct_Import.xcu#pct_Import.UIName.value.text
+msgctxt "pct_Import.xcu#pct_Import.UIName.value.text"
+msgid "PCT - Mac Pict"
+msgstr "PCT - Mac Pict"
+
+#: ppm_Import.xcu#ppm_Import.UIName.value.text
+msgctxt "ppm_Import.xcu#ppm_Import.UIName.value.text"
+msgid "PPM - Portable Pixelmap"
+msgstr "PPM - Portable Pixelmap"
+
+#: ras_Export.xcu#ras_Export.UIName.value.text
+msgctxt "ras_Export.xcu#ras_Export.UIName.value.text"
+msgid "RAS - Sun Raster Image"
+msgstr "RAS - Sun Raster Image"
+
+#: pgm_Export.xcu#pgm_Export.UIName.value.text
+msgctxt "pgm_Export.xcu#pgm_Export.UIName.value.text"
+msgid "PGM - Portable Graymap"
+msgstr "PGM - Portable Greymap"
+
+#: jpg_Export.xcu#jpg_Export.UIName.value.text
+msgctxt "jpg_Export.xcu#jpg_Export.UIName.value.text"
+msgid "JPEG - Joint Photographic Experts Group"
+msgstr "JPEG - Joint Photographic Experts Group"
+
+#: sgf_Import.xcu#sgf_Import.UIName.value.text
+msgid "SGF - StarWriter Graphics Format"
+msgstr "SGF - StarWriter Graphics Format"
+
+#: bmp_Export.xcu#bmp_Export.UIName.value.text
+msgctxt "bmp_Export.xcu#bmp_Export.UIName.value.text"
+msgid "BMP - Windows Bitmap"
+msgstr "BMP - Windows Bitmap"
+
+#: svm_Export.xcu#svm_Export.UIName.value.text
+msgctxt "svm_Export.xcu#svm_Export.UIName.value.text"
+msgid "SVM - StarView Metafile"
+msgstr "SVM - StarView Metafile"
+
+#: xbm_Import.xcu#xbm_Import.UIName.value.text
+msgid "XBM - X Bitmap"
+msgstr "XBM - X Bitmap"
+
+#: gif_Export.xcu#gif_Export.UIName.value.text
+msgctxt "gif_Export.xcu#gif_Export.UIName.value.text"
+msgid "GIF - Graphics Interchange Format"
+msgstr "GIF - Graphics Interchange Format"
+
+#: pgm_Import.xcu#pgm_Import.UIName.value.text
+msgctxt "pgm_Import.xcu#pgm_Import.UIName.value.text"
+msgid "PGM - Portable Graymap"
+msgstr "PGM - Portable Greymap"
+
+#: pbm_Export.xcu#pbm_Export.UIName.value.text
+msgctxt "pbm_Export.xcu#pbm_Export.UIName.value.text"
+msgid "PBM - Portable Bitmap"
+msgstr "PBM - Portable Bitmap"
+
+#: gif_Import.xcu#gif_Import.UIName.value.text
+msgctxt "gif_Import.xcu#gif_Import.UIName.value.text"
+msgid "GIF - Graphics Interchange Format"
+msgstr "GIF - Graphics Interchange Format"
diff --git a/source/en-ZA/filter/source/config/fragments/types.po b/source/en-ZA/filter/source/config/fragments/types.po
new file mode 100644
index 00000000000..dd6a70ee5e8
--- /dev/null
+++ b/source/en-ZA/filter/source/config/fragments/types.po
@@ -0,0 +1,117 @@
+#. extracted from filter/source/config/fragments/types.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fconfig%2Ffragments%2Ftypes.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-11-26 02:17+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: StarBase.xcu#StarBase.UIName.value.text
+msgid "OpenDocument Database"
+msgstr "OpenDocument Database"
+
+#: MS_PowerPoint_2007_XML_AutoPlay.xcu#MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text
+#, fuzzy
+msgctxt "MS_PowerPoint_2007_XML_AutoPlay.xcu#MS_PowerPoint_2007_XML_AutoPlay.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft Word 2003 XML"
+
+#: MS_Excel_2007_XML_Template.xcu#MS_Excel_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 2007/2010 XML Template"
+msgstr "Microsoft Excel 2003 XML"
+
+#: calc_MS_Excel_2003_XML.xcu#calc_MS_Excel_2003_XML.UIName.value.text
+msgid "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2003 XML"
+
+#: writer8.xcu#writer8.UIName.value.text
+msgid "Writer 8"
+msgstr "Writer 8"
+
+#: chart8.xcu#chart8.UIName.value.text
+msgid "Chart 8"
+msgstr "Chart 8"
+
+#: writerglobal8.xcu#writerglobal8.UIName.value.text
+msgid "Writer 8 Master Document"
+msgstr "Writer 8 Master Document"
+
+#: MS_Excel_2007_XML.xcu#MS_Excel_2007_XML.UIName.value.text
+#, fuzzy
+msgid "Microsoft Excel 2007/2010 XML"
+msgstr "Microsoft Excel 2003 XML"
+
+#: writer_MS_Word_2007_XML_Template.xcu#writer_MS_Word_2007_Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft Word 2007/2010 XML Template"
+msgstr "Microsoft Word 2003 XML"
+
+#: MS_PowerPoint_2007_XML_Template.xcu#MS_PowerPoint_2007_XML_Template.UIName.value.text
+#, fuzzy
+msgid "Microsoft PowerPoint 2007/2010 XML Template"
+msgstr "Microsoft Word 2003 XML"
+
+#: impress8.xcu#impress8.UIName.value.text
+msgid "Impress 8"
+msgstr "Impress 8"
+
+#: writer_MS_Word_2007_XML.xcu#writer_MS_Word_2007.UIName.value.text
+#, fuzzy
+msgid "Microsoft Word 2007/2010 XML"
+msgstr "Microsoft Word 2003 XML"
+
+#: draw8.xcu#draw8.UIName.value.text
+msgid "Draw 8"
+msgstr "Draw 8"
+
+#: writerweb8_writer_template.xcu#writerweb8_writer_template.UIName.value.text
+msgid "Writer/Web 8 Template"
+msgstr "Writer/Web 8 Template"
+
+#: impress8_template.xcu#impress8_template.UIName.value.text
+msgid "Impress 8 Template"
+msgstr "Impress 8 Template"
+
+#: writer_MS_Word_2003_XML.xcu#writer_MS_Word_2003_XML.UIName.value.text
+msgid "Microsoft Word 2003 XML"
+msgstr "Microsoft Word 2003 XML"
+
+#: draw8_template.xcu#draw8_template.UIName.value.text
+msgid "Draw 8 Template"
+msgstr "Draw 8 Template"
+
+#: math8.xcu#math8.UIName.value.text
+msgid "Math 8"
+msgstr "Math 8"
+
+#: writer8_template.xcu#writer8_template.UIName.value.text
+msgid "Writer 8 Template"
+msgstr "Writer 8 Template"
+
+#: MS_Excel_2007_Binary.xcu#MS_Excel_2007_Binary.UIName.value.text
+msgid "Microsoft Excel 2007 Binary"
+msgstr "Microsoft Excel 2007 Binary"
+
+#: calc8.xcu#calc8.UIName.value.text
+msgid "Calc 8"
+msgstr "Calc 8"
+
+#: calc8_template.xcu#calc8_template.UIName.value.text
+msgid "Calc 8 Template"
+msgstr "Calc 8 Template"
+
+#: MS_PowerPoint_2007_XML.xcu#MS_PowerPoint_2007_XML.UIName.value.text
+#, fuzzy
+msgctxt "MS_PowerPoint_2007_XML.xcu#MS_PowerPoint_2007_XML.UIName.value.text"
+msgid "Microsoft PowerPoint 2007/2010 XML"
+msgstr "Microsoft Word 2003 XML"
diff --git a/source/en-ZA/filter/source/flash.po b/source/en-ZA/filter/source/flash.po
new file mode 100644
index 00000000000..bfe6d218fda
--- /dev/null
+++ b/source/en-ZA/filter/source/flash.po
@@ -0,0 +1,28 @@
+#. extracted from filter/source/flash.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fflash.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: impswfdialog.src#DLG_OPTIONS.FI_DESCR.fixedtext.text
+msgid ""
+"1: min. quality\n"
+"100: max. quality"
+msgstr ""
+"1: min. quality\n"
+"100: max. quality"
+
+#: impswfdialog.src#DLG_OPTIONS.modaldialog.text
+msgid "Macromedia Flash (SWF) Options"
+msgstr "Macromedia Flash (SWF) Options"
diff --git a/source/en-ZA/filter/source/graphicfilter/eps.po b/source/en-ZA/filter/source/graphicfilter/eps.po
new file mode 100644
index 00000000000..ca877a5dba0
--- /dev/null
+++ b/source/en-ZA/filter/source/graphicfilter/eps.po
@@ -0,0 +1,24 @@
+#. extracted from filter/source/graphicfilter/eps.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fgraphicfilter%2Feps.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: epsstr.src#KEY_VERSION_CHECK.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 ""
+"Warning: Not all of the imported EPS graphics could be saved at level1\n"
+"as some are at a higher level!"
diff --git a/source/en-ZA/filter/source/pdf.po b/source/en-ZA/filter/source/pdf.po
new file mode 100644
index 00000000000..657b9a027e6
--- /dev/null
+++ b/source/en-ZA/filter/source/pdf.po
@@ -0,0 +1,492 @@
+#. extracted from filter/source/pdf.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fpdf.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-01-05 12:44+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: pdf.src#PDF_PROGRESS_BAR.string.text
+msgid "Export as PDF"
+msgstr "Export as PDF"
+
+#: impdialog.src#STR_PDF_EXPORT.string.text
+msgid "E~xport"
+msgstr "E~xport"
+
+#: impdialog.src#STR_PDF_EXPORT_UDPWD.string.text
+msgid "Set open password"
+msgstr "Set open password"
+
+#: impdialog.src#STR_PDF_EXPORT_ODPWD.string.text
+msgid "Set permission password"
+msgstr "Set permission password"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FL_PAGES.fixedline.text
+msgid "Range"
+msgstr "Range"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_ALL.radiobutton.text
+msgid "~All"
+msgstr "~All"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_RANGE.radiobutton.text
+msgid "~Pages"
+msgstr "~Pages"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_SELECTION.radiobutton.text
+msgid "~Selection"
+msgstr "~Selection"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FL_IMAGES.fixedline.text
+msgid "Images"
+msgstr "Images"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_LOSSLESSCOMPRESSION.radiobutton.text
+msgid "~Lossless compression"
+msgstr "~Lossless compression"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_JPEGCOMPRESSION.radiobutton.text
+msgid "~JPEG compression"
+msgstr "~JPEG compression"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FT_QUALITY.fixedtext.text
+msgid "~Quality"
+msgstr "~Quality"
+
+#: impdialog.src#RID_PDF_TAB_GENER.CB_REDUCEIMAGERESOLUTION.checkbox.text
+msgid "~Reduce image resolution"
+msgstr "~Reduce image resolution"
+
+#: impdialog.src#RID_PDF_TAB_GENER.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_GENER.tabpage.text"
+msgid "General"
+msgstr "General"
+
+#: impdialog.src#FL_WATERMARK.fixedline.text
+msgid "Watermark"
+msgstr ""
+
+#: impdialog.src#CB_WATERMARK.checkbox.text
+msgid "Sign with Watermark"
+msgstr ""
+
+#: impdialog.src#FT_WATERMARK.fixedtext.text
+msgid "Watermark Text"
+msgstr ""
+
+#: impdialog.src#FL_GENERAL.fixedline.text
+msgctxt "impdialog.src#FL_GENERAL.fixedline.text"
+msgid "General"
+msgstr "General"
+
+#: impdialog.src#CB_ADDSTREAM.checkbox.text
+msgid "Em~bed OpenDocument file"
+msgstr ""
+
+#: impdialog.src#FT_ADDSTREAMDESCRIPTION.fixedtext.text
+msgid "Makes this PDF easily editable in %PRODUCTNAME"
+msgstr ""
+
+#: impdialog.src#CB_PDFA_1B_SELECT.checkbox.text
+msgid "P~DF/A-1a"
+msgstr "P~DF/A-1a"
+
+#: impdialog.src#CB_TAGGEDPDF.checkbox.text
+msgid "~Tagged PDF"
+msgstr "~Tagged PDF"
+
+#: impdialog.src#CB_EXPORTFORMFIELDS.checkbox.text
+msgid "~Create PDF form"
+msgstr "~Create PDF form"
+
+#: impdialog.src#FT_FORMSFORMAT.fixedtext.text
+msgid "Submit ~format"
+msgstr "Submit ~format"
+
+#: impdialog.src#CB_ALLOWDUPLICATEFIELDNAMES.checkbox.text
+msgid "Allow duplicate field ~names"
+msgstr "Allow duplicate field ~names"
+
+#: impdialog.src#CB_EXPORTBOOKMARKS.checkbox.text
+msgid "Export ~bookmarks"
+msgstr "Export ~bookmarks"
+
+#: impdialog.src#CB_EXPORTNOTES.checkbox.text
+msgid "~Export comments"
+msgstr "~Export comments"
+
+#: impdialog.src#CB_EXPORTNOTESPAGES.checkbox.text
+msgid "Export ~notes pages"
+msgstr "Export ~notes pages"
+
+#: impdialog.src#CB_EXPORTHIDDENSLIDES.checkbox.text
+#, fuzzy
+msgid "Export ~hidden pages"
+msgstr "Export ~notes pages"
+
+#: impdialog.src#CB_EXPORTEMPTYPAGES.checkbox.text
+msgid "Exp~ort automatically inserted blank pages"
+msgstr "Exp~ort automatically inserted blank pages"
+
+#: impdialog.src#CB_EMBEDSTANDARDFONTS.checkbox.text
+msgid "E~mbed standard fonts"
+msgstr "E~mbed standard fonts"
+
+#: impdialog.src#RID_PDF_WARNPDFAPASSWORD.warningbox.text
+msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
+msgstr "PDF/A does not allow encryption. The exported PDF file will not be password protected."
+
+#: impdialog.src#RID_PDF_WARNPDFAPASSWORD.warningbox.title
+msgid "PDF/A Export"
+msgstr "PDF/A Export"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_INITVIEW.fixedline.text
+msgid "Panes"
+msgstr "Panes"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_PAGEONLY.radiobutton.text
+msgid "~Page only"
+msgstr "~Page only"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_OUTLINE.radiobutton.text
+msgid "~Bookmarks and page"
+msgstr "~Bookmarks and page"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_THUMBS.radiobutton.text
+msgid "~Thumbnails and page"
+msgstr "~Thumbnails and page"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FT_MAGNF_INITIAL_PAGE.fixedtext.text
+msgid "Open on page"
+msgstr "Open on page"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_MAGNIFICATION.fixedline.text
+msgid "Magnification"
+msgstr "Magnification"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_DEFAULT.radiobutton.text
+msgid "~Default"
+msgstr "~Default"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_WIND.radiobutton.text
+msgid "~Fit in window"
+msgstr "~Fit in window"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_WIDTH.radiobutton.text
+msgid "Fit ~width"
+msgstr "Fit ~width"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_VISIBLE.radiobutton.text
+msgid "Fit ~visible"
+msgstr "Fit ~visible"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_ZOOM.radiobutton.text
+msgid "~Zoom factor"
+msgstr "~Zoom factor"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_PAGE_LAYOUT.fixedline.text
+msgid "Page layout"
+msgstr "Page layout"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_DEFAULT.radiobutton.text
+msgid "D~efault"
+msgstr "D~efault"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_SINGPG.radiobutton.text
+msgid "~Single page"
+msgstr "~Single page"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_CONT.radiobutton.text
+msgid "~Continuous"
+msgstr "~Continuous"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_CONTFAC.radiobutton.text
+msgid "C~ontinuous facing"
+msgstr "C~ontinuous facing"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.CB_PGLY_FIRSTLEFT.checkbox.text
+msgid "First page is ~left"
+msgstr "First page is ~left"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_OPNFTR.tabpage.text"
+msgid "Initial View"
+msgstr "Initial View"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_WINOPT.fixedline.text
+msgid "Window options"
+msgstr "Window options"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_RESINIT.checkbox.text
+msgid "~Resize window to initial page"
+msgstr "~Resize window to initial page"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_CNTRWIN.checkbox.text
+msgid "~Center window on screen"
+msgstr "~Center window on screen"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_OPNFULL.checkbox.text
+msgid "~Open in full screen mode"
+msgstr "~Open in full screen mode"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_DISPDOCTITLE.checkbox.text
+msgid "~Display document title"
+msgstr "~Display document title"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_USRIFOPT.fixedline.text
+msgid "User interface options"
+msgstr "User interface options"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVMENUBAR.checkbox.text
+msgid "Hide ~menubar"
+msgstr "Hide ~menubar"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVTOOLBAR.checkbox.text
+msgid "Hide ~toolbar"
+msgstr "Hide ~toolbar"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVWINCTRL.checkbox.text
+msgid "Hide ~window controls"
+msgstr "Hide ~window controls"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_TRANSITIONS.fixedline.text
+msgid "Transitions"
+msgstr "Transitions"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_TRANSITIONEFFECTS.checkbox.text
+msgid "~Use transition effects"
+msgstr "~Use transition effects"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_BOOKMARKS.fixedline.text
+msgid "Bookmarks"
+msgstr "Bookmarks"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.RB_ALLBOOKMARKLEVELS.radiobutton.text
+msgid "All bookmark levels"
+msgstr "All bookmark levels"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.RB_VISIBLEBOOKMARKLEVELS.radiobutton.text
+msgid "Visible bookmark levels"
+msgstr "Visible bookmark levels"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_VPREFER.tabpage.text"
+msgid "User Interface"
+msgstr "User Interface"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_PWD_GROUP.fixedline.text
+msgid "File encryption and permission"
+msgstr "File encryption and permission"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.BTN_SET_PWD.pushbutton.text
+msgid "Set ~passwords..."
+msgstr "Set ~passwords..."
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_SET_PWD.string.text
+msgid "Set passwords"
+msgstr "Set passwords"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_SET.string.text
+msgid "Open password set"
+msgstr "Open password set"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_ENC.string.text
+msgid "PDF document will be encrypted"
+msgstr "PDF document will be encrypted"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_UNSET.string.text
+msgid "No open password set"
+msgstr "No open password set"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_UNENC.string.text
+msgid "PDF document will not be encrypted"
+msgstr "PDF document will not be encrypted"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_PDFA.string.text
+#, fuzzy
+msgid "PDF document will not be encrypted due to PDF/A export."
+msgstr "PDF document will not be encrypted due to PDF/A export."
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_SET.string.text
+msgid "Permission password set"
+msgstr "Permission password set"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_REST.string.text
+msgid "PDF document will be restricted"
+msgstr "PDF document will be restricted"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_UNSET.string.text
+msgid "No permission password set"
+msgstr "No permission password set"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_UNREST.string.text
+msgid "PDF document will be unrestricted"
+msgstr "PDF document will be unrestricted"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_PDFA.string.text
+#, fuzzy
+msgid "PDF document will not be restricted due to PDF/A export."
+msgstr "PDF document will not be restricted due to PDF/A export."
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_PRINT_PERMISSIONS.fixedline.text
+msgid "Printing"
+msgstr "Printing"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_NONE.radiobutton.text
+msgid "~Not permitted"
+msgstr "~Not permitted"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_LOWRES.radiobutton.text
+msgid "~Low resolution (150 dpi)"
+msgstr "~Low resolution (150 dpi)"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_HIGHRES.radiobutton.text
+msgid "~High resolution"
+msgstr "~High resolution"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_CHANGES_ALLOWED.fixedline.text
+msgid "Changes"
+msgstr "Changes"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_NONE.radiobutton.text
+msgid "No~t permitted"
+msgstr "No~t permitted"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_INSDEL.radiobutton.text
+msgid "~Inserting, deleting, and rotating pages"
+msgstr "~Inserting, deleting, and rotating pages"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_FILLFORM.radiobutton.text
+msgid "~Filling in form fields"
+msgstr "~Filling in form fields"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_COMMENT.radiobutton.text
+msgid "~Commenting, filling in form fields"
+msgstr "~Commenting, filling in form fields"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_ANY_NOCOPY.radiobutton.text
+msgid "~Any except extracting pages"
+msgstr "~Any except extracting pages"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.CB_ENDAB_COPY.checkbox.text
+msgid "Ena~ble copying of content"
+msgstr "Ena~ble copying of content"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.CB_ENAB_ACCESS.checkbox.text
+msgid "Enable text access for acce~ssibility tools"
+msgstr "Enable text access for acce~ssibility tools"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_SECURITY.tabpage.text"
+msgid "Security"
+msgstr "Security"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_EXP_BMRK_TO_DEST.checkbox.text
+msgid "Export bookmarks as named destinations"
+msgstr "Export bookmarks as named destinations"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_CNV_OOO_DOCTOPDF.checkbox.text
+msgid "Convert document references to PDF targets"
+msgstr "Convert document references to PDF targets"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_ENAB_RELLINKFSYS.checkbox.text
+msgid "Export URLs relative to file system"
+msgstr "Export URLs relative to file system"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.FL_DEFAULT_LINK_ACTION.fixedline.text
+msgid "Cross-document links"
+msgstr "Cross-document links"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_DEFAULT.radiobutton.text
+msgid "Default mode"
+msgstr "Default mode"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_APPLICATION.radiobutton.text
+msgid "Open with PDF reader application"
+msgstr "Open with PDF reader application"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_BROWSER.radiobutton.text
+msgid "Open with Internet browser"
+msgstr "Open with Internet browser"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.tabpage.text
+msgid "---"
+msgstr "---"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_GENER.pageitem.text
+msgctxt "impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_GENER.pageitem.text"
+msgid "General"
+msgstr "General"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_OPNFTR.pageitem.text
+msgctxt "impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_OPNFTR.pageitem.text"
+msgid "Initial View"
+msgstr "Initial View"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_VPREFER.pageitem.text
+msgctxt "impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_VPREFER.pageitem.text"
+msgid "User Interface"
+msgstr "User Interface"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_LINKS.pageitem.text
+msgid "Links"
+msgstr "Links"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_SECURITY.pageitem.text
+msgctxt "impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_SECURITY.pageitem.text"
+msgid "Security"
+msgstr "Security"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.tabdialog.text
+msgid "PDF Options"
+msgstr "PDF Options"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.FT_PROCESS.fixedtext.text
+msgid "During PDF export the following problems occurred:"
+msgstr "During PDF export the following problems occurred:"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_PDFA_SHORT.string.text
+msgid "PDF/A transparency"
+msgstr "PDF/A transparency"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_PDFA.string.text
+msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
+msgstr "PDF/A forbids transparency. A transparent object was painted opaque instead."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_VERSION_SHORT.string.text
+msgid "PDF version conflict"
+msgstr "PDF version conflict"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_VERSION.string.text
+msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
+msgstr "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_FORMACTION_PDFA_SHORT.string.text
+msgid "PDF/A form action"
+msgstr "PDF/A form action"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_FORMACTION_PDFA.string.text
+msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
+msgstr "A form control contained an action not supported by the PDF/A standard. The action was skipped"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_CONVERTED.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 "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."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_CONVERTED_SHORT.string.text
+msgid "Transparencies removed"
+msgstr "Transparencies removed"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.modaldialog.text
+msgid "Problems during PDF export"
+msgstr "Problems during PDF export"
diff --git a/source/en-ZA/filter/source/t602.po b/source/en-ZA/filter/source/t602.po
new file mode 100644
index 00000000000..9c17a723744
--- /dev/null
+++ b/source/en-ZA/filter/source/t602.po
@@ -0,0 +1,60 @@
+#. extracted from filter/source/t602.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Ft602.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: t602filter.src#T602FILTER_STR_IMPORT_DIALOG_TITLE.string.text
+msgid "Settings for T602 import"
+msgstr "Settings for T602 import"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_LABEL.string.text
+msgid "Encoding"
+msgstr "Encoding"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_AUTO.string.text
+msgid "Automatic"
+msgstr "Automatic"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_CP852.string.text
+msgid "CP852 (Latin2)"
+msgstr "CP852 (Latin2)"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_CP895.string.text
+msgid "CP895 (KEYB2CS, Kamenicky)"
+msgstr "CP895 (KEYB2CS, Kamenicky)"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_KOI8CS2.string.text
+msgid "KOI8 CS2"
+msgstr "KOI8 CS2"
+
+#: t602filter.src#T602FILTER_STR_CYRILLIC_MODE.string.text
+msgid "Mode for Russian language (Cyrillic)"
+msgstr "Mode for Russian language (Cyrillic)"
+
+#: t602filter.src#T602FILTER_STR_REFORMAT_TEXT.string.text
+msgid "Reformat the text"
+msgstr "Reformat the text"
+
+#: t602filter.src#T602FILTER_STR_DOT_COMMANDS.string.text
+msgid "Display dot commands"
+msgstr "Display dot commands"
+
+#: t602filter.src#T602FILTER_STR_CANCEL_BUTTON.string.text
+msgid "Cancel"
+msgstr "Cancel"
+
+#: t602filter.src#T602FILTER_STR_OK_BUTTON.string.text
+msgid "OK"
+msgstr "OK"
diff --git a/source/en-ZA/filter/source/xsltdialog.po b/source/en-ZA/filter/source/xsltdialog.po
new file mode 100644
index 00000000000..293bb5a15b6
--- /dev/null
+++ b/source/en-ZA/filter/source/xsltdialog.po
@@ -0,0 +1,317 @@
+#. extracted from filter/source/xsltdialog.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fxsltdialog.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2012-06-16 13:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: xmlfilterdialogstrings.src#STR_COLUMN_HEADER_NAME.string.text
+msgid "Name"
+msgstr "Name"
+
+#: xmlfilterdialogstrings.src#STR_COLUMN_HEADER_TYPE.string.text
+msgid "Type"
+msgstr "Type"
+
+#: xmlfilterdialogstrings.src#STR_UNKNOWN_APPLICATION.string.text
+msgid "Unknown"
+msgstr "Unknown"
+
+#: xmlfilterdialogstrings.src#STR_IMPORT_ONLY.string.text
+msgid "import filter"
+msgstr "import filter"
+
+#: xmlfilterdialogstrings.src#STR_IMPORT_EXPORT.string.text
+msgid "import/export filter"
+msgstr "import/export filter"
+
+#: xmlfilterdialogstrings.src#STR_EXPORT_ONLY.string.text
+msgid "export filter"
+msgstr "export filter"
+
+#: xmlfilterdialogstrings.src#STR_WARN_DELETE.string.text
+msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
+msgstr "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_FILTER_NAME_EXISTS.string.text
+msgid "An XML filter with the name '%s' already exists. Please enter a different name."
+msgstr "An XML filter with the name '%s' already exists. Please enter a different name."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_TYPE_NAME_EXISTS.string.text
+#, fuzzy
+msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
+msgstr "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_DTD_NOT_FOUND.string.text
+msgid "The DTD could not be found. Please enter a valid path."
+msgstr "The DTD could not be found. Please enter a valid path."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_EXPORT_XSLT_NOT_FOUND.string.text
+msgid "The XSLT for export cannot be found. Please enter a valid path."
+msgstr "The XSLT for export cannot be found. Please enter a valid path."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_IMPORT_XSLT_NOT_FOUND.string.text
+msgid "The XSLT for import cannot be found. Please enter a valid path."
+msgstr "The XSLT for import cannot be found. Please enter a valid path."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND.string.text
+msgid "The given import template cannot be found. Please enter a valid path."
+msgstr "The given import template cannot be found. Please enter a valid path."
+
+#: xmlfilterdialogstrings.src#STR_NOT_SPECIFIED.string.text
+msgid "Not specified"
+msgstr "Not specified"
+
+#: xmlfilterdialogstrings.src#STR_DEFAULT_FILTER_NAME.string.text
+msgid "New Filter"
+msgstr "New Filter"
+
+#: xmlfilterdialogstrings.src#STR_DEFAULT_UI_NAME.string.text
+msgid "Untitled"
+msgstr "Untitled"
+
+#: xmlfilterdialogstrings.src#STR_UNDEFINED_FILTER.string.text
+msgid "undefined filter"
+msgstr "undefined filter"
+
+#: xmlfilterdialogstrings.src#STR_FILTER_HAS_BEEN_SAVED.string.text
+msgid "The XML filter '%s' has been saved as package '%s'. "
+msgstr "The XML filter '%s' has been saved as package '%s'. "
+
+#: xmlfilterdialogstrings.src#STR_FILTERS_HAVE_BEEN_SAVED.string.text
+msgid "%s XML filters have been saved in the package '%s'."
+msgstr "%s XML filters have been saved in the package '%s'."
+
+#: xmlfilterdialogstrings.src#STR_FILTER_PACKAGE.string.text
+msgid "XSLT filter package"
+msgstr "XSLT filter package"
+
+#: xmlfilterdialogstrings.src#STR_FILTER_INSTALLED.string.text
+msgid "The XML filter '%s' has been installed successfully."
+msgstr "The XML filter '%s' has been installed successfully."
+
+#: xmlfilterdialogstrings.src#STR_FILTERS_INSTALLED.string.text
+msgid "%s XML filters have been installed successfully."
+msgstr "%s XML filters have been installed successfully."
+
+#: xmlfilterdialogstrings.src#STR_NO_FILTERS_FOUND.string.text
+msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
+msgstr "No XML filter could be installed because the package '%s' does not contain any XML filters."
+
+#: xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.1.RID_XML_FILTER_TABPAGE_BASIC.pageitem.text
+msgctxt "xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.1.RID_XML_FILTER_TABPAGE_BASIC.pageitem.text"
+msgid "General"
+msgstr "General"
+
+#: xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.1.RID_XML_FILTER_TABPAGE_XSLT.pageitem.text
+msgctxt "xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.1.RID_XML_FILTER_TABPAGE_XSLT.pageitem.text"
+msgid "Transformation"
+msgstr "Transformation"
+
+#: xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.tabdialog.text
+msgid "XML Filter: %s"
+msgstr "XML Filter: %s"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FL_EXPORT.fixedline.text
+msgid "Export"
+msgstr "Export"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_EXPORT_XSLT.fixedtext.text
+msgctxt "xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_EXPORT_XSLT.fixedtext.text"
+msgid "XSLT for export"
+msgstr "XSLT for export"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_TRANSFORM_DOCUMENT.fixedtext.text
+msgid "Transform document"
+msgstr "Transform document"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_EXPORT_BROWSE.pushbutton.text
+msgid "~Browse..."
+msgstr "~Browse..."
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_CURRENT_DOCUMENT.pushbutton.text
+msgid "~Current Document"
+msgstr "~Current Document"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FL_IMPORT.fixedline.text
+msgid "Import"
+msgstr "Import"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_IMPORT_XSLT.fixedtext.text
+msgctxt "xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_IMPORT_XSLT.fixedtext.text"
+msgid "XSLT for import"
+msgstr "XSLT for import"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_IMPORT_TEMPLATE.fixedtext.text
+msgctxt "xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_IMPORT_TEMPLATE.fixedtext.text"
+msgid "Template for import"
+msgstr "Template for import"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_TRANSFORM_FILE.fixedtext.text
+msgid "Transform file"
+msgstr "Transform file"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.CBX_DISPLAY_SOURCE.checkbox.text
+msgid "~Display source"
+msgstr "~Display source"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_IMPORT_BROWSE.pushbutton.text
+msgid "B~rowse..."
+msgstr "B~rowse..."
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_RECENT_DOCUMENT.pushbutton.text
+msgid "~Recent File"
+msgstr "~Recent File"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_CLOSE.pushbutton.text
+msgctxt "xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_CLOSE.pushbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.modaldialog.text
+msgid "Test XML Filter: %s"
+msgstr "Test XML Filter: %s"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_NEW.pushbutton.text
+msgid "~New..."
+msgstr "~New..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_EDIT.pushbutton.text
+msgid "~Edit..."
+msgstr "~Edit..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_TEST.pushbutton.text
+msgid "~Test XSLTs..."
+msgstr "~Test XSLTs..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_DELETE.pushbutton.text
+msgid "~Delete..."
+msgstr "~Delete..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_SAVE.pushbutton.text
+msgid "~Save as Package..."
+msgstr "~Save as Package..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_OPEN.pushbutton.text
+msgid "~Open Package..."
+msgstr "~Open Package..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_CLOSE.pushbutton.text
+msgctxt "xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_CLOSE.pushbutton.text"
+msgid "~Close"
+msgstr "~Close"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.STR_XML_FILTER_LISTBOX.string.text
+msgid "XML Filter List"
+msgstr "XML Filter List"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.workwindow.text
+msgid "XML Filter Settings"
+msgstr "XML Filter Settings"
+
+#: xmlfileview.src#DLG_XML_SOURCE_FILE_DIALOG.PB_VALIDATE.pushbutton.text
+msgid "~Validate"
+msgstr "~Validate"
+
+#: xmlfileview.src#DLG_XML_SOURCE_FILE_DIALOG.workwindow.text
+msgid "XML Filter output"
+msgstr "XML Filter output"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_DOCTYPE.fixedtext.text
+msgid "DocType"
+msgstr "DocType"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_DTD_SCHEMA.fixedtext.text
+msgid "DTD"
+msgstr "DTD"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.ED_XML_DTD_SCHEMA_BROWSE.pushbutton.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.ED_XML_DTD_SCHEMA_BROWSE.pushbutton.text"
+msgid "Browse..."
+msgstr "Browse..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_EXPORT_XSLT.fixedtext.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_EXPORT_XSLT.fixedtext.text"
+msgid "XSLT for export"
+msgstr "XSLT for export"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_EXPORT_XSLT_BROWSE.pushbutton.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_EXPORT_XSLT_BROWSE.pushbutton.text"
+msgid "Browse..."
+msgstr "Browse..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_IMPORT_XSLT.fixedtext.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_IMPORT_XSLT.fixedtext.text"
+msgid "XSLT for import"
+msgstr "XSLT for import"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_IMPORT_XSLT_BROWSE.pushbutton.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_IMPORT_XSLT_BROWSE.pushbutton.text"
+msgid "Browse..."
+msgstr "Browse..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_IMPORT_TEMPLATE.fixedtext.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_IMPORT_TEMPLATE.fixedtext.text"
+msgid "Template for import"
+msgstr "Template for import"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_IMPORT_TEMPLATE_BROWSE.pushbutton.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.PB_XML_IMPORT_TEMPLATE_BROWSE.pushbutton.text"
+msgid "Browse..."
+msgstr "Browse..."
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_TRANSFORM_SERVICE.fixedtext.text
+msgid "XSLT Transformation Service"
+msgstr ""
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.RB_XML_TRANSFORM_SERVICE_LIBXSLT.radiobutton.text
+msgid "~Builtin (LibXSLT)"
+msgstr ""
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.RB_XML_TRANSFORM_SERVICE_SAXON_J.radiobutton.text
+msgid "~Saxon/J"
+msgstr ""
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.tabpage.text
+msgctxt "xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.tabpage.text"
+msgid "Transformation"
+msgstr "Transformation"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_FILTER_NAME.fixedtext.text
+msgid "Filter name"
+msgstr "Filter name"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_APPLICATION.fixedtext.text
+msgid "Application"
+msgstr "Application"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_INTERFACE_NAME.fixedtext.text
+msgid ""
+"Name of\n"
+"file type"
+msgstr ""
+"Name of\n"
+"file type"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_EXTENSION.fixedtext.text
+msgid "File extension"
+msgstr "File extension"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_DESCRIPTION.fixedtext.text
+msgid "Comments"
+msgstr "Comments"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.tabpage.text
+msgctxt "xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.tabpage.text"
+msgid "General"
+msgstr "General"
diff --git a/source/en-ZA/forms/source/resource.po b/source/en-ZA/forms/source/resource.po
new file mode 100644
index 00000000000..970274f50bc
--- /dev/null
+++ b/source/en-ZA/forms/source/resource.po
@@ -0,0 +1,260 @@
+#. extracted from forms/source/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+forms%2Fsource%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:38+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: xforms.src#RID_STR_XFORMS_NO_BINDING_EXPRESSION.string.text
+msgid "Please enter a binding expression."
+msgstr "Please enter a binding expression."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_BINDING_EXPRESSION.string.text
+msgid "This is an invalid binding expression."
+msgstr "This is an invalid binding expression."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_VALUE.string.text
+msgid "Value is invalid."
+msgstr "Value is invalid."
+
+#: xforms.src#RID_STR_XFORMS_REQUIRED.string.text
+msgid "A value is required."
+msgstr "A value is required."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_CONSTRAINT.string.text
+msgid "The constraint '$1' not validated."
+msgstr "The constraint '$1' not validated."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_IS_NOT_A.string.text
+msgid "The value is not of the type '$2'."
+msgstr "The value is not of the type '$2'."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_INCL.string.text
+msgid "The value must be smaller than or equal to $2."
+msgstr "The value must be smaller than or equal to $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_EXCL.string.text
+msgid "The value must be smaller than $2."
+msgstr "The value must be smaller than $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_INCL.string.text
+msgid "The value must be greater than or equal to $2."
+msgstr "The value must be greater than or equal to $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_EXCL.string.text
+msgid "The value must be greater than $2."
+msgstr "The value must be greater than $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_PATTERN.string.text
+msgid "The value does not match the pattern '$2'."
+msgstr "The value does not match the pattern '$2'."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_TOTAL_DIGITS.string.text
+msgid "$2 digits allowed at most."
+msgstr "$2 digits allowed at most."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_FRACTION_DIGITS.string.text
+msgid "$2 fraction digits allowed at most."
+msgstr "$2 fraction digits allowed at most."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_LENGTH.string.text
+msgid "The string must be $2 characters long."
+msgstr "The string must be $2 characters long."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_LENGTH.string.text
+msgid "The string must be at least $2 characters long."
+msgstr "The string must be at least $2 characters long."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_LENGTH.string.text
+msgid "The string can only be $2 characters long at most."
+msgstr "The string can only be $2 characters long at most."
+
+#: xforms.src#RID_STR_DATATYPE_STRING.string.text
+msgid "String"
+msgstr "String"
+
+#: xforms.src#RID_STR_DATATYPE_URL.string.text
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#: xforms.src#RID_STR_DATATYPE_BOOLEAN.string.text
+msgid "True/False (Boolean)"
+msgstr "True/False (Boolean)"
+
+#: xforms.src#RID_STR_DATATYPE_DECIMAL.string.text
+msgid "Decimal"
+msgstr "Decimal"
+
+#: xforms.src#RID_STR_DATATYPE_FLOAT.string.text
+msgid "Floating point"
+msgstr "Floating point"
+
+#: xforms.src#RID_STR_DATATYPE_DOUBLE.string.text
+msgid "Double"
+msgstr "Double"
+
+#: xforms.src#RID_STR_DATATYPE_DATE.string.text
+msgid "Date"
+msgstr "Date"
+
+#: xforms.src#RID_STR_DATATYPE_TIME.string.text
+msgid "Time"
+msgstr "Time"
+
+#: xforms.src#RID_STR_DATATYPE_DATETIME.string.text
+msgid "Date and Time"
+msgstr "Date and Time"
+
+#: xforms.src#RID_STR_DATATYPE_YEARMONTH.string.text
+msgid "Month and year"
+msgstr "Month and year"
+
+#: xforms.src#RID_STR_DATATYPE_YEAR.string.text
+msgid "Year"
+msgstr "Year"
+
+#: xforms.src#RID_STR_DATATYPE_MONTHDAY.string.text
+msgid "Month and day"
+msgstr "Month and day"
+
+#: xforms.src#RID_STR_DATATYPE_MONTH.string.text
+msgid "Month"
+msgstr "Month"
+
+#: xforms.src#RID_STR_DATATYPE_DAY.string.text
+msgid "Day"
+msgstr "Day"
+
+#: xforms.src#RID_STR_XFORMS_CANT_EVALUATE.string.text
+msgid "Error during evaluation"
+msgstr "Error during evaluation"
+
+#: xforms.src#RID_STR_XFORMS_PATTERN_DOESNT_MATCH.string.text
+msgid "The string '$1' does not match the required regular expression '$2'."
+msgstr "The string '$1' does not match the required regular expression '$2'."
+
+#: xforms.src#RID_STR_XFORMS_BINDING_UI_NAME.string.text
+msgid "Binding"
+msgstr "Binding"
+
+#: strings.src#RID_BASELISTBOX_ERROR_FILLLIST.string.text
+msgid "The contents of a combo box or list field could not be determined."
+msgstr "The contents of a combo box or list field could not be determined."
+
+#: strings.src#RID_STR_IMPORT_GRAPHIC.string.text
+msgid "Insert graphics"
+msgstr "Insert graphics"
+
+#: strings.src#RID_STR_CONTROL_SUBSTITUTED_NAME.string.text
+msgid "substituted"
+msgstr "substituted"
+
+#: strings.src#RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN.string.text
+msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder."
+msgstr "An error occurred while this control was being loaded. It was therefore replaced with a placeholder."
+
+#: strings.src#RID_STR_READERROR.string.text
+msgid "Error reading data from database"
+msgstr "Error reading data from database"
+
+#: strings.src#RID_STR_CONNECTERROR.string.text
+msgid "Connection failed"
+msgstr "Connection failed"
+
+#: strings.src#RID_ERR_LOADING_FORM.string.text
+msgid "The data content could not be loaded."
+msgstr "The data content could not be loaded."
+
+#: strings.src#RID_ERR_REFRESHING_FORM.string.text
+msgid "The data content could not be updated"
+msgstr "The data content could not be updated"
+
+#: strings.src#RID_STR_ERR_INSERTRECORD.string.text
+msgid "Error inserting the new record"
+msgstr "Error inserting the new record"
+
+#: strings.src#RID_STR_ERR_UPDATERECORD.string.text
+msgid "Error updating the current record"
+msgstr "Error updating the current record"
+
+#: strings.src#RID_STR_ERR_DELETERECORD.string.text
+msgid "Error deleting the current record"
+msgstr "Error deleting the current record"
+
+#: strings.src#RID_STR_ERR_DELETERECORDS.string.text
+msgid "Error deleting the specified records"
+msgstr "Error deleting the specified records"
+
+#: strings.src#RID_STR_NEED_NON_NULL_OBJECT.string.text
+msgid "The object cannot be NULL."
+msgstr "The object cannot be NULL."
+
+#: strings.src#RID_STR_OPEN_GRAPHICS.string.text
+msgid "Insert graphics from..."
+msgstr "Insert graphics from..."
+
+#: strings.src#RID_STR_CLEAR_GRAPHICS.string.text
+msgid "Remove graphics"
+msgstr "Remove graphics"
+
+#: strings.src#RID_STR_INVALIDSTREAM.string.text
+msgid "The given stream is invalid."
+msgstr "The given stream is invalid."
+
+#: strings.src#RID_STR_SYNTAXERROR.string.text
+msgid "Syntax error in query expression"
+msgstr "Syntax error in query expression"
+
+#: strings.src#RID_STR_INCOMPATIBLE_TYPES.string.text
+msgid "The value types supported by the binding cannot be used for exchanging data with this control."
+msgstr "The value types supported by the binding cannot be used for exchanging data with this control."
+
+#: strings.src#RID_STR_LABEL_RECORD.string.text
+msgid "Record"
+msgstr "Record"
+
+#: strings.src#RID_STR_INVALID_VALIDATOR.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 "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."
+
+#: strings.src#RID_STR_LABEL_OF.string.text
+msgid "of"
+msgstr "of"
+
+#: strings.src#RID_STR_QUERY_SAVE_MODIFIED_ROW.string.text
+msgid ""
+"The content of the current form has been modified.\n"
+"Do you want to save your changes?"
+msgstr ""
+"The content of the current form has been modified.\n"
+"Do you want to save your changes?"
+
+#: strings.src#RID_STR_COULD_NOT_SET_ORDER.string.text
+msgid "Error setting the sort criteria"
+msgstr "Error setting the sort criteria"
+
+#: strings.src#RID_STR_COULD_NOT_SET_FILTER.string.text
+msgid "Error setting the filter criteria"
+msgstr "Error setting the filter criteria"
+
+#: strings.src#RID_STR_FEATURE_REQUIRES_PARAMETERS.string.text
+msgid "To execute this function, parameters are needed."
+msgstr "To execute this function, parameters are needed."
+
+#: strings.src#RID_STR_FEATURE_NOT_EXECUTABLE.string.text
+msgid "This function cannot be executed, but is only for status queries."
+msgstr "This function cannot be executed, but is only for status queries."
+
+#: strings.src#RID_STR_FEATURE_UNKNOWN.string.text
+msgid "Unknown function."
+msgstr "Unknown function."
diff --git a/source/en-ZA/formula/source/core/resource.po b/source/en-ZA/formula/source/core/resource.po
new file mode 100644
index 00000000000..51284a4ce1a
--- /dev/null
+++ b/source/en-ZA/formula/source/core/resource.po
@@ -0,0 +1,1216 @@
+#. extracted from formula/source/core/resource.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+formula%2Fsource%2Fcore%2Fresource.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IF.string.text
+msgid "IF"
+msgstr "IF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHOSE.string.text
+msgid "CHOOSE"
+msgstr "CHOOSE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AND.string.text
+msgid "AND"
+msgstr "AND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_OR.string.text
+msgid "OR"
+msgstr "OR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NOT.string.text
+msgid "NOT"
+msgstr "NOT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NEG.string.text
+msgid "NEG"
+msgstr "NEG"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PI.string.text
+msgid "PI"
+msgstr "PI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RANDOM.string.text
+msgid "RAND"
+msgstr "RAND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRUE.string.text
+msgid "TRUE"
+msgstr "TRUE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FALSE.string.text
+msgid "FALSE"
+msgstr "FALSE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_ACT_DATE.string.text
+msgid "TODAY"
+msgstr "TODAY"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_ACT_TIME.string.text
+msgid "NOW"
+msgstr "NOW"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NO_VALUE.string.text
+msgid "NA"
+msgstr "NA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CURRENT.string.text
+msgid "CURRENT"
+msgstr "CURRENT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DEG.string.text
+msgid "DEGREES"
+msgstr "DEGREES"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RAD.string.text
+msgid "RADIANS"
+msgstr "RADIANS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SIN.string.text
+msgid "SIN"
+msgstr "SIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COS.string.text
+msgid "COS"
+msgstr "COS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TAN.string.text
+msgid "TAN"
+msgstr "TAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COT.string.text
+msgid "COT"
+msgstr "COT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_SIN.string.text
+msgid "ASIN"
+msgstr "ASIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COS.string.text
+msgid "ACOS"
+msgstr "ACOS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN.string.text
+msgid "ATAN"
+msgstr "ATAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COT.string.text
+msgid "ACOT"
+msgstr "ACOT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SIN_HYP.string.text
+msgid "SINH"
+msgstr "SINH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COS_HYP.string.text
+msgid "COSH"
+msgstr "COSH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TAN_HYP.string.text
+msgid "TANH"
+msgstr "TANH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COT_HYP.string.text
+msgid "COTH"
+msgstr "COTH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_SIN_HYP.string.text
+msgid "ASINH"
+msgstr "ASINH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COS_HYP.string.text
+msgid "ACOSH"
+msgstr "ACOSH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN_HYP.string.text
+msgid "ATANH"
+msgstr "ATANH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_COT_HYP.string.text
+msgid "ACOTH"
+msgstr "ACOTH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COSECANT.string.text
+msgid "CSC"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SECANT.string.text
+msgid "SEC"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COSECANT_HYP.string.text
+msgid "CSCH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SECANT_HYP.string.text
+msgid "SECH"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXP.string.text
+msgid "EXP"
+msgstr "EXP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LN.string.text
+msgid "LN"
+msgstr "LN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SQRT.string.text
+msgid "SQRT"
+msgstr "SQRT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FACT.string.text
+msgid "FACT"
+msgstr "FACT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_YEAR.string.text
+msgid "YEAR"
+msgstr "YEAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_MONTH.string.text
+msgid "MONTH"
+msgstr "MONTH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DAY.string.text
+msgid "DAY"
+msgstr "DAY"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_HOUR.string.text
+msgid "HOUR"
+msgstr "HOUR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_MIN.string.text
+msgid "MINUTE"
+msgstr "MINUTE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_SEC.string.text
+msgid "SECOND"
+msgstr "SECOND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PLUS_MINUS.string.text
+msgid "SIGN"
+msgstr "SIGN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ABS.string.text
+msgid "ABS"
+msgstr "ABS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INT.string.text
+msgid "INT"
+msgstr "INT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PHI.string.text
+msgid "PHI"
+msgstr "PHI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAUSS.string.text
+msgid "GAUSS"
+msgstr "GAUSS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_EMPTY.string.text
+msgid "ISBLANK"
+msgstr "ISBLANK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_STRING.string.text
+msgid "ISTEXT"
+msgstr "ISTEXT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_NON_STRING.string.text
+msgid "ISNONTEXT"
+msgstr "ISNONTEXT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_LOGICAL.string.text
+msgid "ISLOGICAL"
+msgstr "ISLOGICAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TYPE.string.text
+msgid "TYPE"
+msgstr "TYPE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CELL.string.text
+msgid "CELL"
+msgstr "CELL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_REF.string.text
+msgid "ISREF"
+msgstr "ISREF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_VALUE.string.text
+msgid "ISNUMBER"
+msgstr "ISNUMBER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_FORMULA.string.text
+msgid "ISFORMULA"
+msgstr "ISFORMULA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_NV.string.text
+msgid "ISNA"
+msgstr "ISNA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ERR.string.text
+msgid "ISERR"
+msgstr "ISERR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ERROR.string.text
+msgid "ISERROR"
+msgstr "ISERROR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_EVEN.string.text
+msgid "ISEVEN"
+msgstr "ISEVEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ODD.string.text
+msgid "ISODD"
+msgstr "ISODD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_N.string.text
+msgid "N"
+msgstr "N"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATE_VALUE.string.text
+msgid "DATEVALUE"
+msgstr "DATEVALUE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_TIME_VALUE.string.text
+msgid "TIMEVALUE"
+msgstr "TIMEVALUE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CODE.string.text
+msgid "CODE"
+msgstr "CODE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRIM.string.text
+msgid "TRIM"
+msgstr "TRIM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UPPER.string.text
+msgid "UPPER"
+msgstr "UPPER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PROPPER.string.text
+msgid "PROPER"
+msgstr "PROPER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOWER.string.text
+msgid "LOWER"
+msgstr "LOWER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LEN.string.text
+msgid "LEN"
+msgstr "LEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T.string.text
+msgid "T"
+msgstr "T"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VALUE.string.text
+msgid "VALUE"
+msgstr "VALUE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CLEAN.string.text
+msgid "CLEAN"
+msgstr "CLEAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHAR.string.text
+msgid "CHAR"
+msgstr "CHAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_JIS.string.text
+msgid "JIS"
+msgstr "JIS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ASC.string.text
+msgid "ASC"
+msgstr "ASC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UNICODE.string.text
+msgid "UNICODE"
+msgstr "UNICODE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UNICHAR.string.text
+msgid "UNICHAR"
+msgstr "UNICHAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG10.string.text
+msgid "LOG10"
+msgstr "LOG10"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EVEN.string.text
+msgid "EVEN"
+msgstr "EVEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ODD.string.text
+msgid "ODD"
+msgstr "ODD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STD_NORM_DIST.string.text
+msgid "NORMSDIST"
+msgstr "NORMSDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FISHER.string.text
+msgid "FISHER"
+msgstr "FISHER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FISHER_INV.string.text
+msgid "FISHERINV"
+msgstr "FISHERINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_S_NORM_INV.string.text
+msgid "NORMSINV"
+msgstr "NORMSINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_LN.string.text
+msgid "GAMMALN"
+msgstr "GAMMALN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_TYPE.string.text
+msgid "ERRORTYPE"
+msgstr "ERRORTYPE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FORMULA.string.text
+msgid "FORMULA"
+msgstr "FORMULA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARABIC.string.text
+msgid "ARABIC"
+msgstr "ARABIC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ARC_TAN_2.string.text
+msgid "ATAN2"
+msgstr "ATAN2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CEIL.string.text
+msgid "CEILING"
+msgstr "CEILING"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FLOOR.string.text
+msgid "FLOOR"
+msgstr "FLOOR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND.string.text
+msgid "ROUND"
+msgstr "ROUND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND_UP.string.text
+msgid "ROUNDUP"
+msgstr "ROUNDUP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND_DOWN.string.text
+msgid "ROUNDDOWN"
+msgstr "ROUNDDOWN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRUNC.string.text
+msgid "TRUNC"
+msgstr "TRUNC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG.string.text
+msgid "LOG"
+msgstr "LOG"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_POWER.string.text
+msgid "POWER"
+msgstr "POWER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GGT.string.text
+msgid "GCD"
+msgstr "GCD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KGV.string.text
+msgid "LCM"
+msgstr "LCM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MOD.string.text
+msgid "MOD"
+msgstr "MOD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_PRODUCT.string.text
+msgid "SUMPRODUCT"
+msgstr "SUMPRODUCT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_SQ.string.text
+msgid "SUMSQ"
+msgstr "SUMSQ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_X2MY2.string.text
+msgid "SUMX2MY2"
+msgstr "SUMX2MY2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_X2DY2.string.text
+msgid "SUMX2PY2"
+msgstr "SUMX2PY2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_XMY2.string.text
+msgid "SUMXMY2"
+msgstr "SUMXMY2"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATE.string.text
+msgid "DATE"
+msgstr "DATE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_TIME.string.text
+msgid "TIME"
+msgstr "TIME"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DIFF_DATE.string.text
+msgid "DAYS"
+msgstr "DAYS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DIFF_DATE_360.string.text
+msgid "DAYS360"
+msgstr "DAYS360"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATEDIF.string.text
+msgid "DATEDIF"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIN.string.text
+msgid "MIN"
+msgstr "MIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIN_A.string.text
+msgid "MINA"
+msgstr "MINA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAX.string.text
+msgid "MAX"
+msgstr "MAX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAX_A.string.text
+msgid "MAXA"
+msgstr "MAXA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM.string.text
+msgid "SUM"
+msgstr "SUM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PRODUCT.string.text
+msgid "PRODUCT"
+msgstr "PRODUCT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVERAGE.string.text
+msgid "AVERAGE"
+msgstr "AVERAGE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVERAGE_A.string.text
+msgid "AVERAGEA"
+msgstr "AVERAGEA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT.string.text
+msgid "COUNT"
+msgstr "COUNT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_2.string.text
+msgid "COUNTA"
+msgstr "COUNTA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NBW.string.text
+msgid "NPV"
+msgstr "NPV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IKV.string.text
+msgid "IRR"
+msgstr "IRR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIRR.string.text
+msgid "MIRR"
+msgstr "MIRR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ISPMT.string.text
+msgid "ISPMT"
+msgstr "ISPMT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR.string.text
+msgid "VAR"
+msgstr "VAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_A.string.text
+msgid "VARA"
+msgstr "VARA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_P.string.text
+msgid "VARP"
+msgstr "VARP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_P_A.string.text
+msgid "VARPA"
+msgstr "VARPA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV.string.text
+msgid "STDEV"
+msgstr "STDEV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_A.string.text
+msgid "STDEVA"
+msgstr "STDEVA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_P.string.text
+msgid "STDEVP"
+msgstr "STDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ST_DEV_P_A.string.text
+msgid "STDEVPA"
+msgstr "STDEVPA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_B.string.text
+msgid "B"
+msgstr "B"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NORM_DIST.string.text
+msgid "NORMDIST"
+msgstr "NORMDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXP_DIST.string.text
+msgid "EXPONDIST"
+msgstr "EXPONDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BINOM_DIST.string.text
+msgid "BINOMDIST"
+msgstr "BINOMDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_POISSON_DIST.string.text
+msgid "POISSON"
+msgstr "POISSON"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KOMBIN.string.text
+msgid "COMBIN"
+msgstr "COMBIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KOMBIN_2.string.text
+msgid "COMBINA"
+msgstr "COMBINA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VARIATIONEN.string.text
+msgid "PERMUT"
+msgstr "PERMUT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VARIATIONEN_2.string.text
+msgid "PERMUTATIONA"
+msgstr "PERMUTATIONA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BW.string.text
+msgid "PV"
+msgstr "PV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DIA.string.text
+msgid "SYD"
+msgstr "SYD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GDA.string.text
+msgid "DDB"
+msgstr "DDB"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GDA_2.string.text
+msgid "DB"
+msgstr "DB"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VBD.string.text
+msgid "VDB"
+msgstr "VDB"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LAUFZ.string.text
+msgid "DURATION"
+msgstr "DURATION"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LIA.string.text
+msgid "SLN"
+msgstr "SLN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RMZ.string.text
+msgid "PMT"
+msgstr "PMT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COLUMNS.string.text
+msgid "COLUMNS"
+msgstr "COLUMNS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROWS.string.text
+msgid "ROWS"
+msgstr "ROWS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLES.string.text
+msgid "SHEETS"
+msgstr "SHEETS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COLUMN.string.text
+msgid "COLUMN"
+msgstr "COLUMN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROW.string.text
+msgid "ROW"
+msgstr "ROW"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLE.string.text
+msgid "SHEET"
+msgstr "SHEET"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZGZ.string.text
+msgid "RRI"
+msgstr "RRI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZW.string.text
+msgid "FV"
+msgstr "FV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZZR.string.text
+msgid "NPER"
+msgstr "NPER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZINS.string.text
+msgid "RATE"
+msgstr "RATE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZINS_Z.string.text
+msgid "IPMT"
+msgstr "IPMT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KAPZ.string.text
+msgid "PPMT"
+msgstr "PPMT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KUM_ZINS_Z.string.text
+msgid "CUMIPMT"
+msgstr "CUMIPMT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KUM_KAP_Z.string.text
+msgid "CUMPRINC"
+msgstr "CUMPRINC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EFFEKTIV.string.text
+msgid "EFFECTIVE"
+msgstr "EFFECTIVE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NOMINAL.string.text
+msgid "NOMINAL"
+msgstr "NOMINAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUB_TOTAL.string.text
+msgid "SUBTOTAL"
+msgstr "SUBTOTAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_SUM.string.text
+msgid "DSUM"
+msgstr "DSUM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_COUNT.string.text
+msgid "DCOUNT"
+msgstr "DCOUNT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_COUNT_2.string.text
+msgid "DCOUNTA"
+msgstr "DCOUNTA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_AVERAGE.string.text
+msgid "DAVERAGE"
+msgstr "DAVERAGE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_GET.string.text
+msgid "DGET"
+msgstr "DGET"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_MAX.string.text
+msgid "DMAX"
+msgstr "DMAX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_MIN.string.text
+msgid "DMIN"
+msgstr "DMIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_PRODUCT.string.text
+msgid "DPRODUCT"
+msgstr "DPRODUCT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_STD_DEV.string.text
+msgid "DSTDEV"
+msgstr "DSTDEV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_STD_DEV_P.string.text
+msgid "DSTDEVP"
+msgstr "DSTDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_VAR.string.text
+msgid "DVAR"
+msgstr "DVAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_VAR_P.string.text
+msgid "DVARP"
+msgstr "DVARP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INDIRECT.string.text
+msgid "INDIRECT"
+msgstr "INDIRECT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ADDRESS.string.text
+msgid "ADDRESS"
+msgstr "ADDRESS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MATCH.string.text
+msgid "MATCH"
+msgstr "MATCH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_EMPTY_CELLS.string.text
+msgid "COUNTBLANK"
+msgstr "COUNTBLANK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_IF.string.text
+msgid "COUNTIF"
+msgstr "COUNTIF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_IF.string.text
+msgid "SUMIF"
+msgstr "SUMIF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOOKUP.string.text
+msgid "LOOKUP"
+msgstr "LOOKUP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_V_LOOKUP.string.text
+msgid "VLOOKUP"
+msgstr "VLOOKUP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_H_LOOKUP.string.text
+msgid "HLOOKUP"
+msgstr "HLOOKUP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MULTI_AREA.string.text
+msgid "MULTIRANGE"
+msgstr "MULTIRANGE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_OFFSET.string.text
+msgid "OFFSET"
+msgstr "OFFSET"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INDEX.string.text
+msgid "INDEX"
+msgstr "INDEX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AREAS.string.text
+msgid "AREAS"
+msgstr "AREAS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CURRENCY.string.text
+msgid "DOLLAR"
+msgstr "DOLLAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_REPLACE.string.text
+msgid "REPLACE"
+msgstr "REPLACE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FIXED.string.text
+msgid "FIXED"
+msgstr "FIXED"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FIND.string.text
+msgid "FIND"
+msgstr "FIND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXACT.string.text
+msgid "EXACT"
+msgstr "EXACT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LEFT.string.text
+msgid "LEFT"
+msgstr "LEFT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RIGHT.string.text
+msgid "RIGHT"
+msgstr "RIGHT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SEARCH.string.text
+msgid "SEARCH"
+msgstr "SEARCH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MID.string.text
+msgid "MID"
+msgstr "MID"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TEXT.string.text
+msgid "TEXT"
+msgstr "TEXT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUBSTITUTE.string.text
+msgid "SUBSTITUTE"
+msgstr "SUBSTITUTE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_REPT.string.text
+msgid "REPT"
+msgstr "REPT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONCAT.string.text
+msgid "CONCATENATE"
+msgstr "CONCATENATE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_VALUE.string.text
+msgid "MVALUE"
+msgstr "MVALUE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_DET.string.text
+msgid "MDETERM"
+msgstr "MDETERM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_INV.string.text
+msgid "MINVERSE"
+msgstr "MINVERSE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_MULT.string.text
+msgid "MMULT"
+msgstr "MMULT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_TRANS.string.text
+msgid "TRANSPOSE"
+msgstr "TRANSPOSE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MATRIX_UNIT.string.text
+msgid "MUNIT"
+msgstr "MUNIT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BACK_SOLVER.string.text
+msgid "GOALSEEK"
+msgstr "GOALSEEK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HYP_GEOM_DIST.string.text
+msgid "HYPGEOMDIST"
+msgstr "HYPGEOMDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG_NORM_DIST.string.text
+msgid "LOGNORMDIST"
+msgstr "LOGNORMDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_DIST.string.text
+msgid "TDIST"
+msgstr "TDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_DIST.string.text
+msgid "FDIST"
+msgstr "FDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_DIST.string.text
+msgid "CHIDIST"
+msgstr "CHIDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_WEIBULL.string.text
+msgid "WEIBULL"
+msgstr "WEIBULL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NEG_BINOM_VERT.string.text
+msgid "NEGBINOMDIST"
+msgstr "NEGBINOMDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KRIT_BINOM.string.text
+msgid "CRITBINOM"
+msgstr "CRITBINOM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KURT.string.text
+msgid "KURT"
+msgstr "KURT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HAR_MEAN.string.text
+msgid "HARMEAN"
+msgstr "HARMEAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GEO_MEAN.string.text
+msgid "GEOMEAN"
+msgstr "GEOMEAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STANDARD.string.text
+msgid "STANDARDIZE"
+msgstr "STANDARDIZE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVE_DEV.string.text
+msgid "AVEDEV"
+msgstr "AVEDEV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SCHIEFE.string.text
+msgid "SKEW"
+msgstr "SKEW"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DEV_SQ.string.text
+msgid "DEVSQ"
+msgstr "DEVSQ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MEDIAN.string.text
+msgid "MEDIAN"
+msgstr "MEDIAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MODAL_VALUE.string.text
+msgid "MODE"
+msgstr "MODE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_Z_TEST.string.text
+msgid "ZTEST"
+msgstr "ZTEST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_TEST.string.text
+msgid "TTEST"
+msgstr "TTEST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RANK.string.text
+msgid "RANK"
+msgstr "RANK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PERCENTILE.string.text
+msgid "PERCENTILE"
+msgstr "PERCENTILE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PERCENT_RANK.string.text
+msgid "PERCENTRANK"
+msgstr "PERCENTRANK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LARGE.string.text
+msgid "LARGE"
+msgstr "LARGE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SMALL.string.text
+msgid "SMALL"
+msgstr "SMALL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FREQUENCY.string.text
+msgid "FREQUENCY"
+msgstr "FREQUENCY"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_QUARTILE.string.text
+msgid "QUARTILE"
+msgstr "QUARTILE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NORM_INV.string.text
+msgid "NORMINV"
+msgstr "NORMINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONFIDENCE.string.text
+msgid "CONFIDENCE"
+msgstr "CONFIDENCE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_TEST.string.text
+msgid "FTEST"
+msgstr "FTEST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRIM_MEAN.string.text
+msgid "TRIMMEAN"
+msgstr "TRIMMEAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PROB.string.text
+msgid "PROB"
+msgstr "PROB"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CORREL.string.text
+msgid "CORREL"
+msgstr "CORREL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COVAR.string.text
+msgid "COVAR"
+msgstr "COVAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PEARSON.string.text
+msgid "PEARSON"
+msgstr "PEARSON"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RSQ.string.text
+msgid "RSQ"
+msgstr "RSQ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STEYX.string.text
+msgid "STEYX"
+msgstr "STEYX"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SLOPE.string.text
+msgid "SLOPE"
+msgstr "SLOPE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INTERCEPT.string.text
+msgid "INTERCEPT"
+msgstr "INTERCEPT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TREND.string.text
+msgid "TREND"
+msgstr "TREND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GROWTH.string.text
+msgid "GROWTH"
+msgstr "GROWTH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RGP.string.text
+msgid "LINEST"
+msgstr "LINEST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RKP.string.text
+msgid "LOGEST"
+msgstr "LOGEST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FORECAST.string.text
+msgid "FORECAST"
+msgstr "FORECAST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_INV.string.text
+msgid "CHIINV"
+msgstr "CHIINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_DIST.string.text
+msgid "GAMMADIST"
+msgstr "GAMMADIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA_INV.string.text
+msgid "GAMMAINV"
+msgstr "GAMMAINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_INV.string.text
+msgid "TINV"
+msgstr "TINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_INV.string.text
+msgid "FINV"
+msgstr "FINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_TEST.string.text
+msgid "CHITEST"
+msgstr "CHITEST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG_INV.string.text
+msgid "LOGINV"
+msgstr "LOGINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLE_OP.string.text
+msgid "MULTIPLE.OPERATIONS"
+msgstr "MULTIPLE.OPERATIONS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BETA_DIST.string.text
+msgid "BETADIST"
+msgstr "BETADIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BETA_INV.string.text
+msgid "BETAINV"
+msgstr "BETAINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_WEEK.string.text
+msgid "WEEKNUM"
+msgstr "WEEKNUM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EASTERSUNDAY.string.text
+msgid "EASTERSUNDAY"
+msgstr "EASTERSUNDAY"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DAY_OF_WEEK.string.text
+msgid "WEEKDAY"
+msgstr "WEEKDAY"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NO_NAME.string.text
+msgid "#NAME!"
+msgstr "#NAME!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STYLE.string.text
+msgid "STYLE"
+msgstr "STYLE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DDE.string.text
+msgid "DDE"
+msgstr "DDE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BASE.string.text
+msgid "BASE"
+msgstr "BASE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DECIMAL.string.text
+msgid "DECIMAL"
+msgstr "DECIMAL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONVERT.string.text
+msgid "CONVERT"
+msgstr "CONVERT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROMAN.string.text
+msgid "ROMAN"
+msgstr "ROMAN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HYPERLINK.string.text
+msgid "HYPERLINK"
+msgstr "HYPERLINK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INFO.string.text
+msgid "INFO"
+msgstr "INFO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BAHTTEXT.string.text
+msgid "BAHTTEXT"
+msgstr "BAHTTEXT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_PIVOT_DATA.string.text
+msgid "GETPIVOTDATA"
+msgstr "GETPIVOTDATA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EUROCONVERT.string.text
+msgid "EUROCONVERT"
+msgstr "EUROCONVERT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NUMBERVALUE.string.text
+msgid "NUMBERVALUE"
+msgstr "NUMBERVALUE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GAMMA.string.text
+msgid "GAMMA"
+msgstr "GAMMA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHISQ_DIST.string.text
+msgid "CHISQDIST"
+msgstr "CHISQDIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHISQ_INV.string.text
+msgid "CHISQINV"
+msgstr "CHISQINV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITAND.string.text
+msgid "BITAND"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITOR.string.text
+msgid "BITOR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITXOR.string.text
+msgid "BITXOR"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITRSHIFT.string.text
+msgid "BITRSHIFT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BITLSHIFT.string.text
+msgid "BITLSHIFT"
+msgstr ""
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NULL.string.text
+msgid "#NULL!"
+msgstr "#NULL!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_DIVZERO.string.text
+msgid "#DIV/0!"
+msgstr "#DIV/0!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_VALUE.string.text
+msgid "#VALUE!"
+msgstr "#VALUE!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_REF.string.text
+msgid "#REF!"
+msgstr "#REF!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NAME.string.text
+msgid "#NAME?"
+msgstr "#NAME?"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NUM.string.text
+msgid "#NUM!"
+msgstr "#NUM!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ERROR_NA.string.text
+msgid "#N/A"
+msgstr "#N/A"
diff --git a/source/en-ZA/formula/source/ui/dlg.po b/source/en-ZA/formula/source/ui/dlg.po
new file mode 100644
index 00000000000..051a7167fa5
--- /dev/null
+++ b/source/en-ZA/formula/source/ui/dlg.po
@@ -0,0 +1,195 @@
+#. extracted from formula/source/ui/dlg.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+formula%2Fsource%2Fui%2Fdlg.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: parawin.src#RB_ARGBLOCK__y__.#define.text
+msgctxt "parawin.src#RB_ARGBLOCK__y__.#define.text"
+msgid "-"
+msgstr "-"
+
+#: parawin.src#RB_ARGBLOCK__y__.#define.quickhelptext
+msgid "Select"
+msgstr "Select"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.FT_EDITDESC.fixedtext.text
+msgid "Function not known"
+msgstr "Function not known"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.STR_OPTIONAL.string.text
+msgid "(optional)"
+msgstr "(optional)"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.STR_REQUIRED.string.text
+msgid "(required)"
+msgstr "(required)"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.LB_CATEGORY.1.stringlist.text
+msgid "Last Used"
+msgstr "Last Used"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.LB_CATEGORY.2.stringlist.text
+msgid "All"
+msgstr "All"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.FT_CATEGORY.fixedtext.text
+msgid "~Category"
+msgstr "~Category"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.FT_FUNCTION.fixedtext.text
+msgid "~Function"
+msgstr "~Function"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.FT_STRUCT.fixedtext.text
+msgid "~Structure"
+msgstr "~Structure"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.STR_STRUCT_ERR1.string.text
+msgid "=?"
+msgstr "=?"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.STR_STRUCT_ERR2.string.text
+msgid "Error"
+msgstr "Error"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_FUNCTION.pageitem.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_FUNCTION.pageitem.text"
+msgid "Functions"
+msgstr "Functions"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_STRUCT.pageitem.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION.TP_STRUCT.pageitem.text"
+msgid "Structure"
+msgstr "Structure"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_FORMULA.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_FORMULA.fixedtext.text"
+msgid "For~mula"
+msgstr "For~mula"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_RESULT.fixedtext.text"
+msgid "Function result"
+msgstr "Function result"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_FORMULA_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.FT_FORMULA_RESULT.fixedtext.text"
+msgid "Result"
+msgstr "Result"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_MATRIX.checkbox.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_MATRIX.checkbox.text"
+msgid "Array"
+msgstr "Array"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.RB_REF.imagebutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.RB_REF.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.RB_REF.imagebutton.quickhelptext
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.RB_REF.imagebutton.quickhelptext"
+msgid "Maximize"
+msgstr "Maximize"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_BACKWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_BACKWARD.pushbutton.text"
+msgid "<< ~Back"
+msgstr "<< ~Back"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_FORWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_FORWARD.pushbutton.text"
+msgid "~Next >>"
+msgstr "~Next >>"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_TITLE1.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_TITLE1.string.text"
+msgid "Function Wizard"
+msgstr "Function Wizard"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_TITLE2.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_TITLE2.string.text"
+msgid "Function Wizard -"
+msgstr "Function Wizard -"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_END.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_END.string.text"
+msgid "~End"
+msgstr "~End"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_FUNCTION.pageitem.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_FUNCTION.pageitem.text"
+msgid "Functions"
+msgstr "Functions"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_STRUCT.pageitem.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.TC_FUNCTION.TP_STRUCT.pageitem.text"
+msgid "Structure"
+msgstr "Structure"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA.fixedtext.text"
+msgid "For~mula"
+msgstr "For~mula"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_RESULT.fixedtext.text"
+msgid "Function result"
+msgstr "Function result"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA_RESULT.fixedtext.text"
+msgid "Result"
+msgstr "Result"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_MATRIX.checkbox.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_MATRIX.checkbox.text"
+msgid "Array"
+msgstr "Array"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.RB_REF.imagebutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.RB_REF.imagebutton.text"
+msgid "-"
+msgstr "-"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.RB_REF.imagebutton.quickhelptext
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.RB_REF.imagebutton.quickhelptext"
+msgid "Maximize"
+msgstr "Maximize"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_BACKWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_BACKWARD.pushbutton.text"
+msgid "<< ~Back"
+msgstr "<< ~Back"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_FORWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_FORWARD.pushbutton.text"
+msgid "~Next >>"
+msgstr "~Next >>"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE1.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE1.string.text"
+msgid "Function Wizard"
+msgstr "Function Wizard"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE2.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE2.string.text"
+msgid "Function Wizard -"
+msgstr "Function Wizard -"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_END.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_END.string.text"
+msgid "~End"
+msgstr "~End"
diff --git a/source/en-ZA/fpicker/source/office.po b/source/en-ZA/fpicker/source/office.po
new file mode 100644
index 00000000000..82a52a346f9
--- /dev/null
+++ b/source/en-ZA/fpicker/source/office.po
@@ -0,0 +1,310 @@
+#. extracted from fpicker/source/office.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+fpicker%2Fsource%2Foffice.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2012-06-16 13:54+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.text"
+msgid "-"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_NEWFOLDER.imagebutton.quickhelptext
+msgid "Create New Directory"
+msgstr "Create New Directory"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.text"
+msgid "-"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_UP.menubutton.quickhelptext
+msgid "Up One Level"
+msgstr "Up One Level"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_CONNECT_TO_SERVER.pushbutton.text
+msgid "..."
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_CONNECT_TO_SERVER.pushbutton.quickhelptext
+msgid "Connect To Server"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_ADD_PLACE.pushbutton.text
+msgid "+"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_ADD_PLACE.pushbutton.quickhelptext
+msgid "Bookmark This Place"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.text"
+msgid "-"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_REMOVE_PLACE.pushbutton.quickhelptext
+msgid "Remove Selected Bookmark"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.FT_EXPLORERFILE_FILENAME.fixedtext.text
+msgid "File ~name:"
+msgstr "File ~name:"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.FT_EXPLORERFILE_FILETYPE.fixedtext.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.FT_EXPLORERFILE_FILETYPE.fixedtext.text"
+msgid "File ~type:"
+msgstr "File ~type:"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_EXPLORERFILE_READONLY.checkbox.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_EXPLORERFILE_READONLY.checkbox.text"
+msgid "~Read-only"
+msgstr "~Read-only"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_EXPLORERFILE_PASSWORD.checkbox.text
+msgid "Save with password"
+msgstr "Save with password"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_AUTO_EXTENSION.checkbox.text
+msgctxt "iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_AUTO_EXTENSION.checkbox.text"
+msgid "~Automatic file name extension"
+msgstr "~Automatic file name extension"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_OPTIONS.checkbox.text
+msgid "Edit ~filter settings"
+msgstr "Edit ~filter settings"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_OPEN.pushbutton.text
+msgid "~Open"
+msgstr "~Open"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_OPEN.string.text
+msgid "Open"
+msgstr "Open"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_SAVE.string.text
+msgid "Save as"
+msgstr "Save as"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_BUTTONSAVE.string.text
+msgid "~Save"
+msgstr "~Save"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PATHNAME.string.text
+msgid "~Path:"
+msgstr "~Path:"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PATHSELECT.string.text
+msgid "Select path"
+msgstr "Select path"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_BUTTONSELECT.string.text
+msgid "~Select"
+msgstr "~Select"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_ACTUALVERSION.string.text
+msgid "Current version"
+msgstr "Current version"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PREVIEW.string.text
+msgid "File Preview"
+msgstr "File Preview"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_DEFAULT_DIRECTORY.string.text
+msgid "Default Directory"
+msgstr "Default Directory"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PLACES_TITLE.string.text
+msgid "Places"
+msgstr ""
+
+#: iodlg.src#DLG_FPICKER_QUERYFOLDERNAME.FT_SVT_QUERYFOLDERNAME_DLG_NAME.fixedtext.text
+msgid "Na~me"
+msgstr "Na~me"
+
+#: iodlg.src#DLG_FPICKER_QUERYFOLDERNAME.FL_SVT_QUERYFOLDERNAME_DLG_NAME.fixedline.text
+msgid "Create new folder"
+msgstr "Create new folder"
+
+#: iodlg.src#RID_FILEOPEN_INVALIDFOLDER.string.text
+msgid "$name$ does not exist."
+msgstr "$name$ does not exist."
+
+#: iodlg.src#RID_FILEOPEN_NOTEXISTENTFILE.string.text
+msgid ""
+"The file $name$ does not exist.\n"
+"Make sure you have entered the correct file name."
+msgstr ""
+"The file $name$ does not exist.\n"
+"Make sure you have entered the correct file name."
+
+#: iodlg.src#STR_FILTERNAME_ALL.string.text
+msgid "All files"
+msgstr ""
+
+#: iodlg.src#STR_SVT_ALREADYEXISTOVERWRITE.string.text
+msgid ""
+"A file named \"$filename$\" already exists.\n"
+"\n"
+"Do you want to replace it?"
+msgstr ""
+"A file named \"$filename$\" already exists.\n"
+"\n"
+"Do you want to replace it?"
+
+#: iodlg.src#STR_SVT_NEW_FOLDER.string.text
+msgid "Folder"
+msgstr "Folder"
+
+#: iodlg.src#STR_SVT_NOREMOVABLEDEVICE.string.text
+msgid ""
+"No removable storage device detected.\n"
+"Make sure it is plugged in properly and try again."
+msgstr ""
+"No removable storage device detected.\n"
+"Make sure it is plugged in properly and try again."
+
+#: iodlg.src#STR_SVT_ALLFORMATS.string.text
+msgid "All Formats"
+msgstr "All Formats"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERNAME.fixedtext.text
+#, fuzzy
+msgid "Name"
+msgstr "Na~me"
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERTYPE.fixedtext.text
+msgid "Type"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_HOST.fixedtext.text
+msgid "Host"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PORT.fixedtext.text
+msgid "Port"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PATH.fixedtext.text
+msgctxt "PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_PATH.fixedtext.text"
+msgid "Path"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.CB_ADDPLACE_DAVS.checkbox.text
+msgid "Secured WebDAV (HTTPS)"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SHARE.fixedtext.text
+msgid "Share"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SMBPATH.fixedtext.text
+msgctxt "PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SMBPATH.fixedtext.text"
+msgid "Path"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_CMIS_BINDING.fixedtext.text
+msgid "Binding URL"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_CMIS_REPOSITORY.fixedtext.text
+msgid "Repository"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.1.stringlist.text
+msgid "WebDAV"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.2.stringlist.text
+msgid "FTP"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.3.stringlist.text
+msgid "SSH"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.4.stringlist.text
+msgid "Windows Share"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.LB_ADDPLACE_SERVERTYPE.5.stringlist.text
+msgid "CMIS (Atom Binding)"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_USERNAME.fixedtext.text
+msgid "Login"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.BT_ADDPLACE_DELETE.pushbutton.text
+msgid "Delete"
+msgstr ""
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_AUTO_EXTENSION.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_AUTO_EXTENSION.string.text"
+msgid "~Automatic file name extension"
+msgstr "~Automatic file name extension"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_PASSWORD.string.text
+msgid "Save with pass~word"
+msgstr "Save with pass~word"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_OPTIONS.string.text
+msgid "~Edit filter settings"
+msgstr "~Edit filter settings"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_READONLY.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_READONLY.string.text"
+msgid "~Read-only"
+msgstr "~Read-only"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_INSERT_AS_LINK.string.text
+msgid "~Link"
+msgstr "~Link"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_SHOW_PREVIEW.string.text
+msgid "Pr~eview"
+msgstr "Pr~eview"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_PLAY.string.text
+msgid "~Play"
+msgstr "~Play"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_VERSION.string.text
+msgid "~Version:"
+msgstr "~Version:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_TEMPLATES.string.text
+msgid "S~tyles:"
+msgstr "S~tyles:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_IMAGE_TEMPLATE.string.text
+msgid "Style:"
+msgstr "Style:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_SELECTION.string.text
+msgid "~Selection"
+msgstr "~Selection"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_TITLE.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_TITLE.string.text"
+msgid "File ~type:"
+msgstr "File ~type:"
+
+#: OfficeFilePicker.src#STR_SVT_FOLDERPICKER_DEFAULT_TITLE.string.text
+msgid "Select Path"
+msgstr "Select Path"
+
+#: OfficeFilePicker.src#STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION.string.text
+msgid "Please select a folder."
+msgstr "Please select a folder."
diff --git a/source/en-ZA/framework/source/classes.po b/source/en-ZA/framework/source/classes.po
new file mode 100644
index 00000000000..8ef145c7fed
--- /dev/null
+++ b/source/en-ZA/framework/source/classes.po
@@ -0,0 +1,194 @@
+#. extracted from framework/source/classes.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+framework%2Fsource%2Fclasses.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:40+0200\n"
+"PO-Revision-Date: 2011-04-19 18:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: resource.src#STR_MENU_ADDONS.string.text
+msgid "Add-Ons"
+msgstr "Add-Ons"
+
+#: resource.src#STR_MENU_ADDONHELP.string.text
+msgid "Add-~On Help"
+msgstr "Add-~On Help"
+
+#: resource.src#STR_MENU_HEADFOOTALL.string.text
+msgid "All"
+msgstr "All"
+
+#: resource.src#STR_UPDATEDOC.string.text
+msgid "~Update"
+msgstr "~Update"
+
+#: resource.src#STR_CLOSEDOC_ANDRETURN.string.text
+msgid "~Close & Return to "
+msgstr "~Close & Return to "
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_VISIBLEBUTTON.menuitem.text
+msgid "Visible ~Buttons"
+msgstr "Visible ~Buttons"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR.menuitem.text
+msgid "~Customize Toolbar..."
+msgstr "~Customise Toolbar..."
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_DOCKTOOLBAR.menuitem.text
+msgid "~Dock Toolbar"
+msgstr "~Dock Toolbar"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_DOCKALLTOOLBAR.menuitem.text
+msgid "Dock ~All Toolbars"
+msgstr "Dock ~All Toolbars"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_LOCKTOOLBARPOSITION.menuitem.text
+msgid "~Lock Toolbar Position"
+msgstr "~Lock Toolbar Position"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_CLOSE.menuitem.text
+msgid "Close ~Toolbar"
+msgstr "Close ~Toolbar"
+
+#: resource.src#STR_SAVECOPYDOC.string.text
+msgid "Save Copy ~as..."
+msgstr "Save Copy ~as..."
+
+#: resource.src#STR_NODOCUMENT.string.text
+msgid "No Documents"
+msgstr "No Documents"
+
+#: resource.src#STR_TOOLBAR_TITLE_ADDON.string.text
+msgid "Add-On %num%"
+msgstr "Add-On %num%"
+
+#: resource.src#STR_STATUSBAR_LOGOTEXT.string.text
+msgid "A %PRODUCTNAME product by %OOOVENDOR"
+msgstr "A %PRODUCTNAME product by %OOOVENDOR"
+
+#: resource.src#DLG_LICENSE.FT_INFO1.fixedtext.text
+msgid "Please follow these steps to proceed with the installation:"
+msgstr "Please follow these steps to proceed with the installation:"
+
+#: resource.src#DLG_LICENSE.FT_INFO2_1.fixedtext.text
+msgid "1."
+msgstr "1."
+
+#: resource.src#DLG_LICENSE.FT_INFO2.fixedtext.text
+msgid "View the complete License Agreement. Please use the scroll bar or the '%PAGEDOWN' button in this dialog to view the entire license text."
+msgstr "View the complete Licence Agreement. Please use the scroll bar or the '%PAGEDOWN' button in this dialogue to view the entire licence text."
+
+#: resource.src#DLG_LICENSE.PB_PAGEDOWN.pushbutton.text
+msgid "Scroll Down"
+msgstr "Scroll Down"
+
+#: resource.src#DLG_LICENSE.FT_INFO3_1.fixedtext.text
+msgid "2."
+msgstr "2."
+
+#: resource.src#DLG_LICENSE.FT_INFO3.fixedtext.text
+msgid "Accept the License Agreement."
+msgstr "Accept the Licence Agreement."
+
+#: resource.src#DLG_LICENSE.LICENSE_ACCEPT.string.text
+msgid "~Accept"
+msgstr "~Accept"
+
+#: resource.src#DLG_LICENSE.LICENSE_NOTACCEPT.string.text
+msgid "Decline"
+msgstr "Decline"
+
+#: resource.src#DLG_LICENSE.modaldialog.text
+msgid "License Agreement"
+msgstr "Licence Agreement"
+
+#: resource.src#STR_FULL_DISC_RETRY_BUTTON.string.text
+msgid "Retry"
+msgstr "Retry"
+
+#: resource.src#STR_FULL_DISC_MSG.string.text
+msgid ""
+"%PRODUCTNAME could not save important internal information due to insufficient free disk space at the following location:\n"
+"%PATH\n"
+"\n"
+"You will not be able to continue working with %PRODUCTNAME without allocating more free disk space at that location.\n"
+"\n"
+"Press the 'Retry' button after you have allocated more free disk space to retry saving the data.\n"
+"\n"
+msgstr ""
+"%PRODUCTNAME could not save important internal information due to insufficient free disk space at the following location:\n"
+"%PATH\n"
+"\n"
+"You will not be able to continue working with %PRODUCTNAME without allocating more free disk space at that location.\n"
+"\n"
+"Press the 'Retry' button after you have allocated more free disk space to retry saving the data.\n"
+"\n"
+
+#: resource.src#STR_RESTORE_TOOLBARS.string.text
+msgid "~Reset"
+msgstr "~Reset"
+
+#: resource.src#STR_CORRUPT_UICFG_SHARE.string.text
+msgid ""
+"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
+"Please try to reinstall the application."
+msgstr ""
+"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
+"Please try to reinstall the application."
+
+#: resource.src#STR_CORRUPT_UICFG_USER.string.text
+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."
+msgstr ""
+"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."
+
+#: resource.src#STR_CORRUPT_UICFG_GENERAL.string.text
+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."
+msgstr ""
+"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."
+
+#: resource.src#STR_UNTITLED_DOCUMENT.string.text
+msgid "Untitled"
+msgstr "Untitled"
+
+#: resource.src#STR_LANGSTATUS_MULTIPLE_LANGUAGES.string.text
+msgid "Multiple Languages"
+msgstr "Multiple Languages"
+
+#: resource.src#STR_LANGSTATUS_NONE.string.text
+msgid "None (Do not check spelling)"
+msgstr "None (Do not check spelling)"
+
+#: resource.src#STR_RESET_TO_DEFAULT_LANGUAGE.string.text
+msgid "Reset to Default Language"
+msgstr "Reset to Default Language"
+
+#: resource.src#STR_LANGSTATUS_MORE.string.text
+msgid "More..."
+msgstr "More..."
+
+#: resource.src#STR_SET_LANGUAGE_FOR_SELECTION.string.text
+msgid "Set Language for Selection"
+msgstr "Set Language for Selection"
+
+#: resource.src#STR_SET_LANGUAGE_FOR_PARAGRAPH.string.text
+msgid "Set Language for Paragraph"
+msgstr "Set Language for Paragraph"
+
+#: resource.src#STR_SET_LANGUAGE_FOR_ALL_TEXT.string.text
+msgid "Set Language for all Text"
+msgstr "Set Language for all Text"
diff --git a/source/en-ZA/framework/source/services.po b/source/en-ZA/framework/source/services.po
new file mode 100644
index 00000000000..6a0a47b911b
--- /dev/null
+++ b/source/en-ZA/framework/source/services.po
@@ -0,0 +1,40 @@
+#. extracted from framework/source/services.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+framework%2Fsource%2Fservices.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2011-04-05 21:53+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_CREATE.string.text
+msgid "Create a new document"
+msgstr "Create a new document"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_TEMPLATE.string.text
+msgid "~Templates..."
+msgstr "~Templates..."
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_FILE.string.text
+msgid "~Open..."
+msgstr "~Open..."
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_EXTHELP.string.text
+msgid "Add new features to %PRODUCTNAME"
+msgstr "Add new features to %PRODUCTNAME"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_INFOHELP.string.text
+msgid "Get more information about %PRODUCTNAME"
+msgstr "Get more information about %PRODUCTNAME"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_TPLREP.string.text
+msgid "Get more templates for %PRODUCTNAME"
+msgstr "Get more templates for %PRODUCTNAME"
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/guide.po b/source/en-ZA/helpcontent2/source/text/sbasic/guide.po
new file mode 100644
index 00000000000..5cc9fbc975b
--- /dev/null
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/guide.po
@@ -0,0 +1,614 @@
+#. extracted from helpcontent2/source/text/sbasic/guide.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fguide.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 14:28+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: translation.xhp#tit.help.text
+msgid "Translation of Controls in the Dialog Editor"
+msgstr "Translation of Controls in the Dialog Editor"
+
+#: translation.xhp#bm_id8915372.help.text
+msgid "<bookmark_value>dialogs;translating</bookmark_value><bookmark_value>localizing dialogs</bookmark_value><bookmark_value>translating dialogs</bookmark_value>"
+msgstr "<bookmark_value>dialogues;translating</bookmark_value><bookmark_value>localising dialogues</bookmark_value><bookmark_value>translating dialogues</bookmark_value>"
+
+#: translation.xhp#hd_id3574896.help.text
+msgid "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Translation of Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"translation\"><link href=\"text/sbasic/guide/translation.xhp\">Translation of Controls in the Dialog Editor</link></variable>"
+
+#: translation.xhp#par_id4601940.help.text
+msgid "<ahelp hid=\".\">The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs.</ahelp>"
+msgstr "<ahelp hid=\".\">The Language toolbar in the Basic IDE dialogue editor shows controls to enable and manage localisable dialogues.</ahelp>"
+
+#: translation.xhp#par_id9538560.help.text
+msgid "By default, any dialog that you create only contains string resources for one language. You may want to create dialogs that automatically show localized strings according to the user's language settings."
+msgstr "By default, any dialogue that you create only contains string resources for one language. You may want to create dialogues that automatically show localised strings according to the user's language settings."
+
+#: translation.xhp#par_id6998809.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Select the language for the strings that you want to edit. Click the Manage Languages icon to add languages.</ahelp>"
+
+#: translation.xhp#par_id71413.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a language, then click Default to set the language as default, or click Delete to remove the language from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Click a language, then click Default to set the language as default, or click Delete to remove the language from the list.</ahelp>"
+
+#: translation.xhp#par_id2924283.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can add a language to the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialogue where you can add a language to the list.</ahelp>"
+
+#: translation.xhp#par_id5781731.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Delete to remove that language. When you remove all languages, the string resources for localizable dialogs are removed from all dialogs in the current library.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Delete to remove that language. When you remove all languages, the string resources for localisable dialogues are removed from all dialogues in the current library.</ahelp>"
+
+#: translation.xhp#par_id6942045.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Default to set the language as default language.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Select a language in the list and click Default to set the language as default language.</ahelp>"
+
+#: translation.xhp#par_id4721823.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">The default language will be used as a source for all other language strings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">The default language will be used as a source for all other language strings.</ahelp>"
+
+#: translation.xhp#par_id5806756.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialogue strings.</ahelp>"
+
+#: translation.xhp#hd_id6596881.help.text
+msgid "To enable localizable dialogs"
+msgstr "To enable localisable dialogues"
+
+#: translation.xhp#par_id8750572.help.text
+msgid "In the Basic IDE dialog editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>. "
+msgstr "In the Basic IDE dialogue editor, open the Language toolbar choosing <item type=\"menuitem\">View - Toolbars - Language</item>. "
+
+#: translation.xhp#par_id2224494.help.text
+msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
+msgstr "If the current library already contains a localisable dialogue, the Language toolbar is shown automatically."
+
+#: translation.xhp#par_id7359233.help.text
+msgid "Click the <emph>Manage Languages</emph> icon <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar."
+msgstr "Click the <emph>Manage Languages</emph> icon <image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar."
+
+#: translation.xhp#par_id6549272.help.text
+msgid "You see the Manage User Interface Language dialog. The dialog manages languages for the current library. The name of the current library is shown on the title bar."
+msgstr "You see the Manage User Interface Language dialogue. The dialogue manages languages for the current library. The name of the current library is shown on the title bar."
+
+#: translation.xhp#par_id6529740.help.text
+msgid "Click Add in the dialog to add a language entry. "
+msgstr "Click Add in the dialogue to add a language entry. "
+
+#: translation.xhp#par_id7811822.help.text
+msgid "This step enables all new dialogs to contain localizable string resources."
+msgstr "This step enables all new dialogues to contain localisable string resources."
+
+#: translation.xhp#par_id9121982.help.text
+msgid "The first time you click Add, you see the Set Default User Interface Language dialog. The following times you click Add, this dialog has the name Add User Interface Language."
+msgstr "The first time you click Add, you see the Set Default User Interface Language dialogue. The following times you click Add, this dialogue has the name Add User Interface Language."
+
+#: translation.xhp#par_id3640247.help.text
+msgid "You can also change the default language in the Manage User Interface Language dialog."
+msgstr "You can also change the default language in the Manage User Interface Language dialogue."
+
+#: translation.xhp#par_id3808404.help.text
+msgid "Select a language. "
+msgstr "Select a language. "
+
+#: translation.xhp#par_id4585100.help.text
+msgid "This adds string resources to contain the translated versions of all strings to the dialog properties. The set of dialog strings of the default language is copied to the new set of strings. Later, you can switch to the new language and then translate the strings."
+msgstr "This adds string resources to contain the translated versions of all strings to the dialogue properties. The set of dialogue strings of the default language is copied to the new set of strings. Later, you can switch to the new language and then translate the strings."
+
+#: translation.xhp#par_id2394482.help.text
+msgid "Close the dialog or add additional languages."
+msgstr "Close the dialogue or add additional languages."
+
+#: translation.xhp#hd_id631733.help.text
+msgid "To edit localizable controls in your dialog"
+msgstr "To edit localisable controls in your dialogue"
+
+#: translation.xhp#par_id2334665.help.text
+msgid "Once you have added the resources for localizable strings in your dialogs, you can select the current language from the Current Language listbox on the Language toolbar."
+msgstr "Once you have added the resources for localisable strings in your dialogues, you can select the current language from the Current Language listbox on the Language toolbar."
+
+#: translation.xhp#par_id8956572.help.text
+msgid "Switch the Current Language listbox to display the default language."
+msgstr "Switch the Current Language listbox to display the default language."
+
+#: translation.xhp#par_id500808.help.text
+msgid "Insert any number of controls to your dialog and enter all strings you want."
+msgstr "Insert any number of controls to your dialogue and enter all strings you want."
+
+#: translation.xhp#par_id8366649.help.text
+msgid "Select another language in the Current Language listbox."
+msgstr "Select another language in the Current Language listbox."
+
+#: translation.xhp#par_id476393.help.text
+msgid "Using the control's property dialogs, edit all strings to the other language."
+msgstr "Using the control's property dialogues, edit all strings to the other language."
+
+#: translation.xhp#par_id2655720.help.text
+msgid "Repeat for all languages that you added."
+msgstr "Repeat for all languages that you added."
+
+#: translation.xhp#par_id3682058.help.text
+msgid "The user of your dialog will see the strings of the user interface language of the user's version of %PRODUCTNAME, if you did provide strings in that language. "
+msgstr "The user of your dialogue will see the strings of the user interface language of the user's version of %PRODUCTNAME, if you did provide strings in that language. "
+
+#: translation.xhp#par_id5977965.help.text
+msgid "If no language matches the user's version, the user will see the default language strings. "
+msgstr "If no language matches the user's version, the user will see the default language strings. "
+
+#: translation.xhp#par_id3050325.help.text
+msgid "If the user has an older version of %PRODUCTNAME that does not know localizable string resources for Basic dialogs, the user will see the default language strings."
+msgstr "If the user has an older version of %PRODUCTNAME that does not know localisable string resources for Basic dialogues, the user will see the default language strings."
+
+#: sample_code.xhp#tit.help.text
+msgid "Programming Examples for Controls in the Dialog Editor"
+msgstr "Programming Examples for Controls in the Dialogue Editor"
+
+#: sample_code.xhp#bm_id3155338.help.text
+msgid "<bookmark_value>programming examples for controls</bookmark_value><bookmark_value>dialogs;loading (example)</bookmark_value><bookmark_value>dialogs;displaying (example)</bookmark_value><bookmark_value>controls;reading or editing properties (example)</bookmark_value><bookmark_value>list boxes;removing entries from (example)</bookmark_value><bookmark_value>list boxes;adding entries to (example)</bookmark_value><bookmark_value>examples; programming controls</bookmark_value><bookmark_value>dialog editor;programming examples for controls</bookmark_value>"
+msgstr "<bookmark_value>programming examples for controls</bookmark_value><bookmark_value>dialogues;loading (example)</bookmark_value><bookmark_value>dialogues;displaying (example)</bookmark_value><bookmark_value>controls;reading or editing properties (example)</bookmark_value><bookmark_value>list boxes;removing entries from (example)</bookmark_value><bookmark_value>list boxes;adding entries to (example)</bookmark_value><bookmark_value>examples; programming controls</bookmark_value><bookmark_value>dialogue editor;programming examples for controls</bookmark_value>"
+
+#: sample_code.xhp#hd_id3155338.1.help.text
+msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
+
+#: sample_code.xhp#par_id3153031.2.help.text
+msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
+msgstr "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialogue\">dialogue</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialogue editor to create the dialogue and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
+
+#: sample_code.xhp#par_id3154141.3.help.text
+msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
+msgstr "Be consistent with uppercase and lowercase letter when you attach a control to an object variable."
+
+#: sample_code.xhp#hd_id3154909.4.help.text
+msgid "Global Function for Loading Dialogs"
+msgstr "Global Function for Loading Dialogues"
+
+#: sample_code.xhp#par_id3153193.73.help.text
+msgid "Function LoadDialog(Libname as String, DialogName as String, Optional oLibContainer)"
+msgstr "Function LoadDialog(Libname as String, DialogName as String, Optional oLibContainer)"
+
+#: sample_code.xhp#par_id3145787.74.help.text
+msgid "Dim oLib as Object"
+msgstr "Dim oLib as Object"
+
+#: sample_code.xhp#par_id3148576.75.help.text
+msgid "Dim oLibDialog as Object"
+msgstr "Dim oLibDialog as Object"
+
+#: sample_code.xhp#par_id3153726.76.help.text
+msgid "Dim oRuntimeDialog as Object"
+msgstr "Dim oRuntimeDialog as Object"
+
+#: sample_code.xhp#par_id3149261.77.help.text
+msgid "If IsMissing(oLibContainer ) then"
+msgstr "If IsMissing(oLibContainer ) then"
+
+#: sample_code.xhp#par_id3148646.78.help.text
+msgid "oLibContainer = DialogLibraries"
+msgstr "oLibContainer = DialogLibraries"
+
+#: sample_code.xhp#par_id3151115.79.help.text
+msgid "End If"
+msgstr "End If"
+
+#: sample_code.xhp#par_id3146986.80.help.text
+msgid "oLibContainer.LoadLibrary(LibName)"
+msgstr "oLibContainer.LoadLibrary(LibName)"
+
+#: sample_code.xhp#par_id3145366.81.help.text
+msgid "oLib = oLibContainer.GetByName(Libname)"
+msgstr "oLib = oLibContainer.GetByName(Libname)"
+
+#: sample_code.xhp#par_id3145271.82.help.text
+msgid "oLibDialog = oLib.GetByName(DialogName)"
+msgstr "oLibDialog = oLib.GetByName(DialogName)"
+
+#: sample_code.xhp#par_id3144764.83.help.text
+msgid "oRuntimeDialog = CreateUnoDialog(oLibDialog)"
+msgstr "oRuntimeDialog = CreateUnoDialog(oLibDialog)"
+
+#: sample_code.xhp#par_id3153876.84.help.text
+msgid "LoadDialog() = oRuntimeDialog"
+msgstr "LoadDialog() = oRuntimeDialog"
+
+#: sample_code.xhp#par_id3156286.85.help.text
+msgid "End Function"
+msgstr "End Function"
+
+#: sample_code.xhp#hd_id3149412.18.help.text
+msgid "Displaying a Dialog"
+msgstr "Displaying a Dialogue"
+
+#: sample_code.xhp#par_id3145801.86.help.text
+msgid "rem global definition of variables"
+msgstr "rem global definition of variables"
+
+#: sample_code.xhp#par_id3150716.87.help.text
+msgid "Dim oDialog1 AS Object"
+msgstr "Dim oDialog1 AS Object"
+
+#: sample_code.xhp#par_id3154510.88.help.text
+msgid "Sub StartDialog1"
+msgstr "Sub StartDialog1"
+
+#: sample_code.xhp#par_id3146913.162.help.text
+msgctxt "sample_code.xhp#par_id3146913.162.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: sample_code.xhp#par_id3150327.89.help.text
+msgctxt "sample_code.xhp#par_id3150327.89.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+
+#: sample_code.xhp#par_id3155767.92.help.text
+msgctxt "sample_code.xhp#par_id3155767.92.help.text"
+msgid "oDialog1.Execute()"
+msgstr "oDialog1.Execute()"
+
+#: sample_code.xhp#par_id3149019.93.help.text
+msgctxt "sample_code.xhp#par_id3149019.93.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: sample_code.xhp#hd_id3150042.27.help.text
+msgid "Read or Edit Properties of Controls in the Program"
+msgstr "Read or Edit Properties of Controls in the Program"
+
+#: sample_code.xhp#par_id3159267.136.help.text
+msgid "Sub Sample1"
+msgstr "Sub Sample1"
+
+#: sample_code.xhp#par_id3155335.163.help.text
+msgctxt "sample_code.xhp#par_id3155335.163.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: sample_code.xhp#par_id3163808.137.help.text
+msgctxt "sample_code.xhp#par_id3163808.137.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+
+#: sample_code.xhp#par_id3145232.138.help.text
+msgid "REM get dialog model"
+msgstr "REM get dialogue model"
+
+#: sample_code.xhp#par_id3146316.139.help.text
+msgctxt "sample_code.xhp#par_id3146316.139.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr "oDialog1Model = oDialog1.Model"
+
+#: sample_code.xhp#par_id3154021.140.help.text
+msgid "REM display text of Label1"
+msgstr "REM display text of Label1"
+
+#: sample_code.xhp#par_id3150301.141.help.text
+msgid "oLabel1 = oDialog1.GetControl(\"Label1\")"
+msgstr "oLabel1 = oDialog1.GetControl(\"Label1\")"
+
+#: sample_code.xhp#par_id3152584.142.help.text
+msgid "MsgBox oLabel1.Text"
+msgstr "MsgBox oLabel1.Text"
+
+#: sample_code.xhp#par_id3151277.143.help.text
+msgid "REM set new text for control Label1"
+msgstr "REM set new text for control Label1"
+
+#: sample_code.xhp#par_id3154119.144.help.text
+msgid "oLabel1.Text = \"New Files\""
+msgstr "oLabel1.Text = \"New Files\""
+
+#: sample_code.xhp#par_id3155115.145.help.text
+msgid "REM display model properties for the control CheckBox1"
+msgstr "REM display model properties for the control CheckBox1"
+
+#: sample_code.xhp#par_id3166426.146.help.text
+msgid "oCheckBox1Model = oDialog1Model.CheckBox1"
+msgstr "oCheckBox1Model = oDialog1Model.CheckBox1"
+
+#: sample_code.xhp#par_id3153270.147.help.text
+msgid "MsgBox oCheckBox1Model.Dbg_Properties"
+msgstr "MsgBox oCheckBox1Model.Dbg_Properties"
+
+#: sample_code.xhp#par_id3149817.148.help.text
+msgid "REM set new state for CheckBox1 for model of control"
+msgstr "REM set new state for CheckBox1 for model of control"
+
+#: sample_code.xhp#par_id3145134.149.help.text
+msgid "oCheckBox1Model.State = 1"
+msgstr "oCheckBox1Model.State = 1"
+
+#: sample_code.xhp#par_id3159102.150.help.text
+msgid "REM display model properties for control CommandButton1"
+msgstr "REM display model properties for control CommandButton1"
+
+#: sample_code.xhp#par_id3152777.151.help.text
+msgid "oCMD1Model = oDialog1Model.CommandButton1"
+msgstr "oCMD1Model = oDialog1Model.CommandButton1"
+
+#: sample_code.xhp#par_id3149209.152.help.text
+msgid "MsgBox oCMD1Model.Dbg_Properties"
+msgstr "MsgBox oCMD1Model.Dbg_Properties"
+
+#: sample_code.xhp#par_id3150368.153.help.text
+msgid "REM display properties of control CommandButton1"
+msgstr "REM display properties of control CommandButton1"
+
+#: sample_code.xhp#par_id3150883.154.help.text
+msgid "oCMD1 = oDialog1.GetControl(\"CommandButton1\")"
+msgstr "oCMD1 = oDialog1.GetControl(\"CommandButton1\")"
+
+#: sample_code.xhp#par_id3155380.155.help.text
+msgid "MsgBox oCMD1.Dbg_Properties"
+msgstr "MsgBox oCMD1.Dbg_Properties"
+
+#: sample_code.xhp#par_id3150201.156.help.text
+msgid "REM execute dialog"
+msgstr "REM execute dialogue"
+
+#: sample_code.xhp#par_id3154485.157.help.text
+msgctxt "sample_code.xhp#par_id3154485.157.help.text"
+msgid "oDialog1.Execute()"
+msgstr "oDialog1.Execute()"
+
+#: sample_code.xhp#par_id3146115.158.help.text
+msgctxt "sample_code.xhp#par_id3146115.158.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: sample_code.xhp#hd_id3145387.55.help.text
+msgid "Add an Entry to a ListBox"
+msgstr "Add an Entry to a ListBox"
+
+#: sample_code.xhp#par_id3155088.122.help.text
+msgid "Sub AddEntry"
+msgstr "Sub AddEntry"
+
+#: sample_code.xhp#par_id3154528.164.help.text
+msgctxt "sample_code.xhp#par_id3154528.164.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: sample_code.xhp#par_id3159222.159.help.text
+msgctxt "sample_code.xhp#par_id3159222.159.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+
+#: sample_code.xhp#par_id3148700.123.help.text
+msgid "REM adds a new entry to the ListBox"
+msgstr "REM adds a new entry to the ListBox"
+
+#: sample_code.xhp#par_id3159173.124.help.text
+msgctxt "sample_code.xhp#par_id3159173.124.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr "oDialog1Model = oDialog1.Model"
+
+#: sample_code.xhp#par_id3153305.125.help.text
+msgctxt "sample_code.xhp#par_id3153305.125.help.text"
+msgid "oListBox = oDialog1.GetControl(\"ListBox1\")"
+msgstr "oListBox = oDialog1.GetControl(\"ListBox1\")"
+
+#: sample_code.xhp#par_id3153914.126.help.text
+msgid "dim iCount as integer"
+msgstr "dim iCount as integer"
+
+#: sample_code.xhp#par_id3151243.127.help.text
+msgid "iCount = oListbox.ItemCount"
+msgstr "iCount = oListbox.ItemCount"
+
+#: sample_code.xhp#par_id3144504.128.help.text
+msgid "oListbox.additem(\"New Item\" & iCount,0)"
+msgstr "oListbox.additem(\"New Item\" & iCount,0)"
+
+#: sample_code.xhp#par_id3149328.129.help.text
+msgctxt "sample_code.xhp#par_id3149328.129.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: sample_code.xhp#hd_id3147071.64.help.text
+msgid "Remove an Entry from a ListBox"
+msgstr "Remove an Entry from a ListBox"
+
+#: sample_code.xhp#par_id3159095.130.help.text
+msgid "Sub RemoveEntry"
+msgstr "Sub RemoveEntry"
+
+#: sample_code.xhp#par_id3154958.165.help.text
+msgctxt "sample_code.xhp#par_id3154958.165.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: sample_code.xhp#par_id3149443.160.help.text
+msgctxt "sample_code.xhp#par_id3149443.160.help.text"
+msgid "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = LoadDialog(\"Standard\", \"Dialog1\")"
+
+#: sample_code.xhp#par_id3153247.131.help.text
+msgid "REM remove the first entry from the ListBox"
+msgstr "REM remove the first entry from the ListBox"
+
+#: sample_code.xhp#par_id3151302.132.help.text
+msgctxt "sample_code.xhp#par_id3151302.132.help.text"
+msgid "oDialog1Model = oDialog1.Model"
+msgstr "oDialog1Model = oDialog1.Model"
+
+#: sample_code.xhp#par_id3153976.133.help.text
+msgctxt "sample_code.xhp#par_id3153976.133.help.text"
+msgid "oListBox = oDialog1.GetControl(\"ListBox1\")"
+msgstr "oListBox = oDialog1.GetControl(\"ListBox1\")"
+
+#: sample_code.xhp#par_id3155383.134.help.text
+msgid "oListbox.removeitems(0,1)"
+msgstr "oListbox.removeitems(0,1)"
+
+#: sample_code.xhp#par_id3150892.135.help.text
+msgctxt "sample_code.xhp#par_id3150892.135.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: show_dialog.xhp#tit.help.text
+msgid "Opening a Dialog With Program Code"
+msgstr "Opening a Dialogue With Program Code"
+
+#: show_dialog.xhp#bm_id3154140.help.text
+msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgstr "<bookmark_value>module/dialogue toggle</bookmark_value><bookmark_value>dialogues;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialogue using program code</bookmark_value>"
+
+#: show_dialog.xhp#hd_id3154140.1.help.text
+msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
+msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialogue With Program Code\">Opening a Dialogue With Program Code</link></variable>"
+
+#: show_dialog.xhp#par_id3145171.2.help.text
+msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
+msgstr "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialogue that you created, leave the dialogue editor by clicking the name tab of the Module that the dialogue is assigned to. The name tab is at the bottom of the window."
+
+#: show_dialog.xhp#par_id3153968.6.help.text
+msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
+msgstr "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialogue that you created is \"Dialog1\":"
+
+#: show_dialog.xhp#par_id3156443.7.help.text
+msgctxt "show_dialog.xhp#par_id3156443.7.help.text"
+msgid "Sub Dialog1Show"
+msgstr "Sub Dialog1Show"
+
+#: show_dialog.xhp#par_id3148575.24.help.text
+msgctxt "show_dialog.xhp#par_id3148575.24.help.text"
+msgid "BasicLibraries.LoadLibrary(\"Tools\")"
+msgstr "BasicLibraries.LoadLibrary(\"Tools\")"
+
+#: show_dialog.xhp#par_id3152463.8.help.text
+msgid "oDialog1 = <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"LoadDialog\">LoadDialog</link>(\"Standard\", \"Dialog1\")"
+msgstr "oDialog1 = <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"LoadDialog\">LoadDialog</link>(\"Standard\", \"Dialog1\")"
+
+#: show_dialog.xhp#par_id3148646.14.help.text
+msgctxt "show_dialog.xhp#par_id3148646.14.help.text"
+msgid "oDialog1.Execute()"
+msgstr "oDialog1.Execute()"
+
+#: show_dialog.xhp#par_id3147349.15.help.text
+msgctxt "show_dialog.xhp#par_id3147349.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: show_dialog.xhp#par_id3152596.18.help.text
+msgid "Without using \"LoadDialog\" you can call the code as follows:"
+msgstr "Without using \"LoadDialog\" you can call the code as follows:"
+
+#: show_dialog.xhp#par_id3163710.19.help.text
+msgctxt "show_dialog.xhp#par_id3163710.19.help.text"
+msgid "Sub Dialog1Show"
+msgstr "Sub Dialog1Show"
+
+#: show_dialog.xhp#par_id3146985.20.help.text
+msgid "DialogLibraries.LoadLibrary( \"Standard\" )"
+msgstr "DialogLibraries.LoadLibrary( \"Standard\" )"
+
+#: show_dialog.xhp#par_id3155418.21.help.text
+msgid "oDialog1 = CreateUnoDialog( DialogLibraries.Standard.Dialog1 )"
+msgstr "oDialog1 = CreateUnoDialog( DialogLibraries.Standard.Dialog1 )"
+
+#: show_dialog.xhp#par_id3154944.22.help.text
+msgctxt "show_dialog.xhp#par_id3154944.22.help.text"
+msgid "oDialog1.Execute()"
+msgstr "oDialog1.Execute()"
+
+#: show_dialog.xhp#par_id3145800.23.help.text
+msgctxt "show_dialog.xhp#par_id3145800.23.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: show_dialog.xhp#par_id3153157.16.help.text
+msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
+msgstr "When you execute this code, \"Dialog1\" opens. To close the dialogue, click the close button (x) on its title bar."
+
+#: create_dialog.xhp#tit.help.text
+msgid "Creating a Basic Dialog"
+msgstr "Creating a Basic Dialogue"
+
+#: create_dialog.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
+msgstr "<bookmark_value>dialogues;creating Basic dialogues</bookmark_value>"
+
+#: create_dialog.xhp#hd_id3149346.1.help.text
+msgid "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Creating a Basic Dialog</link></variable>"
+msgstr "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialogue\">Creating a Basic Dialogue</link></variable>"
+
+#: create_dialog.xhp#par_id3163802.3.help.text
+msgid "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
+msgstr "Choose <emph>Tools - Macros - Organize Dialogs</emph>, and then click <emph>New</emph>."
+
+#: create_dialog.xhp#par_id3150447.11.help.text
+msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose <emph>Rename</emph>. "
+msgstr "Enter a name for the dialogue, and click OK. To rename the dialogue later, right-click the name on the tab, and choose <emph>Rename</emph>. "
+
+#: create_dialog.xhp#par_idN1065F.help.text
+msgid "Click <emph>Edit</emph>. The Basic dialog editor opens and contains a blank dialog."
+msgstr "Click <emph>Edit</emph>. The Basic dialogue editor opens and contains a blank dialogue."
+
+#: create_dialog.xhp#par_id3153726.6.help.text
+msgid "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
+msgstr "If you do not see the <emph>Toolbox</emph> bar, click the arrow next to the <emph>Insert Controls </emph>icon to open the <emph>Toolbox</emph> bar."
+
+#: create_dialog.xhp#par_id3148455.12.help.text
+msgid "Click a tool and then drag in the dialog to create the control."
+msgstr "Click a tool and then drag in the dialogue to create the control."
+
+#: control_properties.xhp#tit.help.text
+msgid "Changing the Properties of Controls in the Dialog Editor"
+msgstr "Changing the Properties of Controls in the Dialogue Editor"
+
+#: control_properties.xhp#bm_id3145786.help.text
+msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
+msgstr "<bookmark_value>properties; controls in dialogue editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialogue editor;changing control properties</bookmark_value>"
+
+#: control_properties.xhp#hd_id3145786.1.help.text
+msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
+
+#: control_properties.xhp#par_id3147317.2.help.text
+msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
+msgstr "You can set the properties of control that you add to a dialogue. For example, you can change the colour, name, and size of a button that you added. You can change most control properties when you create or edit a dialogue. However, you can only change some properties at runtime."
+
+#: control_properties.xhp#par_id3145749.3.help.text
+msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
+msgstr "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
+
+#: insert_control.xhp#tit.help.text
+msgid "Creating Controls in the Dialog Editor"
+msgstr "Creating Controls in the Dialogue Editor"
+
+#: insert_control.xhp#bm_id3149182.help.text
+msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
+msgstr "<bookmark_value>controls; creating in the dialogue editor</bookmark_value><bookmark_value>dialogue editor;creating controls</bookmark_value>"
+
+#: insert_control.xhp#hd_id3149182.1.help.text
+msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
+
+#: insert_control.xhp#par_id3146797.2.help.text
+msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
+msgstr "Use the tools on the <emph>Toolbox </emph>of the BASIC dialogue editor to add controls to your dialogue."
+
+#: insert_control.xhp#par_id3150276.7.help.text
+msgid "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
+msgstr "To open the <emph>Toolbox</emph>, click the arrow next to the <emph>Insert Controls</emph> icon on the <emph>Macro</emph> toolbar."
+
+#: insert_control.xhp#par_id3145068.3.help.text
+msgid "Click a tool on the toolbar, for example, <emph>Button</emph>."
+msgstr "Click a tool on the toolbar, for example, <emph>Button</emph>."
+
+#: insert_control.xhp#par_id3153360.4.help.text
+msgid "On the dialog, drag the button to the size you want."
+msgstr "On the dialogue, drag the button to the size you want."
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
new file mode 100644
index 00000000000..46a668a12ee
--- /dev/null
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
@@ -0,0 +1,24816 @@
+#. extracted from helpcontent2/source/text/sbasic/shared.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fshared.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-12 11:44+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 03120103.xhp#tit.help.text
+msgid "Str Function [Runtime]"
+msgstr "Str Function [Runtime]"
+
+#: 03120103.xhp#bm_id3143272.help.text
+msgid "<bookmark_value>Str function</bookmark_value>"
+msgstr "<bookmark_value>Str function</bookmark_value>"
+
+#: 03120103.xhp#hd_id3143272.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
+
+#: 03120103.xhp#par_id3155100.2.help.text
+msgid "Converts a numeric expression into a string."
+msgstr "Converts a numeric expression into a string."
+
+#: 03120103.xhp#hd_id3109850.3.help.text
+msgctxt "03120103.xhp#hd_id3109850.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120103.xhp#par_id3149497.4.help.text
+msgid "Str (Expression)"
+msgstr "Str (Expression)"
+
+#: 03120103.xhp#hd_id3150040.5.help.text
+msgctxt "03120103.xhp#hd_id3150040.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120103.xhp#par_id3146117.6.help.text
+msgctxt "03120103.xhp#par_id3146117.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120103.xhp#hd_id3155805.7.help.text
+msgctxt "03120103.xhp#hd_id3155805.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120103.xhp#par_id3149178.8.help.text
+msgid "<emph>Expression: </emph>Any numeric expression."
+msgstr "<emph>Expression: </emph>Any numeric expression."
+
+#: 03120103.xhp#par_id3146958.9.help.text
+msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
+msgstr "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
+
+#: 03120103.xhp#hd_id3155419.10.help.text
+msgctxt "03120103.xhp#hd_id3155419.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120103.xhp#par_id3149514.11.help.text
+msgid "Sub ExampleStr"
+msgstr "Sub ExampleStr"
+
+#: 03120103.xhp#par_id3150771.12.help.text
+msgctxt "03120103.xhp#par_id3150771.12.help.text"
+msgid "Dim iVar As Single"
+msgstr "Dim iVar As Single"
+
+#: 03120103.xhp#par_id3153626.13.help.text
+msgctxt "03120103.xhp#par_id3153626.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120103.xhp#par_id3145069.14.help.text
+msgctxt "03120103.xhp#par_id3145069.14.help.text"
+msgid "iVar = 123.123"
+msgstr "iVar = 123.123"
+
+#: 03120103.xhp#par_id3153897.15.help.text
+msgid "sVar = LTrim(Str(iVar))"
+msgstr "sVar = LTrim(Str(iVar))"
+
+#: 03120103.xhp#par_id3154924.16.help.text
+msgid "Msgbox sVar & chr(13) & Str(iVar)"
+msgstr "Msgbox sVar & chr(13) & Str(iVar)"
+
+#: 03120103.xhp#par_id3152811.17.help.text
+msgctxt "03120103.xhp#par_id3152811.17.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03100060.xhp#tit.help.text
+msgid "CDec Function [Runtime]"
+msgstr "CDec Function [Runtime]"
+
+#: 03100060.xhp#bm_id863979.help.text
+msgid "<bookmark_value>CDec function</bookmark_value>"
+msgstr "<bookmark_value>CDec function</bookmark_value>"
+
+#: 03100060.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03100060.xhp\">CDec Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100060.xhp\">CDec Function [Runtime]</link>"
+
+#: 03100060.xhp#par_idN10558.help.text
+msgid "Converts a string expression or numeric expression to a decimal expression."
+msgstr "Converts a string expression or numeric expression to a decimal expression."
+
+#: 03100060.xhp#par_idN1055B.help.text
+msgctxt "03100060.xhp#par_idN1055B.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100060.xhp#par_idN105EA.help.text
+msgid "CDec(Expression)"
+msgstr "CDec(Expression)"
+
+#: 03100060.xhp#par_idN105ED.help.text
+msgctxt "03100060.xhp#par_idN105ED.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100060.xhp#par_idN105F1.help.text
+msgid "Decimal number."
+msgstr "Decimal number."
+
+#: 03100060.xhp#par_idN105F4.help.text
+msgctxt "03100060.xhp#par_idN105F4.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03100060.xhp#par_idN105F8.help.text
+msgctxt "03100060.xhp#par_idN105F8.help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Expression: Any string or numeric expression that you want to convert."
+
+#: 03103450.xhp#tit.help.text
+msgid "Global Statement [Runtime]"
+msgstr "Global Statement [Runtime]"
+
+#: 03103450.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Global statement</bookmark_value>"
+msgstr "<bookmark_value>Global statement</bookmark_value>"
+
+#: 03103450.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
+
+#: 03103450.xhp#par_id3149177.2.help.text
+msgid "Dimensions a variable or an array at the global level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules for the current session."
+msgstr "Dimensions a variable or an array at the global level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules for the current session."
+
+#: 03103450.xhp#hd_id3143270.3.help.text
+msgctxt "03103450.xhp#hd_id3143270.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103450.xhp#par_id3150771.4.help.text
+msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+
+#: 03103450.xhp#hd_id3156152.5.help.text
+msgctxt "03103450.xhp#hd_id3156152.5.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103450.xhp#par_id3145315.6.help.text
+msgid "Global iGlobalVar As Integer"
+msgstr "Global iGlobalVar As Integer"
+
+#: 03103450.xhp#par_id3147531.7.help.text
+msgid "Sub ExampleGlobal"
+msgstr "Sub ExampleGlobal"
+
+#: 03103450.xhp#par_id3149670.8.help.text
+msgid "iGlobalVar = iGlobalVar + 1"
+msgstr "iGlobalVar = iGlobalVar + 1"
+
+#: 03103450.xhp#par_id3148552.9.help.text
+msgid "MsgBox iGlobalVar"
+msgstr "MsgBox iGlobalVar"
+
+#: 03103450.xhp#par_id3149457.10.help.text
+msgctxt "03103450.xhp#par_id3149457.10.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03060200.xhp#tit.help.text
+msgid "Eqv Operator [Runtime]"
+msgstr "Eqv Operator [Runtime]"
+
+#: 03060200.xhp#bm_id3156344.help.text
+msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Eqv operator (logical)</bookmark_value>"
+
+#: 03060200.xhp#hd_id3156344.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
+
+#: 03060200.xhp#par_id3149656.2.help.text
+msgid "Calculates the logical equivalence of two expressions."
+msgstr "Calculates the logical equivalence of two expressions."
+
+#: 03060200.xhp#hd_id3154367.3.help.text
+msgctxt "03060200.xhp#hd_id3154367.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03060200.xhp#par_id3154910.4.help.text
+msgid "Result = Expression1 Eqv Expression2"
+msgstr "Result = Expression1 Eqv Expression2"
+
+#: 03060200.xhp#hd_id3151043.5.help.text
+msgctxt "03060200.xhp#hd_id3151043.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03060200.xhp#par_id3150869.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+msgstr "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+
+#: 03060200.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
+msgstr "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
+
+#: 03060200.xhp#par_id3149562.8.help.text
+msgid "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
+msgstr "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
+
+#: 03060200.xhp#par_id3154319.9.help.text
+msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression."
+msgstr "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression."
+
+#: 03060200.xhp#hd_id3159154.10.help.text
+msgctxt "03060200.xhp#hd_id3159154.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03060200.xhp#par_id3147426.11.help.text
+msgid "Sub ExampleEqv"
+msgstr "Sub ExampleEqv"
+
+#: 03060200.xhp#par_id3155308.12.help.text
+msgctxt "03060200.xhp#par_id3155308.12.help.text"
+msgid "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+msgstr "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+
+#: 03060200.xhp#par_id3146986.13.help.text
+msgctxt "03060200.xhp#par_id3146986.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060200.xhp#par_id3147434.14.help.text
+msgctxt "03060200.xhp#par_id3147434.14.help.text"
+msgid "A = 10: B = 8: C = 6: D = Null"
+msgstr "A = 10: B = 8: C = 6: D = Null"
+
+#: 03060200.xhp#par_id3152462.15.help.text
+msgid "vOut = A > B Eqv B > C REM returns -1"
+msgstr "vOut = A > B Eqv B > C REM returns -1"
+
+#: 03060200.xhp#par_id3153191.16.help.text
+msgid "vOut = B > A Eqv B > C REM returns 0"
+msgstr "vOut = B > A Eqv B > C REM returns 0"
+
+#: 03060200.xhp#par_id3145799.17.help.text
+msgid "vOut = A > B Eqv B > D REM returns 0"
+msgstr "vOut = A > B Eqv B > D REM returns 0"
+
+#: 03060200.xhp#par_id3149412.18.help.text
+msgid "vOut = (B > D Eqv B > A) REM returns -1"
+msgstr "vOut = (B > D Eqv B > A) REM returns -1"
+
+#: 03060200.xhp#par_id3149959.19.help.text
+msgid "vOut = B Eqv A REM returns -3"
+msgstr "vOut = B Eqv A REM returns -3"
+
+#: 03060200.xhp#par_id3145646.20.help.text
+msgctxt "03060200.xhp#par_id3145646.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020401.xhp#tit.help.text
+msgid "ChDir Statement [Runtime]"
+msgstr "ChDir Statement [Runtime]"
+
+#: 03020401.xhp#bm_id3150178.help.text
+msgid "<bookmark_value>ChDir statement</bookmark_value>"
+msgstr "<bookmark_value>ChDir statement</bookmark_value>"
+
+#: 03020401.xhp#hd_id3150178.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
+
+#: 03020401.xhp#par_id3153126.2.help.text
+msgid "Changes the current directory or drive."
+msgstr "Changes the current directory or drive."
+
+#: 03020401.xhp#par_id9783013.help.text
+msgid "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
+msgstr "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
+
+#: 03020401.xhp#hd_id3154347.3.help.text
+msgctxt "03020401.xhp#hd_id3154347.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020401.xhp#par_id3153897.4.help.text
+msgid "ChDir Text As String"
+msgstr "ChDir Text As String"
+
+#: 03020401.xhp#hd_id3148664.5.help.text
+msgctxt "03020401.xhp#hd_id3148664.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020401.xhp#par_id3150543.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+msgstr "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+
+#: 03020401.xhp#par_id3152598.7.help.text
+msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
+msgstr "If you only want to change the current drive, enter the drive letter followed by a colon."
+
+#: 03020401.xhp#hd_id3151116.8.help.text
+msgctxt "03020401.xhp#hd_id3151116.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020401.xhp#par_id3153364.9.help.text
+msgid "Sub ExampleChDir"
+msgstr "Sub ExampleChDir"
+
+#: 03020401.xhp#par_id3147348.10.help.text
+msgctxt "03020401.xhp#par_id3147348.10.help.text"
+msgid "Dim sDir1 as String , sDir2 as String"
+msgstr "Dim sDir1 as String , sDir2 as String"
+
+#: 03020401.xhp#par_id3155308.11.help.text
+msgctxt "03020401.xhp#par_id3155308.11.help.text"
+msgid "sDir1 = \"c:\\Test\""
+msgstr "sDir1 = \"c:\\Test\""
+
+#: 03020401.xhp#par_id3154319.12.help.text
+msgctxt "03020401.xhp#par_id3154319.12.help.text"
+msgid "sDir2 = \"d:\\private\""
+msgstr "sDir2 = \"d:\\private\""
+
+#: 03020401.xhp#par_id3154944.13.help.text
+msgctxt "03020401.xhp#par_id3154944.13.help.text"
+msgid "ChDir( sDir1 )"
+msgstr "ChDir( sDir1 )"
+
+#: 03020401.xhp#par_id3151074.14.help.text
+msgctxt "03020401.xhp#par_id3151074.14.help.text"
+msgid "msgbox CurDir"
+msgstr "msgbox CurDir"
+
+#: 03020401.xhp#par_id3147124.15.help.text
+msgctxt "03020401.xhp#par_id3147124.15.help.text"
+msgid "ChDir( sDir2 )"
+msgstr "ChDir( sDir2 )"
+
+#: 03020401.xhp#par_id3148456.16.help.text
+msgctxt "03020401.xhp#par_id3148456.16.help.text"
+msgid "msgbox CurDir"
+msgstr "msgbox CurDir"
+
+#: 03020401.xhp#par_id3149581.17.help.text
+msgctxt "03020401.xhp#par_id3149581.17.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03100400.xhp#tit.help.text
+msgid "CDbl Function [Runtime]"
+msgstr "CDbl Function [Runtime]"
+
+#: 03100400.xhp#bm_id3153750.help.text
+msgid "<bookmark_value>CDbl function</bookmark_value>"
+msgstr "<bookmark_value>CDbl function</bookmark_value>"
+
+#: 03100400.xhp#hd_id3153750.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
+
+#: 03100400.xhp#par_id3149233.2.help.text
+msgid "Converts any numerical expression or string expression to a double type."
+msgstr "Converts any numerical expression or string expression to a double type."
+
+#: 03100400.xhp#hd_id3149516.3.help.text
+msgctxt "03100400.xhp#hd_id3149516.3.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 03100400.xhp#par_id3156152.4.help.text
+msgid "CDbl (Expression)"
+msgstr "CDbl (Expression)"
+
+#: 03100400.xhp#hd_id3153061.5.help.text
+msgctxt "03100400.xhp#hd_id3153061.5.help.text"
+msgid "Return value"
+msgstr "Return value"
+
+#: 03100400.xhp#par_id3145068.6.help.text
+msgctxt "03100400.xhp#par_id3145068.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03100400.xhp#hd_id3154760.7.help.text
+msgctxt "03100400.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03100400.xhp#par_id3153897.8.help.text
+msgctxt "03100400.xhp#par_id3153897.8.help.text"
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+
+#: 03100400.xhp#hd_id3148797.9.help.text
+msgctxt "03100400.xhp#hd_id3148797.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03100400.xhp#par_id3154217.10.help.text
+msgctxt "03100400.xhp#par_id3154217.10.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr "Sub ExampleCountryConvert"
+
+#: 03100400.xhp#par_id3147229.11.help.text
+msgctxt "03100400.xhp#par_id3147229.11.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234.5678)"
+
+#: 03100400.xhp#par_id3151042.12.help.text
+msgctxt "03100400.xhp#par_id3151042.12.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234.5678)"
+
+#: 03100400.xhp#par_id3150616.13.help.text
+msgctxt "03100400.xhp#par_id3150616.13.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234.5678)"
+
+#: 03100400.xhp#par_id3153969.14.help.text
+msgctxt "03100400.xhp#par_id3153969.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03131500.xhp#tit.help.text
+msgid "CreateUnoStruct Function [Runtime]"
+msgstr "CreateUnoStruct Function [Runtime]"
+
+#: 03131500.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+
+#: 03131500.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
+
+#: 03131500.xhp#par_id3150713.2.help.text
+msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+msgstr "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+
+#: 03131500.xhp#par_id3147226.3.help.text
+msgid "Use the following structure for your statement:"
+msgstr "Use the following structure for your statement:"
+
+#: 03131500.xhp#par_id3149177.4.help.text
+msgid "Dim oStruct as new com.sun.star.beans.Property"
+msgstr "Dim oStruct as new com.sun.star.beans.Property"
+
+#: 03131500.xhp#hd_id3156153.5.help.text
+msgctxt "03131500.xhp#hd_id3156153.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03131500.xhp#par_id3155341.6.help.text
+msgid "oStruct = CreateUnoStruct( Uno type name )"
+msgstr "oStruct = CreateUnoStruct( Uno type name )"
+
+#: 03131500.xhp#hd_id3145316.7.help.text
+msgctxt "03131500.xhp#hd_id3145316.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03131500.xhp#par_id3149762.8.help.text
+msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+msgstr "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
+
+#: 03090403.xhp#tit.help.text
+msgid "Declare Statement [Runtime]"
+msgstr "Declare Statement [Runtime]"
+
+#: 03090403.xhp#bm_id3148473.help.text
+msgid "<bookmark_value>Declare statement</bookmark_value>"
+msgstr "<bookmark_value>Declare statement</bookmark_value>"
+
+#: 03090403.xhp#hd_id3148473.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
+
+#: 03090403.xhp#bm_id3145316.help.text
+msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+msgstr "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+
+#: 03090403.xhp#par_id3145316.2.help.text
+msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
+msgstr "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
+
+#: 03090403.xhp#par_id3146795.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+
+#: 03090403.xhp#hd_id3156344.4.help.text
+msgctxt "03090403.xhp#hd_id3156344.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090403.xhp#par_id3148664.5.help.text
+msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+msgstr "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+
+#: 03090403.xhp#hd_id3153360.6.help.text
+msgctxt "03090403.xhp#hd_id3153360.6.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090403.xhp#par_id3154140.8.help.text
+msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+msgstr "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+
+#: 03090403.xhp#par_id3150870.9.help.text
+msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
+msgstr "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
+
+#: 03090403.xhp#par_id3154684.10.help.text
+msgid "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
+msgstr "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
+
+#: 03090403.xhp#par_id3148452.11.help.text
+msgid "<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure."
+msgstr "<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure."
+
+#: 03090403.xhp#par_id3147289.12.help.text
+msgid "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
+msgstr "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
+
+#: 03090403.xhp#par_id3146922.13.help.text
+msgid "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
+msgstr "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
+
+#: 03090403.xhp#hd_id3153951.14.help.text
+msgctxt "03090403.xhp#hd_id3153951.14.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090403.xhp#par_id3154320.15.help.text
+msgctxt "03090403.xhp#par_id3154320.15.help.text"
+msgid "Declare Sub MyMessageBeep Lib \"user32.dll\" Alias \"MessageBeep\" ( long )"
+msgstr "Declare Sub MyMessageBeep Lib \"user32.dll\" Alias \"MessageBeep\" ( long )"
+
+#: 03090403.xhp#par_id3150417.17.help.text
+msgctxt "03090403.xhp#par_id3150417.17.help.text"
+msgid "Sub ExampleDeclare"
+msgstr "Sub ExampleDeclare"
+
+#: 03090403.xhp#par_id3149959.18.help.text
+msgctxt "03090403.xhp#par_id3149959.18.help.text"
+msgid "Dim lValue As Long"
+msgstr "Dim lValue As Long"
+
+#: 03090403.xhp#par_id3145647.19.help.text
+msgctxt "03090403.xhp#par_id3145647.19.help.text"
+msgid "lValue = 5000"
+msgstr "lValue = 5000"
+
+#: 03090403.xhp#par_id3145801.20.help.text
+msgctxt "03090403.xhp#par_id3145801.20.help.text"
+msgid "MyMessageBeep( lValue )"
+msgstr "MyMessageBeep( lValue )"
+
+#: 03090403.xhp#par_id3145253.21.help.text
+msgctxt "03090403.xhp#par_id3145253.21.help.text"
+msgid "FreeLibrary(\"user32.dll\" )"
+msgstr "FreeLibrary(\"user32.dll\" )"
+
+#: 03090403.xhp#par_id3149402.22.help.text
+msgctxt "03090403.xhp#par_id3149402.22.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100300.xhp#tit.help.text
+msgid "CDate Function [Runtime]"
+msgstr "CDate Function [Runtime]"
+
+#: 03100300.xhp#bm_id3150772.help.text
+msgid "<bookmark_value>CDate function</bookmark_value>"
+msgstr "<bookmark_value>CDate function</bookmark_value>"
+
+#: 03100300.xhp#hd_id3150772.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
+
+#: 03100300.xhp#par_id3150986.2.help.text
+msgid "Converts any string or numeric expression to a date value."
+msgstr "Converts any string or numeric expression to a date value."
+
+#: 03100300.xhp#hd_id3148944.3.help.text
+msgctxt "03100300.xhp#hd_id3148944.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100300.xhp#par_id3148947.4.help.text
+msgid "CDate (Expression)"
+msgstr "CDate (Expression)"
+
+#: 03100300.xhp#hd_id3148552.5.help.text
+msgctxt "03100300.xhp#hd_id3148552.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100300.xhp#par_id3159414.6.help.text
+msgctxt "03100300.xhp#par_id3159414.6.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 03100300.xhp#hd_id3153525.7.help.text
+msgctxt "03100300.xhp#hd_id3153525.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03100300.xhp#par_id3150359.8.help.text
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+msgstr "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+
+#: 03100300.xhp#par_id3125864.9.help.text
+msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
+msgstr "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
+
+#: 03100300.xhp#hd_id3156422.10.help.text
+msgctxt "03100300.xhp#hd_id3156422.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03100300.xhp#par_id3153969.11.help.text
+msgid "sub ExampleCDate"
+msgstr "sub ExampleCDate"
+
+#: 03100300.xhp#par_id3159254.12.help.text
+msgid "MsgBox cDate(1000.25) REM 09.26.1902 06:00:00"
+msgstr "MsgBox cDate(1000.25) REM 09.26.1902 06:00:00"
+
+#: 03100300.xhp#par_id3155133.13.help.text
+msgid "MsgBox cDate(1001.26) REM 09.27.1902 06:14:24"
+msgstr "MsgBox cDate(1001.26) REM 09.27.1902 06:14:24"
+
+#: 03100300.xhp#par_id3153140.14.help.text
+msgctxt "03100300.xhp#par_id3153140.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03103900.xhp#tit.help.text
+msgid "FindPropertyObject Function [Runtime]"
+msgstr "FindPropertyObject Function [Runtime]"
+
+#: 03103900.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
+msgstr "<bookmark_value>FindPropertyObject function</bookmark_value>"
+
+#: 03103900.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
+
+#: 03103900.xhp#par_id3154285.2.help.text
+msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
+msgstr "Enables objects to be addressed at run-time as a string parameter using the object name."
+
+#: 03103900.xhp#par_id3147573.3.help.text
+msgid "For instance, the command:"
+msgstr "For instance, the command:"
+
+#: 03103900.xhp#par_id3145610.4.help.text
+msgctxt "03103900.xhp#par_id3145610.4.help.text"
+msgid "MyObj.Prop1.Command = 5"
+msgstr "MyObj.Prop1.Command = 5"
+
+#: 03103900.xhp#par_id3147265.5.help.text
+msgid "corresponds to the following command block:"
+msgstr "corresponds to the following command block:"
+
+#: 03103900.xhp#par_id3153896.6.help.text
+msgctxt "03103900.xhp#par_id3153896.6.help.text"
+msgid "Dim ObjVar as Object"
+msgstr "Dim ObjVar as Object"
+
+#: 03103900.xhp#par_id3148664.7.help.text
+msgctxt "03103900.xhp#par_id3148664.7.help.text"
+msgid "Dim ObjProp as Object"
+msgstr "Dim ObjProp as Object"
+
+#: 03103900.xhp#par_id3150792.8.help.text
+msgctxt "03103900.xhp#par_id3150792.8.help.text"
+msgid "ObjName As String = \"MyObj\""
+msgstr "ObjName As String = \"MyObj\""
+
+#: 03103900.xhp#par_id3154365.9.help.text
+msgctxt "03103900.xhp#par_id3154365.9.help.text"
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr "ObjVar = FindObject( ObjName As String )"
+
+#: 03103900.xhp#par_id3148453.10.help.text
+msgctxt "03103900.xhp#par_id3148453.10.help.text"
+msgid "PropName As String = \"Prop1\""
+msgstr "PropName As String = \"Prop1\""
+
+#: 03103900.xhp#par_id3150449.11.help.text
+msgctxt "03103900.xhp#par_id3150449.11.help.text"
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+
+#: 03103900.xhp#par_id3159152.12.help.text
+msgctxt "03103900.xhp#par_id3159152.12.help.text"
+msgid "ObjProp.Command = 5"
+msgstr "ObjProp.Command = 5"
+
+#: 03103900.xhp#par_id3156214.13.help.text
+msgid "To dynamically create Names at run-time, use:"
+msgstr "To dynamically create Names at run-time, use:"
+
+#: 03103900.xhp#par_id3154686.14.help.text
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
+msgstr "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
+
+#: 03103900.xhp#par_id3150868.15.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+
+#: 03103900.xhp#hd_id3147287.16.help.text
+msgctxt "03103900.xhp#hd_id3147287.16.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103900.xhp#par_id3149560.17.help.text
+msgid "FindPropertyObject( ObjVar, PropName As String )"
+msgstr "FindPropertyObject( ObjVar, PropName As String )"
+
+#: 03103900.xhp#hd_id3150012.18.help.text
+msgctxt "03103900.xhp#hd_id3150012.18.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03103900.xhp#par_id3109839.19.help.text
+msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+msgstr "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+
+#: 03103900.xhp#par_id3153363.20.help.text
+msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
+msgstr "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
+
+#: 03103800.xhp#tit.help.text
+msgid "FindObject Function [Runtime]"
+msgstr "FindObject Function [Runtime]"
+
+#: 03103800.xhp#bm_id3145136.help.text
+msgid "<bookmark_value>FindObject function</bookmark_value>"
+msgstr "<bookmark_value>FindObject function</bookmark_value>"
+
+#: 03103800.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
+
+#: 03103800.xhp#par_id3155341.2.help.text
+msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
+msgstr "Enables an object to be addressed at run-time as a string parameter through the object name."
+
+#: 03103800.xhp#par_id3150669.3.help.text
+msgid "For example, the following command:"
+msgstr "For example, the following command:"
+
+#: 03103800.xhp#par_id3148473.4.help.text
+msgctxt "03103800.xhp#par_id3148473.4.help.text"
+msgid "MyObj.Prop1.Command = 5"
+msgstr "MyObj.Prop1.Command = 5"
+
+#: 03103800.xhp#par_id3156023.5.help.text
+msgid "corresponds to the command block:"
+msgstr "corresponds to the command block:"
+
+#: 03103800.xhp#par_id3153896.6.help.text
+msgctxt "03103800.xhp#par_id3153896.6.help.text"
+msgid "Dim ObjVar as Object"
+msgstr "Dim ObjVar as Object"
+
+#: 03103800.xhp#par_id3154760.7.help.text
+msgctxt "03103800.xhp#par_id3154760.7.help.text"
+msgid "Dim ObjProp as Object"
+msgstr "Dim ObjProp as Object"
+
+#: 03103800.xhp#par_id3145069.8.help.text
+msgctxt "03103800.xhp#par_id3145069.8.help.text"
+msgid "ObjName As String = \"MyObj\""
+msgstr "ObjName As String = \"MyObj\""
+
+#: 03103800.xhp#par_id3154939.9.help.text
+msgctxt "03103800.xhp#par_id3154939.9.help.text"
+msgid "ObjVar = FindObject( ObjName As String )"
+msgstr "ObjVar = FindObject( ObjName As String )"
+
+#: 03103800.xhp#par_id3150793.10.help.text
+msgctxt "03103800.xhp#par_id3150793.10.help.text"
+msgid "PropName As String = \"Prop1\""
+msgstr "PropName As String = \"Prop1\""
+
+#: 03103800.xhp#par_id3154141.11.help.text
+msgctxt "03103800.xhp#par_id3154141.11.help.text"
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgstr "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+
+#: 03103800.xhp#par_id3156424.12.help.text
+msgctxt "03103800.xhp#par_id3156424.12.help.text"
+msgid "ObjProp.Command = 5"
+msgstr "ObjProp.Command = 5"
+
+#: 03103800.xhp#par_id3145420.13.help.text
+msgid "This allows names to be dynamically created at run-time. For example:"
+msgstr "This allows names to be dynamically created at run-time. For example:"
+
+#: 03103800.xhp#par_id3153104.14.help.text
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
+msgstr "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
+
+#: 03103800.xhp#par_id3150767.15.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+
+#: 03103800.xhp#hd_id3150868.16.help.text
+msgctxt "03103800.xhp#hd_id3150868.16.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103800.xhp#par_id3151042.17.help.text
+msgid "FindObject( ObjName As String )"
+msgstr "FindObject( ObjName As String )"
+
+#: 03103800.xhp#hd_id3159254.18.help.text
+msgctxt "03103800.xhp#hd_id3159254.18.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03103800.xhp#par_id3150439.19.help.text
+msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
+msgstr "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
+
+#: 03050300.xhp#tit.help.text
+msgid "Error Function [Runtime]"
+msgstr "Error Function [Runtime]"
+
+#: 03050300.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>Error function</bookmark_value>"
+msgstr "<bookmark_value>Error function</bookmark_value>"
+
+#: 03050300.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
+
+#: 03050300.xhp#par_id3148663.2.help.text
+msgid "Returns the error message that corresponds to a given error code."
+msgstr "Returns the error message that corresponds to a given error code."
+
+#: 03050300.xhp#hd_id3153379.3.help.text
+msgctxt "03050300.xhp#hd_id3153379.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03050300.xhp#par_id3154366.4.help.text
+msgid "Error (Expression)"
+msgstr "Error (Expression)"
+
+#: 03050300.xhp#hd_id3145173.5.help.text
+msgctxt "03050300.xhp#hd_id3145173.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03050300.xhp#par_id3154125.6.help.text
+msgctxt "03050300.xhp#par_id3154125.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03050300.xhp#hd_id3150869.7.help.text
+msgctxt "03050300.xhp#hd_id3150869.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03050300.xhp#par_id3153193.8.help.text
+msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
+msgstr "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
+
+#: 03050300.xhp#par_id3159254.9.help.text
+msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
+msgstr "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
+
+#: 03120300.xhp#tit.help.text
+msgid "Editing String Contents"
+msgstr "Editing String Contents"
+
+#: 03120300.xhp#bm_id7499008.help.text
+msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
+msgstr "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
+
+#: 03120300.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
+msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
+
+#: 03120300.xhp#par_id3149178.2.help.text
+msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
+msgstr "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
+
+#: 03102100.xhp#tit.help.text
+msgid "Dim Statement [Runtime]"
+msgstr "Dim Statement [Runtime]"
+
+#: 03102100.xhp#bm_id3149812.help.text
+msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
+msgstr "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
+
+#: 03102100.xhp#hd_id3149812.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
+
+#: 03102100.xhp#par_id3143271.2.help.text
+msgctxt "03102100.xhp#par_id3143271.2.help.text"
+msgid "Declares a variable or an array."
+msgstr "Declares a variable or an array."
+
+#: 03102100.xhp#par_id3154686.3.help.text
+msgid "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
+msgstr "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
+
+#: 03102100.xhp#par_id3156422.4.help.text
+msgid "DIM sPar1 AS STRING"
+msgstr "DIM sPar1 AS STRING"
+
+#: 03102100.xhp#par_id3159252.5.help.text
+msgid "DIM sPar2 AS STRING"
+msgstr "DIM sPar2 AS STRING"
+
+#: 03102100.xhp#par_id3153142.6.help.text
+msgid "DIM sPar3 AS STRING"
+msgstr "DIM sPar3 AS STRING"
+
+#: 03102100.xhp#par_id3152576.7.help.text
+msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
+msgstr "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
+
+#: 03102100.xhp#hd_id3156443.8.help.text
+msgctxt "03102100.xhp#hd_id3156443.8.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102100.xhp#par_id3149412.9.help.text
+msgctxt "03102100.xhp#par_id3149412.9.help.text"
+msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+msgstr "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+
+#: 03102100.xhp#hd_id3147397.10.help.text
+msgctxt "03102100.xhp#hd_id3147397.10.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102100.xhp#par_id3154730.11.help.text
+msgctxt "03102100.xhp#par_id3154730.11.help.text"
+msgid "<emph>VarName:</emph> Any variable or array name."
+msgstr "<emph>VarName:</emph> Any variable or array name."
+
+#: 03102100.xhp#par_id3147125.12.help.text
+msgctxt "03102100.xhp#par_id3147125.12.help.text"
+msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+msgstr "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+
+#: 03102100.xhp#par_id3153877.13.help.text
+msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
+msgstr "Start and End can be numerical expressions if ReDim is applied at the procedure level."
+
+#: 03102100.xhp#par_id3153510.14.help.text
+msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
+msgstr "<emph>VarType:</emph> Key word that declares the data type of a variable."
+
+#: 03102100.xhp#par_id3154015.15.help.text
+msgctxt "03102100.xhp#par_id3154015.15.help.text"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr "<emph>Keyword:</emph> Variable type"
+
+#: 03102100.xhp#par_id3153949.16.help.text
+msgid "<emph>Bool:</emph> Boolean variable (True, False)"
+msgstr "<emph>Bool:</emph> Boolean variable (True, False)"
+
+#: 03102100.xhp#par_id3156275.17.help.text
+msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
+msgstr "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
+
+#: 03102100.xhp#par_id3156057.18.help.text
+msgctxt "03102100.xhp#par_id3156057.18.help.text"
+msgid "<emph>Date:</emph> Date variable"
+msgstr "<emph>Date:</emph> Date variable"
+
+#: 03102100.xhp#par_id3148405.19.help.text
+msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+msgstr "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+
+#: 03102100.xhp#par_id3148916.20.help.text
+msgctxt "03102100.xhp#par_id3148916.20.help.text"
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+
+#: 03102100.xhp#par_id3150045.21.help.text
+msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
+msgstr "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
+
+#: 03102100.xhp#par_id3149255.22.help.text
+msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
+msgstr "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
+
+#: 03102100.xhp#par_id3155937.23.help.text
+msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
+msgstr "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
+
+#: 03102100.xhp#par_id3151251.24.help.text
+msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgstr "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+
+#: 03102100.xhp#par_id3154704.25.help.text
+msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
+msgstr "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
+
+#: 03102100.xhp#par_id3146316.26.help.text
+msgctxt "03102100.xhp#par_id3146316.26.help.text"
+msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+msgstr "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+
+#: 03102100.xhp#par_id3149924.27.help.text
+msgctxt "03102100.xhp#par_id3149924.27.help.text"
+msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+msgstr "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+
+#: 03102100.xhp#par_id3148488.28.help.text
+msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
+msgstr "Arrays are declared with the Dim statement. There are two methods to define the index range:"
+
+#: 03102100.xhp#par_id3154662.29.help.text
+msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
+msgstr "DIM text(20) as String REM 21 elements numbered from 0 to 20"
+
+#: 03102100.xhp#par_id3155604.30.help.text
+msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
+msgstr "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
+
+#: 03102100.xhp#par_id3151274.31.help.text
+msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
+msgstr "DIM text(-15 to 5) as String REM 21 elements (including 0)"
+
+#: 03102100.xhp#par_id3152774.32.help.text
+msgid "REM numbered from -15 to 5"
+msgstr "REM numbered from -15 to 5"
+
+#: 03102100.xhp#par_id3150829.33.help.text
+msgid "Two-dimensional data field"
+msgstr "Two-dimensional data field"
+
+#: 03102100.xhp#par_id3149529.34.help.text
+msgid "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
+msgstr "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
+
+#: 03102100.xhp#par_id3159239.35.help.text
+msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
+msgstr "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
+
+#: 03102100.xhp#hd_id3150344.36.help.text
+msgctxt "03102100.xhp#hd_id3150344.36.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102100.xhp#par_id3150206.37.help.text
+msgid "Sub ExampleDim1"
+msgstr "Sub ExampleDim1"
+
+#: 03102100.xhp#par_id3154201.38.help.text
+msgctxt "03102100.xhp#par_id3154201.38.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03102100.xhp#par_id3146134.39.help.text
+msgctxt "03102100.xhp#par_id3146134.39.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03102100.xhp#par_id3154657.40.help.text
+msgctxt "03102100.xhp#par_id3154657.40.help.text"
+msgid "sVar = \"Office\""
+msgstr "sVar = \"Office\""
+
+#: 03102100.xhp#par_id3148459.41.help.text
+msgctxt "03102100.xhp#par_id3148459.41.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03102100.xhp#par_id3166424.43.help.text
+msgid "Sub ExampleDim2"
+msgstr "Sub ExampleDim2"
+
+#: 03102100.xhp#par_id3149036.44.help.text
+msgid "REM Two-dimensional data field"
+msgstr "REM Two-dimensional data field"
+
+#: 03102100.xhp#par_id3149737.45.help.text
+msgid "Dim stext(20,2) as String"
+msgstr "Dim stext(20,2) as String"
+
+#: 03102100.xhp#par_id3153782.46.help.text
+msgid "Const sDim as String = \" Dimension:\""
+msgstr "Const sDim as String = \" Dimension:\""
+
+#: 03102100.xhp#par_id3150518.48.help.text
+msgctxt "03102100.xhp#par_id3150518.48.help.text"
+msgid "for i = 0 to 20"
+msgstr "for i = 0 to 20"
+
+#: 03102100.xhp#par_id3166428.49.help.text
+msgctxt "03102100.xhp#par_id3166428.49.help.text"
+msgid "for ii = 0 to 2"
+msgstr "for ii = 0 to 2"
+
+#: 03102100.xhp#par_id3152994.50.help.text
+msgid "stext(i,ii) = str(i) & sDim & str(ii)"
+msgstr "stext(i,ii) = str(i) & sDim & str(ii)"
+
+#: 03102100.xhp#par_id3150202.51.help.text
+msgctxt "03102100.xhp#par_id3150202.51.help.text"
+msgid "next ii"
+msgstr "next ii"
+
+#: 03102100.xhp#par_id3154370.52.help.text
+msgctxt "03102100.xhp#par_id3154370.52.help.text"
+msgid "next i"
+msgstr "next i"
+
+#: 03102100.xhp#par_id3156166.54.help.text
+msgctxt "03102100.xhp#par_id3156166.54.help.text"
+msgid "for i = 0 to 20"
+msgstr "for i = 0 to 20"
+
+#: 03102100.xhp#par_id3148815.55.help.text
+msgctxt "03102100.xhp#par_id3148815.55.help.text"
+msgid "for ii = 0 to 2"
+msgstr "for ii = 0 to 2"
+
+#: 03102100.xhp#par_id3146981.56.help.text
+msgid "msgbox stext(i,ii)"
+msgstr "msgbox stext(i,ii)"
+
+#: 03102100.xhp#par_id3155125.57.help.text
+msgctxt "03102100.xhp#par_id3155125.57.help.text"
+msgid "next ii"
+msgstr "next ii"
+
+#: 03102100.xhp#par_id3154528.58.help.text
+msgctxt "03102100.xhp#par_id3154528.58.help.text"
+msgid "next i"
+msgstr "next i"
+
+#: 03102100.xhp#par_id3155087.59.help.text
+msgctxt "03102100.xhp#par_id3155087.59.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03010102.xhp#tit.help.text
+msgid "MsgBox Function [Runtime]"
+msgstr "MsgBox Function [Runtime]"
+
+#: 03010102.xhp#bm_id3153379.help.text
+msgid "<bookmark_value>MsgBox function</bookmark_value>"
+msgstr "<bookmark_value>MsgBox function</bookmark_value>"
+
+#: 03010102.xhp#hd_id3153379.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
+
+#: 03010102.xhp#par_id3145171.2.help.text
+msgid "Displays a dialog box containing a message and returns a value."
+msgstr "Displays a dialogue box containing a message and returns a value."
+
+#: 03010102.xhp#hd_id3156281.3.help.text
+msgctxt "03010102.xhp#hd_id3156281.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010102.xhp#par_id3154685.4.help.text
+msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+msgstr "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+
+#: 03010102.xhp#hd_id3153771.5.help.text
+msgctxt "03010102.xhp#hd_id3153771.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03010102.xhp#par_id3146985.6.help.text
+msgctxt "03010102.xhp#par_id3146985.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03010102.xhp#hd_id3153363.7.help.text
+msgctxt "03010102.xhp#hd_id3153363.7.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010102.xhp#par_id3153727.8.help.text
+msgctxt "03010102.xhp#par_id3153727.8.help.text"
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Text</emph>: String expression displayed as a message in the dialogue box. Line breaks can be inserted with Chr$(13)."
+
+#: 03010102.xhp#par_id3147317.9.help.text
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
+msgstr "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialogue. If omitted, the name of the respective application is displayed."
+
+#: 03010102.xhp#par_id3153954.10.help.text
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
+msgstr "<emph>Type</emph>: Any integer expression that specifies the dialogue type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialogue elements defined by adding the respective values):"
+
+#: 03010102.xhp#par_id3154319.11.help.text
+msgid "<emph>Values</emph>"
+msgstr "<emph>Values</emph>"
+
+#: 03010102.xhp#par_id3147397.12.help.text
+msgctxt "03010102.xhp#par_id3147397.12.help.text"
+msgid "0 : Display OK button only."
+msgstr "0 : Display OK button only."
+
+#: 03010102.xhp#par_id3145646.13.help.text
+msgctxt "03010102.xhp#par_id3145646.13.help.text"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Display OK and Cancel buttons."
+
+#: 03010102.xhp#par_id3149410.14.help.text
+msgctxt "03010102.xhp#par_id3149410.14.help.text"
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2 : Display Abort, Retry, and Ignore buttons."
+
+#: 03010102.xhp#par_id3151075.15.help.text
+msgid "3 : Display Yes, No, and Cancel buttons."
+msgstr "3 : Display Yes, No, and Cancel buttons."
+
+#: 03010102.xhp#par_id3153878.16.help.text
+msgctxt "03010102.xhp#par_id3153878.16.help.text"
+msgid "4 : Display Yes and No buttons."
+msgstr "4 : Display Yes and No buttons."
+
+#: 03010102.xhp#par_id3155601.17.help.text
+msgctxt "03010102.xhp#par_id3155601.17.help.text"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Display Retry and Cancel buttons."
+
+#: 03010102.xhp#par_id3150716.18.help.text
+msgctxt "03010102.xhp#par_id3150716.18.help.text"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16 : Add the Stop icon to the dialogue."
+
+#: 03010102.xhp#par_id3153837.19.help.text
+msgctxt "03010102.xhp#par_id3153837.19.help.text"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32 : Add the Question icon to the dialogue."
+
+#: 03010102.xhp#par_id3150751.20.help.text
+msgid "48 : Add the Exclamation Point icon to the dialog."
+msgstr "48 : Add the Exclamation Point icon to the dialogue."
+
+#: 03010102.xhp#par_id3146915.21.help.text
+msgctxt "03010102.xhp#par_id3146915.21.help.text"
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64 : Add the Information icon to the dialogue."
+
+#: 03010102.xhp#par_id3145640.22.help.text
+msgctxt "03010102.xhp#par_id3145640.22.help.text"
+msgid "128 : First button in the dialog as default button."
+msgstr "128 : First button in the dialogue as default button."
+
+#: 03010102.xhp#par_id3153765.23.help.text
+msgctxt "03010102.xhp#par_id3153765.23.help.text"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256 : Second button in the dialogue as default button."
+
+#: 03010102.xhp#par_id3153715.24.help.text
+msgctxt "03010102.xhp#par_id3153715.24.help.text"
+msgid "512 : Third button in the dialog as default button."
+msgstr "512 : Third button in the dialogue as default button."
+
+#: 03010102.xhp#par_id3159267.25.help.text
+msgid "<emph>Return value:</emph>"
+msgstr "<emph>Return value:</emph>"
+
+#: 03010102.xhp#par_id3145230.26.help.text
+msgid "1 : OK"
+msgstr "1 : OK"
+
+#: 03010102.xhp#par_id3149567.27.help.text
+msgid "2 : Cancel"
+msgstr "2 : Cancel"
+
+#: 03010102.xhp#par_id4056825.help.text
+msgid "3 : Abort"
+msgstr "3 : Abort"
+
+#: 03010102.xhp#par_id3155335.28.help.text
+msgid "4 : Retry"
+msgstr "4 : Retry"
+
+#: 03010102.xhp#par_id3146918.29.help.text
+msgid "5 : Ignore"
+msgstr "5 : Ignore"
+
+#: 03010102.xhp#par_id3155961.30.help.text
+msgid "6 : Yes"
+msgstr "6 : Yes"
+
+#: 03010102.xhp#par_id3148488.31.help.text
+msgid "7 : No"
+msgstr "7 : No"
+
+#: 03010102.xhp#hd_id3150090.40.help.text
+msgctxt "03010102.xhp#hd_id3150090.40.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010102.xhp#par_id3154120.41.help.text
+msgctxt "03010102.xhp#par_id3154120.41.help.text"
+msgid "Sub ExampleMsgBox"
+msgstr "Sub ExampleMsgBox"
+
+#: 03010102.xhp#par_id3145131.42.help.text
+msgid "Dim sVar as Integer"
+msgstr "Dim sVar as Integer"
+
+#: 03010102.xhp#par_id3151278.43.help.text
+msgid "sVar = MsgBox(\"Las Vegas\")"
+msgstr "sVar = MsgBox(\"Las Vegas\")"
+
+#: 03010102.xhp#par_id3149034.44.help.text
+msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgstr "sVar = MsgBox(\"Las Vegas\",1)"
+
+#: 03010102.xhp#par_id3166424.45.help.text
+msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgstr "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialogue title\")"
+
+#: 03010102.xhp#par_id3152581.46.help.text
+msgctxt "03010102.xhp#par_id3152581.46.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03010100.xhp#tit.help.text
+msgid "Display Functions"
+msgstr "Display Functions"
+
+#: 03010100.xhp#hd_id3151384.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+
+#: 03010100.xhp#par_id3149346.2.help.text
+msgid "This section describes Runtime functions used to output information to the screen display."
+msgstr "This section describes Runtime functions used to output information to the screen display."
+
+#: 03010301.xhp#tit.help.text
+msgid "Blue Function [Runtime]"
+msgstr "Blue Function [Runtime]"
+
+#: 03010301.xhp#bm_id3149180.help.text
+msgid "<bookmark_value>Blue function</bookmark_value>"
+msgstr "<bookmark_value>Blue function</bookmark_value>"
+
+#: 03010301.xhp#hd_id3149180.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
+
+#: 03010301.xhp#par_id3156343.2.help.text
+msgid "Returns the blue component of the specified color code."
+msgstr "Returns the blue component of the specified colour code."
+
+#: 03010301.xhp#hd_id3149670.3.help.text
+msgctxt "03010301.xhp#hd_id3149670.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010301.xhp#par_id3149457.4.help.text
+msgid "Blue (Color As Long)"
+msgstr "Blue (Color As Long)"
+
+#: 03010301.xhp#hd_id3149656.5.help.text
+msgctxt "03010301.xhp#hd_id3149656.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03010301.xhp#par_id3154365.6.help.text
+msgctxt "03010301.xhp#par_id3154365.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03010301.xhp#hd_id3156423.7.help.text
+msgctxt "03010301.xhp#hd_id3156423.7.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010301.xhp#par_id3150448.8.help.text
+msgid "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the blue component."
+msgstr "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">colour code</link> for which to return the blue component."
+
+#: 03010301.xhp#hd_id3153091.9.help.text
+msgctxt "03010301.xhp#hd_id3153091.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010301.xhp#par_id3153143.10.help.text
+msgctxt "03010301.xhp#par_id3153143.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub ExampleColour"
+
+#: 03010301.xhp#par_id3149664.11.help.text
+msgctxt "03010301.xhp#par_id3149664.11.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03010301.xhp#par_id3148576.12.help.text
+msgctxt "03010301.xhp#par_id3148576.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr "lVar = rgb(128,0,200)"
+
+#: 03010301.xhp#par_id3154012.13.help.text
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "MsgBox \"The colour \" & lVar & \" consists of:\" & Chr(13) &_"
+
+#: 03010301.xhp#par_id3148645.14.help.text
+msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgstr "\"red= \" & Red(lVar) & Chr(13)&_"
+
+#: 03010301.xhp#par_id3159155.15.help.text
+msgid "\"green= \" & Green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & Green(lVar) & Chr(13)&_"
+
+#: 03010301.xhp#par_id3147319.16.help.text
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colours\""
+
+#: 03010301.xhp#par_id3147434.17.help.text
+msgctxt "03010301.xhp#par_id3147434.17.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132500.xhp#tit.help.text
+msgid "GetDefaultContext Function [Runtime]"
+msgstr "GetDefaultContext Function [Runtime]"
+
+#: 03132500.xhp#bm_id4761192.help.text
+msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgstr "<bookmark_value>GetDefaultContext function</bookmark_value>"
+
+#: 03132500.xhp#par_idN10580.help.text
+msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
+
+#: 03132500.xhp#par_idN10590.help.text
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference. "
+msgstr "Returns the default context of the process service factory, if existent, else returns a null reference. "
+
+#: 03132500.xhp#par_idN10593.help.text
+#, fuzzy
+msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
+msgstr "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.openoffice.org\">api.openoffice.org</link> for more information."
+
+#: 03104200.xhp#tit.help.text
+msgid "Array Function [Runtime]"
+msgstr "Array Function [Runtime]"
+
+#: 03104200.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Array function</bookmark_value>"
+msgstr "<bookmark_value>Array function</bookmark_value>"
+
+#: 03104200.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
+
+#: 03104200.xhp#par_id3155555.2.help.text
+msgid "Returns the type Variant with a data field."
+msgstr "Returns the type Variant with a data field."
+
+#: 03104200.xhp#hd_id3148538.3.help.text
+msgctxt "03104200.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03104200.xhp#par_id3153126.4.help.text
+msgid "Array ( Argument list)"
+msgstr "Array ( Argument list)"
+
+#: 03104200.xhp#par_id3155419.5.help.text
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgstr "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+
+#: 03104200.xhp#hd_id3150669.6.help.text
+msgctxt "03104200.xhp#hd_id3150669.6.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03104200.xhp#par_id3145609.7.help.text
+msgctxt "03104200.xhp#par_id3145609.7.help.text"
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+
+#: 03104200.xhp#hd_id3156343.8.help.text
+msgctxt "03104200.xhp#hd_id3156343.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03104200.xhp#par_id3153897.9.help.text
+msgid "Dim A As Variant"
+msgstr "Dim A As Variant"
+
+#: 03104200.xhp#par_id3153525.10.help.text
+msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgstr "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+
+#: 03104200.xhp#par_id3150792.11.help.text
+msgid "Msgbox A(2)"
+msgstr "Msgbox A(2)"
+
+#: 03120400.xhp#tit.help.text
+msgid "Editing String Length"
+msgstr "Editing String Length"
+
+#: 03120400.xhp#hd_id3155150.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
+msgstr "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
+
+#: 03120400.xhp#par_id3159201.2.help.text
+msgid "The following functions determine string lengths and compare strings."
+msgstr "The following functions determine string lengths and compare strings."
+
+#: 03090402.xhp#tit.help.text
+msgid "Choose Function [Runtime]"
+msgstr "Choose Function [Runtime]"
+
+#: 03090402.xhp#bm_id3143271.help.text
+msgid "<bookmark_value>Choose function</bookmark_value>"
+msgstr "<bookmark_value>Choose function</bookmark_value>"
+
+#: 03090402.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
+
+#: 03090402.xhp#par_id3149234.2.help.text
+msgid "Returns a selected value from a list of arguments."
+msgstr "Returns a selected value from a list of arguments."
+
+#: 03090402.xhp#hd_id3148943.3.help.text
+msgctxt "03090402.xhp#hd_id3148943.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090402.xhp#par_id3147560.4.help.text
+msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgstr "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+
+#: 03090402.xhp#hd_id3154346.5.help.text
+msgctxt "03090402.xhp#hd_id3154346.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090402.xhp#par_id3148664.6.help.text
+msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
+msgstr "<emph>Index:</emph> A numeric expression that specifies the value to return."
+
+#: 03090402.xhp#par_id3150791.7.help.text
+msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
+msgstr "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
+
+#: 03090402.xhp#par_id3151043.8.help.text
+msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
+msgstr "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
+
+#: 03090402.xhp#par_id3153192.9.help.text
+msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
+msgstr "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
+
+#: 03090402.xhp#par_id3156281.10.help.text
+msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
+msgstr "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
+
+#: 03090402.xhp#hd_id3150439.11.help.text
+msgctxt "03090402.xhp#hd_id3150439.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090402.xhp#par_id3153091.12.help.text
+msgid "Sub ExampleChoose"
+msgstr "Sub ExampleChoose"
+
+#: 03090402.xhp#par_id3152597.13.help.text
+msgctxt "03090402.xhp#par_id3152597.13.help.text"
+msgid "Dim sReturn As String"
+msgstr "Dim sReturn As String"
+
+#: 03090402.xhp#par_id3155855.14.help.text
+msgid "sReturn = ChooseMenu(2)"
+msgstr "sReturn = ChooseMenu(2)"
+
+#: 03090402.xhp#par_id3148575.15.help.text
+msgctxt "03090402.xhp#par_id3148575.15.help.text"
+msgid "Print sReturn"
+msgstr "Print sReturn"
+
+#: 03090402.xhp#par_id3154012.16.help.text
+msgctxt "03090402.xhp#par_id3154012.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090402.xhp#par_id3146921.19.help.text
+msgid "Function ChooseMenu(Index As Integer)"
+msgstr "Function ChooseMenu(Index As Integer)"
+
+#: 03090402.xhp#par_id3156443.20.help.text
+msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgstr "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+
+#: 03090402.xhp#par_id3148645.21.help.text
+msgctxt "03090402.xhp#par_id3148645.21.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03100070.xhp#tit.help.text
+msgid "CVar Function [Runtime]"
+msgstr "CVar Function [Runtime]"
+
+#: 03100070.xhp#bm_id2338633.help.text
+msgid "<bookmark_value>CVar function</bookmark_value>"
+msgstr "<bookmark_value>CVar function</bookmark_value>"
+
+#: 03100070.xhp#par_idN1054B.help.text
+msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
+
+#: 03100070.xhp#par_idN1055B.help.text
+msgid "Converts a string expression or numeric expression to a variant expression."
+msgstr "Converts a string expression or numeric expression to a variant expression."
+
+#: 03100070.xhp#par_idN1055E.help.text
+msgctxt "03100070.xhp#par_idN1055E.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100070.xhp#par_idN10562.help.text
+msgid "CVar(Expression)"
+msgstr "CVar(Expression)"
+
+#: 03100070.xhp#par_idN10565.help.text
+msgctxt "03100070.xhp#par_idN10565.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100070.xhp#par_idN10569.help.text
+msgctxt "03100070.xhp#par_idN10569.help.text"
+msgid "Variant."
+msgstr "Variant."
+
+#: 03100070.xhp#par_idN1056C.help.text
+msgctxt "03100070.xhp#par_idN1056C.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03100070.xhp#par_idN10570.help.text
+msgctxt "03100070.xhp#par_idN10570.help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Expression: Any string or numeric expression that you want to convert."
+
+#: 03020304.xhp#tit.help.text
+msgid "Seek Function [Runtime]"
+msgstr "Seek Function [Runtime]"
+
+#: 03020304.xhp#bm_id3154367.help.text
+msgid "<bookmark_value>Seek function</bookmark_value>"
+msgstr "<bookmark_value>Seek function</bookmark_value>"
+
+#: 03020304.xhp#hd_id3154367.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
+
+#: 03020304.xhp#par_id3156280.2.help.text
+msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
+msgstr "Returns the position for the next writing or reading in a file that was opened with the open statement."
+
+#: 03020304.xhp#par_id3153194.3.help.text
+msgid "For random access files, the Seek function returns the number of the next record to be read."
+msgstr "For random access files, the Seek function returns the number of the next record to be read."
+
+#: 03020304.xhp#par_id3161831.4.help.text
+msgid "For all other files, the function returns the byte position at which the next operation is to occur."
+msgstr "For all other files, the function returns the byte position at which the next operation is to occur."
+
+#: 03020304.xhp#par_id3155854.5.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
+msgstr "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
+
+#: 03020304.xhp#hd_id3152460.6.help.text
+msgctxt "03020304.xhp#hd_id3152460.6.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020304.xhp#par_id3145365.7.help.text
+msgid "Seek (FileNumber)"
+msgstr "Seek (FileNumber)"
+
+#: 03020304.xhp#hd_id3148575.8.help.text
+msgctxt "03020304.xhp#hd_id3148575.8.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020304.xhp#par_id3159156.9.help.text
+msgctxt "03020304.xhp#par_id3159156.9.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03020304.xhp#hd_id3149665.10.help.text
+msgctxt "03020304.xhp#hd_id3149665.10.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020304.xhp#par_id3148645.11.help.text
+msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+msgstr "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+
+#: 03120312.xhp#tit.help.text
+msgid "ConvertToURL Function [Runtime]"
+msgstr "ConvertToURL Function [Runtime]"
+
+#: 03120312.xhp#bm_id3152801.help.text
+msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
+msgstr "<bookmark_value>ConvertToURL function</bookmark_value>"
+
+#: 03120312.xhp#hd_id3152801.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
+
+#: 03120312.xhp#par_id3148538.2.help.text
+msgid "Converts a system file name to a file URL."
+msgstr "Converts a system file name to a file URL."
+
+#: 03120312.xhp#hd_id3150669.3.help.text
+msgctxt "03120312.xhp#hd_id3150669.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120312.xhp#par_id3154285.4.help.text
+msgid "ConvertToURL(filename)"
+msgstr "ConvertToURL(filename)"
+
+#: 03120312.xhp#hd_id3150984.5.help.text
+msgctxt "03120312.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120312.xhp#par_id3147530.6.help.text
+msgctxt "03120312.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120312.xhp#hd_id3148550.7.help.text
+msgctxt "03120312.xhp#hd_id3148550.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120312.xhp#par_id3148947.8.help.text
+msgid "<emph>Filename:</emph> A file name as string."
+msgstr "<emph>Filename:</emph> A file name as string."
+
+#: 03120312.xhp#hd_id3153361.9.help.text
+msgctxt "03120312.xhp#hd_id3153361.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120312.xhp#par_id3150792.10.help.text
+msgctxt "03120312.xhp#par_id3150792.10.help.text"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
+
+#: 03120312.xhp#par_id3154365.11.help.text
+msgctxt "03120312.xhp#par_id3154365.11.help.text"
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "url$ = ConvertToURL( systemFile$ )"
+
+#: 03120312.xhp#par_id3151042.12.help.text
+msgctxt "03120312.xhp#par_id3151042.12.help.text"
+msgid "print url$"
+msgstr "print url$"
+
+#: 03120312.xhp#par_id3154909.13.help.text
+msgctxt "03120312.xhp#par_id3154909.13.help.text"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
+
+#: 03120312.xhp#par_id3144762.14.help.text
+msgctxt "03120312.xhp#par_id3144762.14.help.text"
+msgid "print systemFileAgain$"
+msgstr "print systemFileAgain$"
+
+#: 03090101.xhp#tit.help.text
+msgid "If...Then...Else Statement [Runtime]"
+msgstr "If...Then...Else Statement [Runtime]"
+
+#: 03090101.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>If statement</bookmark_value>"
+msgstr "<bookmark_value>If statement</bookmark_value>"
+
+#: 03090101.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
+
+#: 03090101.xhp#par_id3155555.2.help.text
+msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
+msgstr "Defines one or more statement blocks that you only want to execute if a given condition is True."
+
+#: 03090101.xhp#hd_id3146957.3.help.text
+msgctxt "03090101.xhp#hd_id3146957.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090101.xhp#par_id3153126.4.help.text
+msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf<br/>Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
+msgstr "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf<br/>Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
+
+#: 03090101.xhp#hd_id3155419.5.help.text
+msgctxt "03090101.xhp#hd_id3155419.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090101.xhp#par_id3153062.6.help.text
+msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgstr "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+
+#: 03090101.xhp#par_id3153192.7.help.text
+msgid "You can nest multiple <emph>If...Then</emph> statements."
+msgstr "You can nest multiple <emph>If...Then</emph> statements."
+
+#: 03090101.xhp#par_id3154684.8.help.text
+msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+msgstr "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+
+#: 03090101.xhp#par_id3152939.9.help.text
+msgid "You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure."
+msgstr "You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure."
+
+#: 03090101.xhp#par_id3153951.10.help.text
+msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
+msgstr "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
+
+#: 03090101.xhp#hd_id3152576.11.help.text
+msgctxt "03090101.xhp#hd_id3152576.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090101.xhp#par_id3150011.12.help.text
+msgid "Sub ExampleIfThenDate"
+msgstr "Sub ExampleIfThenDate"
+
+#: 03090101.xhp#par_id3148645.13.help.text
+msgctxt "03090101.xhp#par_id3148645.13.help.text"
+msgid "Dim sDate as String"
+msgstr "Dim sDate as String"
+
+#: 03090101.xhp#par_id3155855.14.help.text
+msgid "Dim sToday as String"
+msgstr "Dim sToday as String"
+
+#: 03090101.xhp#par_id3154490.16.help.text
+msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgstr "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+
+#: 03090101.xhp#par_id3154943.17.help.text
+msgid "sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left$(sDate, 2)"
+msgstr "sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left$(sDate, 2)"
+
+#: 03090101.xhp#par_id3154098.18.help.text
+msgid "sToday = Date$"
+msgstr "sToday = Date$"
+
+#: 03090101.xhp#par_id3144765.19.help.text
+msgid "sToday = Right$(sToday, 4)+ Mid$(sToday, 4, 2) + Left$(sToday, 2)"
+msgstr "sToday = Right$(sToday, 4)+ Mid$(sToday, 4, 2) + Left$(sToday, 2)"
+
+#: 03090101.xhp#par_id3154792.20.help.text
+msgid "If sDate < sToday Then"
+msgstr "If sDate < sToday Then"
+
+#: 03090101.xhp#par_id3155601.21.help.text
+msgid "MsgBox \"The expiration date has passed\""
+msgstr "MsgBox \"The expiration date has passed\""
+
+#: 03090101.xhp#par_id3146972.22.help.text
+msgid "ElseIf sDate > sToday Then"
+msgstr "ElseIf sDate > sToday Then"
+
+#: 03090101.xhp#par_id3146912.23.help.text
+msgid "MsgBox \"The expiration date has not yet passed\""
+msgstr "MsgBox \"The expiration date has not yet passed\""
+
+#: 03090101.xhp#par_id3153710.24.help.text
+msgid "Else"
+msgstr "Else"
+
+#: 03090101.xhp#par_id3154754.25.help.text
+msgid "MsgBox \"The expiration date is today\""
+msgstr "MsgBox \"The expiration date is today\""
+
+#: 03090101.xhp#par_id3154361.26.help.text
+msgctxt "03090101.xhp#par_id3154361.26.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03090101.xhp#par_id3148405.28.help.text
+msgctxt "03090101.xhp#par_id3148405.28.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120310.xhp#tit.help.text
+msgid "UCase Function [Runtime]"
+msgstr "UCase Function [Runtime]"
+
+#: 03120310.xhp#bm_id3153527.help.text
+msgid "<bookmark_value>UCase function</bookmark_value>"
+msgstr "<bookmark_value>UCase function</bookmark_value>"
+
+#: 03120310.xhp#hd_id3153527.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
+
+#: 03120310.xhp#par_id3155420.2.help.text
+msgid "Converts lowercase characters in a string to uppercase."
+msgstr "Converts lowercase characters in a string to uppercase."
+
+#: 03120310.xhp#par_id3150771.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+
+#: 03120310.xhp#par_id3149233.4.help.text
+msgid "<emph>Syntax</emph>:"
+msgstr "<emph>Syntax</emph>:"
+
+#: 03120310.xhp#par_id3153061.5.help.text
+msgid "UCase (Text As String)"
+msgstr "UCase (Text As String)"
+
+#: 03120310.xhp#par_id3159414.6.help.text
+msgid "<emph>Return value</emph>:"
+msgstr "<emph>Return value</emph>:"
+
+#: 03120310.xhp#par_id3146795.7.help.text
+msgctxt "03120310.xhp#par_id3146795.7.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120310.xhp#hd_id3149457.8.help.text
+msgctxt "03120310.xhp#hd_id3149457.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120310.xhp#par_id3150791.9.help.text
+msgctxt "03120310.xhp#par_id3150791.9.help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Text:</emph> Any string expression that you want to convert."
+
+#: 03120310.xhp#hd_id3154125.10.help.text
+msgctxt "03120310.xhp#hd_id3154125.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120310.xhp#par_id3147229.11.help.text
+msgctxt "03120310.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleLUCase"
+msgstr "Sub ExampleLUCase"
+
+#: 03120310.xhp#par_id3151381.12.help.text
+msgctxt "03120310.xhp#par_id3151381.12.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120310.xhp#par_id3153194.13.help.text
+msgctxt "03120310.xhp#par_id3153194.13.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr "sVar = \"Las Vegas\""
+
+#: 03120310.xhp#par_id3149204.14.help.text
+msgid "Print LCase(sVar) REM returns \"las vegas\""
+msgstr "Print LCase(sVar) REM returns \"las vegas\""
+
+#: 03120310.xhp#par_id3156280.15.help.text
+msgid "Print UCase(sVar) REM returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) REM returns \"LAS VEGAS\""
+
+#: 03120310.xhp#par_id3156422.16.help.text
+msgctxt "03120310.xhp#par_id3156422.16.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03103100.xhp#tit.help.text
+msgid "Let Statement [Runtime]"
+msgstr "Let Statement [Runtime]"
+
+#: 03103100.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>Let statement</bookmark_value>"
+msgstr "<bookmark_value>Let statement</bookmark_value>"
+
+#: 03103100.xhp#hd_id3147242.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
+
+#: 03103100.xhp#par_id3149233.2.help.text
+msgid "Assigns a value to a variable."
+msgstr "Assigns a value to a variable."
+
+#: 03103100.xhp#hd_id3153127.3.help.text
+msgctxt "03103100.xhp#hd_id3153127.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103100.xhp#par_id3154285.4.help.text
+msgid "[Let] VarName=Expression"
+msgstr "[Let] VarName=Expression"
+
+#: 03103100.xhp#hd_id3148944.5.help.text
+msgctxt "03103100.xhp#hd_id3148944.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03103100.xhp#par_id3147560.6.help.text
+msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
+msgstr "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
+
+#: 03103100.xhp#par_id3148451.7.help.text
+msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgstr "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+
+#: 03103100.xhp#hd_id3145785.8.help.text
+msgctxt "03103100.xhp#hd_id3145785.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103100.xhp#par_id3150441.9.help.text
+msgctxt "03103100.xhp#par_id3150441.9.help.text"
+msgid "Sub ExampleLen"
+msgstr "Sub ExampleLen"
+
+#: 03103100.xhp#par_id3159254.10.help.text
+msgctxt "03103100.xhp#par_id3159254.10.help.text"
+msgid "Dim sText as String"
+msgstr "Dim sText as String"
+
+#: 03103100.xhp#par_id3149481.11.help.text
+msgid "Let sText = \"Las Vegas\""
+msgstr "Let sText = \"Las Vegas\""
+
+#: 03103100.xhp#par_id3152939.12.help.text
+msgid "msgbox Len(sText) REM returns 9"
+msgstr "msgbox Len(sText) REM returns 9"
+
+#: 03103100.xhp#par_id3146921.13.help.text
+msgctxt "03103100.xhp#par_id3146921.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020412.xhp#tit.help.text
+msgid "Name Statement [Runtime]"
+msgstr "Name Statement [Runtime]"
+
+#: 03020412.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>Name statement</bookmark_value>"
+msgstr "<bookmark_value>Name statement</bookmark_value>"
+
+#: 03020412.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
+
+#: 03020412.xhp#par_id3154346.2.help.text
+msgid "Renames an existing file or directory."
+msgstr "Renames an existing file or directory."
+
+#: 03020412.xhp#hd_id3156344.3.help.text
+msgctxt "03020412.xhp#hd_id3156344.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020412.xhp#par_id3153381.4.help.text
+msgid "Name OldName As String As NewName As String"
+msgstr "Name OldName As String As NewName As String"
+
+#: 03020412.xhp#hd_id3153362.5.help.text
+msgctxt "03020412.xhp#hd_id3153362.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020412.xhp#par_id3151210.6.help.text
+msgid "<emph>OldName, NewName:</emph> Any string expression that specifies the file name, including the path. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>OldName, NewName:</emph> Any string expression that specifies the file name, including the path. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020412.xhp#hd_id3125863.8.help.text
+msgctxt "03020412.xhp#hd_id3125863.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020412.xhp#par_id3145786.9.help.text
+msgid "Sub ExampleReName"
+msgstr "Sub ExampleReName"
+
+#: 03020412.xhp#par_id3161832.10.help.text
+msgid "On Error Goto Error"
+msgstr "On Error Goto Error"
+
+#: 03020412.xhp#par_id3147435.11.help.text
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\temp\\autoexec.sav\""
+msgstr "Filecopy \"c:\\autoexec.bat\", \"c:\\temp\\autoexec.sav\""
+
+#: 03020412.xhp#par_id3156444.12.help.text
+msgid "Name \"c:\\temp\\autoexec.sav\" as \"c:\\temp\\autoexec.bat\""
+msgstr "Name \"c:\\temp\\autoexec.sav\" as \"c:\\temp\\autoexec.bat\""
+
+#: 03020412.xhp#par_id3155308.13.help.text
+msgctxt "03020412.xhp#par_id3155308.13.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020412.xhp#par_id3153727.14.help.text
+msgid "Error:"
+msgstr "Error:"
+
+#: 03020412.xhp#par_id3153951.15.help.text
+msgid "if err = 58 then"
+msgstr "if err = 58 then"
+
+#: 03020412.xhp#par_id3152462.16.help.text
+msgid "msgbox \"File already exists\""
+msgstr "msgbox \"File already exists\""
+
+#: 03020412.xhp#par_id3149263.17.help.text
+msgctxt "03020412.xhp#par_id3149263.17.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020412.xhp#par_id3154011.18.help.text
+msgctxt "03020412.xhp#par_id3154011.18.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020412.xhp#par_id3146985.19.help.text
+msgctxt "03020412.xhp#par_id3146985.19.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030205.xhp#tit.help.text
+msgid "TimeSerial Function [Runtime]"
+msgstr "TimeSerial Function [Runtime]"
+
+#: 03030205.xhp#bm_id3143271.help.text
+msgid "<bookmark_value>TimeSerial function</bookmark_value>"
+msgstr "<bookmark_value>TimeSerial function</bookmark_value>"
+
+#: 03030205.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
+
+#: 03030205.xhp#par_id3156344.2.help.text
+msgid "Calculates a serial time value for the specified hour, minute, and second parameters that are passed as numeric value. You can then use this value to calculate the difference between times."
+msgstr "Calculates a serial time value for the specified hour, minute, and second parameters that are passed as numeric value. You can then use this value to calculate the difference between times."
+
+#: 03030205.xhp#hd_id3146794.4.help.text
+msgctxt "03030205.xhp#hd_id3146794.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030205.xhp#par_id3150792.5.help.text
+msgid "TimeSerial (hour, minute, second)"
+msgstr "TimeSerial (hour, minute, second)"
+
+#: 03030205.xhp#hd_id3148797.6.help.text
+msgctxt "03030205.xhp#hd_id3148797.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030205.xhp#par_id3154908.7.help.text
+msgctxt "03030205.xhp#par_id3154908.7.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 03030205.xhp#hd_id3154124.8.help.text
+msgctxt "03030205.xhp#hd_id3154124.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030205.xhp#par_id3153193.9.help.text
+msgid "<emph>hour:</emph> Any integer expression that indicates the hour of the time that is used to determine the serial time value. Valid values: 0-23."
+msgstr "<emph>hour:</emph> Any integer expression that indicates the hour of the time that is used to determine the serial time value. Valid values: 0-23."
+
+#: 03030205.xhp#par_id3159252.10.help.text
+msgid "<emph>minute:</emph> Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value."
+msgstr "<emph>minute:</emph> Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value."
+
+#: 03030205.xhp#par_id3161831.11.help.text
+msgid "<emph>second:</emph> Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value."
+msgstr "<emph>second:</emph> Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value."
+
+#: 03030205.xhp#par_id3155854.12.help.text
+msgid "<emph>Examples:</emph>"
+msgstr "<emph>Examples:</emph>"
+
+#: 03030205.xhp#par_id3153952.13.help.text
+msgid "12, -5, 45 corresponds to 11, 55, 45"
+msgstr "12, -5, 45 corresponds to 11, 55, 45"
+
+#: 03030205.xhp#par_id3147349.14.help.text
+msgid "12, 61, 45 corresponds to 13, 2, 45"
+msgstr "12, 61, 45 corresponds to 13, 2, 45"
+
+#: 03030205.xhp#par_id3147426.15.help.text
+msgid "12, 20, -2 corresponds to 12, 19, 58"
+msgstr "12, 20, -2 corresponds to 12, 19, 58"
+
+#: 03030205.xhp#par_id3153365.16.help.text
+msgid "12, 20, 63 corresponds to 12, 21, 4"
+msgstr "12, 20, 63 corresponds to 12, 21, 4"
+
+#: 03030205.xhp#par_id3146985.17.help.text
+msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+msgstr "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+
+#: 03030205.xhp#par_id3155308.18.help.text
+msgid "The TimeSerial function returns the type Variant with VarType 7 (Date). This value is stored internally as a double-precision number between 0 and 0.9999999999. As opposed to the DateSerial or DateValue function, where the serial date values are calculated as days relative to a fixed date, you can calculate with values returned by the TimeSerial function, but you cannot evaluate them."
+msgstr "The TimeSerial function returns the type Variant with VarType 7 (Date). This value is stored internally as a double-precision number between 0 and 0.9999999999. As opposed to the DateSerial or DateValue function, where the serial date values are calculated as days relative to a fixed date, you can calculate with values returned by the TimeSerial function, but you cannot evaluate them."
+
+#: 03030205.xhp#par_id3149482.19.help.text
+msgid "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
+msgstr "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
+
+#: 03030205.xhp#hd_id3154790.20.help.text
+msgctxt "03030205.xhp#hd_id3154790.20.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030205.xhp#par_id3145252.21.help.text
+msgid "Sub ExampleTimeSerial"
+msgstr "Sub ExampleTimeSerial"
+
+#: 03030205.xhp#par_id3153157.22.help.text
+msgid "Dim dDate As Double, sDate As String"
+msgstr "Dim dDate As Double, sDate As String"
+
+#: 03030205.xhp#par_id3156286.23.help.text
+msgid "dDate = TimeSerial(8,30,15)"
+msgstr "dDate = TimeSerial(8,30,15)"
+
+#: 03030205.xhp#par_id3148456.24.help.text
+msgid "sDate = TimeSerial(8,30,15)"
+msgstr "sDate = TimeSerial(8,30,15)"
+
+#: 03030205.xhp#par_id3155600.25.help.text
+msgid "MsgBox dDate,64,\"Time as a number\""
+msgstr "MsgBox dDate,64,\"Time as a number\""
+
+#: 03030205.xhp#par_id3153417.26.help.text
+msgid "MsgBox sDate,64,\"Formatted time\""
+msgstr "MsgBox sDate,64,\"Formatted time\""
+
+#: 03030205.xhp#par_id3153836.27.help.text
+msgctxt "03030205.xhp#par_id3153836.27.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020101.xhp#tit.help.text
+msgid "Close Statement [Runtime]"
+msgstr "Close Statement [Runtime]"
+
+#: 03020101.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>Close statement</bookmark_value>"
+msgstr "<bookmark_value>Close statement</bookmark_value>"
+
+#: 03020101.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
+
+#: 03020101.xhp#par_id3147573.2.help.text
+msgid "Closes a specified file that was opened with the Open statement."
+msgstr "Closes a specified file that was opened with the Open statement."
+
+#: 03020101.xhp#hd_id3156344.3.help.text
+msgctxt "03020101.xhp#hd_id3156344.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020101.xhp#par_id3147265.4.help.text
+msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]] "
+msgstr "Close FileNumber As Integer[, FileNumber2 As Integer[,...]] "
+
+#: 03020101.xhp#hd_id3153379.5.help.text
+msgctxt "03020101.xhp#hd_id3153379.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020101.xhp#par_id3150791.6.help.text
+msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgstr "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+
+#: 03020101.xhp#hd_id3153192.7.help.text
+msgctxt "03020101.xhp#hd_id3153192.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020101.xhp#par_id3154909.8.help.text
+msgctxt "03020101.xhp#par_id3154909.8.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub ExampleWorkWithAFile"
+
+#: 03020101.xhp#par_id3154124.9.help.text
+msgctxt "03020101.xhp#par_id3154124.9.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020101.xhp#par_id3155132.10.help.text
+msgctxt "03020101.xhp#par_id3155132.10.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03020101.xhp#par_id3155854.11.help.text
+msgctxt "03020101.xhp#par_id3155854.11.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020101.xhp#par_id3146985.34.help.text
+msgctxt "03020101.xhp#par_id3146985.34.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMsg as String"
+
+#: 03020101.xhp#par_id3154013.12.help.text
+msgctxt "03020101.xhp#par_id3154013.12.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020101.xhp#par_id3152598.13.help.text
+msgctxt "03020101.xhp#par_id3152598.13.help.text"
+msgid "sMsg = \"\""
+msgstr "sMsg = \"\""
+
+#: 03020101.xhp#par_id3147427.14.help.text
+msgctxt "03020101.xhp#par_id3147427.14.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020101.xhp#par_id3151112.15.help.text
+msgctxt "03020101.xhp#par_id3151112.15.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03020101.xhp#par_id3153727.16.help.text
+msgctxt "03020101.xhp#par_id3153727.16.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"First line of text\""
+
+#: 03020101.xhp#par_id3147350.17.help.text
+msgctxt "03020101.xhp#par_id3147350.17.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Another line of text\""
+
+#: 03020101.xhp#par_id3149667.18.help.text
+msgctxt "03020101.xhp#par_id3149667.18.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020101.xhp#par_id3145801.22.help.text
+msgctxt "03020101.xhp#par_id3145801.22.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020101.xhp#par_id3147396.23.help.text
+msgctxt "03020101.xhp#par_id3147396.23.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aFile For Input As iNumber"
+
+#: 03020101.xhp#par_id3147124.24.help.text
+msgctxt "03020101.xhp#par_id3147124.24.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumber)"
+
+#: 03020101.xhp#par_id3154491.25.help.text
+msgctxt "03020101.xhp#par_id3154491.25.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumber, sLine"
+
+#: 03020101.xhp#par_id3149581.26.help.text
+msgctxt "03020101.xhp#par_id3149581.26.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLine <>\"\" then"
+
+#: 03020101.xhp#par_id3155602.27.help.text
+msgctxt "03020101.xhp#par_id3155602.27.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMsg = sMsg & sLine & chr(13)"
+
+#: 03020101.xhp#par_id3154511.29.help.text
+msgctxt "03020101.xhp#par_id3154511.29.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020101.xhp#par_id3150749.30.help.text
+msgctxt "03020101.xhp#par_id3150749.30.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020101.xhp#par_id3156276.31.help.text
+msgctxt "03020101.xhp#par_id3156276.31.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020101.xhp#par_id3155066.35.help.text
+msgctxt "03020101.xhp#par_id3155066.35.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMsg"
+
+#: 03020101.xhp#par_id3154754.32.help.text
+msgctxt "03020101.xhp#par_id3154754.32.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03010300.xhp#tit.help.text
+msgid "Color Functions"
+msgstr "Colour Functions"
+
+#: 03010300.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Colour Functions</link>"
+
+#: 03010300.xhp#par_id3155555.2.help.text
+msgid "This section describes Runtime functions used to define colors."
+msgstr "This section describes Runtime functions used to define colours."
+
+#: 03104500.xhp#tit.help.text
+msgid "IsUnoStruct Function [Runtime]"
+msgstr "IsUnoStruct Function [Runtime]"
+
+#: 03104500.xhp#bm_id3146117.help.text
+msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
+msgstr "<bookmark_value>IsUnoStruct function</bookmark_value>"
+
+#: 03104500.xhp#hd_id3146117.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
+
+#: 03104500.xhp#par_id3146957.2.help.text
+msgid "Returns True if the given object is a Uno struct."
+msgstr "Returns True if the given object is a Uno struct."
+
+#: 03104500.xhp#hd_id3148538.3.help.text
+msgctxt "03104500.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03104500.xhp#par_id3155341.4.help.text
+msgid "IsUnoStruct( Uno type )"
+msgstr "IsUnoStruct( Uno type )"
+
+#: 03104500.xhp#hd_id3148473.5.help.text
+msgctxt "03104500.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03104500.xhp#par_id3145315.6.help.text
+msgctxt "03104500.xhp#par_id3145315.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03104500.xhp#hd_id3145609.7.help.text
+msgctxt "03104500.xhp#hd_id3145609.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03104500.xhp#par_id3148947.8.help.text
+msgid "Uno type : A UnoObject"
+msgstr "Uno type : A UnoObject"
+
+#: 03104500.xhp#hd_id3156343.9.help.text
+msgctxt "03104500.xhp#hd_id3156343.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03104500.xhp#par_idN10632.help.text
+msgctxt "03104500.xhp#par_idN10632.help.text"
+msgid "Sub Main"
+msgstr "Sub Main"
+
+#: 03104500.xhp#par_idN10635.help.text
+msgid "Dim bIsStruct"
+msgstr "Dim bIsStruct"
+
+#: 03104500.xhp#par_idN10638.help.text
+msgid "' Instantiate a service"
+msgstr "' Instantiate a service"
+
+#: 03104500.xhp#par_idN1063B.help.text
+msgid "Dim oSimpleFileAccess"
+msgstr "Dim oSimpleFileAccess"
+
+#: 03104500.xhp#par_idN1063E.help.text
+msgid "oSimpleFileAccess = CreateUnoService( \"com.sun.star.ucb.SimpleFileAccess\" )"
+msgstr "oSimpleFileAccess = CreateUnoService( \"com.sun.star.ucb.SimpleFileAccess\" )"
+
+#: 03104500.xhp#par_idN10641.help.text
+msgid "bIsStruct = IsUnoStruct( oSimpleFileAccess )"
+msgstr "bIsStruct = IsUnoStruct( oSimpleFileAccess )"
+
+#: 03104500.xhp#par_idN10644.help.text
+msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
+msgstr "MsgBox bIsStruct ' Displays False because oSimpleFileAccess is NO struct"
+
+#: 03104500.xhp#par_idN10649.help.text
+msgid "' Instantiate a Property struct"
+msgstr "' Instantiate a Property struct"
+
+#: 03104500.xhp#par_idN1064D.help.text
+msgid "Dim aProperty As New com.sun.star.beans.Property"
+msgstr "Dim aProperty As New com.sun.star.beans.Property"
+
+#: 03104500.xhp#par_idN10650.help.text
+msgid "bIsStruct = IsUnoStruct( aProperty )"
+msgstr "bIsStruct = IsUnoStruct( aProperty )"
+
+#: 03104500.xhp#par_idN10653.help.text
+msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+msgstr "MsgBox bIsStruct ' Displays True because aProperty is a struct"
+
+#: 03104500.xhp#par_idN10658.help.text
+msgid "bIsStruct = IsUnoStruct( 42 )"
+msgstr "bIsStruct = IsUnoStruct( 42 )"
+
+#: 03104500.xhp#par_idN1065B.help.text
+msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+msgstr "MsgBox bIsStruct ' Displays False because 42 is NO struct"
+
+#: 03104500.xhp#par_idN10660.help.text
+msgctxt "03104500.xhp#par_idN10660.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080100.xhp#tit.help.text
+msgid "Trigonometric Functions"
+msgstr "Trigonometric Functions"
+
+#: 03080100.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+
+#: 03080100.xhp#par_id3149180.2.help.text
+msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
+msgstr "The following are the trigonometric functions that are supported in $[officename] Basic."
+
+#: 01170100.xhp#tit.help.text
+msgid "Control and Dialog Properties"
+msgstr "Control and Dialogue Properties"
+
+#: 01170100.xhp#bm_id3153379.help.text
+msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
+msgstr "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogues</bookmark_value><bookmark_value>dialogues; properties</bookmark_value>"
+
+#: 01170100.xhp#hd_id3153379.1.help.text
+msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
+msgstr "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
+
+#: 01170100.xhp#par_id3156280.2.help.text
+msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
+msgstr "<ahelp hid=\".\">Specifies the properties of the selected dialogue or control.</ahelp> You must be in the design mode to be able to use this command."
+
+#: 01170100.xhp#hd_id3151043.20.help.text
+msgid "Entering Data in the Properties Dialog"
+msgstr "Entering Data in the Properties Dialogue"
+
+#: 01170100.xhp#par_id3153771.3.help.text
+msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
+msgstr "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialogue:"
+
+#: 01170100.xhp#par_id3150010.18.help.text
+msgid "Keys"
+msgstr "Keys"
+
+#: 01170100.xhp#par_id3147317.19.help.text
+msgid "Effects"
+msgstr "Effects"
+
+#: 01170100.xhp#par_id3146121.4.help.text
+msgid "Alt+Down Arrow"
+msgstr "Alt+Down Arrow"
+
+#: 01170100.xhp#par_id3149581.5.help.text
+msgid "Opens a combo box"
+msgstr "Opens a combo box"
+
+#: 01170100.xhp#par_id3147394.6.help.text
+msgid "Alt+Up Arrow"
+msgstr "Alt+Up Arrow"
+
+#: 01170100.xhp#par_id3148455.7.help.text
+msgid "Closes a combo box"
+msgstr "Closes a combo box"
+
+#: 01170100.xhp#par_id3154511.8.help.text
+msgid "Shift+Enter"
+msgstr "Shift+Enter"
+
+#: 01170100.xhp#par_id3146971.9.help.text
+msgid "Inserts a line break in multiline fields."
+msgstr "Inserts a line break in multiline fields."
+
+#: 01170100.xhp#par_id3146914.10.help.text
+msgid "(UpArrow)"
+msgstr "(UpArrow)"
+
+#: 01170100.xhp#par_id3153714.11.help.text
+msgid "Goes to the previous line."
+msgstr "Goes to the previous line."
+
+#: 01170100.xhp#par_id3159266.12.help.text
+msgid "(DownArrow)"
+msgstr "(DownArrow)"
+
+#: 01170100.xhp#par_id3146314.13.help.text
+msgid "Goes to the next line."
+msgstr "Goes to the next line."
+
+#: 01170100.xhp#par_id3149255.14.help.text
+msgid "Enter"
+msgstr "Enter"
+
+#: 01170100.xhp#par_id3149566.15.help.text
+msgid "Applies the changes made to a field and places the cursor into the next field."
+msgstr "Applies the changes made to a field and places the cursor into the next field."
+
+#: 03090406.xhp#tit.help.text
+msgid "Function Statement [Runtime]"
+msgstr "Function Statement [Runtime]"
+
+#: 03090406.xhp#bm_id3153346.help.text
+msgid "<bookmark_value>Function statement</bookmark_value>"
+msgstr "<bookmark_value>Function statement</bookmark_value>"
+
+#: 03090406.xhp#hd_id3153346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
+
+#: 03090406.xhp#par_id3159158.2.help.text
+msgid "Defines a subroutine that can be used as an expression to determine a return type."
+msgstr "Defines a subroutine that can be used as an expression to determine a return type."
+
+#: 03090406.xhp#hd_id3145316.3.help.text
+msgctxt "03090406.xhp#hd_id3145316.3.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 03090406.xhp#par_id3148944.4.help.text
+msgid "see Parameter"
+msgstr "see Parameter"
+
+#: 03090406.xhp#hd_id3154760.5.help.text
+msgctxt "03090406.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090406.xhp#par_id3156344.6.help.text
+msgctxt "03090406.xhp#par_id3156344.6.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 03090406.xhp#par_id3149457.7.help.text
+msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+msgstr "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+
+#: 03090406.xhp#par_id3153360.8.help.text
+msgctxt "03090406.xhp#par_id3153360.8.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090406.xhp#par_id3148797.9.help.text
+msgid "[Exit Function]"
+msgstr "[Exit Function]"
+
+#: 03090406.xhp#par_id3145419.10.help.text
+msgctxt "03090406.xhp#par_id3145419.10.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090406.xhp#par_id3150449.11.help.text
+msgctxt "03090406.xhp#par_id3150449.11.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03090406.xhp#par_id3156281.12.help.text
+msgctxt "03090406.xhp#par_id3156281.12.help.text"
+msgid "Parameter"
+msgstr "Parameter"
+
+#: 03090406.xhp#par_id3153193.13.help.text
+msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
+msgstr "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
+
+#: 03090406.xhp#par_id3147229.14.help.text
+msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
+msgstr "<emph>VarName:</emph> Parameter to be passed to the subroutine."
+
+#: 03090406.xhp#par_id3147287.15.help.text
+msgid "<emph>Type:</emph> Type-declaration keyword."
+msgstr "<emph>Type:</emph> Type-declaration keyword."
+
+#: 03090406.xhp#hd_id3163710.16.help.text
+msgctxt "03090406.xhp#hd_id3163710.16.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090406.xhp#par_id3147214.17.help.text
+msgctxt "03090406.xhp#par_id3147214.17.help.text"
+msgid "Sub ExampleExit"
+msgstr "Sub ExampleExit"
+
+#: 03090406.xhp#par_id3152596.18.help.text
+msgctxt "03090406.xhp#par_id3152596.18.help.text"
+msgid "Dim sReturn As String"
+msgstr "Dim sReturn As String"
+
+#: 03090406.xhp#par_id3153364.19.help.text
+msgctxt "03090406.xhp#par_id3153364.19.help.text"
+msgid "Dim sListArray(10) as String"
+msgstr "Dim sListArray(10) as String"
+
+#: 03090406.xhp#par_id3149481.20.help.text
+msgctxt "03090406.xhp#par_id3149481.20.help.text"
+msgid "Dim siStep as Single"
+msgstr "Dim siStep as Single"
+
+#: 03090406.xhp#par_id3152939.21.help.text
+msgctxt "03090406.xhp#par_id3152939.21.help.text"
+msgid "For siStep = 0 to 10 REM Fill array with test data"
+msgstr "For siStep = 0 to 10 REM Fill array with test data"
+
+#: 03090406.xhp#par_id3147349.22.help.text
+msgid "sListArray(siStep) = chr$(siStep + 65)"
+msgstr "sListArray(siStep) = chr$(siStep + 65)"
+
+#: 03090406.xhp#par_id3147426.23.help.text
+msgctxt "03090406.xhp#par_id3147426.23.help.text"
+msgid "msgbox sListArray(siStep)"
+msgstr "msgbox sListArray(siStep)"
+
+#: 03090406.xhp#par_id3152576.24.help.text
+msgctxt "03090406.xhp#par_id3152576.24.help.text"
+msgid "next siStep"
+msgstr "next siStep"
+
+#: 03090406.xhp#par_id3146922.25.help.text
+msgctxt "03090406.xhp#par_id3146922.25.help.text"
+msgid "sReturn = LinSearch(sListArray(), \"B\")"
+msgstr "sReturn = LinSearch(sListArray(), \"B\")"
+
+#: 03090406.xhp#par_id3153140.26.help.text
+msgctxt "03090406.xhp#par_id3153140.26.help.text"
+msgid "Print sReturn"
+msgstr "Print sReturn"
+
+#: 03090406.xhp#par_id3149581.27.help.text
+msgctxt "03090406.xhp#par_id3149581.27.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090406.xhp#par_id3154790.30.help.text
+msgctxt "03090406.xhp#par_id3154790.30.help.text"
+msgid "Function LinSearch( sList(), sItem As String ) as integer"
+msgstr "Function LinSearch( sList(), sItem As String ) as integer"
+
+#: 03090406.xhp#par_id3150594.31.help.text
+msgctxt "03090406.xhp#par_id3150594.31.help.text"
+msgid "dim iCount as Integer"
+msgstr "dim iCount as Integer"
+
+#: 03090406.xhp#par_id3154943.32.help.text
+msgid "REM Linsearch searches a TextArray:sList() for a TextEntry:"
+msgstr "REM Linsearch searches a TextArray:sList() for a TextEntry:"
+
+#: 03090406.xhp#par_id3155601.33.help.text
+msgid "REM Return value is the index of the entry or 0 (Null)"
+msgstr "REM Return value is the index of the entry or 0 (Null)"
+
+#: 03090406.xhp#par_id3154511.34.help.text
+msgctxt "03090406.xhp#par_id3154511.34.help.text"
+msgid "for iCount=1 to Ubound( sList() )"
+msgstr "for iCount=1 to Ubound( sList() )"
+
+#: 03090406.xhp#par_id3149123.35.help.text
+msgctxt "03090406.xhp#par_id3149123.35.help.text"
+msgid "if sList( iCount ) = sItem then"
+msgstr "if sList( iCount ) = sItem then"
+
+#: 03090406.xhp#par_id3153707.36.help.text
+msgid "exit for REM sItem found"
+msgstr "exit for REM sItem found"
+
+#: 03090406.xhp#par_id3155066.37.help.text
+msgctxt "03090406.xhp#par_id3155066.37.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03090406.xhp#par_id3156275.38.help.text
+msgctxt "03090406.xhp#par_id3156275.38.help.text"
+msgid "next iCount"
+msgstr "next iCount"
+
+#: 03090406.xhp#par_id3156054.39.help.text
+msgctxt "03090406.xhp#par_id3156054.39.help.text"
+msgid "if iCount = Ubound( sList() ) then iCount = 0"
+msgstr "if iCount = Ubound( sList() ) then iCount = 0"
+
+#: 03090406.xhp#par_id3153765.40.help.text
+msgctxt "03090406.xhp#par_id3153765.40.help.text"
+msgid "LinSearch = iCount"
+msgstr "LinSearch = iCount"
+
+#: 03090406.xhp#par_id3153713.41.help.text
+msgctxt "03090406.xhp#par_id3153713.41.help.text"
+msgid "end function"
+msgstr "end function"
+
+#: 03131300.xhp#tit.help.text
+msgid "TwipsPerPixelX Function [Runtime]"
+msgstr "TwipsPerPixelX Function [Runtime]"
+
+#: 03131300.xhp#bm_id3153539.help.text
+msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+msgstr "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+
+#: 03131300.xhp#hd_id3153539.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
+
+#: 03131300.xhp#par_id3153394.2.help.text
+msgid "Returns the number of twips that represent the width of a pixel."
+msgstr "Returns the number of twips that represent the width of a pixel."
+
+#: 03131300.xhp#hd_id3153527.3.help.text
+msgctxt "03131300.xhp#hd_id3153527.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03131300.xhp#par_id3151110.4.help.text
+msgid "n = TwipsPerPixelX"
+msgstr "n = TwipsPerPixelX"
+
+#: 03131300.xhp#hd_id3150669.5.help.text
+msgctxt "03131300.xhp#hd_id3150669.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03131300.xhp#par_id3150503.6.help.text
+msgctxt "03131300.xhp#par_id3150503.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03131300.xhp#hd_id3159176.7.help.text
+msgctxt "03131300.xhp#hd_id3159176.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03131300.xhp#par_id3156152.8.help.text
+msgctxt "03131300.xhp#par_id3156152.8.help.text"
+msgid "Sub ExamplePixelTwips"
+msgstr "Sub ExamplePixelTwips"
+
+#: 03131300.xhp#par_id3153061.9.help.text
+msgctxt "03131300.xhp#par_id3153061.9.help.text"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+
+#: 03131300.xhp#par_id3149670.10.help.text
+msgctxt "03131300.xhp#par_id3149670.10.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020104.xhp#tit.help.text
+msgid "Reset Statement [Runtime]"
+msgstr "Reset Statement [Runtime]"
+
+#: 03020104.xhp#bm_id3154141.help.text
+msgid "<bookmark_value>Reset statement</bookmark_value>"
+msgstr "<bookmark_value>Reset statement</bookmark_value>"
+
+#: 03020104.xhp#hd_id3154141.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+
+#: 03020104.xhp#par_id3156423.2.help.text
+msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
+msgstr "Closes all open files and writes the contents of all file buffers to the harddisk."
+
+#: 03020104.xhp#hd_id3154124.3.help.text
+msgctxt "03020104.xhp#hd_id3154124.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020104.xhp#par_id3156281.4.help.text
+msgctxt "03020104.xhp#par_id3156281.4.help.text"
+msgid "Reset"
+msgstr "Reset"
+
+#: 03020104.xhp#hd_id3161831.5.help.text
+msgctxt "03020104.xhp#hd_id3161831.5.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020104.xhp#par_id3151113.37.help.text
+msgctxt "03020104.xhp#par_id3151113.37.help.text"
+msgid "Sub ExampleReset"
+msgstr "Sub ExampleReset"
+
+#: 03020104.xhp#par_id3148575.38.help.text
+msgctxt "03020104.xhp#par_id3148575.38.help.text"
+msgid "On Error Goto ErrorHandler"
+msgstr "On Error Goto ErrorHandler"
+
+#: 03020104.xhp#par_id3153093.39.help.text
+msgctxt "03020104.xhp#par_id3153093.39.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020104.xhp#par_id3150011.40.help.text
+msgctxt "03020104.xhp#par_id3150011.40.help.text"
+msgid "Dim iCount As Integer"
+msgstr "Dim iCount As Integer"
+
+#: 03020104.xhp#par_id3153363.41.help.text
+msgctxt "03020104.xhp#par_id3153363.41.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03020104.xhp#par_id3154320.42.help.text
+msgctxt "03020104.xhp#par_id3154320.42.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020104.xhp#par_id3163712.43.help.text
+msgctxt "03020104.xhp#par_id3163712.43.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020104.xhp#par_id3146121.45.help.text
+msgctxt "03020104.xhp#par_id3146121.45.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020104.xhp#par_id3154491.46.help.text
+msgctxt "03020104.xhp#par_id3154491.46.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03020104.xhp#par_id3148455.47.help.text
+msgid "Print #iNumber, \"This is a new line of text\""
+msgstr "Print #iNumber, \"This is a new line of text\""
+
+#: 03020104.xhp#par_id3145646.48.help.text
+msgctxt "03020104.xhp#par_id3145646.48.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020104.xhp#par_id3149410.50.help.text
+msgctxt "03020104.xhp#par_id3149410.50.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020104.xhp#par_id3147126.51.help.text
+msgctxt "03020104.xhp#par_id3147126.51.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aFile For Input As iNumber"
+
+#: 03020104.xhp#par_id3154510.52.help.text
+msgctxt "03020104.xhp#par_id3154510.52.help.text"
+msgid "For iCount = 1 to 5"
+msgstr "For iCount = 1 to 5"
+
+#: 03020104.xhp#par_id3146971.53.help.text
+msgctxt "03020104.xhp#par_id3146971.53.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumber, sLine"
+
+#: 03020104.xhp#par_id3156277.54.help.text
+msgctxt "03020104.xhp#par_id3156277.54.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLine <>\"\" then"
+
+#: 03020104.xhp#par_id3153707.55.help.text
+msgctxt "03020104.xhp#par_id3153707.55.help.text"
+msgid "rem"
+msgstr "rem"
+
+#: 03020104.xhp#par_id3150322.56.help.text
+msgctxt "03020104.xhp#par_id3150322.56.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020104.xhp#par_id3148405.57.help.text
+msgctxt "03020104.xhp#par_id3148405.57.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03020104.xhp#par_id3153711.58.help.text
+msgctxt "03020104.xhp#par_id3153711.58.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020104.xhp#par_id3156382.59.help.text
+msgctxt "03020104.xhp#par_id3156382.59.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03020104.xhp#par_id3159264.60.help.text
+msgctxt "03020104.xhp#par_id3159264.60.help.text"
+msgid "ErrorHandler:"
+msgstr "ErrorHandler:"
+
+#: 03020104.xhp#par_id3145147.61.help.text
+msgctxt "03020104.xhp#par_id3145147.61.help.text"
+msgid "Reset"
+msgstr "Reset"
+
+#: 03020104.xhp#par_id3163805.62.help.text
+msgctxt "03020104.xhp#par_id3163805.62.help.text"
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+
+#: 03020104.xhp#par_id3147364.63.help.text
+msgctxt "03020104.xhp#par_id3147364.63.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120314.xhp#tit.help.text
+msgid "Split Function [Runtime]"
+msgstr "Split Function [Runtime]"
+
+#: 03120314.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Split function</bookmark_value>"
+msgstr "<bookmark_value>Split function</bookmark_value>"
+
+#: 03120314.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
+
+#: 03120314.xhp#par_id3155805.2.help.text
+msgid "Returns an array of substrings from a string expression."
+msgstr "Returns an array of substrings from a string expression."
+
+#: 03120314.xhp#hd_id3149177.3.help.text
+msgctxt "03120314.xhp#hd_id3149177.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120314.xhp#par_id3153824.4.help.text
+msgid "Split (Text As String, delimiter, number)"
+msgstr "Split (Text As String, delimiter, number)"
+
+#: 03120314.xhp#hd_id3149763.5.help.text
+msgctxt "03120314.xhp#hd_id3149763.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120314.xhp#par_id3154285.6.help.text
+msgctxt "03120314.xhp#par_id3154285.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120314.xhp#hd_id3145315.7.help.text
+msgctxt "03120314.xhp#hd_id3145315.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120314.xhp#par_id3156023.8.help.text
+msgctxt "03120314.xhp#par_id3156023.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> Any string expression."
+
+#: 03120314.xhp#par_id3147560.9.help.text
+msgid "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
+msgstr "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
+
+#: 03120314.xhp#par_id3145069.12.help.text
+msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
+msgstr "<emph>number (optional):</emph> The number of substrings that you want to return."
+
+#: 03120314.xhp#hd_id3150398.10.help.text
+msgctxt "03120314.xhp#hd_id3150398.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120314.xhp#par_id3151212.11.help.text
+msgid "Dim a(3)"
+msgstr "Dim a(3)"
+
+#: 03120314.xhp#par_id3149204.13.help.text
+msgid "Sub main()"
+msgstr "Sub main()"
+
+#: 03120314.xhp#par_id3156214.14.help.text
+msgid " a(0) = \"ABCDE\""
+msgstr " a(0) = \"ABCDE\""
+
+#: 03120314.xhp#par_id3154217.15.help.text
+msgid " a(1) = 42"
+msgstr " a(1) = 42"
+
+#: 03120314.xhp#par_id3145173.16.help.text
+msgid " a(2) = \"MN\""
+msgstr " a(2) = \"MN\""
+
+#: 03120314.xhp#par_id3153104.17.help.text
+msgid " a(3) = \"X Y Z\""
+msgstr " a(3) = \"X Y Z\""
+
+#: 03120314.xhp#par_id3154684.18.help.text
+msgid " JStr = Join1()"
+msgstr " JStr = Join1()"
+
+#: 03120314.xhp#par_id3153367.19.help.text
+msgctxt "03120314.xhp#par_id3153367.19.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr " Call Show(JStr, Split1(JStr))"
+
+#: 03120314.xhp#par_id3145271.20.help.text
+msgid " JStr = Join2()"
+msgstr " JStr = Join2()"
+
+#: 03120314.xhp#par_id3155856.21.help.text
+msgctxt "03120314.xhp#par_id3155856.21.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr " Call Show(JStr, Split1(JStr))"
+
+#: 03120314.xhp#par_id3159155.22.help.text
+msgid " JStr = Join3()"
+msgstr " JStr = Join3()"
+
+#: 03120314.xhp#par_id3155413.23.help.text
+msgctxt "03120314.xhp#par_id3155413.23.help.text"
+msgid " Call Show(JStr, Split1(JStr))"
+msgstr " Call Show(JStr, Split1(JStr))"
+
+#: 03120314.xhp#par_id3153190.24.help.text
+msgctxt "03120314.xhp#par_id3153190.24.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120314.xhp#par_id3154320.25.help.text
+msgid "Function Join1()"
+msgstr "Function Join1()"
+
+#: 03120314.xhp#par_id3145748.26.help.text
+msgid " Join1 = Join(a(), \"abc\")"
+msgstr " Join1 = Join(a(), \"abc\")"
+
+#: 03120314.xhp#par_id3153142.45.help.text
+msgctxt "03120314.xhp#par_id3153142.45.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03120314.xhp#par_id3152462.27.help.text
+msgid "Function Join2()"
+msgstr "Function Join2()"
+
+#: 03120314.xhp#par_id3146119.28.help.text
+msgid " Join2 = Join(a(), \",\")"
+msgstr " Join2 = Join(a(), \",\")"
+
+#: 03120314.xhp#par_id3154790.29.help.text
+msgctxt "03120314.xhp#par_id3154790.29.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03120314.xhp#par_id3147125.30.help.text
+msgid "Function Join3()"
+msgstr "Function Join3()"
+
+#: 03120314.xhp#par_id3149377.31.help.text
+msgid " Join3 = Join(a())"
+msgstr " Join3 = Join(a())"
+
+#: 03120314.xhp#par_id3150114.32.help.text
+msgctxt "03120314.xhp#par_id3150114.32.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03120314.xhp#par_id3154729.33.help.text
+msgid "Function Split1(aStr)"
+msgstr "Function Split1(aStr)"
+
+#: 03120314.xhp#par_id3145646.34.help.text
+msgid " Split1 = Split(aStr, \"D\")"
+msgstr " Split1 = Split(aStr, \"D\")"
+
+#: 03120314.xhp#par_id3154512.35.help.text
+msgctxt "03120314.xhp#par_id3154512.35.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03120314.xhp#par_id3149400.36.help.text
+msgid "Sub Show(JoinStr, TheArray)"
+msgstr "Sub Show(JoinStr, TheArray)"
+
+#: 03120314.xhp#par_id3153948.37.help.text
+msgid " l = LBound(TheArray)"
+msgstr " l = LBound(TheArray)"
+
+#: 03120314.xhp#par_id3146969.38.help.text
+msgid " u = UBound(TheArray)"
+msgstr " u = UBound(TheArray)"
+
+#: 03120314.xhp#par_id3150752.39.help.text
+msgid " total$ = \"=============================\" + Chr$(13) + JoinStr + Chr$(13) + Chr$(13)"
+msgstr " total$ = \"=============================\" + Chr$(13) + JoinStr + Chr$(13) + Chr$(13)"
+
+#: 03120314.xhp#par_id3148916.40.help.text
+msgid " For i = l To u"
+msgstr " For i = l To u"
+
+#: 03120314.xhp#par_id3154754.41.help.text
+msgid " total$ = total$ + TheArray(i) + Str(Len(TheArray(i))) + Chr$(13)"
+msgstr " total$ = total$ + TheArray(i) + Str(Len(TheArray(i))) + Chr$(13)"
+
+#: 03120314.xhp#par_id3156054.42.help.text
+msgid " Next i"
+msgstr " Next i"
+
+#: 03120314.xhp#par_id3147338.43.help.text
+msgid " MsgBox total$"
+msgstr " MsgBox total$"
+
+#: 03120314.xhp#par_id3155960.44.help.text
+msgctxt "03120314.xhp#par_id3155960.44.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120104.xhp#tit.help.text
+msgid "Val Function [Runtime]"
+msgstr "Val Function [Runtime]"
+
+#: 03120104.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Val function</bookmark_value>"
+msgstr "<bookmark_value>Val function</bookmark_value>"
+
+#: 03120104.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
+
+#: 03120104.xhp#par_id3153345.2.help.text
+msgid "Converts a string to a numeric expression."
+msgstr "Converts a string to a numeric expression."
+
+#: 03120104.xhp#hd_id3159157.3.help.text
+msgctxt "03120104.xhp#hd_id3159157.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120104.xhp#par_id3149514.4.help.text
+msgid "Val (Text As String)"
+msgstr "Val (Text As String)"
+
+#: 03120104.xhp#hd_id3150669.5.help.text
+msgctxt "03120104.xhp#hd_id3150669.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120104.xhp#par_id3143228.6.help.text
+msgctxt "03120104.xhp#par_id3143228.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03120104.xhp#hd_id3156024.7.help.text
+msgctxt "03120104.xhp#hd_id3156024.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120104.xhp#par_id3154348.8.help.text
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr "<emph>Text:</emph> String that represents a number."
+
+#: 03120104.xhp#par_id3149670.9.help.text
+msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
+msgstr "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
+
+#: 03120104.xhp#hd_id3154365.10.help.text
+msgctxt "03120104.xhp#hd_id3154365.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120104.xhp#par_id3151177.11.help.text
+msgid "Sub ExampleVal"
+msgstr "Sub ExampleVal"
+
+#: 03120104.xhp#par_id3159150.12.help.text
+msgid "msgbox Val(\"123.123\")"
+msgstr "msgbox Val(\"123.123\")"
+
+#: 03120104.xhp#par_id3154126.13.help.text
+msgid "msgbox Val(\"A123.123\")"
+msgstr "msgbox Val(\"A123.123\")"
+
+#: 03120104.xhp#par_id3147229.14.help.text
+msgctxt "03120104.xhp#par_id3147229.14.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03000000.xhp#tit.help.text
+msgid "Run-Time Functions"
+msgstr "Run-Time Functions"
+
+#: 03000000.xhp#hd_id3152895.1.help.text
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
+
+#: 03000000.xhp#par_id3148983.2.help.text
+msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgstr "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
+
+#: 03030107.xhp#tit.help.text
+msgid "CDateToIso Function [Runtime]"
+msgstr "CDateToIso Function [Runtime]"
+
+#: 03030107.xhp#bm_id3150620.help.text
+msgid "<bookmark_value>CdateToIso function</bookmark_value>"
+msgstr "<bookmark_value>CdateToIso function</bookmark_value>"
+
+#: 03030107.xhp#hd_id3150620.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
+
+#: 03030107.xhp#par_id3151097.2.help.text
+msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
+
+#: 03030107.xhp#hd_id3159224.3.help.text
+msgctxt "03030107.xhp#hd_id3159224.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030107.xhp#par_id3149497.4.help.text
+msgid "CDateToIso(Number)"
+msgstr "CDateToIso(Number)"
+
+#: 03030107.xhp#hd_id3152347.5.help.text
+msgctxt "03030107.xhp#hd_id3152347.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030107.xhp#par_id3154422.6.help.text
+msgctxt "03030107.xhp#par_id3154422.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03030107.xhp#hd_id3147303.7.help.text
+msgctxt "03030107.xhp#hd_id3147303.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030107.xhp#par_id3145136.8.help.text
+msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgstr "<emph>Number:</emph> Integer that contains the serial date number."
+
+#: 03030107.xhp#hd_id3147243.9.help.text
+msgctxt "03030107.xhp#hd_id3147243.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030107.xhp#par_id3156152.10.help.text
+msgid "Sub ExampleCDateToIso"
+msgstr "Sub ExampleCDateToIso"
+
+#: 03030107.xhp#par_id3153126.11.help.text
+msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+msgstr "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+
+#: 03030107.xhp#par_id3143228.12.help.text
+msgctxt "03030107.xhp#par_id3143228.12.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090302.xhp#tit.help.text
+msgid "GoTo Statement [Runtime]"
+msgstr "GoTo Statement [Runtime]"
+
+#: 03090302.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>GoTo statement</bookmark_value>"
+
+#: 03090302.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
+
+#: 03090302.xhp#par_id3153379.2.help.text
+msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
+msgstr "Continues program execution within a Sub or Function at the procedure line indicated by a label."
+
+#: 03090302.xhp#hd_id3149656.3.help.text
+msgctxt "03090302.xhp#hd_id3149656.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090302.xhp#par_id3154367.4.help.text
+msgctxt "03090302.xhp#par_id3154367.4.help.text"
+msgid "see Parameters"
+msgstr "see Parameters"
+
+#: 03090302.xhp#hd_id3150870.5.help.text
+msgctxt "03090302.xhp#hd_id3150870.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090302.xhp#par_id3156214.6.help.text
+msgctxt "03090302.xhp#par_id3156214.6.help.text"
+msgid "Sub/Function"
+msgstr "Sub/Function"
+
+#: 03090302.xhp#par_id3156424.7.help.text
+msgctxt "03090302.xhp#par_id3156424.7.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090302.xhp#par_id3154685.8.help.text
+msgid " Label1"
+msgstr " Label1"
+
+#: 03090302.xhp#par_id3145786.9.help.text
+msgid "<emph>Label2:</emph>"
+msgstr "<emph>Label2:</emph>"
+
+#: 03090302.xhp#par_id3161832.10.help.text
+msgctxt "03090302.xhp#par_id3161832.10.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090302.xhp#par_id3146120.11.help.text
+msgctxt "03090302.xhp#par_id3146120.11.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03090302.xhp#par_id3150010.12.help.text
+msgid "<emph>Label1:</emph>"
+msgstr "<emph>Label1:</emph>"
+
+#: 03090302.xhp#par_id3152462.13.help.text
+msgctxt "03090302.xhp#par_id3152462.13.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090302.xhp#par_id3149664.14.help.text
+msgid "GoTo Label2"
+msgstr "GoTo Label2"
+
+#: 03090302.xhp#par_id3152886.15.help.text
+msgctxt "03090302.xhp#par_id3152886.15.help.text"
+msgid "End Sub/Function"
+msgstr "End Sub/Function"
+
+#: 03090302.xhp#par_id3152596.16.help.text
+msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
+msgstr "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
+
+#: 03090302.xhp#par_id3155416.17.help.text
+msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
+msgstr "You cannot use the GoTo statement to jump out of a Sub or Function."
+
+#: 03090302.xhp#hd_id3154731.19.help.text
+msgctxt "03090302.xhp#hd_id3154731.19.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090302.xhp#par_id6967035.help.text
+msgctxt "03090302.xhp#par_id6967035.help.text"
+msgid "see Parameters"
+msgstr "see Parameters"
+
+#: 01050200.xhp#tit.help.text
+msgid "Call Stack Window (Calls)"
+msgstr "Call Stack Window (Calls)"
+
+#: 01050200.xhp#hd_id3146794.1.help.text
+msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
+msgstr "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
+
+#: 01050200.xhp#par_id3150400.2.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp>The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
+msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp>The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
+
+#: 03010103.xhp#tit.help.text
+msgid "Print Statement [Runtime]"
+msgstr "Print Statement [Runtime]"
+
+#: 03010103.xhp#bm_id3147230.help.text
+msgid "<bookmark_value>Print statement</bookmark_value>"
+msgstr "<bookmark_value>Print statement</bookmark_value>"
+
+#: 03010103.xhp#hd_id3147230.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
+
+#: 03010103.xhp#par_id3156281.2.help.text
+msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgstr "Outputs the specified strings or numeric expressions to a dialogue or to a file."
+
+#: 03010103.xhp#hd_id3145785.3.help.text
+msgctxt "03010103.xhp#hd_id3145785.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010103.xhp#par_id3153188.4.help.text
+msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]] "
+msgstr "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]] "
+
+#: 03010103.xhp#hd_id3147348.5.help.text
+msgctxt "03010103.xhp#hd_id3147348.5.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010103.xhp#par_id2508621.help.text
+msgctxt "03010103.xhp#par_id2508621.help.text"
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+
+#: 03010103.xhp#par_id3163712.6.help.text
+msgid "<emph>Expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
+msgstr "<emph>Expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
+
+#: 03010103.xhp#par_id3153092.7.help.text
+msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+msgstr "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+
+#: 03010103.xhp#par_id3145364.8.help.text
+msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
+msgstr "<emph>Pos</emph>: Spaces are inserted until the specified position."
+
+#: 03010103.xhp#par_id3154319.9.help.text
+msgid "If a semicolon or comma appears after the last expression to be printed, $[officename] Basic stores the text in an internal buffer and continues program execution without printing. When another Print statement without a semicolon or comma at the end is encountered, all text to be printed is printed at once."
+msgstr "If a semicolon or comma appears after the last expression to be printed, $[officename] Basic stores the text in an internal buffer and continues program execution without printing. When another Print statement without a semicolon or comma at the end is encountered, all text to be printed is printed at once."
+
+#: 03010103.xhp#par_id3145272.10.help.text
+msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation."
+msgstr "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation."
+
+#: 03010103.xhp#par_id3154011.11.help.text
+msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+msgstr "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+
+#: 03010103.xhp#par_id3146969.12.help.text
+msgid "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
+msgstr "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
+
+#: 03010103.xhp#hd_id3146912.13.help.text
+msgctxt "03010103.xhp#hd_id3146912.13.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010103.xhp#par_id3153711.14.help.text
+msgid "Sub ExamplePrint"
+msgstr "Sub ExamplePrint"
+
+#: 03010103.xhp#par_id3153764.15.help.text
+msgid "Print \"ABC\""
+msgstr "Print \"ABC\""
+
+#: 03010103.xhp#par_id3155764.16.help.text
+msgid "Print \"ABC\",\"123\""
+msgstr "Print \"ABC\",\"123\""
+
+#: 03010103.xhp#par_id5484176.help.text
+msgid "i = FreeFile()"
+msgstr "i = FreeFile()"
+
+#: 03010103.xhp#par_id2904141.help.text
+msgid "Open <switchinline select=\"sys\"><caseinline select=\"WIN\">\"C:\\Temp.txt\"</caseinline><defaultinline>\"~/temp.txt\"</defaultinline></switchinline> For Output As i"
+msgstr "Open <switchinline select=\"sys\"><caseinline select=\"WIN\">\"C:\\Temp.txt\"</caseinline><defaultinline>\"~/temp.txt\"</defaultinline></switchinline> For Output As i"
+
+#: 03010103.xhp#par_id36317.help.text
+msgid "Print #i, \"ABC\""
+msgstr "Print #i, \"ABC\""
+
+#: 03010103.xhp#par_id7381817.help.text
+msgid "Close #i"
+msgstr "Close #i"
+
+#: 03010103.xhp#par_id3147339.17.help.text
+msgctxt "03010103.xhp#par_id3147339.17.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03130700.xhp#tit.help.text
+msgid "GetSystemTicks Function [Runtime]"
+msgstr "GetSystemTicks Function [Runtime]"
+
+#: 03130700.xhp#bm_id3147143.help.text
+msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
+msgstr "<bookmark_value>GetSystemTicks function</bookmark_value>"
+
+#: 03130700.xhp#hd_id3147143.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
+
+#: 03130700.xhp#par_id3153750.2.help.text
+msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
+msgstr "Returns the number of system ticks provided by the operating system. You can use this function to optimise certain processes."
+
+#: 03130700.xhp#hd_id3153311.3.help.text
+msgctxt "03130700.xhp#hd_id3153311.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03130700.xhp#par_id3147242.4.help.text
+msgid "GetSystemTicks()"
+msgstr "GetSystemTicks()"
+
+#: 03130700.xhp#hd_id3149233.5.help.text
+msgctxt "03130700.xhp#hd_id3149233.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03130700.xhp#par_id3149762.6.help.text
+msgctxt "03130700.xhp#par_id3149762.6.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03130700.xhp#hd_id3156152.7.help.text
+msgctxt "03130700.xhp#hd_id3156152.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03130700.xhp#par_id3148943.8.help.text
+msgctxt "03130700.xhp#par_id3148943.8.help.text"
+msgid "Sub ExampleWait"
+msgstr "Sub ExampleWait"
+
+#: 03130700.xhp#par_id3146795.9.help.text
+msgctxt "03130700.xhp#par_id3146795.9.help.text"
+msgid "Dim lTick As Long"
+msgstr "Dim lTick As Long"
+
+#: 03130700.xhp#par_id3145069.10.help.text
+msgctxt "03130700.xhp#par_id3145069.10.help.text"
+msgid "lTick = GetSystemTicks()"
+msgstr "lTick = GetSystemTicks()"
+
+#: 03130700.xhp#par_id3147560.11.help.text
+msgctxt "03130700.xhp#par_id3147560.11.help.text"
+msgid "wait 2000"
+msgstr "wait 2000"
+
+#: 03130700.xhp#par_id3149655.12.help.text
+msgctxt "03130700.xhp#par_id3149655.12.help.text"
+msgid "lTick = (GetSystemTicks() - lTick)"
+msgstr "lTick = (GetSystemTicks() - lTick)"
+
+#: 03130700.xhp#par_id3154938.13.help.text
+msgctxt "03130700.xhp#par_id3154938.13.help.text"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+
+#: 03130700.xhp#par_id3150542.14.help.text
+msgctxt "03130700.xhp#par_id3150542.14.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120309.xhp#tit.help.text
+msgid "RTrim Function [Runtime]"
+msgstr "RTrim Function [Runtime]"
+
+#: 03120309.xhp#bm_id3154286.help.text
+msgid "<bookmark_value>RTrim function</bookmark_value>"
+msgstr "<bookmark_value>RTrim function</bookmark_value>"
+
+#: 03120309.xhp#hd_id3154286.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
+
+#: 03120309.xhp#par_id3153127.2.help.text
+msgid "Deletes the spaces at the end of a string expression."
+msgstr "Deletes the spaces at the end of a string expression."
+
+#: 03120309.xhp#par_id3153062.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+
+#: 03120309.xhp#hd_id3154924.4.help.text
+msgctxt "03120309.xhp#hd_id3154924.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120309.xhp#par_id3154347.5.help.text
+msgid "RTrim (Text As String)"
+msgstr "RTrim (Text As String)"
+
+#: 03120309.xhp#hd_id3149457.6.help.text
+msgctxt "03120309.xhp#hd_id3149457.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120309.xhp#par_id3153381.7.help.text
+msgctxt "03120309.xhp#par_id3153381.7.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120309.xhp#hd_id3148798.8.help.text
+msgctxt "03120309.xhp#hd_id3148798.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120309.xhp#par_id3151380.9.help.text
+msgid "<emph>Text: </emph>Any string expression."
+msgstr "<emph>Text: </emph>Any string expression."
+
+#: 03120309.xhp#hd_id3151041.10.help.text
+msgctxt "03120309.xhp#hd_id3151041.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120309.xhp#par_id3148673.11.help.text
+msgctxt "03120309.xhp#par_id3148673.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr "Sub ExampleSpaces"
+
+#: 03120309.xhp#par_id3156281.12.help.text
+msgctxt "03120309.xhp#par_id3156281.12.help.text"
+msgid "Dim sText2 as String,sText as String,sOut as String"
+msgstr "Dim sText2 as String,sText as String,sOut as String"
+
+#: 03120309.xhp#par_id3154125.13.help.text
+msgctxt "03120309.xhp#par_id3154125.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr "sText2 = \" <*Las Vegas*> \""
+
+#: 03120309.xhp#par_id3155131.15.help.text
+msgctxt "03120309.xhp#par_id3155131.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+
+#: 03120309.xhp#par_id3161833.16.help.text
+msgctxt "03120309.xhp#par_id3161833.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+
+#: 03120309.xhp#par_id3147317.17.help.text
+msgctxt "03120309.xhp#par_id3147317.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+
+#: 03120309.xhp#par_id3151112.18.help.text
+msgctxt "03120309.xhp#par_id3151112.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+
+#: 03120309.xhp#par_id3149664.19.help.text
+msgctxt "03120309.xhp#par_id3149664.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+
+#: 03120309.xhp#par_id3152576.20.help.text
+msgctxt "03120309.xhp#par_id3152576.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+
+#: 03120309.xhp#par_id3153729.21.help.text
+msgctxt "03120309.xhp#par_id3153729.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr "sOut = sOut +\"'\"+ sText +\"'\""
+
+#: 03120309.xhp#par_id3145749.22.help.text
+msgctxt "03120309.xhp#par_id3145749.22.help.text"
+msgid "MsgBox sOut"
+msgstr "MsgBox sOut"
+
+#: 03120309.xhp#par_id3146922.23.help.text
+msgctxt "03120309.xhp#par_id3146922.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120401.xhp#tit.help.text
+msgid "InStr Function [Runtime]"
+msgstr "InStr Function [Runtime]"
+
+#: 03120401.xhp#bm_id3155934.help.text
+msgid "<bookmark_value>InStr function</bookmark_value>"
+msgstr "<bookmark_value>InStr function</bookmark_value>"
+
+#: 03120401.xhp#hd_id3155934.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
+
+#: 03120401.xhp#par_id3153990.2.help.text
+msgid "Returns the position of a string within another string."
+msgstr "Returns the position of a string within another string."
+
+#: 03120401.xhp#par_id3147303.3.help.text
+msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
+msgstr "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
+
+#: 03120401.xhp#hd_id3145090.4.help.text
+msgctxt "03120401.xhp#hd_id3145090.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120401.xhp#par_id3146957.5.help.text
+msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
+msgstr "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
+
+#: 03120401.xhp#hd_id3148538.6.help.text
+msgctxt "03120401.xhp#hd_id3148538.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120401.xhp#par_id3149763.7.help.text
+msgctxt "03120401.xhp#par_id3149763.7.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03120401.xhp#hd_id3148473.8.help.text
+msgctxt "03120401.xhp#hd_id3148473.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120401.xhp#par_id3153126.9.help.text
+msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
+msgstr "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
+
+#: 03120401.xhp#par_id3145609.10.help.text
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr "<emph>Text1:</emph> The string expression that you want to search."
+
+#: 03120401.xhp#par_id3147559.11.help.text
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr "<emph>Text2:</emph> The string expression that you want to search for."
+
+#: 03120401.xhp#par_id3154758.12.help.text
+msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
+msgstr "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
+
+#: 03120401.xhp#par_id3153361.13.help.text
+msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
+msgstr "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
+
+#: 03120401.xhp#hd_id3154366.14.help.text
+msgctxt "03120401.xhp#hd_id3154366.14.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120401.xhp#par_id3154217.15.help.text
+msgid "Sub ExamplePosition"
+msgstr "Sub ExamplePosition"
+
+#: 03120401.xhp#par_id3154685.16.help.text
+msgctxt "03120401.xhp#par_id3154685.16.help.text"
+msgid "Dim sInput As String"
+msgstr "Dim sInput As String"
+
+#: 03120401.xhp#par_id3151042.17.help.text
+msgid "Dim iPos as Integer"
+msgstr "Dim iPos as Integer"
+
+#: 03120401.xhp#par_id3144760.19.help.text
+msgid "sInput = \"Office\""
+msgstr "sInput = \"Office\""
+
+#: 03120401.xhp#par_id3154125.20.help.text
+msgid "iPos = Instr(sInput,\"c\")"
+msgstr "iPos = Instr(sInput,\"c\")"
+
+#: 03120401.xhp#par_id3145173.21.help.text
+msgid "print iPos"
+msgstr "print iPos"
+
+#: 03120401.xhp#par_id3145786.22.help.text
+msgctxt "03120401.xhp#par_id3145786.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090100.xhp#tit.help.text
+msgid "Condition Statements"
+msgstr "Condition Statements"
+
+#: 03090100.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
+
+#: 03090100.xhp#par_id3153750.2.help.text
+msgid "The following statements are based on conditions."
+msgstr "The following statements are based on conditions."
+
+#: 03020413.xhp#tit.help.text
+msgid "RmDir Statement [Runtime]"
+msgstr "RmDir Statement [Runtime]"
+
+#: 03020413.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>RmDir statement</bookmark_value>"
+msgstr "<bookmark_value>RmDir statement</bookmark_value>"
+
+#: 03020413.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
+
+#: 03020413.xhp#par_id3149457.2.help.text
+msgid "Deletes an existing directory from a data medium."
+msgstr "Deletes an existing directory from a data medium."
+
+#: 03020413.xhp#hd_id3153361.3.help.text
+msgctxt "03020413.xhp#hd_id3153361.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020413.xhp#par_id3154367.4.help.text
+msgid "RmDir Text As String"
+msgstr "RmDir Text As String"
+
+#: 03020413.xhp#hd_id3156281.5.help.text
+msgctxt "03020413.xhp#hd_id3156281.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020413.xhp#par_id3151042.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020413.xhp#par_id3153192.7.help.text
+msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
+msgstr "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
+
+#: 03020413.xhp#hd_id3145271.8.help.text
+msgctxt "03020413.xhp#hd_id3145271.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020413.xhp#par_id3156442.9.help.text
+msgid "Sub ExampleRmDir"
+msgstr "Sub ExampleRmDir"
+
+#: 03020413.xhp#par_id3154319.10.help.text
+msgid "MkDir \"C:\\Test2\""
+msgstr "MkDir \"C:\\Test2\""
+
+#: 03020413.xhp#par_id3159154.11.help.text
+msgid "ChDir \"C:\\test2\""
+msgstr "ChDir \"C:\\test2\""
+
+#: 03020413.xhp#par_id3151112.12.help.text
+msgid "msgbox Curdir"
+msgstr "msgbox Curdir"
+
+#: 03020413.xhp#par_id3147427.13.help.text
+msgid "ChDir \"\\\""
+msgstr "ChDir \"\\\""
+
+#: 03020413.xhp#par_id3153188.14.help.text
+msgid "RmDir \"C:\\test2\""
+msgstr "RmDir \"C:\\test2\""
+
+#: 03020413.xhp#par_id3146120.15.help.text
+msgctxt "03020413.xhp#par_id3146120.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03104400.xhp#tit.help.text
+msgid "HasUnoInterfaces Function [Runtime]"
+msgstr "HasUnoInterfaces Function [Runtime]"
+
+#: 03104400.xhp#bm_id3149987.help.text
+msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+msgstr "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+
+#: 03104400.xhp#hd_id3149987.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
+
+#: 03104400.xhp#par_id3151262.2.help.text
+msgid "Tests if a Basic Uno object supports certain Uno interfaces."
+msgstr "Tests if a Basic Uno object supports certain Uno interfaces."
+
+#: 03104400.xhp#par_id3154232.3.help.text
+msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+msgstr "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+
+#: 03104400.xhp#hd_id3150040.4.help.text
+msgctxt "03104400.xhp#hd_id3150040.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03104400.xhp#par_id3155555.5.help.text
+msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+msgstr "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+
+#: 03104400.xhp#hd_id3153345.6.help.text
+msgctxt "03104400.xhp#hd_id3153345.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03104400.xhp#par_id3148538.7.help.text
+msgctxt "03104400.xhp#par_id3148538.7.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03104400.xhp#hd_id3159157.8.help.text
+msgctxt "03104400.xhp#hd_id3159157.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03104400.xhp#par_id3155419.9.help.text
+msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgstr "<emph>oTest:</emph> the Basic Uno object that you want to test."
+
+#: 03104400.xhp#par_id3149236.10.help.text
+msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+msgstr "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+
+#: 03104400.xhp#hd_id3147574.11.help.text
+msgctxt "03104400.xhp#hd_id3147574.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03104400.xhp#par_id3149580.12.help.text
+msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+msgstr "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+
+#: 03120307.xhp#tit.help.text
+msgid "Right Function [Runtime]"
+msgstr "Right Function [Runtime]"
+
+#: 03120307.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Right function</bookmark_value>"
+msgstr "<bookmark_value>Right function</bookmark_value>"
+
+#: 03120307.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
+
+#: 03120307.xhp#par_id3150984.2.help.text
+msgid "Returns the rightmost \"n\" characters of a string expression."
+msgstr "Returns the rightmost \"n\" characters of a string expression."
+
+#: 03120307.xhp#par_id3149763.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
+msgstr "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
+
+#: 03120307.xhp#hd_id3145315.4.help.text
+msgctxt "03120307.xhp#hd_id3145315.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120307.xhp#par_id3153061.5.help.text
+msgid "Right (Text As String, n As Long)"
+msgstr "Right (Text As String, n As Long)"
+
+#: 03120307.xhp#hd_id3145068.6.help.text
+msgctxt "03120307.xhp#hd_id3145068.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120307.xhp#par_id3156344.7.help.text
+msgctxt "03120307.xhp#par_id3156344.7.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120307.xhp#hd_id3146795.8.help.text
+msgctxt "03120307.xhp#hd_id3146795.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120307.xhp#par_id3153526.9.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgstr "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+
+#: 03120307.xhp#par_id3151211.10.help.text
+msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+
+#: 03120307.xhp#par_id3158410.11.help.text
+msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
+msgstr "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
+
+#: 03120307.xhp#hd_id3156212.12.help.text
+msgctxt "03120307.xhp#hd_id3156212.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120307.xhp#par_id3150869.13.help.text
+msgctxt "03120307.xhp#par_id3150869.13.help.text"
+msgid "Sub ExampleUSDate"
+msgstr "Sub ExampleUSDate"
+
+#: 03120307.xhp#par_id3153105.14.help.text
+msgctxt "03120307.xhp#par_id3153105.14.help.text"
+msgid "Dim sInput As String"
+msgstr "Dim sInput As String"
+
+#: 03120307.xhp#par_id3154124.15.help.text
+msgctxt "03120307.xhp#par_id3154124.15.help.text"
+msgid "Dim sUS_date As String"
+msgstr "Dim sUS_date As String"
+
+#: 03120307.xhp#par_id3159252.16.help.text
+msgctxt "03120307.xhp#par_id3159252.16.help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+
+#: 03120307.xhp#par_id3149561.17.help.text
+msgctxt "03120307.xhp#par_id3149561.17.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr "sUS_date = Mid(sInput, 6, 2)"
+
+#: 03120307.xhp#par_id3146984.18.help.text
+msgctxt "03120307.xhp#par_id3146984.18.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sUS_date = sUS_date & \"/\""
+
+#: 03120307.xhp#par_id3155308.19.help.text
+msgctxt "03120307.xhp#par_id3155308.19.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr "sUS_date = sUS_date & Right(sInput, 2)"
+
+#: 03120307.xhp#par_id3153727.20.help.text
+msgctxt "03120307.xhp#par_id3153727.20.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sUS_date = sUS_date & \"/\""
+
+#: 03120307.xhp#par_id3145365.21.help.text
+msgctxt "03120307.xhp#par_id3145365.21.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr "sUS_date = sUS_date & Left(sInput, 4)"
+
+#: 03120307.xhp#par_id3152940.22.help.text
+msgctxt "03120307.xhp#par_id3152940.22.help.text"
+msgid "MsgBox sUS_date"
+msgstr "MsgBox sUS_date"
+
+#: 03120307.xhp#par_id3146120.23.help.text
+msgctxt "03120307.xhp#par_id3146120.23.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080302.xhp#tit.help.text
+msgid "Rnd Function [Runtime]"
+msgstr "Rnd Function [Runtime]"
+
+#: 03080302.xhp#bm_id3148685.help.text
+msgid "<bookmark_value>Rnd function</bookmark_value>"
+msgstr "<bookmark_value>Rnd function</bookmark_value>"
+
+#: 03080302.xhp#hd_id3148685.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
+
+#: 03080302.xhp#par_id3149669.2.help.text
+msgid "Returns a random number between 0 and 1."
+msgstr "Returns a random number between 0 and 1."
+
+#: 03080302.xhp#hd_id3153897.3.help.text
+msgctxt "03080302.xhp#hd_id3153897.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080302.xhp#par_id3150543.4.help.text
+msgid "Rnd [(Expression)]"
+msgstr "Rnd [(Expression)]"
+
+#: 03080302.xhp#hd_id3149655.5.help.text
+msgctxt "03080302.xhp#hd_id3149655.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080302.xhp#par_id3154365.6.help.text
+msgctxt "03080302.xhp#par_id3154365.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080302.xhp#hd_id3154909.7.help.text
+msgctxt "03080302.xhp#hd_id3154909.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080302.xhp#par_id3125864.8.help.text
+#, fuzzy
+msgid "<emph>Expression:</emph> Any numeric expression."
+msgstr "<emph>Expression: </emph>Any numeric expression."
+
+#: 03080302.xhp#par_id3155306.12.help.text
+msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
+msgstr "<emph>Omitted:</emph> Returns the next random number in the sequence."
+
+#: 03080302.xhp#par_id3147318.14.help.text
+msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
+msgstr "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
+
+#: 03080302.xhp#hd_id3151118.15.help.text
+msgctxt "03080302.xhp#hd_id3151118.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080302.xhp#par_id3145365.16.help.text
+msgctxt "03080302.xhp#par_id3145365.16.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr "Sub ExampleRandomSelect"
+
+#: 03080302.xhp#par_id3147426.17.help.text
+msgctxt "03080302.xhp#par_id3147426.17.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03080302.xhp#par_id3150011.18.help.text
+msgctxt "03080302.xhp#par_id3150011.18.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr "iVar = Int((15 * Rnd) -2)"
+
+#: 03080302.xhp#par_id3148575.19.help.text
+msgctxt "03080302.xhp#par_id3148575.19.help.text"
+msgid "Select Case iVar"
+msgstr "Select Case iVar"
+
+#: 03080302.xhp#par_id3154097.20.help.text
+msgctxt "03080302.xhp#par_id3154097.20.help.text"
+msgid "Case 1 To 5"
+msgstr "Case 1 To 5"
+
+#: 03080302.xhp#par_id3147124.21.help.text
+msgctxt "03080302.xhp#par_id3147124.21.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Number from 1 to 5\""
+
+#: 03080302.xhp#par_id3155418.22.help.text
+msgctxt "03080302.xhp#par_id3155418.22.help.text"
+msgid "Case 6, 7, 8"
+msgstr "Case 6, 7, 8"
+
+#: 03080302.xhp#par_id3154943.23.help.text
+msgctxt "03080302.xhp#par_id3154943.23.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Number from 6 to 8\""
+
+#: 03080302.xhp#par_id3145800.24.help.text
+msgctxt "03080302.xhp#par_id3145800.24.help.text"
+msgid "Case Is > 8 And iVar < 11"
+msgstr "Case Is > 8 And iVar < 11"
+
+#: 03080302.xhp#par_id3151074.25.help.text
+msgctxt "03080302.xhp#par_id3151074.25.help.text"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Greater than 8\""
+
+#: 03080302.xhp#par_id3154016.26.help.text
+msgctxt "03080302.xhp#par_id3154016.26.help.text"
+msgid "Case Else"
+msgstr "Case Else"
+
+#: 03080302.xhp#par_id3155602.27.help.text
+msgctxt "03080302.xhp#par_id3155602.27.help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Print \"Outside range 1 to 10\""
+
+#: 03080302.xhp#par_id3150328.28.help.text
+msgctxt "03080302.xhp#par_id3150328.28.help.text"
+msgid "End Select"
+msgstr "End Select"
+
+#: 03080302.xhp#par_id3154479.29.help.text
+msgctxt "03080302.xhp#par_id3154479.29.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01170101.xhp#tit.help.text
+msgid "General"
+msgstr "General"
+
+#: 01170101.xhp#hd_id3147436.1.help.text
+msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
+msgstr "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
+
+#: 01170101.xhp#par_id3155855.2.help.text
+msgid "Define the properties for the selected control or dialog. The available properties depend on the type of control selected. The following properties therefore are not available for every type of control."
+msgstr "Define the properties for the selected control or dialogue. The available properties depend on the type of control selected. The following properties therefore are not available for every type of control."
+
+#: 01170101.xhp#hd_id3148647.11.help.text
+msgid "Alignment"
+msgstr "Alignment"
+
+#: 01170101.xhp#par_id3147318.12.help.text
+msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
+msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
+
+#: 01170101.xhp#hd_id3153189.76.help.text
+msgid "AutoFill"
+msgstr "AutoFill"
+
+#: 01170101.xhp#par_id3152460.77.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to enable the AutoFill function for the selected control. </ahelp>"
+
+#: 01170101.xhp#hd_id3155307.3.help.text
+msgid "Background color"
+msgstr "Background colour"
+
+#: 01170101.xhp#par_id3145251.4.help.text
+msgid "<ahelp hid=\".\">Specify the background color for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the background colour for the current control.</ahelp>"
+
+#: 01170101.xhp#hd_id3151076.263.help.text
+msgid "Large change"
+msgstr "Large change"
+
+#: 01170101.xhp#par_id3148457.262.help.text
+msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks in the area between the slider and the arrows on a scrollbar.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks in the area between the slider and the arrows on a scrollbar.</ahelp>"
+
+#: 01170101.xhp#hd_id3153876.139.help.text
+msgid "Border"
+msgstr "Border"
+
+#: 01170101.xhp#par_id3154017.140.help.text
+msgid "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the border type for the current control.</ahelp>"
+
+#: 01170101.xhp#hd_id3150749.23.help.text
+msgid "Button type"
+msgstr "Button type"
+
+#: 01170101.xhp#par_id3155064.24.help.text
+msgid "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
+msgstr "<ahelp hid=\".\">Select a button type. Button types determine what type of action is initiated.</ahelp>"
+
+#: 01170101.xhp#hd_id3149019.5.help.text
+msgid "Character set"
+msgstr "Character set"
+
+#: 01170101.xhp#par_id3148406.6.help.text
+msgid "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Select the font to be used for displaying the contents of the current control.</ahelp>"
+
+#: 01170101.xhp#hd_id3147341.149.help.text
+msgid "Currency symbol"
+msgstr "Currency symbol"
+
+#: 01170101.xhp#par_id3146315.150.help.text
+msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
+
+#: 01170101.xhp#hd_id7936643.help.text
+msgctxt "01170101.xhp#hd_id7936643.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 01170101.xhp#par_id2293771.help.text
+msgid "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
+
+#: 01170101.xhp#hd_id3153965.82.help.text
+msgid "Date format"
+msgstr "Date format"
+
+#: 01170101.xhp#par_id3155334.83.help.text
+msgid "<ahelp hid=\".\">Specify the desired format for a date control. A date control interprets the user input depending on this format setting.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the desired format for a date control. A date control interprets the user input depending on this format setting.</ahelp>"
+
+#: 01170101.xhp#hd_id3154663.121.help.text
+msgid "Date max."
+msgstr "Date max."
+
+#: 01170101.xhp#par_id3148485.122.help.text
+msgid "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the upper limit for a date control.</ahelp>"
+
+#: 01170101.xhp#hd_id3152778.131.help.text
+msgid "Date min."
+msgstr "Date minimum"
+
+#: 01170101.xhp#par_id3154120.132.help.text
+msgid "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the lower limit for a date control.</ahelp>"
+
+#: 01170101.xhp#hd_id3154573.137.help.text
+msgid "Decimal accuracy"
+msgstr "Decimal accuracy"
+
+#: 01170101.xhp#par_id3166426.138.help.text
+msgid "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the number of decimal places displayed for a numerical or currency control.</ahelp>"
+
+#: 01170101.xhp#hd_id3159091.144.help.text
+msgid "Default button"
+msgstr "Default button"
+
+#: 01170101.xhp#par_id3154200.145.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to make the current button control the default selection. Pressing <emph>Return</emph> in the dialog activates the default button.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to make the current button control the default selection. Pressing <emph>Return</emph> in the dialogue activates the default button.</ahelp>"
+
+#: 01170101.xhp#par_idN108BA.help.text
+msgid "Delay"
+msgstr "Delay"
+
+#: 01170101.xhp#par_idN108D0.help.text
+msgid "<ahelp hid=\".\">Specifies the delay in milliseconds between scrollbar trigger events.</ahelp> A trigger event occurs when you click a scrollbar arrow or click the background area in a scrollbar. Repeated trigger events occur if you keep the mouse button pressed when you click a scrollbar arrow or background area in a scrollbar. If you want, you can include valid time units with the number that you enter, for example, 2 s or 500 ms."
+msgstr "<ahelp hid=\".\">Specifies the delay in milliseconds between scrollbar trigger events.</ahelp> A trigger event occurs when you click a scrollbar arrow or click the background area in a scrollbar. Repeated trigger events occur if you keep the mouse button pressed when you click a scrollbar arrow or background area in a scrollbar. If you want, you can include valid time units with the number that you enter, for example, 2 s or 500 ms."
+
+#: 01170101.xhp#hd_id3151278.19.help.text
+msgid "Dropdown"
+msgstr "Dropdown"
+
+#: 01170101.xhp#par_id3155113.20.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to enable the dropdown option for list or combo box controls. A dropdown control field has an arrow button which you can click to open a list of the existing form entries.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to enable the dropdown option for list or combo box controls. A dropdown control field has an arrow button which you can click to open a list of the existing form entries.</ahelp>"
+
+#: 01170101.xhp#hd_id3151216.13.help.text
+msgid "Enabled"
+msgstr "Enabled"
+
+#: 01170101.xhp#par_id3150517.14.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to enable the control. If the control is disabled, it is grayed out in the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to enable the control. If the control is disabled, it is greyed out in the dialogue.</ahelp>"
+
+#: 01170101.xhp#hd_id3155379.91.help.text
+msgid "Edit mask"
+msgstr "Edit mask"
+
+#: 01170101.xhp#par_id3155509.92.help.text
+msgid "<ahelp hid=\".\">Specify the edit mask for a pattern control. This is a character code that defines the input format for the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the edit mask for a pattern control. This is a character code that defines the input format for the control.</ahelp>"
+
+#: 01170101.xhp#par_id3154485.184.help.text
+msgid "You need to specify a masking character for each input character of the edit mask to restrict the input to the values that are listed in the following table:"
+msgstr "You need to specify a masking character for each input character of the edit mask to restrict the input to the values that are listed in the following table:"
+
+#: 01170101.xhp#par_id3155809.93.help.text
+msgid " Character "
+msgstr " Character "
+
+#: 01170101.xhp#par_id3148702.94.help.text
+msgid "Meaning"
+msgstr "Meaning"
+
+#: 01170101.xhp#par_id3156199.95.help.text
+msgid "L"
+msgstr "L"
+
+#: 01170101.xhp#par_id3148869.96.help.text
+msgid "A text constant. This character cannot be modified by the user. "
+msgstr "A text constant. This character cannot be modified by the user. "
+
+#: 01170101.xhp#par_id3156016.97.help.text
+msgid "a"
+msgstr "a"
+
+#: 01170101.xhp#par_id3157983.98.help.text
+msgid "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
+msgstr "The characters a-z can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
+
+#: 01170101.xhp#par_id3148607.99.help.text
+msgid "A"
+msgstr "A"
+
+#: 01170101.xhp#par_id3159204.100.help.text
+msgid "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
+msgstr "The characters A-Z can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
+
+#: 01170101.xhp#par_id3149126.101.help.text
+msgid "c"
+msgstr "c"
+
+#: 01170101.xhp#par_id3151304.102.help.text
+msgid "The characters a-z and 0-9 can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
+msgstr "The characters a-z and 0-9 can be entered here. If a capital letter is entered, it is automatically converted to a lowercase letter."
+
+#: 01170101.xhp#par_id3152870.103.help.text
+msgid "C"
+msgstr "C"
+
+#: 01170101.xhp#par_id3155071.104.help.text
+msgid "The characters a-z and 0-9 can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
+msgstr "The characters a-z and 0-9 can be entered here. If a lowercase letter is entered, it is automatically converted to a capital letter"
+
+#: 01170101.xhp#par_id3159230.105.help.text
+msgid "N"
+msgstr "N"
+
+#: 01170101.xhp#par_id3154650.106.help.text
+msgid "Only the characters 0-9 can be entered."
+msgstr "Only the characters 0-9 can be entered."
+
+#: 01170101.xhp#par_id3149383.107.help.text
+msgctxt "01170101.xhp#par_id3149383.107.help.text"
+msgid "x"
+msgstr "x"
+
+#: 01170101.xhp#par_id3153489.108.help.text
+msgid "All printable characters can be entered."
+msgstr "All printable characters can be entered."
+
+#: 01170101.xhp#par_id3146967.109.help.text
+msgid "X"
+msgstr "X"
+
+#: 01170101.xhp#par_id3154707.110.help.text
+msgid "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
+msgstr "All printable characters can be entered. If a lowercase letter is used, it is automatically converted to a capital letter."
+
+#: 01170101.xhp#hd_id2128971.help.text
+msgid "Editable"
+msgstr "Editable"
+
+#: 01170101.xhp#par_id6519974.help.text
+msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
+
+#: 01170101.xhp#par_id4591814.help.text
+msgctxt "01170101.xhp#par_id4591814.help.text"
+msgid "The default value is FALSE."
+msgstr "The default value is FALSE."
+
+#: 01170101.xhp#hd_id3149317.114.help.text
+msgctxt "01170101.xhp#hd_id3149317.114.help.text"
+msgid "Graphics"
+msgstr "Graphics"
+
+#: 01170101.xhp#par_id3147546.115.help.text
+msgid "<ahelp hid=\".\">Specify the source of the graphics for a button or an image control. Click \"...\" to select a file.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the source of the graphics for a button or an image control. Click \"...\" to select a file.</ahelp>"
+
+#: 01170101.xhp#hd_id3154627.258.help.text
+msgid "Height"
+msgstr "Height"
+
+#: 01170101.xhp#par_id3155754.257.help.text
+msgid "<ahelp hid=\".\">Specify the height of the current control or the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the height of the current control or the dialogue.</ahelp>"
+
+#: 01170101.xhp#hd_id3153072.208.help.text
+msgid "Help text"
+msgstr "Help text"
+
+#: 01170101.xhp#par_id3147502.209.help.text
+msgid "<ahelp hid=\".\">Enter a help text that is displayed as a tip (bubble help) when the mouse rests over the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Enter a help text that is displayed as a tip (bubble help) when the mouse rests over the control.</ahelp>"
+
+#: 01170101.xhp#hd_id3154400.212.help.text
+msgid "Help URL"
+msgstr "Help URL"
+
+#: 01170101.xhp#par_id3150431.213.help.text
+msgid "<ahelp hid=\".\">Specify the help URL that is called when you press F1 while the focus is on a particular control. For example, use the format HID:1234 to call the Help-ID with the number 1234.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the help URL that is called when you press F1 while the focus is on a particular control. For example, use the format HID:1234 to call the Help-ID with the number 1234.</ahelp>"
+
+#: 01170101.xhp#par_id4171269.help.text
+msgid "Set the environment variable HELP_DEBUG to 1 to view the Help-IDs as extended help tips."
+msgstr "Set the environment variable HELP_DEBUG to 1 to view the Help-IDs as extended help tips."
+
+#: 01170101.xhp#hd_id3159260.85.help.text
+msgid "Incr./decrement value"
+msgstr "Incr./decrement value"
+
+#: 01170101.xhp#par_id3145233.86.help.text
+msgid "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the increment and decrement interval for spin button controls.</ahelp>"
+
+#: 01170101.xhp#hd_id539262.help.text
+msgid "Invokes stop mode editing"
+msgstr "Invokes stop mode editing"
+
+#: 01170101.xhp#par_id234382.help.text
+msgid "<ahelp hid=\".\">Specifies what happens when editing is interrupted by selecting another node in the tree, a change in the tree's data, or by some other means.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies what happens when editing is interrupted by selecting another node in the tree, a change in the tree's data, or by some other means.</ahelp>"
+
+#: 01170101.xhp#par_id6591082.help.text
+msgid "Setting this property to TRUE causes the changes to be automatically saved when editing is interrupted. FALSE means that editing is canceled and changes are lost."
+msgstr "Setting this property to TRUE causes the changes to be automatically saved when editing is interrupted. FALSE means that editing is cancelled and changes are lost."
+
+#: 01170101.xhp#par_id9298074.help.text
+msgctxt "01170101.xhp#par_id9298074.help.text"
+msgid "The default value is FALSE."
+msgstr "The default value is FALSE."
+
+#: 01170101.xhp#hd_id3150536.7.help.text
+msgid "Label"
+msgstr "Label"
+
+#: 01170101.xhp#par_id3146324.8.help.text
+msgid "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies the label of the current control. The label is displayed along with the control.</ahelp>"
+
+#: 01170101.xhp#par_id3146816.223.help.text
+msgid "You can create multi-line <emph>labels</emph> by inserting manual line breaks in the label using <emph>Shift+Enter</emph>."
+msgstr "You can create multi-line <emph>labels</emph> by inserting manual line breaks in the label using <emph>Shift+Enter</emph>."
+
+#: 01170101.xhp#hd_id3150457.74.help.text
+msgid "Line Count"
+msgstr "Line Count"
+
+#: 01170101.xhp#par_id3149143.75.help.text
+msgid "<ahelp hid=\".\">Enter the number of lines to be displayed for a list control. For combo boxes, this setting is only active if the dropdown option is enabled. </ahelp>"
+msgstr "<ahelp hid=\".\">Enter the number of lines to be displayed for a list control. For combo boxes, this setting is only active if the dropdown option is enabled. </ahelp>"
+
+#: 01170101.xhp#hd_id7468489.help.text
+msgctxt "01170101.xhp#hd_id7468489.help.text"
+msgid "Scrollbar"
+msgstr "Scrollbar"
+
+#: 01170101.xhp#par_id7706228.help.text
+msgid "Adds the scrollbar type that you specify to a text box."
+msgstr "Adds the scrollbar type that you specify to a text box."
+
+#: 01170101.xhp#hd_id3153121.256.help.text
+msgid "Small change"
+msgstr "Small change"
+
+#: 01170101.xhp#par_id3157875.255.help.text
+msgid "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the number of units to scroll when a user clicks an arrow on a scrollbar.</ahelp>"
+
+#: 01170101.xhp#hd_id3145221.73.help.text
+msgid "List entries"
+msgstr "List entries"
+
+#: 01170101.xhp#par_id3154580.120.help.text
+msgid "<ahelp hid=\".\">Specify the entries for a list control. One line takes one list entry. Press <emph>Shift+Enter</emph> to insert a new line.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the entries for a list control. One line takes one list entry. Press <emph>Shift+Enter</emph> to insert a new line.</ahelp>"
+
+#: 01170101.xhp#hd_id3149723.159.help.text
+msgid "Literal mask"
+msgstr "Literal mask"
+
+#: 01170101.xhp#par_id3150656.160.help.text
+msgid "<ahelp hid=\".\">Specify the initial values to be displayed in a pattern control. This helps the user to identify which values are allowed in a pattern control. The literal mask is restricted by the format specified by the edit mask.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the initial values to be displayed in a pattern control. This helps the user to identify which values are allowed in a pattern control. The literal mask is restricted by the format specified by the edit mask.</ahelp>"
+
+#: 01170101.xhp#hd_id3149015.116.help.text
+msgid "Manual line break"
+msgstr "Manual line break"
+
+#: 01170101.xhp#par_id3149893.117.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to allow manual line breaks inside multiline controls.</ahelp>"
+
+#: 01170101.xhp#hd_id3150463.123.help.text
+msgid "Max. text length"
+msgstr "Maximum text length"
+
+#: 01170101.xhp#par_id3150745.124.help.text
+msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
+
+#: 01170101.xhp#hd_id3154675.21.help.text
+msgid "Multiline Input"
+msgstr "Multiline Input"
+
+#: 01170101.xhp#par_id3144741.22.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow the input of multiple lines in the control. Press Enter to insert a manual line break in the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to allow the input of multiple lines in the control. Press Enter to insert a manual line break in the control.</ahelp>"
+
+#: 01170101.xhp#hd_id3154848.129.help.text
+msgid "Multiselection"
+msgstr "Multiselection"
+
+#: 01170101.xhp#par_id3151235.130.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to allow the selection of multiple entries in list controls.</ahelp>"
+
+#: 01170101.xhp#hd_id3148887.9.help.text
+msgid "Name"
+msgstr "Name"
+
+#: 01170101.xhp#par_id3154548.10.help.text
+msgid "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
+msgstr "<ahelp hid=\".\">Insert a name for the current control. This name is used to identify the control.</ahelp>"
+
+#: 01170101.xhp#hd_id3148739.44.help.text
+msgid "Order"
+msgstr "Order"
+
+#: 01170101.xhp#par_id3149252.45.help.text
+msgid "<ahelp hid=\".\">Specify the order in which the controls receive the focus when the Tab key is pressed in the dialog.</ahelp> On entering a dialog, the control with the lowest order (0) receives the focus. Pressing the <emph>Tab</emph> key the successively focusses the other controls as specified by their order number."
+msgstr "<ahelp hid=\".\">Specify the order in which the controls receive the focus when the Tab key is pressed in the dialogue.</ahelp> On entering a dialogue, the control with the lowest order (0) receives the focus. Pressing the <emph>Tab</emph> key the successively focusses the other controls as specified by their order number."
+
+#: 01170101.xhp#par_id3155259.46.help.text
+msgid "Initially, the controls receive numbers in the order they are added to the dialog. You can change the order numbers for controls. $[officename] Basic updates the order numbers automatically to avoid duplicate numbers. Controls that cannot be focused are also assigned a value but these controls are skipped when using the Tab key."
+msgstr "Initially, the controls receive numbers in the order they are added to the dialogue. You can change the order numbers for controls. $[officename] Basic updates the order numbers automatically to avoid duplicate numbers. Controls that cannot be focused are also assigned a value but these controls are skipped when using the Tab key."
+
+#: 01170101.xhp#hd_id3149511.247.help.text
+msgid "Orientation"
+msgstr "Orientation"
+
+#: 01170101.xhp#par_id3153780.246.help.text
+msgid "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the orientation for a scrollbar control.</ahelp>"
+
+#: 01170101.xhp#hd_id3154374.239.help.text
+msgid "Page (step)"
+msgstr "Page (step)"
+
+#: 01170101.xhp#par_id3154109.238.help.text
+msgid "<ahelp hid=\".\">Specify the number of the dialog page to which the current control is assigned or the page number of the dialog you want to edit.</ahelp> If a dialog has only one page set its <emph>Page (Step)</emph> value to <emph>0</emph>."
+msgstr "<ahelp hid=\".\">Specify the number of the dialogue page to which the current control is assigned or the page number of the dialogue you want to edit.</ahelp> If a dialogue has only one page set its <emph>Page (Step)</emph> value to <emph>0</emph>."
+
+#: 01170101.xhp#par_id3148580.236.help.text
+msgid "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialog page."
+msgstr "Select <emph>Page (Step)</emph> = 0 to make a control visible on every dialogue page."
+
+#: 01170101.xhp#par_id3146144.235.help.text
+msgid "To switch between dialog pages at run time, you need to create a macro that changes the value of <emph>Page (Step)</emph>."
+msgstr "To switch between dialogue pages at run time, you need to create a macro that changes the value of <emph>Page (Step)</emph>."
+
+#: 01170101.xhp#hd_id3154558.156.help.text
+msgid "Password characters"
+msgstr "Password characters"
+
+#: 01170101.xhp#par_id3152787.157.help.text
+msgid "<ahelp hid=\".\">Enter a character to be displayed instead of the characters that are typed. This can be used for entering passwords in text controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Enter a character to be displayed instead of the characters that are typed. This can be used for entering passwords in text controls.</ahelp>"
+
+#: 01170101.xhp#hd_id3148750.245.help.text
+msgid "PositionX"
+msgstr "PositionX"
+
+#: 01170101.xhp#par_id3154517.244.help.text
+msgid "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the distance of the current control from the left side of the dialogue.</ahelp>"
+
+#: 01170101.xhp#hd_id3152767.243.help.text
+msgid "PositionY"
+msgstr "PositionY"
+
+#: 01170101.xhp#par_id3159082.242.help.text
+msgid "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the distance of the current control from the top of the dialogue.</ahelp>"
+
+#: 01170101.xhp#hd_id3159213.221.help.text
+msgid "Prefix symbol"
+msgstr "Prefix symbol"
+
+#: 01170101.xhp#par_id3149688.222.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to display the currency symbol prefix in currency controls when a number was entered.</ahelp>"
+
+#: 01170101.xhp#hd_id3149728.89.help.text
+msgid "Print"
+msgstr "Print"
+
+#: 01170101.xhp#par_id3150001.90.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to include the current control in a document's printout.</ahelp>"
+
+#: 01170101.xhp#hd_id3154671.261.help.text
+msgid "Progress value"
+msgstr "Progress value"
+
+#: 01170101.xhp#par_id3146849.260.help.text
+msgid "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify a progress value for a progress bar control.</ahelp>"
+
+#: 01170101.xhp#hd_id3153112.254.help.text
+msgid "Progress value max."
+msgstr "Progress value maximum"
+
+#: 01170101.xhp#par_id3145167.253.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
+
+#: 01170101.xhp#hd_id3153569.249.help.text
+msgid "Progress value min."
+msgstr "Progress value minimum"
+
+#: 01170101.xhp#par_id3154506.248.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the minimum value of a progress bar control.</ahelp>"
+
+#: 01170101.xhp#hd_id3150134.42.help.text
+msgid "Read-only"
+msgstr "Read-only"
+
+#: 01170101.xhp#par_id3155930.43.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focussed but not modified.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focussed but not modified.</ahelp>"
+
+#: 01170101.xhp#par_idN11112.help.text
+msgid "Repeat"
+msgstr "Repeat"
+
+#: 01170101.xhp#par_idN11128.help.text
+msgid "<ahelp hid=\".\">Repeats trigger events when you keep the mouse button pressed on a control such as a spin button.</ahelp>"
+msgstr "<ahelp hid=\".\">Repeats trigger events when you keep the mouse button pressed on a control such as a spin button.</ahelp>"
+
+#: 01170101.xhp#hd_id9579149.help.text
+msgid "Root displayed"
+msgstr "Root displayed"
+
+#: 01170101.xhp#par_id7126987.help.text
+msgid "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
+
+#: 01170101.xhp#par_id9174779.help.text
+msgid "If Root displayed is set to FALSE, the root node of a model is no longer a valid node for the tree control and can't be used with any method of XTreeControl."
+msgstr "If Root displayed is set to FALSE, the root node of a model is no longer a valid node for the tree control and can't be used with any method of XTreeControl."
+
+#: 01170101.xhp#par_id594195.help.text
+msgctxt "01170101.xhp#par_id594195.help.text"
+msgid "The default value is TRUE."
+msgstr "The default value is TRUE."
+
+#: 01170101.xhp#hd_id7534409.help.text
+msgid "Row height"
+msgstr "Row height"
+
+#: 01170101.xhp#par_id6471755.help.text
+msgid "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
+
+#: 01170101.xhp#par_id2909329.help.text
+msgid "If the specified value is less than or equal to zero, the row height is the maximum height of all rows."
+msgstr "If the specified value is less than or equal to zero, the row height is the maximum height of all rows."
+
+#: 01170101.xhp#par_id4601580.help.text
+msgid "The default value is 0."
+msgstr "The default value is 0."
+
+#: 01170101.xhp#hd_id3148761.264.help.text
+msgid "Scale"
+msgstr "Scale"
+
+#: 01170101.xhp#par_id3159134.265.help.text
+msgid "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
+msgstr "<ahelp hid=\".\">Scales the image to fit the control size.</ahelp>"
+
+#: 01170101.xhp#hd_id7597277.help.text
+msgctxt "01170101.xhp#hd_id7597277.help.text"
+msgid "Scrollbar"
+msgstr "Scrollbar"
+
+#: 01170101.xhp#par_id986968.help.text
+msgid "<ahelp hid=\".\">Adds the scrollbar type that you specify to a text box.</ahelp>"
+msgstr "<ahelp hid=\".\">Adds the scrollbar type that you specify to a text box.</ahelp>"
+
+#: 01170101.xhp#hd_id3147370.241.help.text
+msgid "Scroll value"
+msgstr "Scroll value"
+
+#: 01170101.xhp#par_id3159622.240.help.text
+msgid "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the initial value of a scrollbar control. This determines the position of the scrollbar slider.</ahelp>"
+
+#: 01170101.xhp#hd_id3155440.252.help.text
+msgid "Scroll value max."
+msgstr "Scroll value maximum"
+
+#: 01170101.xhp#par_id3148877.251.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
+
+#: 01170101.xhp#par_idN111E4.help.text
+msgid "Scroll value min."
+msgstr "Scroll value minimum"
+
+#: 01170101.xhp#par_idN111E8.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value of a scrollbar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the minimum value of a scrollbar control.</ahelp>"
+
+#: 01170101.xhp#hd_id543534.help.text
+msgid "Show handles"
+msgstr "Show handles"
+
+#: 01170101.xhp#par_id5060884.help.text
+msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
+
+#: 01170101.xhp#par_id4974822.help.text
+msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
+msgstr "The handles are dotted lines that visualize the hierarchy of the tree control."
+
+#: 01170101.xhp#par_id7687307.help.text
+msgctxt "01170101.xhp#par_id7687307.help.text"
+msgid "The default value is TRUE."
+msgstr "The default value is TRUE."
+
+#: 01170101.xhp#hd_id4062013.help.text
+msgid "Show root handles"
+msgstr "Show root handles"
+
+#: 01170101.xhp#par_id3314004.help.text
+msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should also be displayed at root level.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies whether the handles of the nodes should also be displayed at root level.</ahelp>"
+
+#: 01170101.xhp#par_id2396313.help.text
+msgctxt "01170101.xhp#par_id2396313.help.text"
+msgid "The default value is TRUE."
+msgstr "The default value is TRUE."
+
+#: 01170101.xhp#par_idN10EC2.help.text
+msgid "Selection"
+msgstr "Selection"
+
+#: 01170101.xhp#par_idN10ED8.help.text
+msgid "<ahelp hid=\".\">Specifies the sequence of the selected items, where \"0\" corresponds to the first item. To select more than one item, Multiselection must be enabled.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies the sequence of the selected items, where \"0\" corresponds to the first item. To select more than one item, Multiselection must be enabled.</ahelp>"
+
+#: 01170101.xhp#par_idN10EEB.help.text
+msgid "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialog."
+msgstr "Click the <emph>...</emph> button to open the <emph>Selection</emph> dialogue."
+
+#: 01170101.xhp#par_idN10F0A.help.text
+msgid "<ahelp hid=\".\">Click the item or items that you want to select. To select more than one item, ensure that the Multiselection option is selected.</ahelp>"
+msgstr "<ahelp hid=\".\">Click the item or items that you want to select. To select more than one item, ensure that the Multiselection option is selected.</ahelp>"
+
+#: 01170101.xhp#hd_id5026093.help.text
+msgid "Selection type"
+msgstr "Selection type"
+
+#: 01170101.xhp#par_id1134067.help.text
+msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
+
+#: 01170101.xhp#hd_id3154193.87.help.text
+msgid "Spin Button"
+msgstr "Spin Button"
+
+#: 01170101.xhp#par_id3145298.88.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to add spin buttons to a numerical, currency, date, or time control to allow increasing and decreasing the input value using arrow buttons.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to add spin buttons to a numerical, currency, date, or time control to allow increasing and decreasing the input value using arrow buttons.</ahelp>"
+
+#: 01170101.xhp#hd_id3156267.232.help.text
+msgid "State"
+msgstr "State"
+
+#: 01170101.xhp#par_id3150928.231.help.text
+msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
+
+#: 01170101.xhp#hd_id3148396.112.help.text
+msgid "Strict format"
+msgstr "Strict format"
+
+#: 01170101.xhp#par_id3153042.113.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to only allow valid characters to be entered in a numerical, currency, date, or time control.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to only allow valid characters to be entered in a numerical, currency, date, or time control.</ahelp>"
+
+#: 01170101.xhp#hd_id3149538.48.help.text
+msgid "Tabstop"
+msgstr "Tabstop"
+
+#: 01170101.xhp#par_id3148543.49.help.text
+msgid "<ahelp hid=\".\">Select the focus behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
+msgstr "<ahelp hid=\".\">Select the focus behaviour of the current control when using the <emph>Tab</emph> key.</ahelp>"
+
+#: 01170101.xhp#par_id3148776.178.help.text
+msgid "Default"
+msgstr "Default"
+
+#: 01170101.xhp#par_id3153547.179.help.text
+msgid "Only input controls receive the focus when using the <emph>Tab</emph> key. Controls without input like caption controls are omitted."
+msgstr ""
+
+#: 01170101.xhp#par_id3154632.52.help.text
+msgid "No"
+msgstr "No"
+
+#: 01170101.xhp#par_id3150475.53.help.text
+msgid "When using the tab key focusing skips the control."
+msgstr "When using the tab key focusing skips the control."
+
+#: 01170101.xhp#par_id3150690.50.help.text
+msgid "Yes"
+msgstr "Yes"
+
+#: 01170101.xhp#par_id3159106.51.help.text
+msgid "The control can be selected with the Tab key."
+msgstr "The control can be selected with the Tab key."
+
+#: 01170101.xhp#hd_id3145152.147.help.text
+msgid "Thousands Separator"
+msgstr "Thousands Separator"
+
+#: 01170101.xhp#par_id3155085.148.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to display thousands separator characters in numerical and currency controls.</ahelp>"
+
+#: 01170101.xhp#hd_id3152816.168.help.text
+msgid "Time Format"
+msgstr "Time Format"
+
+#: 01170101.xhp#par_id3145263.169.help.text
+msgid "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
+msgstr "<ahelp hid=\".\">Select the format to be used for time controls.</ahelp>"
+
+#: 01170101.xhp#hd_id3153920.127.help.text
+msgid "Time max."
+msgstr "Time maximum"
+
+#: 01170101.xhp#par_id3155401.128.help.text
+msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
+
+#: 01170101.xhp#hd_id3163818.135.help.text
+msgid "Time min."
+msgstr "Time minimum"
+
+#: 01170101.xhp#par_id3156262.136.help.text
+msgid "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the minimum time value for a time control.</ahelp>"
+
+#: 01170101.xhp#hd_id3148638.266.help.text
+msgid "Title"
+msgstr "Title"
+
+#: 01170101.xhp#par_id3147169.267.help.text
+msgid "<ahelp hid=\".\">Specify the title of the dialog. Click the border of the dialog to select the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the title of the dialogue. Click the border of the dialogue to select the dialogue.</ahelp>"
+
+#: 01170101.xhp#par_id3153716.55.help.text
+msgid "<emph>Titles</emph> are only used for labeling a dialog and can only contain one line. Please note that if you work with macros, controls are only called through their <emph>Name</emph> property."
+msgstr "<emph>Titles</emph> are only used for labelling a dialogue and can only contain one line. Please note that if you work with macros, controls are only called through their <emph>Name</emph> property."
+
+#: 01170101.xhp#hd_id3152594.173.help.text
+msgid "Tristate"
+msgstr "Tristate"
+
+#: 01170101.xhp#par_id3149825.174.help.text
+msgid "<ahelp hid=\".\">Select \"Yes\" to allow a check box to have three states (checked, unchecked, and grayed out) instead of two (checked and unchecked).</ahelp>"
+msgstr "<ahelp hid=\".\">Select \"Yes\" to allow a check box to have three states (checked, unchecked, and greyed out) instead of two (checked and unchecked).</ahelp>"
+
+#: 01170101.xhp#hd_id3150614.268.help.text
+msgctxt "01170101.xhp#hd_id3150614.268.help.text"
+msgid "Value"
+msgstr "Value"
+
+#: 01170101.xhp#par_id3154315.269.help.text
+msgid "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the value for the current control.</ahelp>"
+
+#: 01170101.xhp#hd_id3152480.125.help.text
+msgid "Value max."
+msgstr "Value maximum"
+
+#: 01170101.xhp#par_id3163823.126.help.text
+msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
+
+#: 01170101.xhp#hd_id3149276.133.help.text
+msgid "Value min."
+msgstr "Value minimum"
+
+#: 01170101.xhp#par_id3145088.134.help.text
+msgid "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the minimum value for the current control.</ahelp>"
+
+#: 01170101.xhp#hd_id3149712.234.help.text
+msgid "Visible size"
+msgstr "Visible size"
+
+#: 01170101.xhp#par_id3149445.233.help.text
+msgid "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the length of the slider of a scrollbar control.</ahelp>"
+
+#: 01170101.xhp#hd_id3152472.142.help.text
+msgid "Width"
+msgstr "Width"
+
+#: 01170101.xhp#par_id3157963.143.help.text
+msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Specify the width of the current control or dialogue.</ahelp>"
+
+#: 03120202.xhp#tit.help.text
+msgid "String Function [Runtime]"
+msgstr "String Function [Runtime]"
+
+#: 03120202.xhp#bm_id3147291.help.text
+msgid "<bookmark_value>String function</bookmark_value>"
+msgstr "<bookmark_value>String function</bookmark_value>"
+
+#: 03120202.xhp#hd_id3147291.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
+
+#: 03120202.xhp#par_id3147242.2.help.text
+msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
+msgstr "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
+
+#: 03120202.xhp#hd_id3149516.3.help.text
+msgctxt "03120202.xhp#hd_id3149516.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120202.xhp#par_id3149233.4.help.text
+msgid "String (n As Long, {expression As Integer | character As String})"
+msgstr "String (n As Long, {expression As Integer | character As String})"
+
+#: 03120202.xhp#hd_id3143270.5.help.text
+msgctxt "03120202.xhp#hd_id3143270.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120202.xhp#par_id3147530.6.help.text
+msgctxt "03120202.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120202.xhp#hd_id3154923.7.help.text
+msgctxt "03120202.xhp#hd_id3154923.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120202.xhp#par_id3154347.8.help.text
+msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
+msgstr "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
+
+#: 03120202.xhp#par_id3148664.9.help.text
+msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgstr "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+
+#: 03120202.xhp#par_id3150359.10.help.text
+msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
+msgstr "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
+
+#: 03120202.xhp#hd_id3152920.11.help.text
+msgctxt "03120202.xhp#hd_id3152920.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120202.xhp#par_id3149203.12.help.text
+msgid "Sub ExampleString"
+msgstr "Sub ExampleString"
+
+#: 03120202.xhp#par_id3154124.13.help.text
+msgctxt "03120202.xhp#par_id3154124.13.help.text"
+msgid "Dim sText as String"
+msgstr "Dim sText as String"
+
+#: 03120202.xhp#par_id3147230.15.help.text
+msgid "sText = String(10,\"A\")"
+msgstr "sText = String(10,\"A\")"
+
+#: 03120202.xhp#par_id3153970.16.help.text
+msgctxt "03120202.xhp#par_id3153970.16.help.text"
+msgid "Msgbox sText"
+msgstr "Msgbox sText"
+
+#: 03120202.xhp#par_id3145785.18.help.text
+msgid "sText = String(10,65)"
+msgstr "sText = String(10,65)"
+
+#: 03120202.xhp#par_id3147288.19.help.text
+msgctxt "03120202.xhp#par_id3147288.19.help.text"
+msgid "Msgbox sText"
+msgstr "Msgbox sText"
+
+#: 03120202.xhp#par_id3153138.24.help.text
+msgctxt "03120202.xhp#par_id3153138.24.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020203.xhp#tit.help.text
+msgid "Line Input # Statement [Runtime]"
+msgstr "Line Input # Statement [Runtime]"
+
+#: 03020203.xhp#bm_id3153361.help.text
+msgid "<bookmark_value>Line Input statement</bookmark_value>"
+msgstr "<bookmark_value>Line Input statement</bookmark_value>"
+
+#: 03020203.xhp#hd_id3153361.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input # Statement [Runtime]\">Line Input # Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input # Statement [Runtime]\">Line Input # Statement [Runtime]</link>"
+
+#: 03020203.xhp#par_id3156280.2.help.text
+msgid "Reads strings from a sequential file into a variable."
+msgstr "Reads strings from a sequential file into a variable."
+
+#: 03020203.xhp#hd_id3150447.3.help.text
+msgctxt "03020203.xhp#hd_id3150447.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020203.xhp#par_id3147229.4.help.text
+msgid "Line Input #FileNumber As Integer, Var As String "
+msgstr "Line Input #FileNumber As Integer, Var As String "
+
+#: 03020203.xhp#hd_id3145173.5.help.text
+msgctxt "03020203.xhp#hd_id3145173.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020203.xhp#par_id3161832.6.help.text
+msgid "<emph>FileNumber: </emph>Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
+msgstr "<emph>FileNumber: </emph>Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
+
+#: 03020203.xhp#par_id3151119.7.help.text
+msgid "<emph>var:</emph> The name of the variable that stores the result."
+msgstr "<emph>var:</emph> The name of the variable that stores the result."
+
+#: 03020203.xhp#par_id3150010.8.help.text
+msgid "With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string."
+msgstr "With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string."
+
+#: 03020203.xhp#hd_id3163711.9.help.text
+msgctxt "03020203.xhp#hd_id3163711.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020203.xhp#par_id3145271.10.help.text
+msgctxt "03020203.xhp#par_id3145271.10.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub ExampleWorkWithAFile"
+
+#: 03020203.xhp#par_id3156444.11.help.text
+msgctxt "03020203.xhp#par_id3156444.11.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020203.xhp#par_id3147349.12.help.text
+msgctxt "03020203.xhp#par_id3147349.12.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03020203.xhp#par_id3149664.13.help.text
+msgctxt "03020203.xhp#par_id3149664.13.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020203.xhp#par_id3147436.36.help.text
+msgctxt "03020203.xhp#par_id3147436.36.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMsg as String"
+
+#: 03020203.xhp#par_id3154730.14.help.text
+msgctxt "03020203.xhp#par_id3154730.14.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020203.xhp#par_id3145647.16.help.text
+msgctxt "03020203.xhp#par_id3145647.16.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020203.xhp#par_id3149959.17.help.text
+msgctxt "03020203.xhp#par_id3149959.17.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03020203.xhp#par_id3147124.18.help.text
+msgctxt "03020203.xhp#par_id3147124.18.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"This is a line of text\""
+
+#: 03020203.xhp#par_id3153415.19.help.text
+msgctxt "03020203.xhp#par_id3153415.19.help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumber, \"This is another line of text\""
+
+#: 03020203.xhp#par_id3146969.20.help.text
+msgctxt "03020203.xhp#par_id3146969.20.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020203.xhp#par_id3154482.24.help.text
+msgctxt "03020203.xhp#par_id3154482.24.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020203.xhp#par_id3150321.25.help.text
+msgctxt "03020203.xhp#par_id3150321.25.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aFile For Input As iNumber"
+
+#: 03020203.xhp#par_id3155443.26.help.text
+msgctxt "03020203.xhp#par_id3155443.26.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumber)"
+
+#: 03020203.xhp#par_id3155764.27.help.text
+msgctxt "03020203.xhp#par_id3155764.27.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumber, sLine"
+
+#: 03020203.xhp#par_id3156382.28.help.text
+msgctxt "03020203.xhp#par_id3156382.28.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLine <>\"\" then"
+
+#: 03020203.xhp#par_id3147338.29.help.text
+msgctxt "03020203.xhp#par_id3147338.29.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMsg = sMsg & sLine & chr(13)"
+
+#: 03020203.xhp#par_id3147362.31.help.text
+msgctxt "03020203.xhp#par_id3147362.31.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020203.xhp#par_id3155333.32.help.text
+msgctxt "03020203.xhp#par_id3155333.32.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020203.xhp#par_id3153965.33.help.text
+msgctxt "03020203.xhp#par_id3153965.33.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020203.xhp#par_id3147345.37.help.text
+msgctxt "03020203.xhp#par_id3147345.37.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMsg"
+
+#: 03020203.xhp#par_id3149257.34.help.text
+msgctxt "03020203.xhp#par_id3149257.34.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080501.xhp#tit.help.text
+msgid "Fix Function [Runtime]"
+msgstr "Fix Function [Runtime]"
+
+#: 03080501.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Fix function</bookmark_value>"
+msgstr "<bookmark_value>Fix function</bookmark_value>"
+
+#: 03080501.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
+
+#: 03080501.xhp#par_id3149346.2.help.text
+msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
+msgstr "Returns the integer value of a numeric expression by removing the fractional part of the number."
+
+#: 03080501.xhp#hd_id3155419.3.help.text
+msgctxt "03080501.xhp#hd_id3155419.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080501.xhp#par_id3156152.4.help.text
+msgid "Fix (Expression)"
+msgstr "Fix (Expression)"
+
+#: 03080501.xhp#hd_id3154923.5.help.text
+msgctxt "03080501.xhp#hd_id3154923.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080501.xhp#par_id3148947.6.help.text
+msgctxt "03080501.xhp#par_id3148947.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080501.xhp#hd_id3154760.7.help.text
+msgctxt "03080501.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080501.xhp#par_id3149457.8.help.text
+msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgstr "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+
+#: 03080501.xhp#hd_id3150447.9.help.text
+msgctxt "03080501.xhp#hd_id3150447.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080501.xhp#par_id3153193.10.help.text
+msgid "sub ExampleFix"
+msgstr "sub ExampleFix"
+
+#: 03080501.xhp#par_id3156214.11.help.text
+msgid "Print Fix(3.14159) REM returns 3."
+msgstr "Print Fix(3.14159) REM returns 3."
+
+#: 03080501.xhp#par_id3154217.12.help.text
+msgid "Print Fix(0) REM returns 0."
+msgstr "Print Fix(0) REM returns 0."
+
+#: 03080501.xhp#par_id3145786.13.help.text
+msgid "Print Fix(-3.14159) REM returns -3."
+msgstr "Print Fix(-3.14159) REM returns -3."
+
+#: 03080501.xhp#par_id3153188.14.help.text
+msgctxt "03080501.xhp#par_id3153188.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01030300.xhp#tit.help.text
+msgid "Debugging a Basic Program"
+msgstr "Debugging a Basic Program"
+
+#: 01030300.xhp#bm_id3153344.help.text
+msgid "<bookmark_value>debugging Basic programs</bookmark_value><bookmark_value>variables; observing values</bookmark_value><bookmark_value>watching variables</bookmark_value><bookmark_value>run-time errors in Basic</bookmark_value><bookmark_value>error codes in Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Call Stack window</bookmark_value>"
+msgstr "<bookmark_value>debugging Basic programs</bookmark_value><bookmark_value>variables; observing values</bookmark_value><bookmark_value>watching variables</bookmark_value><bookmark_value>run-time errors in Basic</bookmark_value><bookmark_value>error codes in Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Call Stack window</bookmark_value>"
+
+#: 01030300.xhp#hd_id3153344.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+msgstr "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+
+#: 01030300.xhp#hd_id3159224.4.help.text
+msgid "Breakpoints and Single Step Execution"
+msgstr "Breakpoints and Single Step Execution"
+
+#: 01030300.xhp#par_id3150682.5.help.text
+msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
+msgstr "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
+
+#: 01030300.xhp#par_id3147303.7.help.text
+msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
+msgstr "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
+
+#: 01030300.xhp#par_id3155805.8.help.text
+msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
+msgstr "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
+
+#: 01030300.xhp#par_id3151110.25.help.text
+msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
+msgstr "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
+
+#: 01030300.xhp#hd_id3153825.9.help.text
+msgid "Properties of a Breakpoint"
+msgstr "Properties of a Breakpoint"
+
+#: 01030300.xhp#par_id3147574.26.help.text
+msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
+msgstr "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
+
+#: 01030300.xhp#par_id3148473.10.help.text
+msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution. "
+msgstr "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution. "
+
+#: 01030300.xhp#par_id3159413.27.help.text
+msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
+msgstr "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialogue where you can specify other breakpoint options."
+
+#: 01030300.xhp#par_id3156280.11.help.text
+msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
+msgstr "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
+
+#: 01030300.xhp#par_id3158407.12.help.text
+msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
+msgstr "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
+
+#: 01030300.xhp#par_id3153968.13.help.text
+msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
+msgstr "Click <emph>Delete</emph> to remove the breakpoint from the program."
+
+#: 01030300.xhp#hd_id3150439.14.help.text
+msgid "Observing the Value of Variables"
+msgstr "Observing the Value of Variables"
+
+#: 01030300.xhp#par_id3153368.15.help.text
+msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
+msgstr "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
+
+#: 01030300.xhp#par_id3146986.16.help.text
+msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
+msgstr "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
+
+#: 01030300.xhp#par_id3145272.17.help.text
+msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
+msgstr "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
+
+#: 01030300.xhp#par_id3145749.19.help.text
+msgid "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
+msgstr "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
+
+#: 01030300.xhp#hd_id3148618.20.help.text
+msgid "The Call Stack Window"
+msgstr "The Call Stack Window"
+
+#: 01030300.xhp#par_id3154491.21.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
+msgstr "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
+
+#: 01030300.xhp#hd_id3150594.24.help.text
+msgid "List of Run-Time Errors"
+msgstr "List of Run-Time Errors"
+
+#: 03120305.xhp#tit.help.text
+msgid "LTrim Function [Runtime]"
+msgstr "LTrim Function [Runtime]"
+
+#: 03120305.xhp#bm_id3147574.help.text
+msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgstr "<bookmark_value>LTrim function</bookmark_value>"
+
+#: 03120305.xhp#hd_id3147574.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
+
+#: 03120305.xhp#par_id3145316.2.help.text
+msgid "Removes all leading spaces at the start of a string expression."
+msgstr "Removes all leading spaces at the start of a string expression."
+
+#: 03120305.xhp#hd_id3154924.3.help.text
+msgctxt "03120305.xhp#hd_id3154924.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120305.xhp#par_id3148552.4.help.text
+msgid "LTrim (Text As String)"
+msgstr "LTrim (Text As String)"
+
+#: 03120305.xhp#hd_id3156344.5.help.text
+msgctxt "03120305.xhp#hd_id3156344.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120305.xhp#par_id3151056.6.help.text
+msgctxt "03120305.xhp#par_id3151056.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120305.xhp#hd_id3150543.7.help.text
+msgctxt "03120305.xhp#hd_id3150543.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120305.xhp#par_id3150792.8.help.text
+msgctxt "03120305.xhp#par_id3150792.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> Any string expression."
+
+#: 03120305.xhp#par_id3125863.9.help.text
+msgid "Use this function to remove spaces at the beginning of a string expression."
+msgstr "Use this function to remove spaces at the beginning of a string expression."
+
+#: 03120305.xhp#hd_id3145419.10.help.text
+msgctxt "03120305.xhp#hd_id3145419.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120305.xhp#par_id3154909.11.help.text
+msgctxt "03120305.xhp#par_id3154909.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr "Sub ExampleSpaces"
+
+#: 03120305.xhp#par_id3150768.12.help.text
+msgid "Dim sText2 As String,sText As String,sOut As String"
+msgstr "Dim sText2 As String,sText As String,sOut As String"
+
+#: 03120305.xhp#par_id3149204.13.help.text
+msgctxt "03120305.xhp#par_id3149204.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr "sText2 = \" <*Las Vegas*> \""
+
+#: 03120305.xhp#par_id3159252.15.help.text
+msgctxt "03120305.xhp#par_id3159252.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+
+#: 03120305.xhp#par_id3147350.16.help.text
+msgctxt "03120305.xhp#par_id3147350.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+
+#: 03120305.xhp#par_id3153951.17.help.text
+msgctxt "03120305.xhp#par_id3153951.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+
+#: 03120305.xhp#par_id3153363.18.help.text
+msgctxt "03120305.xhp#par_id3153363.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+
+#: 03120305.xhp#par_id3159154.19.help.text
+msgctxt "03120305.xhp#par_id3159154.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+
+#: 03120305.xhp#par_id3154322.20.help.text
+msgctxt "03120305.xhp#par_id3154322.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+
+#: 03120305.xhp#par_id3146924.21.help.text
+msgctxt "03120305.xhp#par_id3146924.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr "sOut = sOut +\"'\"+ sText +\"'\""
+
+#: 03120305.xhp#par_id3156444.22.help.text
+msgctxt "03120305.xhp#par_id3156444.22.help.text"
+msgid "MsgBox sOut"
+msgstr "MsgBox sOut"
+
+#: 03120305.xhp#par_id3147318.23.help.text
+msgctxt "03120305.xhp#par_id3147318.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01050100.xhp#tit.help.text
+msgid "Watch Window"
+msgstr "Watch Window"
+
+#: 01050100.xhp#hd_id3149457.1.help.text
+msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+msgstr "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+
+#: 01050100.xhp#par_id3154908.9.help.text
+msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
+msgstr "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
+
+#: 01050100.xhp#hd_id3145173.4.help.text
+msgid "Watch"
+msgstr "Watch"
+
+#: 01050100.xhp#par_id3155132.5.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
+
+#: 01050100.xhp#hd_id3148645.6.help.text
+msgctxt "01050100.xhp#hd_id3148645.6.help.text"
+msgid "Remove Watch"
+msgstr "Remove Watch"
+
+#: 01050100.xhp#par_id3148576.7.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
+
+#: 01050100.xhp#par_id3147426.help.text
+msgid "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
+
+#: 01050100.xhp#par_id3154012.8.help.text
+msgctxt "01050100.xhp#par_id3154012.8.help.text"
+msgid "Remove Watch"
+msgstr "Remove Watch"
+
+#: 01050100.xhp#hd_id3154491.10.help.text
+msgid "Editing the Value of a Watched Variable"
+msgstr "Editing the Value of a Watched Variable"
+
+#: 01050100.xhp#par_id3156283.11.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
+msgstr "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
+
+#: 03050200.xhp#tit.help.text
+msgid "Err Function [Runtime]"
+msgstr "Err Function [Runtime]"
+
+#: 03050200.xhp#bm_id3156343.help.text
+msgid "<bookmark_value>Err function</bookmark_value>"
+msgstr "<bookmark_value>Err function</bookmark_value>"
+
+#: 03050200.xhp#hd_id3156343.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
+
+#: 03050200.xhp#par_id3150541.2.help.text
+msgid "Returns an error code that identifies the error that occurred during program execution."
+msgstr "Returns an error code that identifies the error that occurred during program execution."
+
+#: 03050200.xhp#hd_id3149656.3.help.text
+msgctxt "03050200.xhp#hd_id3149656.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03050200.xhp#par_id3154123.4.help.text
+msgid "Err"
+msgstr "Err"
+
+#: 03050200.xhp#hd_id3147229.5.help.text
+msgctxt "03050200.xhp#hd_id3147229.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03050200.xhp#par_id3150869.6.help.text
+msgctxt "03050200.xhp#par_id3150869.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03050200.xhp#hd_id3153193.7.help.text
+msgctxt "03050200.xhp#hd_id3153193.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03050200.xhp#par_id3149561.8.help.text
+msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
+msgstr "The Err function is used in error-handling routines to determine the error and the corrective action."
+
+#: 03050200.xhp#hd_id3147317.9.help.text
+msgctxt "03050200.xhp#hd_id3147317.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03050200.xhp#par_id3153727.10.help.text
+msgctxt "03050200.xhp#par_id3153727.10.help.text"
+msgid "sub ExampleError"
+msgstr "sub ExampleError"
+
+#: 03050200.xhp#par_id3147426.11.help.text
+msgctxt "03050200.xhp#par_id3147426.11.help.text"
+msgid "on error goto ErrorHandler REM Set up error handler"
+msgstr "on error goto ErrorHandler REM Set up error handler"
+
+#: 03050200.xhp#par_id3163710.12.help.text
+msgctxt "03050200.xhp#par_id3163710.12.help.text"
+msgid "Dim iVar as Integer"
+msgstr "Dim iVar as Integer"
+
+#: 03050200.xhp#par_id3153093.13.help.text
+msgctxt "03050200.xhp#par_id3153093.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03050200.xhp#par_id3149481.14.help.text
+msgid "REM Error occurs due to non-existent file"
+msgstr "REM Error occurs due to non-existent file"
+
+#: 03050200.xhp#par_id3153190.15.help.text
+msgctxt "03050200.xhp#par_id3153190.15.help.text"
+msgid "iVar = Freefile"
+msgstr "iVar = Freefile"
+
+#: 03050200.xhp#par_id3146120.16.help.text
+msgctxt "03050200.xhp#par_id3146120.16.help.text"
+msgid "Open \"\\file9879.txt\" for Input as #iVar"
+msgstr "Open \"\\file9879.txt\" for Input as #iVar"
+
+#: 03050200.xhp#par_id3155308.17.help.text
+msgctxt "03050200.xhp#par_id3155308.17.help.text"
+msgid "Line Input #iVar, sVar"
+msgstr "Line Input #iVar, sVar"
+
+#: 03050200.xhp#par_id3153142.18.help.text
+msgctxt "03050200.xhp#par_id3153142.18.help.text"
+msgid "Close #iVar"
+msgstr "Close #iVar"
+
+#: 03050200.xhp#par_id3149665.19.help.text
+msgctxt "03050200.xhp#par_id3149665.19.help.text"
+msgid "exit sub"
+msgstr "exit sub"
+
+#: 03050200.xhp#par_id3154942.20.help.text
+msgctxt "03050200.xhp#par_id3154942.20.help.text"
+msgid "ErrorHandler:"
+msgstr "ErrorHandler:"
+
+#: 03050200.xhp#par_id3145646.21.help.text
+msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
+msgstr "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
+
+#: 03050200.xhp#par_id3155418.22.help.text
+msgctxt "03050200.xhp#par_id3155418.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120000.xhp#tit.help.text
+msgid "Strings"
+msgstr "Strings"
+
+#: 03120000.xhp#hd_id3156153.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+
+#: 03120000.xhp#par_id3159176.2.help.text
+msgid "The following functions and statements validate and return strings."
+msgstr "The following functions and statements validate and return strings."
+
+#: 03120000.xhp#par_id3154285.3.help.text
+msgid "You can use strings to edit text within $[officename] Basic programs."
+msgstr "You can use strings to edit text within $[officename] Basic programs."
+
+#: 03102800.xhp#tit.help.text
+msgid "IsObject Function [Runtime]"
+msgstr "IsObject Function [Runtime]"
+
+#: 03102800.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>IsObject function</bookmark_value>"
+msgstr "<bookmark_value>IsObject function</bookmark_value>"
+
+#: 03102800.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
+
+#: 03102800.xhp#par_id3148538.2.help.text
+msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
+msgstr "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
+
+#: 03102800.xhp#hd_id3149234.3.help.text
+msgctxt "03102800.xhp#hd_id3149234.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102800.xhp#par_id3154285.4.help.text
+msgid "IsObject (ObjectVar)"
+msgstr "IsObject (ObjectVar)"
+
+#: 03102800.xhp#hd_id3148685.5.help.text
+msgctxt "03102800.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03102800.xhp#par_id3156024.6.help.text
+msgctxt "03102800.xhp#par_id3156024.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03102800.xhp#hd_id3148947.7.help.text
+msgctxt "03102800.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102800.xhp#par_id3148552.8.help.text
+msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
+msgstr "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
+
+#: 03120200.xhp#tit.help.text
+msgid "Repeating Contents"
+msgstr "Repeating Contents"
+
+#: 03120200.xhp#hd_id3152363.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repeating Contents</link>"
+msgstr "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repeating Contents</link>"
+
+#: 03120200.xhp#par_id3150178.2.help.text
+msgid "The following functions repeat the contents of strings."
+msgstr "The following functions repeat the contents of strings."
+
+#: 03030101.xhp#tit.help.text
+msgid "DateSerial Function [Runtime]"
+msgstr "DateSerial Function [Runtime]"
+
+#: 03030101.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>DateSerial function</bookmark_value>"
+msgstr "<bookmark_value>DateSerial function</bookmark_value>"
+
+#: 03030101.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
+
+#: 03030101.xhp#par_id3143267.2.help.text
+msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
+msgstr "Returns a <emph>Date</emph> value for a specified year, month, or day."
+
+#: 03030101.xhp#hd_id3147264.3.help.text
+msgctxt "03030101.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030101.xhp#par_id3149670.4.help.text
+msgid "DateSerial (year, month, day)"
+msgstr "DateSerial (year, month, day)"
+
+#: 03030101.xhp#hd_id3150792.5.help.text
+msgctxt "03030101.xhp#hd_id3150792.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030101.xhp#par_id3150398.6.help.text
+msgctxt "03030101.xhp#par_id3150398.6.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 03030101.xhp#hd_id3154141.7.help.text
+msgctxt "03030101.xhp#hd_id3154141.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030101.xhp#par_id3147229.8.help.text
+msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
+msgstr "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
+
+#: 03030101.xhp#par_id3156280.9.help.text
+msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
+msgstr "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
+
+#: 03030101.xhp#par_id3151043.10.help.text
+msgid "<emph>Day:</emph> Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days."
+msgstr ""
+
+#: 03030101.xhp#par_id3161832.11.help.text
+msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
+msgstr "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
+
+#: 03030101.xhp#par_id3155306.12.help.text
+msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
+msgstr "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
+
+#: 03030101.xhp#par_id3152576.13.help.text
+msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
+msgstr "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
+
+#: 03030101.xhp#par_id3149481.14.help.text
+msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
+msgstr "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
+
+#: 03030101.xhp#hd_id3155411.15.help.text
+msgctxt "03030101.xhp#hd_id3155411.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030101.xhp#par_id3148646.16.help.text
+msgid "Sub ExampleDateSerial"
+msgstr "Sub ExampleDateSerial"
+
+#: 03030101.xhp#par_id3156441.17.help.text
+msgid "Dim lDate as Long"
+msgstr "Dim lDate as Long"
+
+#: 03030101.xhp#par_id3154791.18.help.text
+msgctxt "03030101.xhp#par_id3154791.18.help.text"
+msgid "Dim sDate as String"
+msgstr "Dim sDate as String"
+
+#: 03030101.xhp#par_id3155415.19.help.text
+msgid "lDate = DateSerial(1964, 4, 9)"
+msgstr "lDate = DateSerial(1964, 4, 9)"
+
+#: 03030101.xhp#par_id3147125.20.help.text
+msgid "sDate = DateSerial(1964, 4, 9)"
+msgstr "sDate = DateSerial(1964, 4, 9)"
+
+#: 03030101.xhp#par_id3154942.21.help.text
+msgid "msgbox lDate REM returns 23476"
+msgstr "msgbox lDate REM returns 23476"
+
+#: 03030101.xhp#par_id3151074.22.help.text
+msgid "msgbox sDate REM returns 04/09/1964"
+msgstr "msgbox sDate REM returns 04/09/1964"
+
+#: 03030101.xhp#par_id3153878.23.help.text
+msgctxt "03030101.xhp#par_id3153878.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03010000.xhp#tit.help.text
+msgid "Screen I/O Functions"
+msgstr "Screen I/O Functions"
+
+#: 03010000.xhp#hd_id3156280.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
+
+#: 03010000.xhp#par_id3153770.2.help.text
+msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
+msgstr "This section describes the Runtime Functions used to call dialogues for the input and output of user entries."
+
+#: 03030000.xhp#tit.help.text
+msgid "Date and Time Functions"
+msgstr "Date and Time Functions"
+
+#: 03030000.xhp#hd_id3150502.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
+
+#: 03030000.xhp#par_id3153255.2.help.text
+msgid "Use the statements and functions described here to perform date and time calculations."
+msgstr "Use the statements and functions described here to perform date and time calculations."
+
+#: 03030000.xhp#par_id3152363.3.help.text
+msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
+msgstr "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
+
+#: 03030000.xhp#par_id3151054.4.help.text
+msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
+msgstr "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
+
+#: 01020100.xhp#tit.help.text
+msgid "Using Variables"
+msgstr "Using Variables"
+
+#: 01020100.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>names of variables</bookmark_value><bookmark_value>variables; using</bookmark_value><bookmark_value>types of variables</bookmark_value><bookmark_value>declaring variables</bookmark_value><bookmark_value>values;of variables</bookmark_value><bookmark_value>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
+msgstr "<bookmark_value>names of variables</bookmark_value><bookmark_value>variables; using</bookmark_value><bookmark_value>types of variables</bookmark_value><bookmark_value>declaring variables</bookmark_value><bookmark_value>values;of variables</bookmark_value><bookmark_value>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
+
+#: 01020100.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
+
+#: 01020100.xhp#par_id3154346.3.help.text
+msgid "The following describes the basic use of variables in $[officename] Basic."
+msgstr "The following describes the basic use of variables in $[officename] Basic."
+
+#: 01020100.xhp#hd_id3153361.4.help.text
+msgid "Naming Conventions for Variable Identifiers"
+msgstr "Naming Conventions for Variable Identifiers"
+
+#: 01020100.xhp#par_id3148797.5.help.text
+msgid "A variable name can consist of a maximum of 255 characters. The first character of a variable name <emph>must</emph> be a letter A-Z or a-z. Numbers can also be used in a variable name, but punctuation symbols and special characters are not permitted, with exception of the underscore character (\"_\"). In $[officename] Basic variable identifiers are not case-sensitive. Variable names may contain spaces but must be enclosed in square brackets if they do."
+msgstr "A variable name can consist of a maximum of 255 characters. The first character of a variable name <emph>must</emph> be a letter A-Z or a-z. Numbers can also be used in a variable name, but punctuation symbols and special characters are not permitted, with exception of the underscore character (\"_\"). In $[officename] Basic variable identifiers are not case-sensitive. Variable names may contain spaces but must be enclosed in square brackets if they do."
+
+#: 01020100.xhp#par_id3156422.6.help.text
+msgid "Examples for variable identifiers:"
+msgstr "Examples for variable identifiers:"
+
+#: 01020100.xhp#par_id3163798.7.help.text
+msgid "MyNumber=5"
+msgstr "MyNumber=5"
+
+#: 01020100.xhp#par_id3156441.126.help.text
+msgctxt "01020100.xhp#par_id3156441.126.help.text"
+msgid "Correct"
+msgstr "Correct"
+
+#: 01020100.xhp#par_id3147317.8.help.text
+msgid "MyNumber5=15"
+msgstr "MyNumber5=15"
+
+#: 01020100.xhp#par_id3149664.127.help.text
+msgctxt "01020100.xhp#par_id3149664.127.help.text"
+msgid "Correct"
+msgstr "Correct"
+
+#: 01020100.xhp#par_id3145364.9.help.text
+msgid "MyNumber_5=20"
+msgstr "MyNumber_5=20"
+
+#: 01020100.xhp#par_id3146119.128.help.text
+msgctxt "01020100.xhp#par_id3146119.128.help.text"
+msgid "Correct"
+msgstr "Correct"
+
+#: 01020100.xhp#par_id3154729.10.help.text
+msgid "My Number=20"
+msgstr "My Number=20"
+
+#: 01020100.xhp#par_id3153876.11.help.text
+msgid "Not valid, variable with space must be enclosed in square brackets"
+msgstr "Not valid, variable with space must be enclosed in square brackets"
+
+#: 01020100.xhp#par_id3147126.14.help.text
+msgid "[My Number]=12"
+msgstr "[My Number]=12"
+
+#: 01020100.xhp#par_id3154510.15.help.text
+msgctxt "01020100.xhp#par_id3154510.15.help.text"
+msgid "Correct"
+msgstr "Correct"
+
+#: 01020100.xhp#par_id3153708.12.help.text
+msgid "DéjàVu=25"
+msgstr "DéjàVu=25"
+
+#: 01020100.xhp#par_id3150330.129.help.text
+msgid "Not valid, special characters are not allowed"
+msgstr "Not valid, special characters are not allowed"
+
+#: 01020100.xhp#par_id3155443.13.help.text
+msgid "5MyNumber=12"
+msgstr "5MyNumber=12"
+
+#: 01020100.xhp#par_id3154254.130.help.text
+msgid "Not valid, variable may not begin with a number"
+msgstr "Not valid, variable may not begin with a number"
+
+#: 01020100.xhp#par_id3147345.16.help.text
+msgid "Number,Mine=12"
+msgstr "Number,Mine=12"
+
+#: 01020100.xhp#par_id3149256.131.help.text
+msgid "Not valid, punctuation marks are not allowed"
+msgstr "Not valid, punctuation marks are not allowed"
+
+#: 01020100.xhp#hd_id3146317.17.help.text
+msgid "Declaring Variables"
+msgstr "Declaring Variables"
+
+#: 01020100.xhp#par_id3150299.18.help.text
+msgid "In $[officename] Basic you don't need to declare variables explicitly. A variable declaration can be performed with the <emph>Dim</emph> statement. You can declare more than one variable at a time by separating the names with a comma. To define the variable type, use either a type-declaration sign after the name, or the appropriate key word. "
+msgstr "In $[officename] Basic you don't need to declare variables explicitly. A variable declaration can be performed with the <emph>Dim</emph> statement. You can declare more than one variable at a time by separating the names with a comma. To define the variable type, use either a type-declaration sign after the name, or the appropriate key word. "
+
+#: 01020100.xhp#par_id3154118.140.help.text
+msgid "Examples for variable declarations:"
+msgstr "Examples for variable declarations:"
+
+#: 01020100.xhp#par_id3150090.19.help.text
+msgctxt "01020100.xhp#par_id3150090.19.help.text"
+msgid "DIM a$"
+msgstr "DIM a$"
+
+#: 01020100.xhp#par_id3150982.132.help.text
+msgctxt "01020100.xhp#par_id3150982.132.help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Declares the variable \"a\" as a String"
+
+#: 01020100.xhp#par_id3149531.20.help.text
+msgid "DIM a As String"
+msgstr "DIM a As String"
+
+#: 01020100.xhp#par_id3150343.133.help.text
+msgctxt "01020100.xhp#par_id3150343.133.help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Declares the variable \"a\" as a String"
+
+#: 01020100.xhp#par_id3149036.21.help.text
+msgid "DIM a$, b As Integer"
+msgstr "DIM a$, b As Integer"
+
+#: 01020100.xhp#par_id3155507.22.help.text
+msgid "Declares one variable as a String and one as an Integer"
+msgstr "Declares one variable as a String and one as an Integer"
+
+#: 01020100.xhp#par_idN10854.help.text
+msgid "DIM c As Boolean"
+msgstr "DIM c As Boolean"
+
+#: 01020100.xhp#par_idN10859.help.text
+msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
+msgstr "Declares c as a Boolean variable that can be TRUE or FALSE"
+
+#: 01020100.xhp#par_id3150519.23.help.text
+msgid "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
+msgstr "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
+
+#: 01020100.xhp#par_id3152985.24.help.text
+msgctxt "01020100.xhp#par_id3152985.24.help.text"
+msgid "DIM a$"
+msgstr "DIM a$"
+
+#: 01020100.xhp#par_id3154527.134.help.text
+msgid "Declares \"a\" as a String"
+msgstr "Declares \"a\" as a String"
+
+#: 01020100.xhp#par_id3148599.25.help.text
+msgid "a=\"TestString\""
+msgstr "a=\"TestString\""
+
+#: 01020100.xhp#par_id3153064.135.help.text
+msgid "Type-declaration missing: \"a$=\""
+msgstr "Type-declaration missing: \"a$=\""
+
+#: 01020100.xhp#par_id3144770.26.help.text
+msgid "Once you have declared a variable as a certain type, you cannot declare the variable under the same name again as a different type!"
+msgstr "Once you have declared a variable as a certain type, you cannot declare the variable under the same name again as a different type!"
+
+#: 01020100.xhp#hd_id3149331.27.help.text
+msgid "Forcing Variable Declarations"
+msgstr "Forcing Variable Declarations"
+
+#: 01020100.xhp#par_id3149443.28.help.text
+msgid "To force declaration of variables, use the following command:"
+msgstr "To force declaration of variables, use the following command:"
+
+#: 01020100.xhp#par_id3152869.29.help.text
+msgid "OPTION EXPLICIT"
+msgstr "OPTION EXPLICIT"
+
+#: 01020100.xhp#par_id3155072.30.help.text
+msgid "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
+msgstr "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
+
+#: 01020100.xhp#hd_id3154614.34.help.text
+msgid "Variable Types"
+msgstr "Variable Types"
+
+#: 01020100.xhp#par_id3155383.35.help.text
+msgid "$[officename] Basic supports four variable classes:"
+msgstr "$[officename] Basic supports four variable classes:"
+
+#: 01020100.xhp#par_id3153972.36.help.text
+msgid "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers. "
+msgstr "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers. "
+
+#: 01020100.xhp#par_id3159226.37.help.text
+msgid "<emph>String</emph> variables contain character strings."
+msgstr "<emph>String</emph> variables contain character strings."
+
+#: 01020100.xhp#par_id3145217.38.help.text
+msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+msgstr "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+
+#: 01020100.xhp#par_id3154762.39.help.text
+msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
+msgstr "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
+
+#: 01020100.xhp#hd_id3153805.40.help.text
+msgid "Integer Variables"
+msgstr "Integer Variables"
+
+#: 01020100.xhp#par_id3146966.41.help.text
+msgid "Integer variables range from -32768 to 32767. If you assign a floating-point value to an integer variable, the decimal places are rounded to the next integer. Integer variables are rapidly calculated in procedures and are suitable for counter variables in loops. An integer variable only requires two bytes of memory. \"%\" is the type-declaration character."
+msgstr "Integer variables range from -32768 to 32767. If you assign a floating-point value to an integer variable, the decimal places are rounded to the next integer. Integer variables are rapidly calculated in procedures and are suitable for counter variables in loops. An integer variable only requires two bytes of memory. \"%\" is the type-declaration character."
+
+#: 01020100.xhp#par_id3153810.43.help.text
+msgid "Dim Variable%"
+msgstr "Dim Variable%"
+
+#: 01020100.xhp#par_id3153556.44.help.text
+msgid "Dim Variable As Integer"
+msgstr "Dim Variable As Integer"
+
+#: 01020100.xhp#hd_id3147546.45.help.text
+msgid "Long Integer Variables"
+msgstr "Long Integer Variables"
+
+#: 01020100.xhp#par_id3151193.46.help.text
+msgid "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character."
+msgstr "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character."
+
+#: 01020100.xhp#par_id3154708.48.help.text
+msgid "Dim Variable&"
+msgstr "Dim Variable&"
+
+#: 01020100.xhp#par_id3156365.49.help.text
+msgid "Dim Variable as Long"
+msgstr "Dim Variable as Long"
+
+#: 01020100.xhp#hd_id7596972.help.text
+msgid "Decimal Variables"
+msgstr "Decimal Variables"
+
+#: 01020100.xhp#par_id2649311.help.text
+msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
+msgstr "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
+
+#: 01020100.xhp#par_id7617114.help.text
+msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
+msgstr "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
+
+#: 01020100.xhp#par_id1593676.help.text
+msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
+msgstr "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
+
+#: 01020100.xhp#hd_id3147500.50.help.text
+msgid "Single Variables"
+msgstr "Single Variables"
+
+#: 01020100.xhp#par_id3153070.51.help.text
+msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
+msgstr "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
+
+#: 01020100.xhp#par_id3149875.52.help.text
+msgid "Dim Variable!"
+msgstr "Dim Variable!"
+
+#: 01020100.xhp#par_id3153302.53.help.text
+msgid "Dim Variable as Single"
+msgstr "Dim Variable as Single"
+
+#: 01020100.xhp#hd_id3155753.54.help.text
+msgid "Double Variables"
+msgstr "Double Variables"
+
+#: 01020100.xhp#par_id3150953.55.help.text
+msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
+msgstr "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
+
+#: 01020100.xhp#par_id3150431.56.help.text
+msgid "Dim Variable#"
+msgstr "Dim Variable#"
+
+#: 01020100.xhp#par_id3154406.57.help.text
+msgid "Dim Variable As Double"
+msgstr "Dim Variable As Double"
+
+#: 01020100.xhp#hd_id3155747.95.help.text
+msgid "Currency Variables"
+msgstr "Currency Variables"
+
+#: 01020100.xhp#par_id3153337.96.help.text
+msgid "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"."
+msgstr "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"."
+
+#: 01020100.xhp#par_id3147296.97.help.text
+msgid "Dim Variable@"
+msgstr "Dim Variable@"
+
+#: 01020100.xhp#par_id3150391.98.help.text
+msgid "Dim Variable As Currency"
+msgstr "Dim Variable As Currency"
+
+#: 01020100.xhp#hd_id3148742.58.help.text
+msgid "String Variables"
+msgstr "String Variables"
+
+#: 01020100.xhp#par_id3151393.59.help.text
+msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgstr "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+
+#: 01020100.xhp#par_id3166467.60.help.text
+msgid "Dim Variable$"
+msgstr "Dim Variable$"
+
+#: 01020100.xhp#par_id3153027.61.help.text
+msgid "Dim Variable As String"
+msgstr "Dim Variable As String"
+
+#: 01020100.xhp#hd_id3150534.62.help.text
+msgid "Boolean Variables"
+msgstr "Boolean Variables"
+
+#: 01020100.xhp#par_id3145632.63.help.text
+msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
+msgstr "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
+
+#: 01020100.xhp#par_id3147615.64.help.text
+msgid "Dim Variable As Boolean"
+msgstr "Dim Variable As Boolean"
+
+#: 01020100.xhp#hd_id3149722.65.help.text
+msgid "Date Variables"
+msgstr "Date Variables"
+
+#: 01020100.xhp#par_id3159116.66.help.text
+msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
+msgstr "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
+
+#: 01020100.xhp#par_id3150462.67.help.text
+msgid "Dim Variable As Date"
+msgstr "Dim Variable As Date"
+
+#: 01020100.xhp#hd_id3148732.68.help.text
+msgid "Initial Variable Values"
+msgstr "Initial Variable Values"
+
+#: 01020100.xhp#par_id3154549.69.help.text
+msgid "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
+msgstr "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
+
+#: 01020100.xhp#par_id3143222.70.help.text
+msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
+msgstr "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
+
+#: 01020100.xhp#par_id3150693.71.help.text
+msgid "<emph>Date variables</emph> are assigned the value 0 internally; equivalent to converting the value to \"0\" with the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function."
+msgstr "<emph>Date variables</emph> are assigned the value 0 internally; equivalent to converting the value to \"0\" with the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function."
+
+#: 01020100.xhp#par_id3154807.72.help.text
+msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+msgstr "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+
+#: 01020100.xhp#hd_id3153936.83.help.text
+msgid "Arrays"
+msgstr "Arrays"
+
+#: 01020100.xhp#par_id3148736.84.help.text
+msgid "$[officename] Basic knows one- or multi-dimensional arrays, defined by a specified variable type. Arrays are suitable for editing lists and tables in programs. Individual elements of an array can be addressed through a numeric index."
+msgstr "$[officename] Basic knows one- or multi-dimensional arrays, defined by a specified variable type. Arrays are suitable for editing lists and tables in programs. Individual elements of an array can be addressed through a numeric index."
+
+#: 01020100.xhp#par_id3149546.85.help.text
+msgid "Arrays <emph>must</emph> be declared with the <emph>Dim</emph> statement. There are several ways to define the index range of an array:"
+msgstr "Arrays <emph>must</emph> be declared with the <emph>Dim</emph> statement. There are several ways to define the index range of an array:"
+
+#: 01020100.xhp#par_id3150143.86.help.text
+msgid "DIM text$(20)"
+msgstr "DIM text$(20)"
+
+#: 01020100.xhp#par_id3154567.136.help.text
+msgid "21 elements numbered from 0 to 20"
+msgstr "21 elements numbered from 0 to 20"
+
+#: 01020100.xhp#par_id3145596.125.help.text
+msgid "DIM text$(5,4)"
+msgstr "DIM text$(5,4)"
+
+#: 01020100.xhp#par_id3154397.137.help.text
+msgid "30 elements (a matrix of 6 x 5 elements)"
+msgstr "30 elements (a matrix of 6 x 5 elements)"
+
+#: 01020100.xhp#par_id3149185.87.help.text
+msgid "DIM text$(5 to 25)"
+msgstr "DIM text$(5 to 25)"
+
+#: 01020100.xhp#par_id3149690.138.help.text
+msgid "21 elements numbered from 5 to 25"
+msgstr "21 elements numbered from 5 to 25"
+
+#: 01020100.xhp#par_id3155950.88.help.text
+msgid "DIM text$(-15 to 5)"
+msgstr "DIM text$(-15 to 5)"
+
+#: 01020100.xhp#par_id3153113.89.help.text
+msgid "21 elements (including 0), numbered from -15 to 5"
+msgstr "21 elements (including 0), numbered from -15 to 5"
+
+#: 01020100.xhp#par_id3153005.90.help.text
+msgid "The index range can include positive as well as negative numbers. "
+msgstr "The index range can include positive as well as negative numbers. "
+
+#: 01020100.xhp#hd_id3154507.91.help.text
+msgid "Constants"
+msgstr "Constants"
+
+#: 01020100.xhp#par_id3156357.92.help.text
+msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
+msgstr "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
+
+#: 01020100.xhp#par_id3153203.93.help.text
+msgctxt "01020100.xhp#par_id3153203.93.help.text"
+msgid "CONST ConstName=Expression"
+msgstr "CONST ConstName=Expression"
+
+#: 03080700.xhp#tit.help.text
+msgid "Expression Signs"
+msgstr "Expression Signs"
+
+#: 03080700.xhp#hd_id3150702.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
+msgstr "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
+
+#: 03080700.xhp#par_id3148668.2.help.text
+msgid "This function returns the algebraic sign of a numeric expression."
+msgstr "This function returns the algebraic sign of a numeric expression."
+
+#: 03020102.xhp#tit.help.text
+msgid "FreeFile Function[Runtime]"
+msgstr "FreeFile Function[Runtime]"
+
+#: 03020102.xhp#bm_id3150400.help.text
+msgid "<bookmark_value>FreeFile function</bookmark_value>"
+msgstr "<bookmark_value>FreeFile function</bookmark_value>"
+
+#: 03020102.xhp#hd_id3150400.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
+
+#: 03020102.xhp#par_id3154366.2.help.text
+msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
+msgstr "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
+
+#: 03020102.xhp#hd_id3150769.3.help.text
+msgctxt "03020102.xhp#hd_id3150769.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020102.xhp#par_id3150869.4.help.text
+msgid "FreeFile"
+msgstr "FreeFile"
+
+#: 03020102.xhp#hd_id3151042.5.help.text
+msgctxt "03020102.xhp#hd_id3151042.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020102.xhp#par_id3150440.6.help.text
+msgctxt "03020102.xhp#par_id3150440.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03020102.xhp#hd_id3148576.7.help.text
+msgctxt "03020102.xhp#hd_id3148576.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020102.xhp#par_id3155854.8.help.text
+msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
+msgstr "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
+
+#: 03020102.xhp#hd_id3159153.9.help.text
+msgctxt "03020102.xhp#hd_id3159153.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020102.xhp#par_id3146120.10.help.text
+msgctxt "03020102.xhp#par_id3146120.10.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub ExampleWorkWithAFile"
+
+#: 03020102.xhp#par_id3154319.11.help.text
+msgctxt "03020102.xhp#par_id3154319.11.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020102.xhp#par_id3151117.12.help.text
+msgctxt "03020102.xhp#par_id3151117.12.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03020102.xhp#par_id3147426.13.help.text
+msgctxt "03020102.xhp#par_id3147426.13.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020102.xhp#par_id3149667.36.help.text
+msgctxt "03020102.xhp#par_id3149667.36.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMsg as String"
+
+#: 03020102.xhp#par_id3145800.14.help.text
+msgctxt "03020102.xhp#par_id3145800.14.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020102.xhp#par_id3147396.15.help.text
+msgctxt "03020102.xhp#par_id3147396.15.help.text"
+msgid "sMsg = \"\""
+msgstr "sMsg = \"\""
+
+#: 03020102.xhp#par_id3154490.16.help.text
+msgctxt "03020102.xhp#par_id3154490.16.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020102.xhp#par_id3151074.17.help.text
+msgctxt "03020102.xhp#par_id3151074.17.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03020102.xhp#par_id3155416.18.help.text
+msgctxt "03020102.xhp#par_id3155416.18.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"First line of text\""
+
+#: 03020102.xhp#par_id3153416.19.help.text
+msgctxt "03020102.xhp#par_id3153416.19.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Another line of text\""
+
+#: 03020102.xhp#par_id3149401.20.help.text
+msgctxt "03020102.xhp#par_id3149401.20.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020102.xhp#par_id3150330.24.help.text
+msgctxt "03020102.xhp#par_id3150330.24.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020102.xhp#par_id3155067.25.help.text
+msgid "Open aFile For Input As #iNumber"
+msgstr "Open aFile For Input As #iNumber"
+
+#: 03020102.xhp#par_id3155443.26.help.text
+msgid "While not eof(#iNumber)"
+msgstr "While not eof(#iNumber)"
+
+#: 03020102.xhp#par_id3153714.27.help.text
+msgctxt "03020102.xhp#par_id3153714.27.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumber, sLine"
+
+#: 03020102.xhp#par_id3148408.28.help.text
+msgctxt "03020102.xhp#par_id3148408.28.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLine <>\"\" then"
+
+#: 03020102.xhp#par_id3156385.29.help.text
+msgctxt "03020102.xhp#par_id3156385.29.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMsg = sMsg & sLine & chr(13)"
+
+#: 03020102.xhp#par_id3145147.31.help.text
+msgctxt "03020102.xhp#par_id3145147.31.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020102.xhp#par_id3153966.32.help.text
+msgctxt "03020102.xhp#par_id3153966.32.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020102.xhp#par_id3155961.33.help.text
+msgctxt "03020102.xhp#par_id3155961.33.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020102.xhp#par_id3149567.37.help.text
+msgctxt "03020102.xhp#par_id3149567.37.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMsg"
+
+#: 03020102.xhp#par_id3146917.34.help.text
+msgctxt "03020102.xhp#par_id3146917.34.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020400.xhp#tit.help.text
+msgid "Managing Files"
+msgstr "Managing Files"
+
+#: 03020400.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
+
+#: 03020400.xhp#par_id3147264.2.help.text
+msgid "The functions and statements for managing files are described here."
+msgstr "The functions and statements for managing files are described here."
+
+#: 03080500.xhp#tit.help.text
+msgid "Integers"
+msgstr "Integers"
+
+#: 03080500.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
+
+#: 03080500.xhp#par_id3156152.2.help.text
+msgid "The following functions round values to integers."
+msgstr "The following functions round values to integers."
+
+#: 03130100.xhp#tit.help.text
+msgid "Beep Statement [Runtime]"
+msgstr "Beep Statement [Runtime]"
+
+#: 03130100.xhp#bm_id3143284.help.text
+msgid "<bookmark_value>Beep statement</bookmark_value>"
+msgstr "<bookmark_value>Beep statement</bookmark_value>"
+
+#: 03130100.xhp#hd_id3143284.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
+
+#: 03130100.xhp#par_id3159201.2.help.text
+msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
+msgstr "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
+
+#: 03130100.xhp#hd_id3153990.3.help.text
+msgctxt "03130100.xhp#hd_id3153990.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03130100.xhp#par_id3147291.4.help.text
+msgid "Beep"
+msgstr "Beep"
+
+#: 03130100.xhp#hd_id3148538.5.help.text
+msgctxt "03130100.xhp#hd_id3148538.5.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03130100.xhp#par_id3149762.6.help.text
+msgid "Sub ExampleBeep"
+msgstr "Sub ExampleBeep"
+
+#: 03130100.xhp#par_id3154285.7.help.text
+msgctxt "03130100.xhp#par_id3154285.7.help.text"
+msgid "beep"
+msgstr "beep"
+
+#: 03130100.xhp#par_id3143270.8.help.text
+msgctxt "03130100.xhp#par_id3143270.8.help.text"
+msgid "beep"
+msgstr "beep"
+
+#: 03130100.xhp#par_id3154142.9.help.text
+msgctxt "03130100.xhp#par_id3154142.9.help.text"
+msgid "beep"
+msgstr "beep"
+
+#: 03130100.xhp#par_id3148943.10.help.text
+msgctxt "03130100.xhp#par_id3148943.10.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090412.xhp#tit.help.text
+msgid "Exit Statement [Runtime]"
+msgstr "Exit Statement [Runtime]"
+
+#: 03090412.xhp#bm_id3152924.help.text
+msgid "<bookmark_value>Exit statement</bookmark_value>"
+msgstr "<bookmark_value>Exit statement</bookmark_value>"
+
+#: 03090412.xhp#hd_id3152924.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
+
+#: 03090412.xhp#par_id3153394.2.help.text
+msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
+msgstr "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
+
+#: 03090412.xhp#hd_id3149763.3.help.text
+msgctxt "03090412.xhp#hd_id3149763.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090412.xhp#par_id3159157.4.help.text
+msgctxt "03090412.xhp#par_id3159157.4.help.text"
+msgid "see Parameters"
+msgstr "see Parameters"
+
+#: 03090412.xhp#hd_id3148943.5.help.text
+msgctxt "03090412.xhp#hd_id3148943.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090412.xhp#par_id3154760.6.help.text
+msgid "<emph>Exit Do</emph>"
+msgstr "<emph>Exit Do</emph>"
+
+#: 03090412.xhp#par_id3147559.7.help.text
+msgid "Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level."
+msgstr "Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level."
+
+#: 03090412.xhp#par_id3150398.8.help.text
+msgid "<emph>Exit For</emph>"
+msgstr "<emph>Exit For</emph>"
+
+#: 03090412.xhp#par_id3148797.9.help.text
+msgid "Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level."
+msgstr "Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level."
+
+#: 03090412.xhp#par_id3147229.10.help.text
+msgid "<emph>Exit Function</emph>"
+msgstr "<emph>Exit Function</emph>"
+
+#: 03090412.xhp#par_id3154685.11.help.text
+msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
+msgstr "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
+
+#: 03090412.xhp#par_id3155132.12.help.text
+msgid "<emph>Exit Sub</emph>"
+msgstr "<emph>Exit Sub</emph>"
+
+#: 03090412.xhp#par_id3149561.13.help.text
+msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
+msgstr "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
+
+#: 03090412.xhp#par_id3153143.14.help.text
+msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
+msgstr "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
+
+#: 03090412.xhp#hd_id3147348.15.help.text
+msgctxt "03090412.xhp#hd_id3147348.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090412.xhp#par_id3151113.16.help.text
+msgctxt "03090412.xhp#par_id3151113.16.help.text"
+msgid "Sub ExampleExit"
+msgstr "Sub ExampleExit"
+
+#: 03090412.xhp#par_id3156283.17.help.text
+msgctxt "03090412.xhp#par_id3156283.17.help.text"
+msgid "Dim sReturn As String"
+msgstr "Dim sReturn As String"
+
+#: 03090412.xhp#par_id3147125.18.help.text
+msgctxt "03090412.xhp#par_id3147125.18.help.text"
+msgid "Dim sListArray(10) as String"
+msgstr "Dim sListArray(10) as String"
+
+#: 03090412.xhp#par_id3151073.19.help.text
+msgctxt "03090412.xhp#par_id3151073.19.help.text"
+msgid "Dim siStep as Single"
+msgstr "Dim siStep as Single"
+
+#: 03090412.xhp#par_id3153158.20.help.text
+msgctxt "03090412.xhp#par_id3153158.20.help.text"
+msgid "For siStep = 0 to 10 REM Fill array with test data"
+msgstr "For siStep = 0 to 10 REM Fill array with test data"
+
+#: 03090412.xhp#par_id3148457.21.help.text
+msgid "sListArray(siStep) = chr(siStep + 65)"
+msgstr "sListArray(siStep) = chr(siStep + 65)"
+
+#: 03090412.xhp#par_id3154492.22.help.text
+msgctxt "03090412.xhp#par_id3154492.22.help.text"
+msgid "msgbox sListArray(siStep)"
+msgstr "msgbox sListArray(siStep)"
+
+#: 03090412.xhp#par_id3154791.23.help.text
+msgctxt "03090412.xhp#par_id3154791.23.help.text"
+msgid "next siStep"
+msgstr "next siStep"
+
+#: 03090412.xhp#par_id3153510.24.help.text
+msgctxt "03090412.xhp#par_id3153510.24.help.text"
+msgid "sReturn = LinSearch(sListArray(), \"B\")"
+msgstr "sReturn = LinSearch(sListArray(), \"B\")"
+
+#: 03090412.xhp#par_id3154513.25.help.text
+msgctxt "03090412.xhp#par_id3154513.25.help.text"
+msgid "Print sReturn"
+msgstr "Print sReturn"
+
+#: 03090412.xhp#par_id3149121.26.help.text
+msgctxt "03090412.xhp#par_id3149121.26.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090412.xhp#par_id3152962.29.help.text
+msgctxt "03090412.xhp#par_id3152962.29.help.text"
+msgid "Function LinSearch( sList(), sItem As String ) as integer"
+msgstr "Function LinSearch( sList(), sItem As String ) as integer"
+
+#: 03090412.xhp#par_id3154755.30.help.text
+msgctxt "03090412.xhp#par_id3154755.30.help.text"
+msgid "dim iCount as Integer"
+msgstr "dim iCount as Integer"
+
+#: 03090412.xhp#par_id3153764.31.help.text
+msgid "REM LinSearch searches a TextArray:sList() for a TextEntry:"
+msgstr "REM LinSearch searches a TextArray:sList() for a TextEntry:"
+
+#: 03090412.xhp#par_id3148995.32.help.text
+msgid "REM Returns the index of the entry or 0 ( Null)"
+msgstr "REM Returns the index of the entry or 0 ( Null)"
+
+#: 03090412.xhp#par_id3156057.33.help.text
+msgctxt "03090412.xhp#par_id3156057.33.help.text"
+msgid "for iCount=1 to Ubound( sList() )"
+msgstr "for iCount=1 to Ubound( sList() )"
+
+#: 03090412.xhp#par_id3159266.34.help.text
+msgctxt "03090412.xhp#par_id3159266.34.help.text"
+msgid "if sList( iCount ) = sItem then"
+msgstr "if sList( iCount ) = sItem then"
+
+#: 03090412.xhp#par_id3149567.35.help.text
+msgid "Exit for REM sItem found"
+msgstr "Exit for REM sItem found"
+
+#: 03090412.xhp#par_id3147343.36.help.text
+msgctxt "03090412.xhp#par_id3147343.36.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03090412.xhp#par_id3155174.37.help.text
+msgctxt "03090412.xhp#par_id3155174.37.help.text"
+msgid "next iCount"
+msgstr "next iCount"
+
+#: 03090412.xhp#par_id3146313.38.help.text
+msgctxt "03090412.xhp#par_id3146313.38.help.text"
+msgid "if iCount = Ubound( sList() ) then iCount = 0"
+msgstr "if iCount = Ubound( sList() ) then iCount = 0"
+
+#: 03090412.xhp#par_id3166448.39.help.text
+msgctxt "03090412.xhp#par_id3166448.39.help.text"
+msgid "LinSearch = iCount"
+msgstr "LinSearch = iCount"
+
+#: 03090412.xhp#par_id3146916.40.help.text
+msgctxt "03090412.xhp#par_id3146916.40.help.text"
+msgid "end function"
+msgstr "end function"
+
+#: 03101120.xhp#tit.help.text
+msgid "DefErr Statement [Runtime]"
+msgstr "DefErr Statement [Runtime]"
+
+#: 03101120.xhp#bm_id8177739.help.text
+msgid "<bookmark_value>DefErr statement</bookmark_value>"
+msgstr "<bookmark_value>DefErr statement</bookmark_value>"
+
+#: 03101120.xhp#par_idN1057D.help.text
+msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
+
+#: 03101120.xhp#par_idN1058D.help.text
+msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
+msgstr "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
+
+#: 03101120.xhp#par_idN10590.help.text
+msgctxt "03101120.xhp#par_idN10590.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101120.xhp#par_idN10594.help.text
+msgctxt "03101120.xhp#par_idN10594.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101120.xhp#par_idN10597.help.text
+msgctxt "03101120.xhp#par_idN10597.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101120.xhp#par_idN1059B.help.text
+msgctxt "03101120.xhp#par_idN1059B.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+
+#: 03101120.xhp#par_idN105A2.help.text
+msgctxt "03101120.xhp#par_idN105A2.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101120.xhp#par_idN105A9.help.text
+msgctxt "03101120.xhp#par_idN105A9.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Keyword:</emph> Default variable type"
+
+#: 03101120.xhp#par_idN105B0.help.text
+msgid "<emph>DefErr:</emph> Error"
+msgstr "<emph>DefErr:</emph> Error"
+
+#: 03101120.xhp#par_idN105B7.help.text
+msgctxt "03101120.xhp#par_idN105B7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101120.xhp#par_idN105BB.help.text
+msgctxt "03101120.xhp#par_idN105BB.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03101120.xhp#par_idN105BE.help.text
+msgctxt "03101120.xhp#par_idN105BE.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101120.xhp#par_idN105C1.help.text
+msgctxt "03101120.xhp#par_idN105C1.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101120.xhp#par_idN105C4.help.text
+msgctxt "03101120.xhp#par_idN105C4.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101120.xhp#par_idN105C7.help.text
+msgctxt "03101120.xhp#par_idN105C7.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101120.xhp#par_idN105CA.help.text
+msgctxt "03101120.xhp#par_idN105CA.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101120.xhp#par_idN105CD.help.text
+msgctxt "03101120.xhp#par_idN105CD.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101120.xhp#par_idN105D0.help.text
+msgctxt "03101120.xhp#par_idN105D0.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101120.xhp#par_idN105D3.help.text
+msgid "DefErr e"
+msgstr "DefErr e"
+
+#: 03101120.xhp#par_idN105D6.help.text
+msgid "Sub ExampleDefErr"
+msgstr "Sub ExampleDefErr"
+
+#: 03101120.xhp#par_idN105D9.help.text
+msgid "eErr=Error REM eErr is an implicit error variable"
+msgstr "eErr=Error REM eErr is an implicit error variable"
+
+#: 03101120.xhp#par_idN105DC.help.text
+msgctxt "03101120.xhp#par_idN105DC.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03101600.xhp#tit.help.text
+msgid "DefLng Statement [Runtime]"
+msgstr "DefLng Statement [Runtime]"
+
+#: 03101600.xhp#bm_id3148538.help.text
+msgid "<bookmark_value>DefLng statement</bookmark_value>"
+msgstr "<bookmark_value>DefLng statement</bookmark_value>"
+
+#: 03101600.xhp#hd_id3148538.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
+
+#: 03101600.xhp#par_id3149514.2.help.text
+msgctxt "03101600.xhp#par_id3149514.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+
+#: 03101600.xhp#hd_id3150504.3.help.text
+msgctxt "03101600.xhp#hd_id3150504.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101600.xhp#par_id3145609.4.help.text
+msgctxt "03101600.xhp#par_id3145609.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101600.xhp#hd_id3154760.5.help.text
+msgctxt "03101600.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101600.xhp#par_id3145069.6.help.text
+msgctxt "03101600.xhp#par_id3145069.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+
+#: 03101600.xhp#par_id3150791.7.help.text
+msgctxt "03101600.xhp#par_id3150791.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101600.xhp#par_id3148798.8.help.text
+msgctxt "03101600.xhp#par_id3148798.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Keyword: </emph>Default variable type"
+
+#: 03101600.xhp#par_id3154686.9.help.text
+msgid "<emph>DefLng:</emph> Long"
+msgstr "<emph>DefLng:</emph> Long"
+
+#: 03101600.xhp#hd_id3153192.10.help.text
+msgctxt "03101600.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101600.xhp#par_id3154124.12.help.text
+msgctxt "03101600.xhp#par_id3154124.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03101600.xhp#par_id3156424.13.help.text
+msgctxt "03101600.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101600.xhp#par_id3147288.14.help.text
+msgctxt "03101600.xhp#par_id3147288.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101600.xhp#par_id3149561.15.help.text
+msgctxt "03101600.xhp#par_id3149561.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101600.xhp#par_id3153092.16.help.text
+msgctxt "03101600.xhp#par_id3153092.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101600.xhp#par_id3148616.17.help.text
+msgctxt "03101600.xhp#par_id3148616.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101600.xhp#par_id3153189.18.help.text
+msgctxt "03101600.xhp#par_id3153189.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101600.xhp#par_id3152576.19.help.text
+msgctxt "03101600.xhp#par_id3152576.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101600.xhp#par_id3146121.21.help.text
+msgid "Sub ExampleDefLng"
+msgstr "Sub ExampleDefLng"
+
+#: 03101600.xhp#par_id3145273.22.help.text
+msgid "lCount=123456789 REM lCount is an implicit long integer variable"
+msgstr "lCount=123456789 REM lCount is an implicit long integer variable"
+
+#: 03101600.xhp#par_id3152596.23.help.text
+msgctxt "03101600.xhp#par_id3152596.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020402.xhp#tit.help.text
+msgid "ChDrive Statement [Runtime]"
+msgstr "ChDrive Statement [Runtime]"
+
+#: 03020402.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>ChDrive statement</bookmark_value>"
+msgstr "<bookmark_value>ChDrive statement</bookmark_value>"
+
+#: 03020402.xhp#hd_id3145068.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
+
+#: 03020402.xhp#par_id3149656.2.help.text
+msgid "Changes the current drive."
+msgstr "Changes the current drive."
+
+#: 03020402.xhp#hd_id3154138.3.help.text
+msgctxt "03020402.xhp#hd_id3154138.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020402.xhp#par_id3154685.4.help.text
+msgid "ChDrive Text As String"
+msgstr "ChDrive Text As String"
+
+#: 03020402.xhp#hd_id3156423.5.help.text
+msgctxt "03020402.xhp#hd_id3156423.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020402.xhp#par_id3145172.6.help.text
+msgid "<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020402.xhp#par_id3145785.7.help.text
+msgid "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement."
+msgstr "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement."
+
+#: 03020402.xhp#hd_id3153188.8.help.text
+msgctxt "03020402.xhp#hd_id3153188.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020402.xhp#par_id3151113.9.help.text
+msgid "Sub ExampleCHDrive"
+msgstr "Sub ExampleCHDrive"
+
+#: 03020402.xhp#par_id3152576.10.help.text
+msgid "ChDrive \"D\" REM Only possible if a drive 'D' exists."
+msgstr "ChDrive \"D\" REM Only possible if a drive 'D' exists."
+
+#: 03020402.xhp#par_id3156441.11.help.text
+msgctxt "03020402.xhp#par_id3156441.11.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030100.xhp#tit.help.text
+msgid "Converting Date Values"
+msgstr "Converting Date Values"
+
+#: 03030100.xhp#hd_id3147573.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
+
+#: 03030100.xhp#par_id3154760.2.help.text
+msgid "The following functions convert date values to calculable numbers and back."
+msgstr "The following functions convert date values to calculable numbers and back."
+
+#: 03103400.xhp#tit.help.text
+msgid "Public Statement [Runtime]"
+msgstr "Public Statement [Runtime]"
+
+#: 03103400.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Public statement</bookmark_value>"
+msgstr "<bookmark_value>Public statement</bookmark_value>"
+
+#: 03103400.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
+
+#: 03103400.xhp#par_id3150669.2.help.text
+msgid "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules."
+msgstr "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules."
+
+#: 03103400.xhp#hd_id3150772.3.help.text
+msgctxt "03103400.xhp#hd_id3150772.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103400.xhp#par_id3155341.4.help.text
+msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+
+#: 03103400.xhp#hd_id3145315.5.help.text
+msgctxt "03103400.xhp#hd_id3145315.5.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103400.xhp#par_id3156024.6.help.text
+msgid "Public iPublicVar As Integer"
+msgstr "Public iPublicVar As Integer"
+
+#: 03103400.xhp#par_id3153896.8.help.text
+msgid "Sub ExamplePublic"
+msgstr "Sub ExamplePublic"
+
+#: 03103400.xhp#par_id3149656.9.help.text
+msgid "iPublicVar = iPublicVar + 1"
+msgstr "iPublicVar = iPublicVar + 1"
+
+#: 03103400.xhp#par_id3150359.10.help.text
+msgid "MsgBox iPublicVar"
+msgstr "MsgBox iPublicVar"
+
+#: 03103400.xhp#par_id3154365.11.help.text
+msgctxt "03103400.xhp#par_id3154365.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070600.xhp#tit.help.text
+msgid "Mod-Operator [Runtime]"
+msgstr "Mod-Operator [Runtime]"
+
+#: 03070600.xhp#bm_id3150669.help.text
+msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
+
+#: 03070600.xhp#hd_id3150669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+
+#: 03070600.xhp#par_id3148686.2.help.text
+msgid "Returns the integer remainder of a division."
+msgstr "Returns the integer remainder of a division."
+
+#: 03070600.xhp#hd_id3146795.3.help.text
+msgctxt "03070600.xhp#hd_id3146795.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03070600.xhp#par_id3147560.4.help.text
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
+
+#: 03070600.xhp#hd_id3149657.5.help.text
+msgctxt "03070600.xhp#hd_id3149657.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03070600.xhp#par_id3153380.6.help.text
+msgctxt "03070600.xhp#par_id3153380.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03070600.xhp#hd_id3154365.7.help.text
+msgctxt "03070600.xhp#hd_id3154365.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03070600.xhp#par_id3145172.8.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgstr "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+
+#: 03070600.xhp#par_id3151042.9.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgstr "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+
+#: 03070600.xhp#hd_id3147287.10.help.text
+msgctxt "03070600.xhp#hd_id3147287.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03070600.xhp#par_id3153770.11.help.text
+msgid "sub ExampleMod"
+msgstr "sub ExampleMod"
+
+#: 03070600.xhp#par_id3161832.12.help.text
+msgid "print 10 mod 2.5 REM returns 0"
+msgstr "print 10 mod 2.5 REM returns 0"
+
+#: 03070600.xhp#par_id3146922.13.help.text
+msgid "print 10 / 2.5 REM returns 4"
+msgstr "print 10 / 2.5 REM returns 4"
+
+#: 03070600.xhp#par_id3145273.14.help.text
+msgid "print 10 mod 5 REM returns 0"
+msgstr "print 10 mod 5 REM returns 0"
+
+#: 03070600.xhp#par_id3150011.15.help.text
+msgid "print 10 / 5 REM returns 2"
+msgstr "print 10 / 5 REM returns 2"
+
+#: 03070600.xhp#par_id3149483.16.help.text
+msgid "print 5 mod 10 REM returns 5"
+msgstr "print 5 mod 10 REM returns 5"
+
+#: 03070600.xhp#par_id3151114.17.help.text
+msgid "print 5 / 10 REM returns 0.5"
+msgstr "print 5 / 10 REM returns 0.5"
+
+#: 03070600.xhp#par_id3154013.18.help.text
+msgctxt "03070600.xhp#par_id3154013.18.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01170103.xhp#tit.help.text
+msgid "Events"
+msgstr "Events"
+
+#: 01170103.xhp#hd_id3155506.1.help.text
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+
+#: 01170103.xhp#par_id3146114.2.help.text
+msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
+msgstr "Define event assignments for the selected control or dialogue. The available events depend on the type of control selected."
+
+#: 01170103.xhp#hd_id3145387.16.help.text
+msgid "When receiving focus"
+msgstr "When receiving focus"
+
+#: 01170103.xhp#par_id3155090.17.help.text
+msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
+
+#: 01170103.xhp#hd_id3152892.18.help.text
+msgid "When losing focus"
+msgstr "When losing focus"
+
+#: 01170103.xhp#par_id3153305.19.help.text
+msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+
+#: 01170103.xhp#hd_id3152896.20.help.text
+msgid "Key pressed"
+msgstr "Key pressed"
+
+#: 01170103.xhp#par_id3148837.21.help.text
+msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
+
+#: 01170103.xhp#hd_id3146869.43.help.text
+msgid "Key released"
+msgstr "Key released"
+
+#: 01170103.xhp#par_id3155267.44.help.text
+msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
+
+#: 01170103.xhp#hd_id3159096.41.help.text
+msgid "Modified"
+msgstr "Modified"
+
+#: 01170103.xhp#par_id3156019.42.help.text
+msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
+
+#: 01170103.xhp#hd_id3144508.10.help.text
+msgid "Text modified"
+msgstr "Text modified"
+
+#: 01170103.xhp#par_id3148608.11.help.text
+msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
+
+#: 01170103.xhp#hd_id3159207.8.help.text
+msgid "Item status changed"
+msgstr "Item status changed"
+
+#: 01170103.xhp#par_id3155097.9.help.text
+msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
+
+#: 01170103.xhp#hd_id3151304.26.help.text
+msgid "Mouse inside"
+msgstr "Mouse inside"
+
+#: 01170103.xhp#par_id3152871.27.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
+
+#: 01170103.xhp#hd_id3146778.30.help.text
+msgid "Mouse moved while key pressed"
+msgstr "Mouse moved while key pressed"
+
+#: 01170103.xhp#par_id3150403.31.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
+
+#: 01170103.xhp#hd_id3150210.32.help.text
+msgid "Mouse moved"
+msgstr "Mouse moved"
+
+#: 01170103.xhp#par_id3149697.33.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+
+#: 01170103.xhp#hd_id3145216.22.help.text
+msgid "Mouse button pressed"
+msgstr "Mouse button pressed"
+
+#: 01170103.xhp#par_id3155914.23.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
+
+#: 01170103.xhp#hd_id3148899.24.help.text
+msgid "Mouse button released"
+msgstr "Mouse button released"
+
+#: 01170103.xhp#par_id3153812.25.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
+
+#: 01170103.xhp#hd_id3153556.28.help.text
+msgid "Mouse outside"
+msgstr "Mouse outside"
+
+#: 01170103.xhp#par_id3153013.29.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+
+#: 01170103.xhp#hd_id3155759.45.help.text
+msgid "While adjusting"
+msgstr "While adjusting"
+
+#: 01170103.xhp#par_id3156364.46.help.text
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
+
+#: 03110100.xhp#tit.help.text
+msgid "Comparison Operators [Runtime]"
+msgstr "Comparison Operators [Runtime]"
+
+#: 03110100.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+msgstr "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+
+#: 03110100.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
+
+#: 03110100.xhp#par_id3156042.2.help.text
+msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
+msgstr "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
+
+#: 03110100.xhp#hd_id3147291.3.help.text
+msgctxt "03110100.xhp#hd_id3147291.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03110100.xhp#par_id3149177.4.help.text
+msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
+msgstr "Result = Expression1 { = | < | > | <= | >= } Expression2"
+
+#: 03110100.xhp#hd_id3145316.5.help.text
+msgctxt "03110100.xhp#hd_id3145316.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03110100.xhp#par_id3147573.6.help.text
+msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgstr "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+
+#: 03110100.xhp#par_id3148686.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
+msgstr "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
+
+#: 03110100.xhp#hd_id3147531.8.help.text
+msgid "Comparison operators"
+msgstr "Comparison operators"
+
+#: 03110100.xhp#par_id3147265.9.help.text
+msgid "= : Equal to"
+msgstr "= : Equal to"
+
+#: 03110100.xhp#par_id3154924.10.help.text
+msgid "< : Less than"
+msgstr "< : Less than"
+
+#: 03110100.xhp#par_id3146795.11.help.text
+msgid "> : Greater than"
+msgstr "> : Greater than"
+
+#: 03110100.xhp#par_id3150541.12.help.text
+msgid "<= : Less than or equal to"
+msgstr "<= : Less than or equal to"
+
+#: 03110100.xhp#par_id3150400.13.help.text
+msgid ">= : Greater than or equal to"
+msgstr ">= : Greater than or equal to"
+
+#: 03110100.xhp#par_id3148797.14.help.text
+msgid "<> : Not equal to"
+msgstr "<> : Not equal to"
+
+#: 03110100.xhp#hd_id3154686.15.help.text
+msgctxt "03110100.xhp#hd_id3154686.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03110100.xhp#par_id3153969.16.help.text
+msgid "Sub ExampleUnequal"
+msgstr "Sub ExampleUnequal"
+
+#: 03110100.xhp#par_id3159151.17.help.text
+msgid "DIM sFile As String"
+msgstr "DIM sFile As String"
+
+#: 03110100.xhp#par_id3154909.18.help.text
+msgid "DIM sRoot As String REM ' Root directory for file in and output"
+msgstr "DIM sRoot As String REM ' Root directory for file in and output"
+
+#: 03110100.xhp#par_id3150767.19.help.text
+msgid "sRoot = \"c:\\\""
+msgstr "sRoot = \"c:\\\""
+
+#: 03110100.xhp#par_id3154125.20.help.text
+msgid "sFile = Dir$( sRoot ,22)"
+msgstr "sFile = Dir$( sRoot ,22)"
+
+#: 03110100.xhp#par_id3150440.21.help.text
+msgctxt "03110100.xhp#par_id3150440.21.help.text"
+msgid "If sFile <> \"\" Then"
+msgstr "If sFile <> \"\" Then"
+
+#: 03110100.xhp#par_id3147288.22.help.text
+msgctxt "03110100.xhp#par_id3147288.22.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03110100.xhp#par_id3150010.23.help.text
+msgid "Msgbox sFile"
+msgstr "Msgbox sFile"
+
+#: 03110100.xhp#par_id3153727.24.help.text
+msgctxt "03110100.xhp#par_id3153727.24.help.text"
+msgid "sFile = Dir$"
+msgstr "sFile = Dir$"
+
+#: 03110100.xhp#par_id3149664.25.help.text
+msgctxt "03110100.xhp#par_id3149664.25.help.text"
+msgid "Loop Until sFile = \"\""
+msgstr "Loop Until sFile = \"\""
+
+#: 03110100.xhp#par_id3146986.26.help.text
+msgctxt "03110100.xhp#par_id3146986.26.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03110100.xhp#par_id3153952.27.help.text
+msgctxt "03110100.xhp#par_id3153952.27.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03080104.xhp#tit.help.text
+msgid "Tan Function [Runtime]"
+msgstr "Tan Function [Runtime]"
+
+#: 03080104.xhp#bm_id3148550.help.text
+msgid "<bookmark_value>Tan function</bookmark_value>"
+msgstr "<bookmark_value>Tan function</bookmark_value>"
+
+#: 03080104.xhp#hd_id3148550.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
+
+#: 03080104.xhp#par_id3148663.2.help.text
+msgid "Determines the tangent of an angle. The angle is specified in radians."
+msgstr "Determines the tangent of an angle. The angle is specified in radians."
+
+#: 03080104.xhp#par_id3153379.3.help.text
+msgid "Using the angle Alpha, the Tan Function calculates the ratio of the length of the side opposite the angle to the length of the side adjacent to the angle in a right-angled triangle."
+msgstr "Using the angle Alpha, the Tan Function calculates the ratio of the length of the side opposite the angle to the length of the side adjacent to the angle in a right-angled triangle."
+
+#: 03080104.xhp#par_id3154366.4.help.text
+msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
+msgstr "Tan(Alpha) = side opposite the angle/side adjacent to angle"
+
+#: 03080104.xhp#hd_id3145174.5.help.text
+msgctxt "03080104.xhp#hd_id3145174.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080104.xhp#par_id3151042.6.help.text
+msgid "Tan (Number)"
+msgstr "Tan (Number)"
+
+#: 03080104.xhp#hd_id3156214.7.help.text
+msgctxt "03080104.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080104.xhp#par_id3156281.8.help.text
+msgctxt "03080104.xhp#par_id3156281.8.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080104.xhp#hd_id3155132.9.help.text
+msgctxt "03080104.xhp#hd_id3155132.9.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080104.xhp#par_id3145786.10.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
+msgstr "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
+
+#: 03080104.xhp#par_id3153728.11.help.text
+msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
+msgstr "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
+
+#: 03080104.xhp#par_id3155414.12.help.text
+msgid "degrees=(radiant*180)/Pi"
+msgstr "degrees=(radiant*180)/Pi"
+
+#: 03080104.xhp#par_id3146975.13.help.text
+msgid "radiant=(degrees*Pi)/180"
+msgstr "radiant=(degrees*Pi)/180"
+
+#: 03080104.xhp#par_id3147434.14.help.text
+msgctxt "03080104.xhp#par_id3147434.14.help.text"
+msgid "Pi is approximately 3.141593."
+msgstr "Pi is approximately 3.141593."
+
+#: 03080104.xhp#hd_id3149483.15.help.text
+msgctxt "03080104.xhp#hd_id3149483.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080104.xhp#par_id3148646.16.help.text
+msgctxt "03080104.xhp#par_id3148646.16.help.text"
+msgid "REM In this example, the following entry is possible for a right-angled triangle:"
+msgstr "REM In this example, the following entry is possible for a right-angled triangle:"
+
+#: 03080104.xhp#par_id3150012.17.help.text
+msgid "REM The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
+msgstr "REM The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
+
+#: 03080104.xhp#par_id3151115.18.help.text
+msgid "Sub ExampleTangens"
+msgstr "Sub ExampleTangens"
+
+#: 03080104.xhp#par_id3153158.19.help.text
+msgid "REM Pi = 3.1415926 is a pre-defined variable"
+msgstr "REM Pi = 3.1415926 is a pre-defined variable"
+
+#: 03080104.xhp#par_id3145800.20.help.text
+msgctxt "03080104.xhp#par_id3145800.20.help.text"
+msgid "Dim d1 as Double"
+msgstr "Dim d1 as Double"
+
+#: 03080104.xhp#par_id3150417.21.help.text
+msgctxt "03080104.xhp#par_id3150417.21.help.text"
+msgid "Dim dAlpha as Double"
+msgstr "Dim dAlpha as Double"
+
+#: 03080104.xhp#par_id3145252.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
+msgstr "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
+
+#: 03080104.xhp#par_id3149582.23.help.text
+msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgstr "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+
+#: 03080104.xhp#par_id3154016.24.help.text
+msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgstr "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+
+#: 03080104.xhp#par_id3154731.25.help.text
+msgctxt "03080104.xhp#par_id3154731.25.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030104.xhp#tit.help.text
+msgid "Month Function [Runtime]"
+msgstr "Month Function [Runtime]"
+
+#: 03030104.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>Month function</bookmark_value>"
+msgstr "<bookmark_value>Month function</bookmark_value>"
+
+#: 03030104.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
+
+#: 03030104.xhp#par_id3148550.2.help.text
+msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
+msgstr "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
+
+#: 03030104.xhp#hd_id3145068.3.help.text
+msgctxt "03030104.xhp#hd_id3145068.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030104.xhp#par_id3150398.4.help.text
+msgid "Month (Number)"
+msgstr "Month (Number)"
+
+#: 03030104.xhp#hd_id3154366.5.help.text
+msgctxt "03030104.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030104.xhp#par_id3154125.6.help.text
+msgctxt "03030104.xhp#par_id3154125.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03030104.xhp#hd_id3150768.7.help.text
+msgctxt "03030104.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030104.xhp#par_id3156423.8.help.text
+msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
+msgstr "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
+
+#: 03030104.xhp#par_id3153770.9.help.text
+msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
+msgstr "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
+
+#: 03030104.xhp#par_id3147426.10.help.text
+msgid "Print Month(DateSerial(1994, 12, 20))"
+msgstr "Print Month(DateSerial(1994, 12, 20))"
+
+#: 03030104.xhp#par_id3145366.11.help.text
+msgctxt "03030104.xhp#par_id3145366.11.help.text"
+msgid "returns the value 12."
+msgstr "returns the value 12."
+
+#: 03030104.xhp#hd_id3146923.12.help.text
+msgctxt "03030104.xhp#hd_id3146923.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030104.xhp#par_id3156442.13.help.text
+msgid "Sub ExampleMonth"
+msgstr "Sub ExampleMonth"
+
+#: 03030104.xhp#par_id3149664.14.help.text
+msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+msgstr "MsgBox \"\" & Month(Now) ,64,\"The current month\""
+
+#: 03030104.xhp#par_id3150012.15.help.text
+msgctxt "03030104.xhp#par_id3150012.15.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03030102.xhp#tit.help.text
+msgid "DateValue Function [Runtime]"
+msgstr "DateValue Function [Runtime]"
+
+#: 03030102.xhp#bm_id3156344.help.text
+msgid "<bookmark_value>DateValue function</bookmark_value>"
+msgstr "<bookmark_value>DateValue function</bookmark_value>"
+
+#: 03030102.xhp#hd_id3156344.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
+
+#: 03030102.xhp#par_id3150542.2.help.text
+msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
+msgstr "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
+
+#: 03030102.xhp#hd_id3148799.3.help.text
+msgctxt "03030102.xhp#hd_id3148799.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030102.xhp#par_id3154910.4.help.text
+msgid "DateValue [(date)]"
+msgstr "DateValue [(date)]"
+
+#: 03030102.xhp#hd_id3150870.5.help.text
+msgctxt "03030102.xhp#hd_id3150870.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030102.xhp#par_id3153194.6.help.text
+msgctxt "03030102.xhp#par_id3153194.6.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 03030102.xhp#hd_id3153969.7.help.text
+msgctxt "03030102.xhp#hd_id3153969.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030102.xhp#par_id3153770.8.help.text
+msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
+msgstr "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
+
+#: 03030102.xhp#par_id3153189.22.help.text
+msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
+msgstr "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
+
+#: 03030102.xhp#par_id3146974.23.help.text
+msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
+msgstr "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
+
+#: 03030102.xhp#hd_id3153142.24.help.text
+msgctxt "03030102.xhp#hd_id3153142.24.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030102.xhp#par_id3155412.25.help.text
+msgid "Sub ExampleDateValue"
+msgstr "Sub ExampleDateValue"
+
+#: 03030102.xhp#par_id3153363.26.help.text
+msgid "msgbox DateValue(\"12/02/1997\")"
+msgstr "msgbox DateValue(\"12/02/1997\")"
+
+#: 03030102.xhp#par_id3149262.27.help.text
+msgctxt "03030102.xhp#par_id3149262.27.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03101300.xhp#tit.help.text
+msgid "DefDate Statement [Runtime]"
+msgstr "DefDate Statement [Runtime]"
+
+#: 03101300.xhp#bm_id3150504.help.text
+msgid "<bookmark_value>DefDate statement</bookmark_value>"
+msgstr "<bookmark_value>DefDate statement</bookmark_value>"
+
+#: 03101300.xhp#hd_id3150504.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
+
+#: 03101300.xhp#par_id3145069.2.help.text
+msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
+msgstr "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
+
+#: 03101300.xhp#hd_id3154758.3.help.text
+msgctxt "03101300.xhp#hd_id3154758.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101300.xhp#par_id3148664.4.help.text
+msgctxt "03101300.xhp#par_id3148664.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101300.xhp#hd_id3150541.5.help.text
+msgctxt "03101300.xhp#hd_id3150541.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101300.xhp#par_id3156709.6.help.text
+msgctxt "03101300.xhp#par_id3156709.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+
+#: 03101300.xhp#par_id3150869.7.help.text
+msgctxt "03101300.xhp#par_id3150869.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101300.xhp#par_id3145171.8.help.text
+msgctxt "03101300.xhp#par_id3145171.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Keyword:</emph> Default variable type"
+
+#: 03101300.xhp#par_id3150767.9.help.text
+msgid "<emph>DefDate:</emph> Date"
+msgstr "<emph>DefDate:</emph> Date"
+
+#: 03101300.xhp#hd_id3153768.10.help.text
+msgctxt "03101300.xhp#hd_id3153768.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101300.xhp#par_id3145785.12.help.text
+msgctxt "03101300.xhp#par_id3145785.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03101300.xhp#par_id3146923.13.help.text
+msgctxt "03101300.xhp#par_id3146923.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101300.xhp#par_id3155412.14.help.text
+msgctxt "03101300.xhp#par_id3155412.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101300.xhp#par_id3153726.15.help.text
+msgctxt "03101300.xhp#par_id3153726.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101300.xhp#par_id3147435.16.help.text
+msgctxt "03101300.xhp#par_id3147435.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101300.xhp#par_id3153188.17.help.text
+msgctxt "03101300.xhp#par_id3153188.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101300.xhp#par_id3153143.18.help.text
+msgctxt "03101300.xhp#par_id3153143.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101300.xhp#par_id3150010.19.help.text
+msgctxt "03101300.xhp#par_id3150010.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101300.xhp#par_id3149263.21.help.text
+msgid "Sub ExampleDefDate"
+msgstr "Sub ExampleDefDate"
+
+#: 03101300.xhp#par_id3152462.22.help.text
+msgid "tDate=Date REM tDate is an implicit date variable"
+msgstr "tDate=Date REM tDate is an implicit date variable"
+
+#: 03101300.xhp#par_id3149664.23.help.text
+msgctxt "03101300.xhp#par_id3149664.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03010302.xhp#tit.help.text
+msgid "Green Function [Runtime]"
+msgstr "Green Function [Runtime]"
+
+#: 03010302.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>Green function</bookmark_value>"
+msgstr "<bookmark_value>Green function</bookmark_value>"
+
+#: 03010302.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
+
+#: 03010302.xhp#par_id3153361.2.help.text
+msgid "Returns the Green component of the given color code."
+msgstr "Returns the Green component of the given colour code."
+
+#: 03010302.xhp#hd_id3154140.3.help.text
+msgctxt "03010302.xhp#hd_id3154140.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010302.xhp#par_id3153969.4.help.text
+msgid "Green (Color As Long)"
+msgstr "Green (Color As Long)"
+
+#: 03010302.xhp#hd_id3154124.5.help.text
+msgctxt "03010302.xhp#hd_id3154124.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03010302.xhp#par_id3153194.6.help.text
+msgctxt "03010302.xhp#par_id3153194.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03010302.xhp#hd_id3154909.7.help.text
+msgctxt "03010302.xhp#hd_id3154909.7.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010302.xhp#par_id3153770.8.help.text
+msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
+msgstr "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">colour code</link> for which to return the Green component."
+
+#: 03010302.xhp#hd_id3149664.9.help.text
+msgctxt "03010302.xhp#hd_id3149664.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010302.xhp#par_id3156442.10.help.text
+msgctxt "03010302.xhp#par_id3156442.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub ExampleColour"
+
+#: 03010302.xhp#par_id3146974.11.help.text
+msgctxt "03010302.xhp#par_id3146974.11.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03010302.xhp#par_id3145750.12.help.text
+msgctxt "03010302.xhp#par_id3145750.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr "lVar = rgb(128,0,200)"
+
+#: 03010302.xhp#par_id3151117.13.help.text
+msgid "msgbox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
+msgstr "msgbox \"The colour \" & lVar & \" contains the components:\" & Chr(13) &_"
+
+#: 03010302.xhp#par_id3153951.14.help.text
+msgid "\"red = \" & red(lVar) & Chr(13)&_"
+msgstr "\"red = \" & red(lVar) & Chr(13)&_"
+
+#: 03010302.xhp#par_id3152462.15.help.text
+msgid "\"green = \" & green(lVar) & Chr(13)&_"
+msgstr "\"green = \" & green(lVar) & Chr(13)&_"
+
+#: 03010302.xhp#par_id3154730.16.help.text
+msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colours\""
+
+#: 03010302.xhp#par_id3144764.17.help.text
+msgctxt "03010302.xhp#par_id3144764.17.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03131000.xhp#tit.help.text
+msgid "GetSolarVersion Function [Runtime]"
+msgstr "GetSolarVersion Function [Runtime]"
+
+#: 03131000.xhp#bm_id3157898.help.text
+msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
+msgstr "<bookmark_value>GetSolarVersion function</bookmark_value>"
+
+#: 03131000.xhp#hd_id3157898.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
+
+#: 03131000.xhp#par_id3152801.2.help.text
+msgid "Returns the internal number of the current $[officename] version."
+msgstr "Returns the internal number of the current $[officename] version."
+
+#: 03131000.xhp#hd_id3153311.3.help.text
+msgctxt "03131000.xhp#hd_id3153311.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03131000.xhp#par_id3155388.4.help.text
+msgid "s = GetSolarVersion"
+msgstr "s = GetSolarVersion"
+
+#: 03131000.xhp#hd_id3149514.5.help.text
+msgctxt "03131000.xhp#hd_id3149514.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03131000.xhp#par_id3148685.6.help.text
+msgctxt "03131000.xhp#par_id3148685.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03131000.xhp#hd_id3143270.7.help.text
+msgctxt "03131000.xhp#hd_id3143270.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03131000.xhp#par_id3148473.8.help.text
+msgid "Sub ExampleGetSolarVersion"
+msgstr "Sub ExampleGetSolarVersion"
+
+#: 03131000.xhp#par_id3156024.9.help.text
+msgid "Dim sSep As String"
+msgstr "Dim sSep As String"
+
+#: 03131000.xhp#par_id3159414.10.help.text
+msgid "sSep = GetSolarVersion"
+msgstr "sSep = GetSolarVersion"
+
+#: 03131000.xhp#par_id3148947.11.help.text
+msgid "MsgBox sSep,64,\"Version number of the solar technology\""
+msgstr "MsgBox sSep,64,\"Version number of the solar technology\""
+
+#: 03131000.xhp#par_id3156344.12.help.text
+msgctxt "03131000.xhp#par_id3156344.12.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080801.xhp#tit.help.text
+msgid "Hex Function [Runtime]"
+msgstr "Hex Function [Runtime]"
+
+#: 03080801.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Hex function</bookmark_value>"
+msgstr "<bookmark_value>Hex function</bookmark_value>"
+
+#: 03080801.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
+
+#: 03080801.xhp#par_id3145136.2.help.text
+msgid "Returns a string that represents the hexadecimal value of a number."
+msgstr "Returns a string that represents the hexadecimal value of a number."
+
+#: 03080801.xhp#hd_id3147573.3.help.text
+msgctxt "03080801.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080801.xhp#par_id3150771.4.help.text
+msgid "Hex (Number)"
+msgstr "Hex (Number)"
+
+#: 03080801.xhp#hd_id3147530.5.help.text
+msgctxt "03080801.xhp#hd_id3147530.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080801.xhp#par_id3159414.6.help.text
+msgctxt "03080801.xhp#par_id3159414.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03080801.xhp#hd_id3156344.7.help.text
+msgctxt "03080801.xhp#hd_id3156344.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080801.xhp#par_id3148947.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+msgstr "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+
+#: 03080801.xhp#hd_id3154365.9.help.text
+msgctxt "03080801.xhp#hd_id3154365.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080801.xhp#par_id3145420.29.help.text
+msgid "Sub ExampleHex"
+msgstr "Sub ExampleHex"
+
+#: 03080801.xhp#par_id3156214.30.help.text
+msgid "REM uses BasicFormulas in $[officename] Calc"
+msgstr "REM uses BasicFormulas in $[officename] Calc"
+
+#: 03080801.xhp#par_id3153970.31.help.text
+msgid "Dim a2, b2, c2 as String"
+msgstr "Dim a2, b2, c2 as String"
+
+#: 03080801.xhp#par_id3154909.32.help.text
+msgid "a2 = \"&H3E8\""
+msgstr "a2 = \"&H3E8\""
+
+#: 03080801.xhp#par_id3148674.33.help.text
+msgid "b2 = Hex2Int(a2)"
+msgstr "b2 = Hex2Int(a2)"
+
+#: 03080801.xhp#par_id3155132.34.help.text
+msgid "MsgBox b2"
+msgstr "MsgBox b2"
+
+#: 03080801.xhp#par_id3150440.35.help.text
+msgid "c2 = Int2Hex(b2)"
+msgstr "c2 = Int2Hex(b2)"
+
+#: 03080801.xhp#par_id3147427.36.help.text
+msgid "MsgBox c2"
+msgstr "MsgBox c2"
+
+#: 03080801.xhp#par_id3147435.37.help.text
+msgctxt "03080801.xhp#par_id3147435.37.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080801.xhp#par_id3148645.19.help.text
+msgid "Function Hex2Int( sHex As String ) As Long"
+msgstr "Function Hex2Int( sHex As String ) As Long"
+
+#: 03080801.xhp#par_id3149262.20.help.text
+msgid "REM Returns a Long-Integer from a hexadecimal value."
+msgstr "REM Returns a Long-Integer from a hexadecimal value."
+
+#: 03080801.xhp#par_id3148616.21.help.text
+msgid "Hex2Int = clng( sHex )"
+msgstr "Hex2Int = clng( sHex )"
+
+#: 03080801.xhp#par_id3153952.22.help.text
+msgctxt "03080801.xhp#par_id3153952.22.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03080801.xhp#par_id3146984.24.help.text
+msgid "Function Int2Hex( iLong As Long) As String"
+msgstr "Function Int2Hex( iLong As Long) As String"
+
+#: 03080801.xhp#par_id3147215.25.help.text
+msgid "REM Calculates a hexadecimal value in Integer."
+msgstr "REM Calculates a hexadecimal value in Integer."
+
+#: 03080801.xhp#par_id3148575.26.help.text
+msgid "Int2Hex = \"&H\" & Hex( iLong )"
+msgstr "Int2Hex = \"&H\" & Hex( iLong )"
+
+#: 03080801.xhp#par_id3151073.27.help.text
+msgctxt "03080801.xhp#par_id3151073.27.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03020406.xhp#tit.help.text
+msgid "FileCopy Statement [Runtime]"
+msgstr "FileCopy Statement [Runtime]"
+
+#: 03020406.xhp#bm_id3154840.help.text
+msgid "<bookmark_value>FileCopy statement</bookmark_value>"
+msgstr "<bookmark_value>FileCopy statement</bookmark_value>"
+
+#: 03020406.xhp#hd_id3154840.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
+
+#: 03020406.xhp#par_id3149497.2.help.text
+msgid "Copies a file."
+msgstr "Copies a file."
+
+#: 03020406.xhp#hd_id3147443.3.help.text
+msgctxt "03020406.xhp#hd_id3147443.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020406.xhp#par_id3146957.4.help.text
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr "FileCopy TextFrom As String, TextTo As String"
+
+#: 03020406.xhp#hd_id3153825.5.help.text
+msgctxt "03020406.xhp#hd_id3153825.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020406.xhp#par_id3155390.6.help.text
+msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020406.xhp#par_id3150669.7.help.text
+msgid "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
+msgstr "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
+
+#: 03020406.xhp#par_id3150791.8.help.text
+msgid "You can only use the FileCopy statement to copy files that are not opened."
+msgstr "You can only use the FileCopy statement to copy files that are not opened."
+
+#: 03020406.xhp#hd_id3125863.9.help.text
+msgctxt "03020406.xhp#hd_id3125863.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020406.xhp#par_id3150869.10.help.text
+msgid "Sub ExampleFilecopy"
+msgstr "Sub ExampleFilecopy"
+
+#: 03020406.xhp#par_id3154685.11.help.text
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\Temp\\Autoexec.sav\""
+msgstr "Filecopy \"c:\\autoexec.bat\", \"c:\\Temp\\Autoexec.sav\""
+
+#: 03020406.xhp#par_id3154123.12.help.text
+msgctxt "03020406.xhp#par_id3154123.12.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03080400.xhp#tit.help.text
+msgid "Square Root Calculation"
+msgstr "Square Root Calculation"
+
+#: 03080400.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
+msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
+
+#: 03080400.xhp#par_id3159414.2.help.text
+msgid "Use this function to calculate square roots."
+msgstr "Use this function to calculate square roots."
+
+#: 03080201.xhp#tit.help.text
+msgid "Exp Function [Runtime]"
+msgstr "Exp Function [Runtime]"
+
+#: 03080201.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Exp function</bookmark_value>"
+msgstr "<bookmark_value>Exp function</bookmark_value>"
+
+#: 03080201.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
+
+#: 03080201.xhp#par_id3155555.2.help.text
+msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+msgstr "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+
+#: 03080201.xhp#hd_id3150984.3.help.text
+msgctxt "03080201.xhp#hd_id3150984.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080201.xhp#par_id3145315.4.help.text
+msgid "Exp (Number)"
+msgstr "Exp (Number)"
+
+#: 03080201.xhp#hd_id3154347.5.help.text
+msgctxt "03080201.xhp#hd_id3154347.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080201.xhp#par_id3149670.6.help.text
+msgctxt "03080201.xhp#par_id3149670.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080201.xhp#hd_id3154760.7.help.text
+msgctxt "03080201.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080201.xhp#par_id3150793.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values."
+msgstr "<emph>Number:</emph> Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values."
+
+#: 03080201.xhp#hd_id3156280.9.help.text
+msgctxt "03080201.xhp#hd_id3156280.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080201.xhp#par_id3153193.10.help.text
+msgctxt "03080201.xhp#par_id3153193.10.help.text"
+msgid "Sub ExampleLogExp"
+msgstr "Sub ExampleLogExp"
+
+#: 03080201.xhp#par_id3125864.11.help.text
+msgid "Dim dValue as Double"
+msgstr "Dim dValue as Double"
+
+#: 03080201.xhp#par_id3145172.12.help.text
+msgid "const b1=12.345e12"
+msgstr "const b1=12.345e12"
+
+#: 03080201.xhp#par_id3159254.13.help.text
+msgid "const b2=1.345e34"
+msgstr "const b2=1.345e34"
+
+#: 03080201.xhp#par_id3147287.14.help.text
+msgid "dValue=Exp( Log(b1)+Log(b2) )"
+msgstr "dValue=Exp( Log(b1)+Log(b2) )"
+
+#: 03080201.xhp#par_id3161832.15.help.text
+msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
+msgstr "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
+
+#: 03080201.xhp#par_id3151112.16.help.text
+msgctxt "03080201.xhp#par_id3151112.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03104100.xhp#tit.help.text
+msgid "Optional (in Function Statement) [Runtime]"
+msgstr "Optional (in Function Statement) [Runtime]"
+
+#: 03104100.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Optional function</bookmark_value>"
+msgstr "<bookmark_value>Optional function</bookmark_value>"
+
+#: 03104100.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
+
+#: 03104100.xhp#par_id3143267.2.help.text
+msgid "Allows you to define parameters that are passed to a function as optional."
+msgstr "Allows you to define parameters that are passed to a function as optional."
+
+#: 03104100.xhp#par_id3155419.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+
+#: 03104100.xhp#hd_id3153824.4.help.text
+msgctxt "03104100.xhp#hd_id3153824.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03104100.xhp#par_id3159157.5.help.text
+msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+msgstr "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+
+#: 03104100.xhp#hd_id3145610.7.help.text
+msgctxt "03104100.xhp#hd_id3145610.7.help.text"
+msgid "Examples:"
+msgstr "Examples:"
+
+#: 03104100.xhp#par_id3154347.8.help.text
+msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgstr "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+
+#: 03104100.xhp#par_id3146795.9.help.text
+msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+msgstr "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+
+#: 03104100.xhp#par_id3153897.10.help.text
+msgctxt "03104100.xhp#par_id3153897.10.help.text"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+
+#: 03020202.xhp#tit.help.text
+msgid "Input# Statement [Runtime]"
+msgstr "Input# Statement [Runtime]"
+
+#: 03020202.xhp#bm_id3154908.help.text
+msgid "<bookmark_value>Input statement</bookmark_value>"
+msgstr "<bookmark_value>Input statement</bookmark_value>"
+
+#: 03020202.xhp#hd_id3154908.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
+
+#: 03020202.xhp#par_id3156424.2.help.text
+msgid "Reads data from an open sequential file."
+msgstr "Reads data from an open sequential file."
+
+#: 03020202.xhp#hd_id3125863.3.help.text
+msgctxt "03020202.xhp#hd_id3125863.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020202.xhp#par_id3150440.4.help.text
+msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgstr "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+
+#: 03020202.xhp#hd_id3146121.5.help.text
+msgctxt "03020202.xhp#hd_id3146121.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020202.xhp#par_id3145749.6.help.text
+msgid "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
+msgstr "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
+
+#: 03020202.xhp#par_id3150011.7.help.text
+msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
+msgstr "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
+
+#: 03020202.xhp#par_id3159153.8.help.text
+msgid "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
+msgstr "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
+
+#: 03020202.xhp#par_id3146984.9.help.text
+msgid "Data and data types in the opened file must appear in the same order as the variables that are passed in the \"var\" parameter. If you assign non-numeric values to a numeric variable, \"var\" is assigned a value of \"0\"."
+msgstr "Data and data types in the opened file must appear in the same order as the variables that are passed in the \"var\" parameter. If you assign non-numeric values to a numeric variable, \"var\" is assigned a value of \"0\"."
+
+#: 03020202.xhp#par_id3156442.10.help.text
+msgid "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
+msgstr "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
+
+#: 03020202.xhp#par_id3147349.11.help.text
+msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
+msgstr "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
+
+#: 03020202.xhp#hd_id3152578.12.help.text
+msgctxt "03020202.xhp#hd_id3152578.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020202.xhp#par_id3144765.13.help.text
+msgctxt "03020202.xhp#par_id3144765.13.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub ExampleWorkWithAFile"
+
+#: 03020202.xhp#par_id3145799.14.help.text
+msgctxt "03020202.xhp#par_id3145799.14.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020202.xhp#par_id3145252.15.help.text
+msgctxt "03020202.xhp#par_id3145252.15.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03020202.xhp#par_id3149410.16.help.text
+msgctxt "03020202.xhp#par_id3149410.16.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020202.xhp#par_id3149959.39.help.text
+msgctxt "03020202.xhp#par_id3149959.39.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMsg as String"
+
+#: 03020202.xhp#par_id3153417.17.help.text
+msgctxt "03020202.xhp#par_id3153417.17.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020202.xhp#par_id3150752.19.help.text
+msgctxt "03020202.xhp#par_id3150752.19.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020202.xhp#par_id3153707.20.help.text
+msgctxt "03020202.xhp#par_id3153707.20.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03020202.xhp#par_id3150321.21.help.text
+msgctxt "03020202.xhp#par_id3150321.21.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"This is a line of text\""
+
+#: 03020202.xhp#par_id3154756.22.help.text
+msgctxt "03020202.xhp#par_id3154756.22.help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumber, \"This is another line of text\""
+
+#: 03020202.xhp#par_id3148408.23.help.text
+msgctxt "03020202.xhp#par_id3148408.23.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020202.xhp#par_id3155937.27.help.text
+msgctxt "03020202.xhp#par_id3155937.27.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020202.xhp#par_id3154702.28.help.text
+msgctxt "03020202.xhp#par_id3154702.28.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aFile For Input As iNumber"
+
+#: 03020202.xhp#par_id3155959.29.help.text
+msgctxt "03020202.xhp#par_id3155959.29.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumber)"
+
+#: 03020202.xhp#par_id3145232.30.help.text
+msgctxt "03020202.xhp#par_id3145232.30.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumber, sLine"
+
+#: 03020202.xhp#par_id3147345.31.help.text
+msgctxt "03020202.xhp#par_id3147345.31.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLine <>\"\" then"
+
+#: 03020202.xhp#par_id3150298.32.help.text
+msgctxt "03020202.xhp#par_id3150298.32.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMsg = sMsg & sLine & chr(13)"
+
+#: 03020202.xhp#par_id3154021.34.help.text
+msgctxt "03020202.xhp#par_id3154021.34.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020202.xhp#par_id3154665.35.help.text
+msgctxt "03020202.xhp#par_id3154665.35.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020202.xhp#par_id3155607.36.help.text
+msgctxt "03020202.xhp#par_id3155607.36.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020202.xhp#par_id3153268.40.help.text
+msgctxt "03020202.xhp#par_id3153268.40.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMsg"
+
+#: 03020202.xhp#par_id3152584.37.help.text
+msgctxt "03020202.xhp#par_id3152584.37.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03050100.xhp#tit.help.text
+msgid "Erl Function [Runtime]"
+msgstr "Erl Function [Runtime]"
+
+#: 03050100.xhp#bm_id3157896.help.text
+msgid "<bookmark_value>Erl function</bookmark_value>"
+msgstr "<bookmark_value>Erl function</bookmark_value>"
+
+#: 03050100.xhp#hd_id3157896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
+
+#: 03050100.xhp#par_id3153394.2.help.text
+msgid "Returns the line number where an error occurred during program execution."
+msgstr "Returns the line number where an error occurred during program execution."
+
+#: 03050100.xhp#hd_id3147574.3.help.text
+msgctxt "03050100.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03050100.xhp#par_id3146795.4.help.text
+msgid "Erl"
+msgstr "Erl"
+
+#: 03050100.xhp#hd_id3147265.5.help.text
+msgctxt "03050100.xhp#hd_id3147265.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03050100.xhp#par_id3154924.6.help.text
+msgctxt "03050100.xhp#par_id3154924.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03050100.xhp#hd_id3150792.7.help.text
+msgctxt "03050100.xhp#hd_id3150792.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03050100.xhp#par_id3153771.8.help.text
+msgid "The Erl function only returns a line number, and not a line label."
+msgstr "The Erl function only returns a line number, and not a line label."
+
+#: 03050100.xhp#hd_id3146921.9.help.text
+msgctxt "03050100.xhp#hd_id3146921.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03050100.xhp#par_id3146975.10.help.text
+msgctxt "03050100.xhp#par_id3146975.10.help.text"
+msgid "sub ExampleError"
+msgstr "sub ExampleError"
+
+#: 03050100.xhp#par_id3150010.11.help.text
+msgctxt "03050100.xhp#par_id3150010.11.help.text"
+msgid "on error goto ErrorHandler REM Set up error handler"
+msgstr "on error goto ErrorHandler REM Set up error handler"
+
+#: 03050100.xhp#par_id3155308.12.help.text
+msgctxt "03050100.xhp#par_id3155308.12.help.text"
+msgid "Dim iVar as Integer"
+msgstr "Dim iVar as Integer"
+
+#: 03050100.xhp#par_id3149482.13.help.text
+msgctxt "03050100.xhp#par_id3149482.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03050100.xhp#par_id3153188.14.help.text
+msgid "REM Error caused by non-existent file"
+msgstr "REM Error caused by non-existent file"
+
+#: 03050100.xhp#par_id3159155.15.help.text
+msgctxt "03050100.xhp#par_id3159155.15.help.text"
+msgid "iVar = Freefile"
+msgstr "iVar = Freefile"
+
+#: 03050100.xhp#par_id3146120.16.help.text
+msgctxt "03050100.xhp#par_id3146120.16.help.text"
+msgid "Open \"\\file9879.txt\" for Input as #iVar"
+msgstr "Open \"\\file9879.txt\" for Input as #iVar"
+
+#: 03050100.xhp#par_id3147349.17.help.text
+msgctxt "03050100.xhp#par_id3147349.17.help.text"
+msgid "Line Input #iVar, sVar"
+msgstr "Line Input #iVar, sVar"
+
+#: 03050100.xhp#par_id3151073.18.help.text
+msgctxt "03050100.xhp#par_id3151073.18.help.text"
+msgid "Close #iVar"
+msgstr "Close #iVar"
+
+#: 03050100.xhp#par_id3148456.19.help.text
+msgctxt "03050100.xhp#par_id3148456.19.help.text"
+msgid "exit sub"
+msgstr "exit sub"
+
+#: 03050100.xhp#par_id3147394.20.help.text
+msgctxt "03050100.xhp#par_id3147394.20.help.text"
+msgid "ErrorHandler:"
+msgstr "ErrorHandler:"
+
+#: 03050100.xhp#par_id3155416.21.help.text
+msgid "MsgBox \"Error \" & err & \": \" & error$ + chr(13) + \"In line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
+msgstr "MsgBox \"Error \" & err & \": \" & error$ + chr(13) + \"In line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
+
+#: 03050100.xhp#par_id3153878.22.help.text
+msgctxt "03050100.xhp#par_id3153878.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120303.xhp#tit.help.text
+msgid "Left Function [Runtime]"
+msgstr "Left Function [Runtime]"
+
+#: 03120303.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>Left function</bookmark_value>"
+msgstr "<bookmark_value>Left function</bookmark_value>"
+
+#: 03120303.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
+
+#: 03120303.xhp#par_id3147242.2.help.text
+msgid "Returns the number of leftmost characters that you specify of a string expression."
+msgstr "Returns the number of leftmost characters that you specify of a string expression."
+
+#: 03120303.xhp#hd_id3156153.3.help.text
+msgctxt "03120303.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120303.xhp#par_id3150771.4.help.text
+msgid "Left (Text As String, n As Long)"
+msgstr "Left (Text As String, n As Long)"
+
+#: 03120303.xhp#hd_id3153824.5.help.text
+msgctxt "03120303.xhp#hd_id3153824.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120303.xhp#par_id3147530.6.help.text
+msgctxt "03120303.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120303.xhp#hd_id3148946.7.help.text
+msgctxt "03120303.xhp#hd_id3148946.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120303.xhp#par_id3148552.8.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+msgstr "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+
+#: 03120303.xhp#par_id3149456.9.help.text
+msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+
+#: 03120303.xhp#par_id3150791.10.help.text
+msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
+msgstr "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
+
+#: 03120303.xhp#hd_id3125863.11.help.text
+msgctxt "03120303.xhp#hd_id3125863.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120303.xhp#par_id3144761.12.help.text
+msgctxt "03120303.xhp#par_id3144761.12.help.text"
+msgid "Sub ExampleUSDate"
+msgstr "Sub ExampleUSDate"
+
+#: 03120303.xhp#par_id3153194.13.help.text
+msgctxt "03120303.xhp#par_id3153194.13.help.text"
+msgid "Dim sInput As String"
+msgstr "Dim sInput As String"
+
+#: 03120303.xhp#par_id3154217.14.help.text
+msgctxt "03120303.xhp#par_id3154217.14.help.text"
+msgid "Dim sUS_date As String"
+msgstr "Dim sUS_date As String"
+
+#: 03120303.xhp#par_id3150448.15.help.text
+msgctxt "03120303.xhp#par_id3150448.15.help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+
+#: 03120303.xhp#par_id3149203.16.help.text
+msgctxt "03120303.xhp#par_id3149203.16.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr "sUS_date = Mid(sInput, 6, 2)"
+
+#: 03120303.xhp#par_id3150439.17.help.text
+msgctxt "03120303.xhp#par_id3150439.17.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sUS_date = sUS_date & \"/\""
+
+#: 03120303.xhp#par_id3153770.18.help.text
+msgctxt "03120303.xhp#par_id3153770.18.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr "sUS_date = sUS_date & Right(sInput, 2)"
+
+#: 03120303.xhp#par_id3161833.19.help.text
+msgctxt "03120303.xhp#par_id3161833.19.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sUS_date = sUS_date & \"/\""
+
+#: 03120303.xhp#par_id3147215.20.help.text
+msgctxt "03120303.xhp#par_id3147215.20.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr "sUS_date = sUS_date & Left(sInput, 4)"
+
+#: 03120303.xhp#par_id3149666.21.help.text
+msgctxt "03120303.xhp#par_id3149666.21.help.text"
+msgid "MsgBox sUS_date"
+msgstr "MsgBox sUS_date"
+
+#: 03120303.xhp#par_id3153138.22.help.text
+msgctxt "03120303.xhp#par_id3153138.22.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090407.xhp#tit.help.text
+msgid "Rem Statement [Runtime]"
+msgstr "Rem Statement [Runtime]"
+
+#: 03090407.xhp#bm_id3154347.help.text
+msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
+msgstr "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
+
+#: 03090407.xhp#hd_id3154347.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
+
+#: 03090407.xhp#par_id3153525.2.help.text
+msgid "Specifies that a program line is a comment."
+msgstr "Specifies that a program line is a comment."
+
+#: 03090407.xhp#hd_id3153360.3.help.text
+msgctxt "03090407.xhp#hd_id3153360.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090407.xhp#par_id3154141.4.help.text
+msgid "Rem Text"
+msgstr "Rem Text"
+
+#: 03090407.xhp#hd_id3151042.5.help.text
+msgctxt "03090407.xhp#hd_id3151042.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090407.xhp#par_id3150869.6.help.text
+msgid "<emph>Text:</emph> Any text that serves as a comment."
+msgstr "<emph>Text:</emph> Any text that serves as a comment."
+
+#: 03090407.xhp#par_id3147318.7.help.text
+msgid "You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment."
+msgstr "You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment."
+
+#: 03090407.xhp#par_id6187017.help.text
+msgid "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
+msgstr "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
+
+#: 03090407.xhp#hd_id3150012.8.help.text
+msgctxt "03090407.xhp#hd_id3150012.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090407.xhp#par_id3152939.9.help.text
+msgid "Sub ExampleMid"
+msgstr "Sub ExampleMid"
+
+#: 03090407.xhp#par_id3153142.10.help.text
+msgid "DIM sVar As String"
+msgstr "DIM sVar As String"
+
+#: 03090407.xhp#par_id3145365.11.help.text
+msgctxt "03090407.xhp#par_id3145365.11.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr "sVar = \"Las Vegas\""
+
+#: 03090407.xhp#par_id3146984.12.help.text
+msgid "Print Mid(sVar,3,5) REM Returns \"s Veg\""
+msgstr "Print Mid(sVar,3,5) REM Returns \"s Veg\""
+
+#: 03090407.xhp#par_id3153140.13.help.text
+msgid "REM Nothing occurs here"
+msgstr "REM Nothing occurs here"
+
+#: 03090407.xhp#par_id3152596.14.help.text
+msgctxt "03090407.xhp#par_id3152596.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120315.xhp#tit.help.text
+msgid "Join Function [Runtime]"
+msgstr "Join Function [Runtime]"
+
+#: 03120315.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Join function</bookmark_value>"
+msgstr "<bookmark_value>Join function</bookmark_value>"
+
+#: 03120315.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
+
+#: 03120315.xhp#par_id3149670.2.help.text
+msgid "Returns a string from a number of substrings in a string array."
+msgstr "Returns a string from a number of substrings in a string array."
+
+#: 03120315.xhp#hd_id3159414.3.help.text
+msgctxt "03120315.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120315.xhp#par_id3156344.4.help.text
+msgid "Join (Text As String Array, delimiter)"
+msgstr "Join (Text As String Array, delimiter)"
+
+#: 03120315.xhp#hd_id3150400.5.help.text
+msgctxt "03120315.xhp#hd_id3150400.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120315.xhp#par_id3150359.6.help.text
+msgctxt "03120315.xhp#par_id3150359.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120315.xhp#hd_id3148798.7.help.text
+msgctxt "03120315.xhp#hd_id3148798.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120315.xhp#par_id3145171.8.help.text
+msgid "<emph>Text:</emph> A string array."
+msgstr "<emph>Text:</emph> A string array."
+
+#: 03120315.xhp#par_id3154908.9.help.text
+msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
+msgstr "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
+
+#: 03120315.xhp#hd_id3154218.10.help.text
+msgctxt "03120315.xhp#hd_id3154218.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080401.xhp#tit.help.text
+msgid "Sqr Function [Runtime]"
+msgstr "Sqr Function [Runtime]"
+
+#: 03080401.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgstr "<bookmark_value>Sqr function</bookmark_value>"
+
+#: 03080401.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
+
+#: 03080401.xhp#par_id3147226.2.help.text
+msgid "Calculates the square root of a numeric expression."
+msgstr "Calculates the square root of a numeric expression."
+
+#: 03080401.xhp#hd_id3143267.3.help.text
+msgctxt "03080401.xhp#hd_id3143267.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080401.xhp#par_id3149415.4.help.text
+msgid "Sqr (Number)"
+msgstr "Sqr (Number)"
+
+#: 03080401.xhp#hd_id3156023.5.help.text
+msgctxt "03080401.xhp#hd_id3156023.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080401.xhp#par_id3156343.6.help.text
+msgctxt "03080401.xhp#par_id3156343.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080401.xhp#hd_id3147265.7.help.text
+msgctxt "03080401.xhp#hd_id3147265.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080401.xhp#par_id3149457.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+msgstr "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+
+#: 03080401.xhp#par_id3154365.9.help.text
+msgid "A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6."
+msgstr "A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6."
+
+#: 03080401.xhp#hd_id3153192.10.help.text
+msgctxt "03080401.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080401.xhp#par_id3145172.11.help.text
+msgid "Sub ExampleSqr"
+msgstr "Sub ExampleSqr"
+
+#: 03080401.xhp#par_id3156423.12.help.text
+msgctxt "03080401.xhp#par_id3156423.12.help.text"
+msgid "Dim iVar As Single"
+msgstr "Dim iVar As Single"
+
+#: 03080401.xhp#par_id3147288.13.help.text
+msgctxt "03080401.xhp#par_id3147288.13.help.text"
+msgid "iVar = 36"
+msgstr "iVar = 36"
+
+#: 03080401.xhp#par_id3159254.14.help.text
+msgctxt "03080401.xhp#par_id3159254.14.help.text"
+msgid "Msgbox Sqr(iVar)"
+msgstr "Msgbox Sqr(iVar)"
+
+#: 03080401.xhp#par_id3161832.15.help.text
+msgctxt "03080401.xhp#par_id3161832.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03050500.xhp#tit.help.text
+msgid "On Error GoTo ... Resume Statement [Runtime]"
+msgstr "On Error GoTo ... Resume Statement [Runtime]"
+
+#: 03050500.xhp#bm_id3146795.help.text
+msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+msgstr "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+
+#: 03050500.xhp#hd_id3146795.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
+
+#: 03050500.xhp#par_id3150358.2.help.text
+msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
+msgstr "Enables an error-handling routine after an error occurs, or resumes program execution."
+
+#: 03050500.xhp#hd_id3151212.3.help.text
+msgctxt "03050500.xhp#hd_id3151212.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03050500.xhp#par_id3145173.4.help.text
+msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+
+#: 03050500.xhp#hd_id3154125.5.help.text
+msgctxt "03050500.xhp#hd_id3154125.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03050500.xhp#par_id3150869.7.help.text
+msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+msgstr "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+
+#: 03050500.xhp#par_id3150439.8.help.text
+msgid "<emph>Resume Next:</emph> If an error occurs, program execution continues with the statement that follows the statement in which the error occurred."
+msgstr "<emph>Resume Next:</emph> If an error occurs, program execution continues with the statement that follows the statement in which the error occurred."
+
+#: 03050500.xhp#par_id3149482.9.help.text
+msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
+msgstr "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
+
+#: 03050500.xhp#par_id3149483.9.help.text
+msgid "<emph>Local:</emph> \"On error\" is global in scope, and remains active until canceled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored."
+msgstr "<emph>Local:</emph> \"On error\" is global in scope, and remains active until cancelled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is cancelled automatically, and any previous global setting is restored."
+
+#: 03050500.xhp#par_id3148619.10.help.text
+msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
+msgstr ""
+
+#: 03050500.xhp#hd_id3146985.11.help.text
+msgctxt "03050500.xhp#hd_id3146985.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03050500.xhp#par_id3152460.42.help.text
+msgctxt "03050500.xhp#par_id3152460.42.help.text"
+msgid "Sub ExampleReset"
+msgstr "Sub ExampleReset"
+
+#: 03050500.xhp#par_id3163712.43.help.text
+msgctxt "03050500.xhp#par_id3163712.43.help.text"
+msgid "On Error Goto ErrorHandler"
+msgstr "On Error Goto ErrorHandler"
+
+#: 03050500.xhp#par_id3146119.44.help.text
+msgctxt "03050500.xhp#par_id3146119.44.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03050500.xhp#par_id3145749.45.help.text
+msgctxt "03050500.xhp#par_id3145749.45.help.text"
+msgid "Dim iCount As Integer"
+msgstr "Dim iCount As Integer"
+
+#: 03050500.xhp#par_id3153091.46.help.text
+msgctxt "03050500.xhp#par_id3153091.46.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03050500.xhp#par_id3148576.47.help.text
+msgctxt "03050500.xhp#par_id3148576.47.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03050500.xhp#par_id3147348.48.help.text
+msgctxt "03050500.xhp#par_id3147348.48.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03050500.xhp#par_id3154944.50.help.text
+msgctxt "03050500.xhp#par_id3154944.50.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03050500.xhp#par_id3153158.51.help.text
+msgctxt "03050500.xhp#par_id3153158.51.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03050500.xhp#par_id3153876.52.help.text
+msgctxt "03050500.xhp#par_id3153876.52.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"This is a line of text\""
+
+#: 03050500.xhp#par_id3149581.53.help.text
+msgctxt "03050500.xhp#par_id3149581.53.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03050500.xhp#par_id3155602.55.help.text
+msgctxt "03050500.xhp#par_id3155602.55.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03050500.xhp#par_id3153415.56.help.text
+msgctxt "03050500.xhp#par_id3153415.56.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aFile For Input As iNumber"
+
+#: 03050500.xhp#par_id3146970.57.help.text
+msgctxt "03050500.xhp#par_id3146970.57.help.text"
+msgid "For iCount = 1 to 5"
+msgstr "For iCount = 1 to 5"
+
+#: 03050500.xhp#par_id3153707.58.help.text
+msgctxt "03050500.xhp#par_id3153707.58.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumber, sLine"
+
+#: 03050500.xhp#par_id3156276.59.help.text
+msgctxt "03050500.xhp#par_id3156276.59.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLine <>\"\" then"
+
+#: 03050500.xhp#par_id3148993.60.help.text
+msgctxt "03050500.xhp#par_id3148993.60.help.text"
+msgid "rem"
+msgstr "rem"
+
+#: 03050500.xhp#par_id3153764.61.help.text
+msgctxt "03050500.xhp#par_id3153764.61.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03050500.xhp#par_id3154754.62.help.text
+msgctxt "03050500.xhp#par_id3154754.62.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03050500.xhp#par_id3159264.63.help.text
+msgctxt "03050500.xhp#par_id3159264.63.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03050500.xhp#par_id3150042.64.help.text
+msgctxt "03050500.xhp#par_id3150042.64.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03050500.xhp#par_id3151251.65.help.text
+msgctxt "03050500.xhp#par_id3151251.65.help.text"
+msgid "ErrorHandler:"
+msgstr "ErrorHandler:"
+
+#: 03050500.xhp#par_id3149106.66.help.text
+msgctxt "03050500.xhp#par_id3149106.66.help.text"
+msgid "Reset"
+msgstr "Reset"
+
+#: 03050500.xhp#par_id3146916.67.help.text
+msgctxt "03050500.xhp#par_id3146916.67.help.text"
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+
+#: 03050500.xhp#par_id3149568.68.help.text
+msgctxt "03050500.xhp#par_id3149568.68.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03101000.xhp#tit.help.text
+msgid "CStr Function [Runtime]"
+msgstr "CStr Function [Runtime]"
+
+#: 03101000.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>CStr function</bookmark_value>"
+msgstr "<bookmark_value>CStr function</bookmark_value>"
+
+#: 03101000.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
+
+#: 03101000.xhp#par_id3147574.2.help.text
+msgid "Converts any numeric expression to a string expression."
+msgstr "Converts any numeric expression to a string expression."
+
+#: 03101000.xhp#hd_id3148473.3.help.text
+msgctxt "03101000.xhp#hd_id3148473.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101000.xhp#par_id3145315.4.help.text
+msgid "CStr (Expression)"
+msgstr "CStr (Expression)"
+
+#: 03101000.xhp#hd_id3153062.5.help.text
+msgctxt "03101000.xhp#hd_id3153062.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03101000.xhp#par_id3153897.6.help.text
+msgctxt "03101000.xhp#par_id3153897.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03101000.xhp#hd_id3154760.7.help.text
+msgctxt "03101000.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101000.xhp#par_id3149457.8.help.text
+msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+msgstr "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+
+#: 03101000.xhp#hd_id3150358.9.help.text
+msgid "Expression Types and Conversion Returns"
+msgstr "Expression Types and Conversion Returns"
+
+#: 03101000.xhp#par_id3153192.10.help.text
+msgid "Boolean :"
+msgstr "Boolean :"
+
+#: 03101000.xhp#par_id3156422.11.help.text
+msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+msgstr "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+
+#: 03101000.xhp#par_id3147287.12.help.text
+msgid "Date :"
+msgstr "Date :"
+
+#: 03101000.xhp#par_id3155411.13.help.text
+msgid "String that contains the date and time."
+msgstr "String that contains the date and time."
+
+#: 03101000.xhp#par_id3147428.14.help.text
+msgid "Null :"
+msgstr "Null :"
+
+#: 03101000.xhp#par_id3150486.15.help.text
+msgid "Run-time error."
+msgstr "Run-time error."
+
+#: 03101000.xhp#par_id3153953.16.help.text
+msgid "Empty :"
+msgstr "Empty :"
+
+#: 03101000.xhp#par_id3155306.17.help.text
+msgid "String without any characters."
+msgstr "String without any characters."
+
+#: 03101000.xhp#par_id3149260.18.help.text
+msgid "Any :"
+msgstr "Any :"
+
+#: 03101000.xhp#par_id3152938.19.help.text
+msgid "Corresponding number as string."
+msgstr "Corresponding number as string."
+
+#: 03101000.xhp#par_id3155738.20.help.text
+msgid "Zeros at the end of a floating-point number are not included in the returned string."
+msgstr "Zeros at the end of a floating-point number are not included in the returned string."
+
+#: 03101000.xhp#hd_id3154729.21.help.text
+msgctxt "03101000.xhp#hd_id3154729.21.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101000.xhp#par_id3153878.22.help.text
+msgid "Sub ExampleCSTR"
+msgstr "Sub ExampleCSTR"
+
+#: 03101000.xhp#par_id3154943.23.help.text
+msgctxt "03101000.xhp#par_id3154943.23.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03101000.xhp#par_id3156283.24.help.text
+msgctxt "03101000.xhp#par_id3156283.24.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234.5678)"
+
+#: 03101000.xhp#par_id3147396.25.help.text
+msgctxt "03101000.xhp#par_id3147396.25.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234.5678)"
+
+#: 03101000.xhp#par_id3155600.26.help.text
+msgctxt "03101000.xhp#par_id3155600.26.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234.5678)"
+
+#: 03101000.xhp#par_id3153416.27.help.text
+msgctxt "03101000.xhp#par_id3153416.27.help.text"
+msgid "Msgbox CSng(1234.5678)"
+msgstr "Msgbox CSng(1234.5678)"
+
+#: 03101000.xhp#par_id3156559.28.help.text
+msgid "sVar = CStr(1234.5678)"
+msgstr "sVar = CStr(1234.5678)"
+
+#: 03101000.xhp#par_id3153947.29.help.text
+msgid "MsgBox sVar"
+msgstr "MsgBox sVar"
+
+#: 03101000.xhp#par_id3150327.30.help.text
+msgctxt "03101000.xhp#par_id3150327.30.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03102700.xhp#tit.help.text
+msgid "IsNumeric Function [Runtime]"
+msgstr "IsNumeric Function [Runtime]"
+
+#: 03102700.xhp#bm_id3145136.help.text
+msgid "<bookmark_value>IsNumeric function</bookmark_value>"
+msgstr "<bookmark_value>IsNumeric function</bookmark_value>"
+
+#: 03102700.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
+
+#: 03102700.xhp#par_id3149177.2.help.text
+msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
+msgstr "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
+
+#: 03102700.xhp#hd_id3149415.3.help.text
+msgctxt "03102700.xhp#hd_id3149415.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102700.xhp#par_id3150771.4.help.text
+msgid "IsNumeric (Var)"
+msgstr "IsNumeric (Var)"
+
+#: 03102700.xhp#hd_id3148685.5.help.text
+msgctxt "03102700.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03102700.xhp#par_id3148944.6.help.text
+msgctxt "03102700.xhp#par_id3148944.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03102700.xhp#hd_id3148947.7.help.text
+msgctxt "03102700.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102700.xhp#par_id3154760.8.help.text
+msgid "<emph>Var:</emph> Any expression that you want to test."
+msgstr "<emph>Var:</emph> Any expression that you want to test."
+
+#: 03102700.xhp#hd_id3149656.9.help.text
+msgctxt "03102700.xhp#hd_id3149656.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102700.xhp#par_id3154367.10.help.text
+msgid "Sub ExampleIsNumeric"
+msgstr "Sub ExampleIsNumeric"
+
+#: 03102700.xhp#par_id3156423.11.help.text
+msgid "Dim vVar as variant"
+msgstr "Dim vVar as variant"
+
+#: 03102700.xhp#par_id3154125.12.help.text
+msgid "vVar = \"ABC\""
+msgstr "vVar = \"ABC\""
+
+#: 03102700.xhp#par_id3147230.13.help.text
+msgid "Print IsNumeric(vVar) REM Returns False"
+msgstr "Print IsNumeric(vVar) REM Returns False"
+
+#: 03102700.xhp#par_id3156214.14.help.text
+msgid "vVar = \"123\""
+msgstr "vVar = \"123\""
+
+#: 03102700.xhp#par_id3154910.15.help.text
+msgid "Print IsNumeric(vVar) REM Returns True"
+msgstr "Print IsNumeric(vVar) REM Returns True"
+
+#: 03102700.xhp#par_id3147289.16.help.text
+msgctxt "03102700.xhp#par_id3147289.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03100080.xhp#tit.help.text
+msgid "CVErr Function [Runtime]"
+msgstr "CVErr Function [Runtime]"
+
+#: 03100080.xhp#bm_id531022.help.text
+msgid "<bookmark_value>CVErr function</bookmark_value>"
+msgstr "<bookmark_value>CVErr function</bookmark_value>"
+
+#: 03100080.xhp#par_idN1054B.help.text
+msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
+
+#: 03100080.xhp#par_idN1055B.help.text
+msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+msgstr "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+
+#: 03100080.xhp#par_idN1055E.help.text
+msgctxt "03100080.xhp#par_idN1055E.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100080.xhp#par_idN10562.help.text
+msgid "CVErr(Expression)"
+msgstr "CVErr(Expression)"
+
+#: 03100080.xhp#par_idN10565.help.text
+msgctxt "03100080.xhp#par_idN10565.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100080.xhp#par_idN10569.help.text
+msgctxt "03100080.xhp#par_idN10569.help.text"
+msgid "Variant."
+msgstr "Variant."
+
+#: 03100080.xhp#par_idN1056C.help.text
+msgctxt "03100080.xhp#par_idN1056C.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03100080.xhp#par_idN10570.help.text
+msgctxt "03100080.xhp#par_idN10570.help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Expression: Any string or numeric expression that you want to convert."
+
+#: 03030120.xhp#tit.help.text
+msgid "DateDiff Function [Runtime]"
+msgstr "DateDiff Function [Runtime]"
+
+#: 03030120.xhp#bm_id6134830.help.text
+msgid "<bookmark_value>DateDiff function</bookmark_value>"
+msgstr "<bookmark_value>DateDiff function</bookmark_value>"
+
+#: 03030120.xhp#par_idN10542.help.text
+msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
+
+#: 03030120.xhp#par_idN10546.help.text
+msgid "Returns the number of date intervals between two given date values."
+msgstr "Returns the number of date intervals between two given date values."
+
+#: 03030120.xhp#par_idN10549.help.text
+msgctxt "03030120.xhp#par_idN10549.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030120.xhp#par_idN10648.help.text
+msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
+msgstr "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
+
+#: 03030120.xhp#par_idN1064B.help.text
+msgctxt "03030120.xhp#par_idN1064B.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030120.xhp#par_idN1064F.help.text
+msgid "A number."
+msgstr "A number."
+
+#: 03030120.xhp#par_idN10652.help.text
+msgctxt "03030120.xhp#par_idN10652.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030120.xhp#par_idN10656.help.text
+msgctxt "03030120.xhp#par_idN10656.help.text"
+msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+msgstr "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+
+#: 03030120.xhp#par_idN10664.help.text
+msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
+msgstr "<emph>Date1, Date2</emph> - The two date values to be compared."
+
+#: 03030120.xhp#par_idN1066A.help.text
+msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week. "
+msgstr "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week. "
+
+#: 03030120.xhp#par_idN1067A.help.text
+msgid "Week_start value"
+msgstr "Week_start value"
+
+#: 03030120.xhp#par_idN10680.help.text
+msgctxt "03030120.xhp#par_idN10680.help.text"
+msgid "Explanation"
+msgstr "Explanation"
+
+#: 03030120.xhp#par_idN10687.help.text
+msgctxt "03030120.xhp#par_idN10687.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03030120.xhp#par_idN1068D.help.text
+msgctxt "03030120.xhp#par_idN1068D.help.text"
+msgid "Use system default value"
+msgstr "Use system default value"
+
+#: 03030120.xhp#par_idN10694.help.text
+msgctxt "03030120.xhp#par_idN10694.help.text"
+msgid "1"
+msgstr "1"
+
+#: 03030120.xhp#par_idN1069A.help.text
+msgid "Sunday (default)"
+msgstr "Sunday (default)"
+
+#: 03030120.xhp#par_idN106A1.help.text
+msgctxt "03030120.xhp#par_idN106A1.help.text"
+msgid "2"
+msgstr "2"
+
+#: 03030120.xhp#par_idN106A7.help.text
+msgid "Monday"
+msgstr "Monday"
+
+#: 03030120.xhp#par_idN106AE.help.text
+msgctxt "03030120.xhp#par_idN106AE.help.text"
+msgid "3"
+msgstr "3"
+
+#: 03030120.xhp#par_idN106B4.help.text
+msgid "Tuesday"
+msgstr "Tuesday"
+
+#: 03030120.xhp#par_idN106BB.help.text
+msgctxt "03030120.xhp#par_idN106BB.help.text"
+msgid "4"
+msgstr "4"
+
+#: 03030120.xhp#par_idN106C1.help.text
+msgid "Wednesday"
+msgstr "Wednesday"
+
+#: 03030120.xhp#par_idN106C8.help.text
+msgctxt "03030120.xhp#par_idN106C8.help.text"
+msgid "5"
+msgstr "5"
+
+#: 03030120.xhp#par_idN106CE.help.text
+msgid "Thursday"
+msgstr "Thursday"
+
+#: 03030120.xhp#par_idN106D5.help.text
+msgctxt "03030120.xhp#par_idN106D5.help.text"
+msgid "6"
+msgstr "6"
+
+#: 03030120.xhp#par_idN106DB.help.text
+msgid "Friday"
+msgstr "Friday"
+
+#: 03030120.xhp#par_idN106E2.help.text
+msgctxt "03030120.xhp#par_idN106E2.help.text"
+msgid "7"
+msgstr "7"
+
+#: 03030120.xhp#par_idN106E8.help.text
+msgid "Saturday"
+msgstr "Saturday"
+
+#: 03030120.xhp#par_idN106EB.help.text
+msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year. "
+msgstr "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year. "
+
+#: 03030120.xhp#par_idN106FB.help.text
+msgid "Year_start value"
+msgstr "Year_start value"
+
+#: 03030120.xhp#par_idN10701.help.text
+msgctxt "03030120.xhp#par_idN10701.help.text"
+msgid "Explanation"
+msgstr "Explanation"
+
+#: 03030120.xhp#par_idN10708.help.text
+msgctxt "03030120.xhp#par_idN10708.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03030120.xhp#par_idN1070E.help.text
+msgctxt "03030120.xhp#par_idN1070E.help.text"
+msgid "Use system default value"
+msgstr "Use system default value"
+
+#: 03030120.xhp#par_idN10715.help.text
+msgctxt "03030120.xhp#par_idN10715.help.text"
+msgid "1"
+msgstr "1"
+
+#: 03030120.xhp#par_idN1071B.help.text
+msgid "Week 1 is the week with January, 1st (default)"
+msgstr "Week 1 is the week with January, 1st (default)"
+
+#: 03030120.xhp#par_idN10722.help.text
+msgctxt "03030120.xhp#par_idN10722.help.text"
+msgid "2"
+msgstr "2"
+
+#: 03030120.xhp#par_idN10728.help.text
+msgid "Week 1 is the first week containing four or more days of that year"
+msgstr "Week 1 is the first week containing four or more days of that year"
+
+#: 03030120.xhp#par_idN1072F.help.text
+msgctxt "03030120.xhp#par_idN1072F.help.text"
+msgid "3"
+msgstr "3"
+
+#: 03030120.xhp#par_idN10735.help.text
+msgid "Week 1 is the first week containing only days of the new year"
+msgstr "Week 1 is the first week containing only days of the new year"
+
+#: 03030120.xhp#par_idN10738.help.text
+msgctxt "03030120.xhp#par_idN10738.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030120.xhp#par_idN1073C.help.text
+msgid "Sub example_datediff"
+msgstr "Sub example_datediff"
+
+#: 03030120.xhp#par_idN1073F.help.text
+msgid "msgbox DateDiff(\"d\", \"1/1/2005\", \"12/31/2005\")"
+msgstr "msgbox DateDiff(\"d\", \"1/1/2005\", \"12/31/2005\")"
+
+#: 03030120.xhp#par_idN10742.help.text
+msgctxt "03030120.xhp#par_idN10742.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020000.xhp#tit.help.text
+msgid "File I/O Functions"
+msgstr "File I/O Functions"
+
+#: 03020000.xhp#hd_id3156344.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
+
+#: 03020000.xhp#par_id3153360.2.help.text
+msgid "Use File I/O functions to create and manage user-defined (data) files."
+msgstr "Use File I/O functions to create and manage user-defined (data) files."
+
+#: 03020000.xhp#par_id3150398.3.help.text
+msgid "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory."
+msgstr "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory."
+
+#: 03020302.xhp#tit.help.text
+msgid "Loc Function [Runtime]"
+msgstr "Loc Function [Runtime]"
+
+#: 03020302.xhp#bm_id3148663.help.text
+msgid "<bookmark_value>Loc function</bookmark_value>"
+msgstr "<bookmark_value>Loc function</bookmark_value>"
+
+#: 03020302.xhp#hd_id3148663.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
+
+#: 03020302.xhp#par_id3154138.2.help.text
+msgid "Returns the current position in an open file."
+msgstr "Returns the current position in an open file."
+
+#: 03020302.xhp#hd_id3156422.3.help.text
+msgctxt "03020302.xhp#hd_id3156422.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020302.xhp#par_id3150768.4.help.text
+msgid "Loc(FileNumber)"
+msgstr "Loc(FileNumber)"
+
+#: 03020302.xhp#hd_id3150440.5.help.text
+msgctxt "03020302.xhp#hd_id3150440.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020302.xhp#par_id3152578.6.help.text
+msgctxt "03020302.xhp#par_id3152578.6.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03020302.xhp#hd_id3152462.7.help.text
+msgctxt "03020302.xhp#hd_id3152462.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020302.xhp#par_id3153363.8.help.text
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
+msgstr "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
+
+#: 03020302.xhp#par_id3154320.9.help.text
+msgid "If the Loc function is used for an open random access file, it returns the number of the last record that was last read or written."
+msgstr "If the Loc function is used for an open random access file, it returns the number of the last record that was last read or written."
+
+#: 03020302.xhp#par_id3151115.10.help.text
+msgid "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
+msgstr "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
+
+#: 03120302.xhp#tit.help.text
+msgid "LCase Function [Runtime]"
+msgstr "LCase Function [Runtime]"
+
+#: 03120302.xhp#bm_id3152363.help.text
+msgid "<bookmark_value>LCase function</bookmark_value>"
+msgstr "<bookmark_value>LCase function</bookmark_value>"
+
+#: 03120302.xhp#hd_id3152363.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
+
+#: 03120302.xhp#par_id3145609.2.help.text
+msgid "Converts all uppercase letters in a string to lowercase."
+msgstr "Converts all uppercase letters in a string to lowercase."
+
+#: 03120302.xhp#par_id3154347.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
+msgstr "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
+
+#: 03120302.xhp#hd_id3149456.4.help.text
+msgctxt "03120302.xhp#hd_id3149456.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120302.xhp#par_id3150791.5.help.text
+msgid "LCase (Text As String)"
+msgstr "LCase (Text As String)"
+
+#: 03120302.xhp#hd_id3154940.6.help.text
+msgctxt "03120302.xhp#hd_id3154940.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120302.xhp#par_id3144760.7.help.text
+msgctxt "03120302.xhp#par_id3144760.7.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120302.xhp#hd_id3151043.8.help.text
+msgctxt "03120302.xhp#hd_id3151043.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120302.xhp#par_id3153193.9.help.text
+msgctxt "03120302.xhp#par_id3153193.9.help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "<emph>Text:</emph> Any string expression that you want to convert."
+
+#: 03120302.xhp#hd_id3148451.10.help.text
+msgctxt "03120302.xhp#hd_id3148451.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120302.xhp#par_id3149203.11.help.text
+msgctxt "03120302.xhp#par_id3149203.11.help.text"
+msgid "Sub ExampleLUCase"
+msgstr "Sub ExampleLUCase"
+
+#: 03120302.xhp#par_id3150440.12.help.text
+msgctxt "03120302.xhp#par_id3150440.12.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120302.xhp#par_id3153367.13.help.text
+msgctxt "03120302.xhp#par_id3153367.13.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr "sVar = \"Las Vegas\""
+
+#: 03120302.xhp#par_id3146121.14.help.text
+msgid "Print LCase(sVar) REM Returns \"las vegas\""
+msgstr "Print LCase(sVar) REM Returns \"las vegas\""
+
+#: 03120302.xhp#par_id3146986.15.help.text
+msgid "Print UCase(sVar) REM Returns \"LAS VEGAS\""
+msgstr "Print UCase(sVar) REM Returns \"LAS VEGAS\""
+
+#: 03120302.xhp#par_id3153575.16.help.text
+msgctxt "03120302.xhp#par_id3153575.16.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03100700.xhp#tit.help.text
+msgid "Const Statement [Runtime]"
+msgstr "Const Statement [Runtime]"
+
+#: 03100700.xhp#bm_id3146958.help.text
+msgid "<bookmark_value>Const statement</bookmark_value>"
+msgstr "<bookmark_value>Const statement</bookmark_value>"
+
+#: 03100700.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
+
+#: 03100700.xhp#par_id3154143.2.help.text
+msgid "Defines a string as a constant."
+msgstr "Defines a string as a constant."
+
+#: 03100700.xhp#hd_id3150670.3.help.text
+msgctxt "03100700.xhp#hd_id3150670.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100700.xhp#par_id3150984.4.help.text
+msgid "Const Text = Expression"
+msgstr "Const Text = Expression"
+
+#: 03100700.xhp#hd_id3147530.5.help.text
+msgctxt "03100700.xhp#hd_id3147530.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03100700.xhp#par_id3153897.6.help.text
+msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
+msgstr "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
+
+#: 03100700.xhp#par_id3147264.7.help.text
+msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
+msgstr "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
+
+#: 03100700.xhp#par_id3150542.8.help.text
+msgctxt "03100700.xhp#par_id3150542.8.help.text"
+msgid "CONST ConstName=Expression"
+msgstr "CONST ConstName=Expression"
+
+#: 03100700.xhp#par_id3150400.9.help.text
+msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
+msgstr "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
+
+#: 03100700.xhp#hd_id3154366.10.help.text
+msgctxt "03100700.xhp#hd_id3154366.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03100700.xhp#par_id3145420.11.help.text
+msgid "Sub ExampleConst"
+msgstr "Sub ExampleConst"
+
+#: 03100700.xhp#par_id3154217.12.help.text
+msgid "Const iVar = 1964"
+msgstr "Const iVar = 1964"
+
+#: 03100700.xhp#par_id3156281.13.help.text
+msgid "Msgbox iVar"
+msgstr "Msgbox iVar"
+
+#: 03100700.xhp#par_id3153969.14.help.text
+msgid "Const sVar = \"Program\", dVar As Double = 1.00"
+msgstr "Const sVar = \"Program\", dVar As Double = 1.00"
+
+#: 03100700.xhp#par_id3149560.15.help.text
+msgid "Msgbox sVar & \" \" & dVar"
+msgstr "Msgbox sVar & \" \" & dVar"
+
+#: 03100700.xhp#par_id3153368.16.help.text
+msgctxt "03100700.xhp#par_id3153368.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03010304.xhp#tit.help.text
+msgid "QBColor Function [Runtime]"
+msgstr "QBColor Function [Runtime]"
+
+#: 03010304.xhp#hd_id3149670.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
+
+#: 03010304.xhp#par_id3150359.2.help.text
+msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
+msgstr "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> colour code of the colour passed as a colour value through an older MS-DOS based programming system."
+
+#: 03010304.xhp#hd_id3154140.3.help.text
+msgctxt "03010304.xhp#hd_id3154140.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010304.xhp#par_id3151042.4.help.text
+msgid "QBColor (ColorNumber As Integer)"
+msgstr "QBColor (ColorNumber As Integer)"
+
+#: 03010304.xhp#hd_id3145172.5.help.text
+msgctxt "03010304.xhp#hd_id3145172.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03010304.xhp#par_id3154685.6.help.text
+msgctxt "03010304.xhp#par_id3154685.6.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03010304.xhp#hd_id3156560.7.help.text
+msgctxt "03010304.xhp#hd_id3156560.7.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010304.xhp#par_id3161832.8.help.text
+msgid "<emph>ColorNumber</emph>: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system."
+msgstr "<emph>ColorNumber</emph>: Any integer expression that specifies the colour value of the colour passed from an older MS-DOS based programming system."
+
+#: 03010304.xhp#par_id3147318.9.help.text
+msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgstr "<emph>ColorNumber</emph> can be assigned the following values:"
+
+#: 03010304.xhp#par_id3152576.10.help.text
+msgid "0 : Black"
+msgstr "0 : Black"
+
+#: 03010304.xhp#par_id3146975.11.help.text
+msgid "1 : Blue"
+msgstr "1 : Blue"
+
+#: 03010304.xhp#par_id3151116.12.help.text
+msgid "2 : Green"
+msgstr "2 : Green"
+
+#: 03010304.xhp#par_id3155412.13.help.text
+msgid "3 : Cyan"
+msgstr "3 : Cyan"
+
+#: 03010304.xhp#par_id3155306.14.help.text
+msgid "4 : Red"
+msgstr "4 : Red"
+
+#: 03010304.xhp#par_id3153364.15.help.text
+msgid "5 : Magenta"
+msgstr "5 : Magenta"
+
+#: 03010304.xhp#par_id3146119.16.help.text
+msgid "6 : Yellow"
+msgstr "6 : Yellow"
+
+#: 03010304.xhp#par_id3154730.17.help.text
+msgid "7 : White"
+msgstr "7 : White"
+
+#: 03010304.xhp#par_id3153877.18.help.text
+msgid "8 : Gray"
+msgstr "8 : Grey"
+
+#: 03010304.xhp#par_id3147124.19.help.text
+msgid "9 : Light Blue"
+msgstr "9 : Light Blue"
+
+#: 03010304.xhp#par_id3145646.20.help.text
+msgid "10 : Light Green"
+msgstr "10 : Light Green"
+
+#: 03010304.xhp#par_id3149958.21.help.text
+msgid "11 : Light Cyan"
+msgstr "11 : Light Cyan"
+
+#: 03010304.xhp#par_id3154943.22.help.text
+msgid "12 : Light Red"
+msgstr "12 : Light Red"
+
+#: 03010304.xhp#par_id3150715.23.help.text
+msgid "13 : Light Magenta"
+msgstr "13 : Light Magenta"
+
+#: 03010304.xhp#par_id3146970.24.help.text
+msgid "14 : Light Yellow"
+msgstr "14 : Light Yellow"
+
+#: 03010304.xhp#par_id3150750.25.help.text
+msgid "15 : Bright White"
+msgstr "15 : Bright White"
+
+#: 03010304.xhp#par_id3146914.26.help.text
+msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
+msgstr "This function is used only to convert from older MS-DOS based BASIC applications that use the above colour codes. The function returns a long integer value indicating the colour to be used in the $[officename] IDE."
+
+#: 03010304.xhp#hd_id3148406.27.help.text
+msgctxt "03010304.xhp#hd_id3148406.27.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010304.xhp#par_id3145642.28.help.text
+msgid "Sub ExampleQBColor"
+msgstr "Sub ExampleQBColour"
+
+#: 03010304.xhp#par_id3154256.29.help.text
+msgid "Dim iColor As Integer"
+msgstr "Dim iColour As Integer"
+
+#: 03010304.xhp#par_id3147340.30.help.text
+msgctxt "03010304.xhp#par_id3147340.30.help.text"
+msgid "Dim sText As String"
+msgstr "Dim sText As String"
+
+#: 03010304.xhp#par_id3155962.31.help.text
+msgid "iColor = 7"
+msgstr "iColour = 7"
+
+#: 03010304.xhp#par_id3145230.32.help.text
+msgid "sText = \"RGB= \" & Red(QBColor( iColor) ) & \":\" & Blue(QBColor( iColor) ) & \":\" & Green(QBColor( iColor) )"
+msgstr "sText = \"RGB= \" & Red(QBColor( iColour) ) & \":\" & Blue(QBColor( iColour) ) & \":\" & Green(QBColor( iColour) )"
+
+#: 03010304.xhp#par_id3149566.33.help.text
+msgid "MsgBox stext,0,\"Color \" & iColor"
+msgstr "MsgBox stext,0,\"Colour \" & iColour"
+
+#: 03010304.xhp#par_id3154705.34.help.text
+msgctxt "03010304.xhp#par_id3154705.34.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090301.xhp#tit.help.text
+msgid "GoSub...Return Statement [Runtime]"
+msgstr "GoSub...Return Statement [Runtime]"
+
+#: 03090301.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
+msgstr "<bookmark_value>GoSub...Return statement</bookmark_value>"
+
+#: 03090301.xhp#hd_id3147242.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
+
+#: 03090301.xhp#par_id3145316.2.help.text
+msgid "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
+msgstr "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
+
+#: 03090301.xhp#hd_id3145609.3.help.text
+msgctxt "03090301.xhp#hd_id3145609.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090301.xhp#par_id3145069.4.help.text
+msgctxt "03090301.xhp#par_id3145069.4.help.text"
+msgid "see Parameters"
+msgstr "see Parameters"
+
+#: 03090301.xhp#hd_id3147265.5.help.text
+msgctxt "03090301.xhp#hd_id3147265.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090301.xhp#par_id3148664.6.help.text
+msgctxt "03090301.xhp#par_id3148664.6.help.text"
+msgid "Sub/Function"
+msgstr "Sub/Function"
+
+#: 03090301.xhp#par_id3150400.7.help.text
+msgctxt "03090301.xhp#par_id3150400.7.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090301.xhp#par_id3154140.8.help.text
+msgid " Label"
+msgstr " Label"
+
+#: 03090301.xhp#par_id3150869.9.help.text
+msgctxt "03090301.xhp#par_id3150869.9.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090301.xhp#par_id3154909.10.help.text
+msgid "GoSub Label"
+msgstr "GoSub Label"
+
+#: 03090301.xhp#par_id3153969.11.help.text
+msgid "Exit Sub/Function"
+msgstr "Exit Sub/Function"
+
+#: 03090301.xhp#par_id3154685.12.help.text
+msgid "Label:"
+msgstr "Label:"
+
+#: 03090301.xhp#par_id3145786.13.help.text
+msgctxt "03090301.xhp#par_id3145786.13.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090301.xhp#par_id3159252.14.help.text
+msgctxt "03090301.xhp#par_id3159252.14.help.text"
+msgid "Return"
+msgstr "Return"
+
+#: 03090301.xhp#par_id3154321.15.help.text
+msgctxt "03090301.xhp#par_id3154321.15.help.text"
+msgid "End Sub/Function"
+msgstr "End Sub/Function"
+
+#: 03090301.xhp#par_id3147318.16.help.text
+msgid "The <emph>GoSub</emph> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
+msgstr "The <emph>GoSub</emph> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
+
+#: 03090301.xhp#par_id3153190.17.help.text
+msgid "If the program encounters a Return statement not preceded by <emph>GoSub</emph>, $[officename] Basic returns an error message. Use <emph>Exit Sub</emph> or <emph>Exit Function</emph> to ensure that the program leaves a Sub or Function before reaching the next Return statement."
+msgstr "If the program encounters a Return statement not preceded by <emph>GoSub</emph>, $[officename] Basic returns an error message. Use <emph>Exit Sub</emph> or <emph>Exit Function</emph> to ensure that the program leaves a Sub or Function before reaching the next Return statement."
+
+#: 03090301.xhp#par_id3145799.19.help.text
+msgid "The following example demonstrates the use of <emph>GoSub</emph> and <emph>Return</emph>. By executing a program section twice, the program calculates the square root of two numbers that are entered by the user."
+msgstr "The following example demonstrates the use of <emph>GoSub</emph> and <emph>Return</emph>. By executing a program section twice, the program calculates the square root of two numbers that are entered by the user."
+
+#: 03090301.xhp#hd_id3156284.20.help.text
+msgctxt "03090301.xhp#hd_id3156284.20.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090301.xhp#par_id3151073.21.help.text
+msgid "Sub ExampleGoSub"
+msgstr "Sub ExampleGoSub"
+
+#: 03090301.xhp#par_id3154097.22.help.text
+msgid "dim iInputa as Single"
+msgstr "dim iInputa as Single"
+
+#: 03090301.xhp#par_id3150715.23.help.text
+msgid "dim iInputb as Single"
+msgstr "dim iInputb as Single"
+
+#: 03090301.xhp#par_id3153416.24.help.text
+msgid "dim iInputc as Single"
+msgstr "dim iInputc as Single"
+
+#: 03090301.xhp#par_id3146970.25.help.text
+msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
+msgstr "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
+
+#: 03090301.xhp#par_id3150329.26.help.text
+msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
+msgstr "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
+
+#: 03090301.xhp#par_id3156277.27.help.text
+msgid "iInputc=iInputa"
+msgstr "iInputc=iInputa"
+
+#: 03090301.xhp#par_id3150321.28.help.text
+msgctxt "03090301.xhp#par_id3150321.28.help.text"
+msgid "GoSub SquareRoot"
+msgstr "GoSub SquareRoot"
+
+#: 03090301.xhp#par_id3154756.29.help.text
+msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
+msgstr "Print \"The square root of\";iInputa;\" is\";iInputc"
+
+#: 03090301.xhp#par_id3155764.30.help.text
+msgid "iInputc=iInputb"
+msgstr "iInputc=iInputb"
+
+#: 03090301.xhp#par_id3152960.31.help.text
+msgctxt "03090301.xhp#par_id3152960.31.help.text"
+msgid "GoSub SquareRoot"
+msgstr "GoSub SquareRoot"
+
+#: 03090301.xhp#par_id3147340.32.help.text
+msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
+msgstr "Print \"The square root of\";iInputb;\" is\";iInputc"
+
+#: 03090301.xhp#par_id3166450.33.help.text
+msgctxt "03090301.xhp#par_id3166450.33.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03090301.xhp#par_id3155176.34.help.text
+msgid "SquareRoot:"
+msgstr "SquareRoot:"
+
+#: 03090301.xhp#par_id3149257.35.help.text
+msgid "iInputc=sqr(iInputc)"
+msgstr "iInputc=sqr(iInputc)"
+
+#: 03090301.xhp#par_id3146316.36.help.text
+msgctxt "03090301.xhp#par_id3146316.36.help.text"
+msgid "Return"
+msgstr "Return"
+
+#: 03090301.xhp#par_id3154703.37.help.text
+msgctxt "03090301.xhp#par_id3154703.37.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: main0601.xhp#tit.help.text
+msgid "$[officename] Basic Help"
+msgstr "$[officename] Basic Help"
+
+#: main0601.xhp#hd_id3154232.1.help.text
+msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+
+#: main0601.xhp#par_id3153894.4.help.text
+#, fuzzy
+msgid "%PRODUCTNAME %PRODUCTVERSION provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
+msgstr "%PRODUCTNAME %PRODUCTVERSION provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.openoffice.org/\" name=\"http://api.openoffice.org\">http://api.openoffice.org</link>"
+
+#: main0601.xhp#par_id3147226.10.help.text
+msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
+msgstr ""
+
+#: main0601.xhp#hd_id3146957.9.help.text
+msgid "Working with %PRODUCTNAME Basic"
+msgstr "Working with %PRODUCTNAME Basic"
+
+#: main0601.xhp#hd_id3148473.7.help.text
+msgid "Help about the Help"
+msgstr "Help about the Help"
+
+#: 03080000.xhp#tit.help.text
+msgid "Numeric Functions"
+msgstr "Numeric Functions"
+
+#: 03080000.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+
+#: 03080000.xhp#par_id3148550.2.help.text
+msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
+msgstr "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
+
+#: 03080800.xhp#tit.help.text
+msgid "Converting Numbers"
+msgstr "Converting Numbers"
+
+#: 03080800.xhp#hd_id3145315.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
+
+#: 03080800.xhp#par_id3154760.2.help.text
+msgid "The following functions convert numbers from one number format to another."
+msgstr "The following functions convert numbers from one number format to another."
+
+#: 03070100.xhp#tit.help.text
+msgid "\"-\" Operator [Runtime]"
+msgstr "\"-\" Operator [Runtime]"
+
+#: 03070100.xhp#bm_id3156042.help.text
+msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
+
+#: 03070100.xhp#hd_id3156042.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
+
+#: 03070100.xhp#par_id3153345.2.help.text
+msgid "Subtracts two values."
+msgstr "Subtracts two values."
+
+#: 03070100.xhp#hd_id3149416.3.help.text
+msgctxt "03070100.xhp#hd_id3149416.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03070100.xhp#par_id3156023.4.help.text
+msgid "Result = Expression1 - Expression2"
+msgstr "Result = Expression1 - Expression2"
+
+#: 03070100.xhp#hd_id3154760.5.help.text
+msgctxt "03070100.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03070100.xhp#par_id3147560.6.help.text
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
+msgstr "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
+
+#: 03070100.xhp#par_id3150398.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+msgstr "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+
+#: 03070100.xhp#hd_id3154366.8.help.text
+msgctxt "03070100.xhp#hd_id3154366.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03070100.xhp#par_id3147230.9.help.text
+msgid "Sub ExampleSubtraction1"
+msgstr "Sub ExampleSubtraction1"
+
+#: 03070100.xhp#par_id3156281.10.help.text
+msgid "Print 5 - 5"
+msgstr "Print 5 - 5"
+
+#: 03070100.xhp#par_id3145172.11.help.text
+msgctxt "03070100.xhp#par_id3145172.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070100.xhp#par_id3149562.13.help.text
+msgid "Sub ExampleSubtraction2"
+msgstr "Sub ExampleSubtraction2"
+
+#: 03070100.xhp#par_id3159254.14.help.text
+msgctxt "03070100.xhp#par_id3159254.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr "Dim iValue1 as Integer"
+
+#: 03070100.xhp#par_id3147434.15.help.text
+msgctxt "03070100.xhp#par_id3147434.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr "Dim iValue2 as Integer"
+
+#: 03070100.xhp#par_id3150011.16.help.text
+msgctxt "03070100.xhp#par_id3150011.16.help.text"
+msgid "iValue1 = 5"
+msgstr "iValue1 = 5"
+
+#: 03070100.xhp#par_id3152576.17.help.text
+msgctxt "03070100.xhp#par_id3152576.17.help.text"
+msgid "iValue2 = 10"
+msgstr "iValue2 = 10"
+
+#: 03070100.xhp#par_id3163712.18.help.text
+msgid "Print iValue1 - iValue2"
+msgstr "Print iValue1 - iValue2"
+
+#: 03070100.xhp#par_id3156443.19.help.text
+msgctxt "03070100.xhp#par_id3156443.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090102.xhp#tit.help.text
+msgid "Select...Case Statement [Runtime]"
+msgstr "Select...Case Statement [Runtime]"
+
+#: 03090102.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
+msgstr "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
+
+#: 03090102.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
+
+#: 03090102.xhp#par_id3153896.2.help.text
+msgid "Defines one or more statement blocks depending on the value of an expression."
+msgstr "Defines one or more statement blocks depending on the value of an expression."
+
+#: 03090102.xhp#hd_id3147265.3.help.text
+msgctxt "03090102.xhp#hd_id3147265.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090102.xhp#par_id3150400.4.help.text
+msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
+msgstr "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
+
+#: 03090102.xhp#hd_id3150767.5.help.text
+msgctxt "03090102.xhp#hd_id3150767.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090102.xhp#par_id3156281.6.help.text
+msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+msgstr "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+
+#: 03090102.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
+msgstr "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
+
+#: 03090102.xhp#hd_id3153768.8.help.text
+msgctxt "03090102.xhp#hd_id3153768.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090102.xhp#par_id3150441.9.help.text
+msgctxt "03090102.xhp#par_id3150441.9.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr "Sub ExampleRandomSelect"
+
+#: 03090102.xhp#par_id3152462.10.help.text
+msgctxt "03090102.xhp#par_id3152462.10.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03090102.xhp#par_id3149260.11.help.text
+msgctxt "03090102.xhp#par_id3149260.11.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr "iVar = Int((15 * Rnd) -2)"
+
+#: 03090102.xhp#par_id3151113.12.help.text
+msgctxt "03090102.xhp#par_id3151113.12.help.text"
+msgid "Select Case iVar"
+msgstr "Select Case iVar"
+
+#: 03090102.xhp#par_id3149481.13.help.text
+msgctxt "03090102.xhp#par_id3149481.13.help.text"
+msgid "Case 1 To 5"
+msgstr "Case 1 To 5"
+
+#: 03090102.xhp#par_id3152597.14.help.text
+msgctxt "03090102.xhp#par_id3152597.14.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Number from 1 to 5\""
+
+#: 03090102.xhp#par_id3147428.15.help.text
+msgctxt "03090102.xhp#par_id3147428.15.help.text"
+msgid "Case 6, 7, 8"
+msgstr "Case 6, 7, 8"
+
+#: 03090102.xhp#par_id3147349.16.help.text
+msgctxt "03090102.xhp#par_id3147349.16.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Number from 6 to 8\""
+
+#: 03090102.xhp#par_id3153729.17.help.text
+msgid "Case 8 To 10"
+msgstr "Case 8 To 10"
+
+#: 03090102.xhp#par_id3152886.18.help.text
+msgctxt "03090102.xhp#par_id3152886.18.help.text"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Greater than 8\""
+
+#: 03090102.xhp#par_id3155414.19.help.text
+msgctxt "03090102.xhp#par_id3155414.19.help.text"
+msgid "Case Else"
+msgstr "Case Else"
+
+#: 03090102.xhp#par_id3146975.20.help.text
+msgid "Print \"Out of range 1 to 10\""
+msgstr "Print \"Out of range 1 to 10\""
+
+#: 03090102.xhp#par_id3150419.21.help.text
+msgctxt "03090102.xhp#par_id3150419.21.help.text"
+msgid "End Select"
+msgstr "End Select"
+
+#: 03090102.xhp#par_id3154943.22.help.text
+msgctxt "03090102.xhp#par_id3154943.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020411.xhp#tit.help.text
+msgid "MkDir Statement [Runtime]"
+msgstr "MkDir Statement [Runtime]"
+
+#: 03020411.xhp#bm_id3156421.help.text
+msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgstr "<bookmark_value>MkDir statement</bookmark_value>"
+
+#: 03020411.xhp#hd_id3156421.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
+
+#: 03020411.xhp#par_id3147000.2.help.text
+msgid "Creates a new directory on a data medium."
+msgstr "Creates a new directory on a data medium."
+
+#: 03020411.xhp#hd_id3148520.3.help.text
+msgctxt "03020411.xhp#hd_id3148520.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020411.xhp#par_id3155150.4.help.text
+msgid "MkDir Text As String"
+msgstr "MkDir Text As String"
+
+#: 03020411.xhp#hd_id3156027.5.help.text
+msgctxt "03020411.xhp#hd_id3156027.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020411.xhp#par_id3153750.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020411.xhp#par_id3153311.7.help.text
+msgid "If the path is not determined, the directory is created in the current directory."
+msgstr "If the path is not determined, the directory is created in the current directory."
+
+#: 03020411.xhp#hd_id3155388.8.help.text
+msgctxt "03020411.xhp#hd_id3155388.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020411.xhp#par_id3148473.9.help.text
+msgid "Sub ExampleFileIO"
+msgstr "Sub ExampleFileIO"
+
+#: 03020411.xhp#par_id3149762.10.help.text
+msgid "' Example for functions of the file organization"
+msgstr "' Example for functions of the file organisation"
+
+#: 03020411.xhp#par_id3145610.11.help.text
+msgid "Const sFile1 as String = \"file://c|/autoexec.bat\""
+msgstr "Const sFile1 as String = \"file://c|/autoexec.bat\""
+
+#: 03020411.xhp#par_id3147264.12.help.text
+msgid "Const sDir1 as String = \"file://c|/Temp\""
+msgstr "Const sDir1 as String = \"file://c|/Temp\""
+
+#: 03020411.xhp#par_id3149669.13.help.text
+msgid "Const sSubDir1 as String =\"Test\""
+msgstr "Const sSubDir1 as String =\"Test\""
+
+#: 03020411.xhp#par_id3148663.14.help.text
+msgid "Const sFile2 as String = \"Copied.tmp\""
+msgstr "Const sFile2 as String = \"Copied.tmp\""
+
+#: 03020411.xhp#par_id3154071.15.help.text
+msgid "Const sFile3 as String = \"Renamed.tmp\""
+msgstr "Const sFile3 as String = \"Renamed.tmp\""
+
+#: 03020411.xhp#par_id3150792.16.help.text
+msgid "Dim sFile as String"
+msgstr "Dim sFile as String"
+
+#: 03020411.xhp#par_id3154366.17.help.text
+msgid "sFile = sDir1 + \"/\" + sSubDir1"
+msgstr "sFile = sDir1 + \"/\" + sSubDir1"
+
+#: 03020411.xhp#par_id3149204.18.help.text
+msgctxt "03020411.xhp#par_id3149204.18.help.text"
+msgid "ChDir( sDir1 )"
+msgstr "ChDir( sDir1 )"
+
+#: 03020411.xhp#par_id3154217.19.help.text
+msgid "If Dir(sSubDir1,16)=\"\" then ' Does the directory exist ?"
+msgstr "If Dir(sSubDir1,16)=\"\" then ' Does the directory exist ?"
+
+#: 03020411.xhp#par_id3156423.20.help.text
+msgid "MkDir sSubDir1"
+msgstr "MkDir sSubDir1"
+
+#: 03020411.xhp#par_id3147228.21.help.text
+msgid "MsgBox sFile,0,\"Create directory\""
+msgstr "MsgBox sFile,0,\"Create directory\""
+
+#: 03020411.xhp#par_id3153970.22.help.text
+msgctxt "03020411.xhp#par_id3153970.22.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03020411.xhp#par_id3148451.24.help.text
+msgid "sFile = sFile + \"/\" + sFile2"
+msgstr "sFile = sFile + \"/\" + sFile2"
+
+#: 03020411.xhp#par_id3155132.25.help.text
+msgid "FileCopy sFile1 , sFile"
+msgstr "FileCopy sFile1 , sFile"
+
+#: 03020411.xhp#par_id3153770.26.help.text
+msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+msgstr "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+
+#: 03020411.xhp#par_id3159154.27.help.text
+msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+msgstr "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+
+#: 03020411.xhp#par_id3149484.28.help.text
+msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
+msgstr "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
+
+#: 03020411.xhp#par_id3152885.29.help.text
+msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+msgstr "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+
+#: 03020411.xhp#par_id3152596.30.help.text
+msgid "Name sFile as sDir1 + \"/\" + sSubDir1 + \"/\" + sFile3"
+msgstr "Name sFile as sDir1 + \"/\" + sSubDir1 + \"/\" + sFile3"
+
+#: 03020411.xhp#par_id3153952.31.help.text
+msgid "' Rename in the same directory"
+msgstr "' Rename in the same directory"
+
+#: 03020411.xhp#par_id3152576.33.help.text
+msgid "sFile = sDir1 + \"/\" + sSubDir1 + \"/\" + sFile3"
+msgstr "sFile = sDir1 + \"/\" + sSubDir1 + \"/\" + sFile3"
+
+#: 03020411.xhp#par_id3147426.34.help.text
+msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
+msgstr "SetAttr( sFile, 0 ) 'Delete all attributes"
+
+#: 03020411.xhp#par_id3148647.35.help.text
+msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgstr "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+
+#: 03020411.xhp#par_id3153363.36.help.text
+msgid "Kill sFile"
+msgstr "Kill sFile"
+
+#: 03020411.xhp#par_id3151113.37.help.text
+msgid "RmDir sDir1 + \"/\" + sSubDir1"
+msgstr "RmDir sDir1 + \"/\" + sSubDir1"
+
+#: 03020411.xhp#par_id3153157.38.help.text
+msgctxt "03020411.xhp#par_id3153157.38.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020411.xhp#par_id3150092.40.help.text
+msgid "' Converts a system path in URL"
+msgstr "' Converts a system path in URL"
+
+#: 03020411.xhp#par_id3147396.41.help.text
+msgid "Function fSysURL( fSysFp as String ) as String"
+msgstr "Function fSysURL( fSysFp as String ) as String"
+
+#: 03020411.xhp#par_id3153878.42.help.text
+msgid "Dim iPos As String"
+msgstr "Dim iPos As String"
+
+#: 03020411.xhp#par_id3150420.43.help.text
+msgid "iPos = 1"
+msgstr "iPos = 1"
+
+#: 03020411.xhp#par_id3145253.44.help.text
+msgid "iPos = Instr(iPos,fSysFp, getPathSeparator())"
+msgstr "iPos = Instr(iPos,fSysFp, getPathSeparator())"
+
+#: 03020411.xhp#par_id3153415.45.help.text
+msgid "do while iPos > 0"
+msgstr "do while iPos > 0"
+
+#: 03020411.xhp#par_id3153512.46.help.text
+msgid "mid( fSysFp, iPos , 1,\"/\")"
+msgstr "mid( fSysFp, iPos , 1,\"/\")"
+
+#: 03020411.xhp#par_id3146899.47.help.text
+msgid "iPos = Instr(iPos+1,fSysFp, getPathSeparator())"
+msgstr "iPos = Instr(iPos+1,fSysFp, getPathSeparator())"
+
+#: 03020411.xhp#par_id3145652.48.help.text
+msgid "loop"
+msgstr "loop"
+
+#: 03020411.xhp#par_id3156276.49.help.text
+msgid "' the colon with DOS"
+msgstr "' the colon with DOS"
+
+#: 03020411.xhp#par_id3146913.50.help.text
+msgid "iPos = Instr(1,fSysFp,\":\")"
+msgstr "iPos = Instr(1,fSysFp,\":\")"
+
+#: 03020411.xhp#par_id3145640.51.help.text
+msgid "if iPos > 0 then mid( fSysFp, iPos , 1,\"|\")"
+msgstr "if iPos > 0 then mid( fSysFp, iPos , 1,\"|\")"
+
+#: 03020411.xhp#par_id3155443.52.help.text
+msgid "fSysURL = \"file://\" & fSysFp"
+msgstr "fSysURL = \"file://\" & fSysFp"
+
+#: 03020411.xhp#par_id3148995.53.help.text
+msgctxt "03020411.xhp#par_id3148995.53.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03131700.xhp#tit.help.text
+msgid "GetProcessServiceManager Function [Runtime]"
+msgstr "GetProcessServiceManager Function [Runtime]"
+
+#: 03131700.xhp#bm_id3153255.help.text
+msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgstr "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+
+#: 03131700.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
+
+#: 03131700.xhp#par_id3156414.2.help.text
+msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
+msgstr "Returns the ProcessServiceManager (central Uno ServiceManager)."
+
+#: 03131700.xhp#par_id3145136.3.help.text
+msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+msgstr "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+
+#: 03131700.xhp#hd_id3153681.4.help.text
+msgctxt "03131700.xhp#hd_id3153681.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03131700.xhp#par_id3151110.5.help.text
+msgctxt "03131700.xhp#par_id3151110.5.help.text"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr "oServiceManager = GetProcessServiceManager()"
+
+#: 03131700.xhp#hd_id3149516.6.help.text
+msgctxt "03131700.xhp#hd_id3149516.6.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03131700.xhp#par_id3143270.7.help.text
+msgctxt "03131700.xhp#par_id3143270.7.help.text"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr "oServiceManager = GetProcessServiceManager()"
+
+#: 03131700.xhp#par_id3153825.8.help.text
+msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+msgstr "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+
+#: 03131700.xhp#par_id3148473.9.help.text
+msgid "this is the same as the following statement:"
+msgstr "this is the same as the following statement:"
+
+#: 03131700.xhp#par_id3145609.10.help.text
+msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+msgstr "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+
+#: 03104300.xhp#tit.help.text
+msgid "DimArray Function [Runtime]"
+msgstr "DimArray Function [Runtime]"
+
+#: 03104300.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>DimArray function</bookmark_value>"
+msgstr "<bookmark_value>DimArray function</bookmark_value>"
+
+#: 03104300.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
+
+#: 03104300.xhp#par_id3153527.2.help.text
+msgid "Returns a Variant array."
+msgstr "Returns a Variant array."
+
+#: 03104300.xhp#hd_id3149762.3.help.text
+msgctxt "03104300.xhp#hd_id3149762.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03104300.xhp#par_id3148473.4.help.text
+msgid "DimArray ( Argument list)"
+msgstr "DimArray ( Argument list)"
+
+#: 03104300.xhp#par_id3154142.5.help.text
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgstr "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+
+#: 03104300.xhp#par_id3156023.6.help.text
+msgid "If no parameters are passed, an empty array is created (like Dim A() that is the same as a sequence of length 0 in Uno). If parameters are specified, a dimension is created for each parameter."
+msgstr "If no parameters are passed, an empty array is created (like Dim A() that is the same as a sequence of length 0 in Uno). If parameters are specified, a dimension is created for each parameter."
+
+#: 03104300.xhp#hd_id3154760.7.help.text
+msgctxt "03104300.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03104300.xhp#par_id3159414.8.help.text
+msgctxt "03104300.xhp#par_id3159414.8.help.text"
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgstr "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+
+#: 03104300.xhp#hd_id3150358.9.help.text
+msgctxt "03104300.xhp#hd_id3150358.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03104300.xhp#par_id3154939.10.help.text
+msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgstr "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+
+#: 03090303.xhp#tit.help.text
+msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
+msgstr "On...GoSub Statement; On...GoTo Statement [Runtime]"
+
+#: 03090303.xhp#bm_id3153897.help.text
+msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
+msgstr "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
+
+#: 03090303.xhp#hd_id3153897.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
+
+#: 03090303.xhp#par_id3150359.2.help.text
+msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+msgstr "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+
+#: 03090303.xhp#hd_id3148798.3.help.text
+msgctxt "03090303.xhp#hd_id3148798.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090303.xhp#par_id3154366.4.help.text
+msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
+msgstr "On N GoSub Label1[, Label2[, Label3[,...]]]"
+
+#: 03090303.xhp#par_id3150769.5.help.text
+msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgstr "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+
+#: 03090303.xhp#hd_id3156215.6.help.text
+msgctxt "03090303.xhp#hd_id3156215.6.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090303.xhp#par_id3148673.7.help.text
+msgid "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
+msgstr "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
+
+#: 03090303.xhp#par_id3153194.8.help.text
+msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
+msgstr "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
+
+#: 03090303.xhp#par_id3156442.9.help.text
+msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+msgstr "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+
+#: 03090303.xhp#hd_id3148645.10.help.text
+msgctxt "03090303.xhp#hd_id3148645.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090303.xhp#par_id3154014.12.help.text
+msgid "Sub ExampleOnGosub"
+msgstr "Sub ExampleOnGosub"
+
+#: 03090303.xhp#par_id3153158.13.help.text
+msgctxt "03090303.xhp#par_id3153158.13.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03090303.xhp#par_id3154490.14.help.text
+msgctxt "03090303.xhp#par_id3154490.14.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03090303.xhp#par_id3155417.15.help.text
+msgid "iVar = 2"
+msgstr "iVar = 2"
+
+#: 03090303.xhp#par_id3154730.16.help.text
+msgid "sVar =\"\""
+msgstr "sVar =\"\""
+
+#: 03090303.xhp#par_id3154942.17.help.text
+msgid "On iVar GoSub Sub1, Sub2"
+msgstr "On iVar GoSub Sub1, Sub2"
+
+#: 03090303.xhp#par_id3149378.18.help.text
+msgid "On iVar GoTo Line1, Line2"
+msgstr "On iVar GoTo Line1, Line2"
+
+#: 03090303.xhp#par_id3153416.19.help.text
+msgctxt "03090303.xhp#par_id3153416.19.help.text"
+msgid "Exit Sub"
+msgstr "Exit Sub"
+
+#: 03090303.xhp#par_id3154015.20.help.text
+msgid "Sub1:"
+msgstr "Sub1:"
+
+#: 03090303.xhp#par_id3153948.21.help.text
+msgid "sVar =sVar & \" From Sub 1 to\" : Return"
+msgstr "sVar =sVar & \" From Sub 1 to\" : Return"
+
+#: 03090303.xhp#par_id3150750.22.help.text
+msgid "Sub2:"
+msgstr "Sub2:"
+
+#: 03090303.xhp#par_id3153708.23.help.text
+msgid "sVar =sVar & \" From Sub 2 to\" : Return"
+msgstr "sVar =sVar & \" From Sub 2 to\" : Return"
+
+#: 03090303.xhp#par_id3155067.24.help.text
+msgid "Line1:"
+msgstr "Line1:"
+
+#: 03090303.xhp#par_id3150321.25.help.text
+msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
+msgstr "sVar =sVar & \" Label 1\" : GoTo Ende"
+
+#: 03090303.xhp#par_id3149019.26.help.text
+msgid "Line2:"
+msgstr "Line2:"
+
+#: 03090303.xhp#par_id3155764.27.help.text
+msgid "sVar =sVar & \" Label 2\""
+msgstr "sVar =sVar & \" Label 2\""
+
+#: 03090303.xhp#par_id3153711.28.help.text
+msgid "Ende:"
+msgstr "Ende:"
+
+#: 03090303.xhp#par_id3154253.29.help.text
+msgid "MsgBox sVar,0,\"On...Gosub\""
+msgstr "MsgBox sVar,0,\"On...Gosub\""
+
+#: 03090303.xhp#par_id3149565.30.help.text
+msgctxt "03090303.xhp#par_id3149565.30.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120101.xhp#tit.help.text
+msgid "Asc Function [Runtime]"
+msgstr "Asc Function [Runtime]"
+
+#: 03120101.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Asc function</bookmark_value>"
+msgstr "<bookmark_value>Asc function</bookmark_value>"
+
+#: 03120101.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
+
+#: 03120101.xhp#par_id3151384.2.help.text
+msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
+msgstr "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
+
+#: 03120101.xhp#hd_id3155555.3.help.text
+msgctxt "03120101.xhp#hd_id3155555.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120101.xhp#par_id3143267.4.help.text
+msgid "Asc (Text As String)"
+msgstr "Asc (Text As String)"
+
+#: 03120101.xhp#hd_id3147242.5.help.text
+msgctxt "03120101.xhp#hd_id3147242.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120101.xhp#par_id3150669.6.help.text
+msgctxt "03120101.xhp#par_id3150669.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03120101.xhp#hd_id3148473.7.help.text
+msgctxt "03120101.xhp#hd_id3148473.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120101.xhp#par_id3149415.8.help.text
+msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
+msgstr "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
+
+#: 03120101.xhp#par_id3145609.9.help.text
+msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters."
+msgstr "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters."
+
+#: 03120101.xhp#hd_id3159413.10.help.text
+msgctxt "03120101.xhp#hd_id3159413.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120101.xhp#par_id3149457.11.help.text
+msgid "Sub ExampleASC"
+msgstr "Sub ExampleASC"
+
+#: 03120101.xhp#par_id3150792.12.help.text
+msgid "Print ASC(\"A\") REM returns 65"
+msgstr "Print ASC(\"A\") REM returns 65"
+
+#: 03120101.xhp#par_id3148797.13.help.text
+msgid "Print ASC(\"Z\") REM returns 90"
+msgstr "Print ASC(\"Z\") REM returns 90"
+
+#: 03120101.xhp#par_id3163800.14.help.text
+msgid "Print ASC(\"Las Vegas\") REM returns 76, since only the first character is taken into account"
+msgstr "Print ASC(\"Las Vegas\") REM returns 76, since only the first character is taken into account"
+
+#: 03120101.xhp#par_id3148674.15.help.text
+msgctxt "03120101.xhp#par_id3148674.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120101.xhp#par_idN1067B.help.text
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+
+#: 03080701.xhp#tit.help.text
+msgid "Sgn Function [Runtime]"
+msgstr "Sgn Function [Runtime]"
+
+#: 03080701.xhp#bm_id3148474.help.text
+msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgstr "<bookmark_value>Sgn function</bookmark_value>"
+
+#: 03080701.xhp#hd_id3148474.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
+
+#: 03080701.xhp#par_id3148686.2.help.text
+msgid "Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero."
+msgstr "Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero."
+
+#: 03080701.xhp#hd_id3156023.3.help.text
+msgctxt "03080701.xhp#hd_id3156023.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080701.xhp#par_id3153897.4.help.text
+msgid "Sgn (Number)"
+msgstr "Sgn (Number)"
+
+#: 03080701.xhp#hd_id3145069.5.help.text
+msgctxt "03080701.xhp#hd_id3145069.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080701.xhp#par_id3150359.6.help.text
+msgctxt "03080701.xhp#par_id3150359.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03080701.xhp#hd_id3150543.7.help.text
+msgctxt "03080701.xhp#hd_id3150543.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080701.xhp#par_id3154365.8.help.text
+msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+msgstr "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+
+#: 03080701.xhp#par_id3150767.9.help.text
+msgid "NumExpression"
+msgstr "NumExpression"
+
+#: 03080701.xhp#par_id3150441.10.help.text
+msgctxt "03080701.xhp#par_id3150441.10.help.text"
+msgid "Return value"
+msgstr "Return value"
+
+#: 03080701.xhp#par_id3161833.11.help.text
+msgid "negative"
+msgstr "negative"
+
+#: 03080701.xhp#par_id3155306.12.help.text
+msgid "Sgn returns -1."
+msgstr "Sgn returns -1."
+
+#: 03080701.xhp#par_id3145271.13.help.text
+msgctxt "03080701.xhp#par_id3145271.13.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03080701.xhp#par_id3146119.14.help.text
+msgid "Sgn returns 0."
+msgstr "Sgn returns 0."
+
+#: 03080701.xhp#par_id3153139.15.help.text
+msgid "positive"
+msgstr "positive"
+
+#: 03080701.xhp#par_id3154319.16.help.text
+msgid "Sgn returns 1."
+msgstr "Sgn returns 1."
+
+#: 03080701.xhp#hd_id3152576.17.help.text
+msgctxt "03080701.xhp#hd_id3152576.17.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080701.xhp#par_id3154791.18.help.text
+msgid "Sub ExampleSgn"
+msgstr "Sub ExampleSgn"
+
+#: 03080701.xhp#par_id3155416.19.help.text
+msgid "Print sgn(-10) REM returns -1"
+msgstr "Print sgn(-10) REM returns -1"
+
+#: 03080701.xhp#par_id3154096.20.help.text
+msgid "Print sgn(0) REM returns 0"
+msgstr "Print sgn(0) REM returns 0"
+
+#: 03080701.xhp#par_id3148457.21.help.text
+msgid "Print sgn(10) REM returns 1"
+msgstr "Print sgn(10) REM returns 1"
+
+#: 03080701.xhp#par_id3144765.22.help.text
+msgctxt "03080701.xhp#par_id3144765.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03080101.xhp#tit.help.text
+msgid "Atn Function [Runtime]"
+msgstr "Atn Function [Runtime]"
+
+#: 03080101.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Atn function</bookmark_value>"
+msgstr "<bookmark_value>Atn function</bookmark_value>"
+
+#: 03080101.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
+
+#: 03080101.xhp#par_id3149346.2.help.text
+msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
+msgstr "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
+
+#: 03080101.xhp#par_id3143271.3.help.text
+msgid "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
+msgstr "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
+
+#: 03080101.xhp#par_id3145315.4.help.text
+msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
+msgstr "Atn(side opposite the angle/side adjacent to angle)= Alpha"
+
+#: 03080101.xhp#hd_id3149669.5.help.text
+msgctxt "03080101.xhp#hd_id3149669.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080101.xhp#par_id3148947.6.help.text
+msgid "Atn (Number)"
+msgstr "Atn (Number)"
+
+#: 03080101.xhp#hd_id3148664.7.help.text
+msgctxt "03080101.xhp#hd_id3148664.7.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080101.xhp#par_id3150359.8.help.text
+msgctxt "03080101.xhp#par_id3150359.8.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080101.xhp#hd_id3148798.9.help.text
+msgctxt "03080101.xhp#hd_id3148798.9.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080101.xhp#par_id3156212.10.help.text
+msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
+msgstr "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
+
+#: 03080101.xhp#par_id3153192.11.help.text
+msgid "To convert radians to degrees, multiply radians by 180/pi."
+msgstr "To convert radians to degrees, multiply radians by 180/pi."
+
+#: 03080101.xhp#par_id3147230.12.help.text
+msgctxt "03080101.xhp#par_id3147230.12.help.text"
+msgid "degree=(radian*180)/pi"
+msgstr "degree=(radian*180)/pi"
+
+#: 03080101.xhp#par_id3125864.13.help.text
+msgctxt "03080101.xhp#par_id3125864.13.help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "radian=(degree*pi)/180"
+
+#: 03080101.xhp#par_id3159252.14.help.text
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
+msgstr "Pi is here the fixed circle constant with the rounded value 3.14159."
+
+#: 03080101.xhp#hd_id3153142.15.help.text
+msgctxt "03080101.xhp#hd_id3153142.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080101.xhp#par_id3146985.16.help.text
+msgid "REM The following example calculates for a right-angled triangle"
+msgstr "REM The following example calculates for a right-angled triangle"
+
+#: 03080101.xhp#par_id3145750.17.help.text
+msgid "REM the angle Alpha from the tangent of the angle Alpha:"
+msgstr "REM the angle Alpha from the tangent of the angle Alpha:"
+
+#: 03080101.xhp#par_id3146975.18.help.text
+msgid "Sub ExampleATN"
+msgstr "Sub ExampleATN"
+
+#: 03080101.xhp#par_id3151112.19.help.text
+msgid "REM rounded Pi = 3.14159 is a predefined constant"
+msgstr "REM rounded Pi = 3.14159 is a predefined constant"
+
+#: 03080101.xhp#par_id3159156.20.help.text
+msgid "Dim d1 As Double"
+msgstr "Dim d1 As Double"
+
+#: 03080101.xhp#par_id3147435.21.help.text
+msgid "Dim d2 As Double"
+msgstr "Dim d2 As Double"
+
+#: 03080101.xhp#par_id3149262.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+msgstr "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+
+#: 03080101.xhp#par_id3149482.23.help.text
+msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+msgstr "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+
+#: 03080101.xhp#par_id3155415.24.help.text
+msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgstr "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+
+#: 03080101.xhp#par_id3149959.25.help.text
+msgctxt "03080101.xhp#par_id3149959.25.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080600.xhp#tit.help.text
+msgid "Absolute Values"
+msgstr "Absolute Values"
+
+#: 03080600.xhp#hd_id3146958.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+
+#: 03080600.xhp#par_id3150771.2.help.text
+msgid "This function returns absolute values."
+msgstr "This function returns absolute values."
+
+#: 03101130.xhp#tit.help.text
+msgid "DefSng Statement [Runtime]"
+msgstr "DefSng Statement [Runtime]"
+
+#: 03101130.xhp#bm_id2445142.help.text
+msgid "<bookmark_value>DefSng statement</bookmark_value>"
+msgstr "<bookmark_value>DefSng statement</bookmark_value>"
+
+#: 03101130.xhp#par_idN10577.help.text
+msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
+
+#: 03101130.xhp#par_idN10587.help.text
+msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
+msgstr "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
+
+#: 03101130.xhp#par_idN1058A.help.text
+msgctxt "03101130.xhp#par_idN1058A.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101130.xhp#par_idN1058E.help.text
+msgctxt "03101130.xhp#par_idN1058E.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101130.xhp#par_idN10591.help.text
+msgctxt "03101130.xhp#par_idN10591.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101130.xhp#par_idN10595.help.text
+msgctxt "03101130.xhp#par_idN10595.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+
+#: 03101130.xhp#par_idN1059C.help.text
+msgctxt "03101130.xhp#par_idN1059C.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101130.xhp#par_idN105A3.help.text
+msgctxt "03101130.xhp#par_idN105A3.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Keyword:</emph> Default variable type"
+
+#: 03101130.xhp#par_idN105AA.help.text
+msgid "<emph>DefSng:</emph> Single"
+msgstr "<emph>DefSng:</emph> Single"
+
+#: 03101130.xhp#par_idN105B1.help.text
+msgctxt "03101130.xhp#par_idN105B1.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101130.xhp#par_idN105B5.help.text
+msgctxt "03101130.xhp#par_idN105B5.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03101130.xhp#par_idN105B8.help.text
+msgctxt "03101130.xhp#par_idN105B8.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101130.xhp#par_idN105BB.help.text
+msgctxt "03101130.xhp#par_idN105BB.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101130.xhp#par_idN105BE.help.text
+msgctxt "03101130.xhp#par_idN105BE.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101130.xhp#par_idN105C1.help.text
+msgctxt "03101130.xhp#par_idN105C1.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101130.xhp#par_idN105C4.help.text
+msgctxt "03101130.xhp#par_idN105C4.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101130.xhp#par_idN105C7.help.text
+msgctxt "03101130.xhp#par_idN105C7.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101130.xhp#par_idN105CA.help.text
+msgctxt "03101130.xhp#par_idN105CA.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101130.xhp#par_idN105CD.help.text
+msgid "DefSng s"
+msgstr "DefSng s"
+
+#: 03101130.xhp#par_idN105D0.help.text
+msgid "Sub ExampleDefSng"
+msgstr "Sub ExampleDefSng"
+
+#: 03101130.xhp#par_idN105D3.help.text
+msgid "sSng=Single REM sSng is an implicit single variable"
+msgstr "sSng=Single REM sSng is an implicit single variable"
+
+#: 03101130.xhp#par_idN105D6.help.text
+msgctxt "03101130.xhp#par_idN105D6.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020408.xhp#tit.help.text
+msgid "FileLen-Function [Runtime]"
+msgstr "FileLen-Function [Runtime]"
+
+#: 03020408.xhp#bm_id3153126.help.text
+msgid "<bookmark_value>FileLen function</bookmark_value>"
+msgstr "<bookmark_value>FileLen function</bookmark_value>"
+
+#: 03020408.xhp#hd_id3153126.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
+
+#: 03020408.xhp#par_id3145068.2.help.text
+msgid "Returns the length of a file in bytes."
+msgstr "Returns the length of a file in bytes."
+
+#: 03020408.xhp#hd_id3159414.3.help.text
+msgctxt "03020408.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020408.xhp#par_id3149656.4.help.text
+msgid "FileLen (Text As String)"
+msgstr "FileLen (Text As String)"
+
+#: 03020408.xhp#hd_id3148798.5.help.text
+msgctxt "03020408.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020408.xhp#par_id3156282.6.help.text
+msgctxt "03020408.xhp#par_id3156282.6.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03020408.xhp#hd_id3150768.7.help.text
+msgctxt "03020408.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020408.xhp#par_id3153193.8.help.text
+msgctxt "03020408.xhp#par_id3153193.8.help.text"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020408.xhp#par_id3150439.9.help.text
+msgid "This function determines the length of a file. If the FileLen function is called for an open file, it returns the file length before it was opened. To determine the current file length of an open file, use the Lof function."
+msgstr "This function determines the length of a file. If the FileLen function is called for an open file, it returns the file length before it was opened. To determine the current file length of an open file, use the Lof function."
+
+#: 03020408.xhp#hd_id3163710.10.help.text
+msgctxt "03020408.xhp#hd_id3163710.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020408.xhp#par_id3159154.11.help.text
+msgid "Sub ExampleFileLen"
+msgstr "Sub ExampleFileLen"
+
+#: 03020408.xhp#par_id3145271.12.help.text
+msgid "msgbox FileLen(\"C:\\autoexec.bat\")"
+msgstr "msgbox FileLen(\"C:\\autoexec.bat\")"
+
+#: 03020408.xhp#par_id3145749.13.help.text
+msgctxt "03020408.xhp#par_id3145749.13.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03070200.xhp#tit.help.text
+msgid "\"*\" Operator [Runtime]"
+msgstr "\"*\" Operator [Runtime]"
+
+#: 03070200.xhp#bm_id3147573.help.text
+msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
+
+#: 03070200.xhp#hd_id3147573.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
+
+#: 03070200.xhp#par_id3154347.2.help.text
+msgid "Multiplies two values."
+msgstr "Multiplies two values."
+
+#: 03070200.xhp#hd_id3148946.3.help.text
+msgctxt "03070200.xhp#hd_id3148946.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03070200.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 * Expression2"
+msgstr "Result = Expression1 * Expression2"
+
+#: 03070200.xhp#hd_id3150400.5.help.text
+msgctxt "03070200.xhp#hd_id3150400.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03070200.xhp#par_id3154365.6.help.text
+msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+msgstr "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+
+#: 03070200.xhp#par_id3154685.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+msgstr "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+
+#: 03070200.xhp#hd_id3153968.8.help.text
+msgctxt "03070200.xhp#hd_id3153968.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03070200.xhp#par_id3155132.9.help.text
+msgid "Sub ExampleMultiplication1"
+msgstr "Sub ExampleMultiplication1"
+
+#: 03070200.xhp#par_id3159254.10.help.text
+msgid "Print 5 * 5"
+msgstr "Print 5 * 5"
+
+#: 03070200.xhp#par_id3153091.11.help.text
+msgctxt "03070200.xhp#par_id3153091.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070200.xhp#par_id3149667.13.help.text
+msgid "Sub ExampleMultiplication2"
+msgstr "Sub ExampleMultiplication2"
+
+#: 03070200.xhp#par_id3151113.14.help.text
+msgctxt "03070200.xhp#par_id3151113.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr "Dim iValue1 as Integer"
+
+#: 03070200.xhp#par_id3147434.15.help.text
+msgctxt "03070200.xhp#par_id3147434.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr "Dim iValue2 as Integer"
+
+#: 03070200.xhp#par_id3153727.16.help.text
+msgctxt "03070200.xhp#par_id3153727.16.help.text"
+msgid "iValue1 = 5"
+msgstr "iValue1 = 5"
+
+#: 03070200.xhp#par_id3147348.17.help.text
+msgctxt "03070200.xhp#par_id3147348.17.help.text"
+msgid "iValue2 = 10"
+msgstr "iValue2 = 10"
+
+#: 03070200.xhp#par_id3149261.18.help.text
+msgid "Print iValue1 * iValue2"
+msgstr "Print iValue1 * iValue2"
+
+#: 03070200.xhp#par_id3148646.19.help.text
+msgctxt "03070200.xhp#par_id3148646.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03050000.xhp#tit.help.text
+msgid "Error-Handling Functions"
+msgstr "Error-Handling Functions"
+
+#: 03050000.xhp#hd_id3143271.1.help.text
+msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
+
+#: 03050000.xhp#par_id3145068.2.help.text
+msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
+msgstr "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
+
+#: 03050000.xhp#par_id3148946.3.help.text
+msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
+msgstr "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
+
+#: 03103700.xhp#tit.help.text
+msgid "Set Statement[Runtime]"
+msgstr "Set Statement[Runtime]"
+
+#: 03103700.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
+msgstr "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
+
+#: 03103700.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+
+#: 03103700.xhp#par_id3159149.2.help.text
+msgid "Sets an object reference on a variable or a Property."
+msgstr "Sets an object reference on a variable or a Property."
+
+#: 03103700.xhp#hd_id3153105.3.help.text
+msgctxt "03103700.xhp#hd_id3153105.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103700.xhp#par_id3154217.4.help.text
+msgid "Set ObjectVar = Object"
+msgstr "Set ObjectVar = Object"
+
+#: 03103700.xhp#hd_id3154685.5.help.text
+msgctxt "03103700.xhp#hd_id3154685.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03103700.xhp#par_id3156281.6.help.text
+msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
+msgstr "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
+
+#: 03103700.xhp#par_id3159252.7.help.text
+msgid "<emph>Object:</emph> Object that the variable or the property refers to."
+msgstr "<emph>Object:</emph> Object that the variable or the property refers to."
+
+#: 03103700.xhp#par_idN10623.help.text
+msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
+msgstr "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
+
+#: 03103700.xhp#hd_id3159153.8.help.text
+msgctxt "03103700.xhp#hd_id3159153.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103700.xhp#par_id3147349.9.help.text
+msgid "Sub ExampleSet"
+msgstr "Sub ExampleSet"
+
+#: 03103700.xhp#par_id3149481.10.help.text
+msgid "Dim oDoc As Object"
+msgstr "Dim oDoc As Object"
+
+#: 03103700.xhp#par_id3153140.11.help.text
+msgid "Set oDoc = ActiveWindow"
+msgstr "Set oDoc = ActiveWindow"
+
+#: 03103700.xhp#par_id3153190.12.help.text
+msgid "Print oDoc.Name"
+msgstr "Print oDoc.Name"
+
+#: 03103700.xhp#par_id3161833.13.help.text
+msgctxt "03103700.xhp#par_id3161833.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132400.xhp#tit.help.text
+msgid "CreateObject Function [Runtime]"
+msgstr "CreateObject Function [Runtime]"
+
+#: 03132400.xhp#bm_id659810.help.text
+msgid "<bookmark_value>CreateObject function</bookmark_value>"
+msgstr "<bookmark_value>CreateObject function</bookmark_value>"
+
+#: 03132400.xhp#par_idN10580.help.text
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
+
+#: 03132400.xhp#par_idN10590.help.text
+msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
+msgstr "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
+
+#: 03132400.xhp#par_idN1059F.help.text
+msgid "This method creates instances of the type that is passed as parameter."
+msgstr "This method creates instances of the type that is passed as parameter."
+
+#: 03132400.xhp#par_idN105A2.help.text
+msgctxt "03132400.xhp#par_idN105A2.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03132400.xhp#par_idN105A6.help.text
+msgid "oObj = CreateObject( type )"
+msgstr "oObj = CreateObject( type )"
+
+#: 03132400.xhp#par_idN105A9.help.text
+msgctxt "03132400.xhp#par_idN105A9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03132400.xhp#par_idN105AD.help.text
+msgid "Type address"
+msgstr "Type address"
+
+#: 03132400.xhp#par_idN105B0.help.text
+msgid "Name1 as String"
+msgstr "Name1 as String"
+
+#: 03132400.xhp#par_idN105B4.help.text
+msgid "City as String"
+msgstr "City as String"
+
+#: 03132400.xhp#par_idN105B8.help.text
+msgid "End Type"
+msgstr "End Type"
+
+#: 03132400.xhp#par_idN105BB.help.text
+msgid "Sub main"
+msgstr "Sub main"
+
+#: 03132400.xhp#par_idN105BE.help.text
+msgid "myaddress = CreateObject(\"address\")"
+msgstr "myaddress = CreateObject(\"address\")"
+
+#: 03132400.xhp#par_idN105C2.help.text
+msgid "MsgBox IsObject(myaddress)"
+msgstr "MsgBox IsObject(myaddress)"
+
+#: 03132400.xhp#par_idN105C6.help.text
+msgctxt "03132400.xhp#par_idN105C6.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03060100.xhp#tit.help.text
+msgid "AND Operator [Runtime]"
+msgstr "AND Operator [Runtime]"
+
+#: 03060100.xhp#bm_id3146117.help.text
+msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>AND operator (logical)</bookmark_value>"
+
+#: 03060100.xhp#hd_id3146117.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator [Runtime]\">AND Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator [Runtime]\">AND Operator [Runtime]</link>"
+
+#: 03060100.xhp#par_id3143268.2.help.text
+msgid "Logically combines two expressions."
+msgstr "Logically combines two expressions."
+
+#: 03060100.xhp#hd_id3147574.3.help.text
+msgctxt "03060100.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03060100.xhp#par_id3156344.4.help.text
+msgid "Result = Expression1 And Expression2"
+msgstr "Result = Expression1 And Expression2"
+
+#: 03060100.xhp#hd_id3148946.5.help.text
+msgctxt "03060100.xhp#hd_id3148946.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03060100.xhp#par_id3149457.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that records the result of the combination."
+msgstr "<emph>Result:</emph> Any numeric variable that records the result of the combination."
+
+#: 03060100.xhp#par_id3150541.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to combine."
+msgstr "<emph>Expression1, Expression2:</emph> Any expressions that you want to combine."
+
+#: 03060100.xhp#par_id3156215.8.help.text
+msgid "Boolean expressions combined with AND only return the value <emph>True</emph> if both expressions evaluate to <emph>True</emph>:"
+msgstr "Boolean expressions combined with AND only return the value <emph>True</emph> if both expressions evaluate to <emph>True</emph>:"
+
+#: 03060100.xhp#par_id3150870.9.help.text
+msgid "<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all other combinations the result is <emph>False</emph>."
+msgstr "<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all other combinations the result is <emph>False</emph>."
+
+#: 03060100.xhp#par_id3153768.10.help.text
+msgid "The AND operator also performs a bitwise comparison of identically positioned bits in two numeric expressions."
+msgstr "The AND operator also performs a bitwise comparison of identically positioned bits in two numeric expressions."
+
+#: 03060100.xhp#hd_id3153727.11.help.text
+msgctxt "03060100.xhp#hd_id3153727.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03060100.xhp#par_id3149481.12.help.text
+msgid "Sub ExampleAnd"
+msgstr "Sub ExampleAnd"
+
+#: 03060100.xhp#par_id3152577.13.help.text
+msgctxt "03060100.xhp#par_id3152577.13.help.text"
+msgid "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+msgstr "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+
+#: 03060100.xhp#par_id3152598.14.help.text
+msgid "Dim vVarOut as Variant"
+msgstr "Dim vVarOut as Variant"
+
+#: 03060100.xhp#par_id3153092.15.help.text
+msgctxt "03060100.xhp#par_id3153092.15.help.text"
+msgid "A = 10: B = 8: C = 6: D = Null"
+msgstr "A = 10: B = 8: C = 6: D = Null"
+
+#: 03060100.xhp#par_id3146984.16.help.text
+msgid "vVarOut = A > B And B > C REM returns -1"
+msgstr "vVarOut = A > B And B > C REM returns -1"
+
+#: 03060100.xhp#par_id3154014.17.help.text
+msgid "vVarOut = B > A And B > C REM returns 0"
+msgstr "vVarOut = B > A And B > C REM returns 0"
+
+#: 03060100.xhp#par_id3149262.18.help.text
+msgid "vVarOut = A > B And B > D REM returns 0"
+msgstr "vVarOut = A > B And B > D REM returns 0"
+
+#: 03060100.xhp#par_id3145751.19.help.text
+msgid "vVarOut = (B > D And B > A) REM returns 0"
+msgstr "vVarOut = (B > D And B > A) REM returns 0"
+
+#: 03060100.xhp#par_id3147394.20.help.text
+msgid "vVarOut = B And A REM returns 8 due to the bitwise AND combination of both arguments"
+msgstr "vVarOut = B And A REM returns 8 due to the bitwise AND combination of both arguments"
+
+#: 03060100.xhp#par_id3151073.21.help.text
+msgctxt "03060100.xhp#par_id3151073.21.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080300.xhp#tit.help.text
+msgid "Generating Random Numbers"
+msgstr "Generating Random Numbers"
+
+#: 03080300.xhp#hd_id3143270.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
+
+#: 03080300.xhp#par_id3154347.2.help.text
+msgid "The following statements and functions generate random numbers."
+msgstr "The following statements and functions generate random numbers."
+
+#: 03104700.xhp#tit.help.text
+msgid "Erase Function [Runtime]"
+msgstr "Erase Function [Runtime]"
+
+#: 03104700.xhp#bm_id624713.help.text
+msgid "<bookmark_value>Erase function</bookmark_value>"
+msgstr "<bookmark_value>Erase function</bookmark_value>"
+
+#: 03104700.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
+
+#: 03104700.xhp#par_idN10558.help.text
+msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
+msgstr "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
+
+#: 03104700.xhp#par_idN1055D.help.text
+msgctxt "03104700.xhp#par_idN1055D.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03104700.xhp#par_idN105E6.help.text
+msgid "Erase Arraylist"
+msgstr "Erase Arraylist"
+
+#: 03104700.xhp#par_idN105E9.help.text
+msgctxt "03104700.xhp#par_idN105E9.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03104700.xhp#par_idN105ED.help.text
+msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
+msgstr "<emph>Arraylist</emph> - The list of arrays to be erased."
+
+#: 03090400.xhp#tit.help.text
+msgid "Further Statements"
+msgstr "Further Statements"
+
+#: 03090400.xhp#hd_id3145316.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+
+#: 03090400.xhp#par_id3154923.2.help.text
+msgid "Statements that do not belong to any of the other runtime categories are described here."
+msgstr "Statements that do not belong to any of the other runtime categories are described here."
+
+#: 01030000.xhp#tit.help.text
+msgid "Integrated Development Environment (IDE)"
+msgstr "Integrated Development Environment (IDE)"
+
+#: 01030000.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
+msgstr "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
+
+#: 01030000.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
+
+#: 01030000.xhp#par_id3146795.2.help.text
+msgid "This section describes the Integrated Development Environment for $[officename] Basic."
+msgstr "This section describes the Integrated Development Environment for $[officename] Basic."
+
+#: 03102900.xhp#tit.help.text
+msgid "LBound Function [Runtime]"
+msgstr "LBound Function [Runtime]"
+
+#: 03102900.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>LBound function</bookmark_value>"
+msgstr "<bookmark_value>LBound function</bookmark_value>"
+
+#: 03102900.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
+
+#: 03102900.xhp#par_id3147226.2.help.text
+msgid "Returns the lower boundary of an array."
+msgstr "Returns the lower boundary of an array."
+
+#: 03102900.xhp#hd_id3148538.3.help.text
+msgctxt "03102900.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102900.xhp#par_id3150503.4.help.text
+msgid "LBound (ArrayName [, Dimension])"
+msgstr "LBound (ArrayName [, Dimension])"
+
+#: 03102900.xhp#hd_id3150984.5.help.text
+msgctxt "03102900.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03102900.xhp#par_id3153126.6.help.text
+msgctxt "03102900.xhp#par_id3153126.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03102900.xhp#hd_id3144500.7.help.text
+msgctxt "03102900.xhp#hd_id3144500.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102900.xhp#par_id3145069.8.help.text
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary of the array dimension."
+msgstr "<emph>ArrayName:</emph> Name of the array for which you want to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary of the array dimension."
+
+#: 03102900.xhp#par_id3149457.9.help.text
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed."
+msgstr "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed."
+
+#: 03102900.xhp#hd_id3145171.10.help.text
+msgctxt "03102900.xhp#hd_id3145171.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102900.xhp#par_id3148673.11.help.text
+msgctxt "03102900.xhp#par_id3148673.11.help.text"
+msgid "Sub ExampleUboundLbound"
+msgstr "Sub ExampleUboundLbound"
+
+#: 03102900.xhp#par_id3153193.12.help.text
+msgctxt "03102900.xhp#par_id3153193.12.help.text"
+msgid "Dim sVar(10 to 20) As String"
+msgstr "Dim sVar(10 to 20) As String"
+
+#: 03102900.xhp#par_id3148452.13.help.text
+msgctxt "03102900.xhp#par_id3148452.13.help.text"
+msgid "print LBound(sVar())"
+msgstr "print LBound(sVar())"
+
+#: 03102900.xhp#par_id3153768.14.help.text
+msgctxt "03102900.xhp#par_id3153768.14.help.text"
+msgid "print UBound(sVar())"
+msgstr "print UBound(sVar())"
+
+#: 03102900.xhp#par_id3147288.15.help.text
+msgctxt "03102900.xhp#par_id3147288.15.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03102900.xhp#par_id3146974.16.help.text
+msgctxt "03102900.xhp#par_id3146974.16.help.text"
+msgid "Sub ExampleUboundLbound2"
+msgstr "Sub ExampleUboundLbound2"
+
+#: 03102900.xhp#par_id3146985.17.help.text
+msgctxt "03102900.xhp#par_id3146985.17.help.text"
+msgid "Dim sVar(10 to 20,5 To 70) As String"
+msgstr "Dim sVar(10 to 20,5 To 70) As String"
+
+#: 03102900.xhp#par_id3145365.18.help.text
+msgctxt "03102900.xhp#par_id3145365.18.help.text"
+msgid "Print LBound(sVar()) REM Returns 10"
+msgstr "Print LBound(sVar()) REM Returns 10"
+
+#: 03102900.xhp#par_id3150486.19.help.text
+msgctxt "03102900.xhp#par_id3150486.19.help.text"
+msgid "Print UBound(sVar()) REM Returns 20"
+msgstr "Print UBound(sVar()) REM Returns 20"
+
+#: 03102900.xhp#par_id3149665.20.help.text
+msgctxt "03102900.xhp#par_id3149665.20.help.text"
+msgid "Print LBound(sVar(),2) REM Returns 5"
+msgstr "Print LBound(sVar(),2) REM Returns 5"
+
+#: 03102900.xhp#par_id3159154.21.help.text
+msgctxt "03102900.xhp#par_id3159154.21.help.text"
+msgid "Print UBound(sVar(),2) REM Returns 70"
+msgstr "Print UBound(sVar(),2) REM Returns 70"
+
+#: 03102900.xhp#par_id3154013.22.help.text
+msgctxt "03102900.xhp#par_id3154013.22.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03080301.xhp#tit.help.text
+msgid "Randomize Statement [Runtime]"
+msgstr "Randomize Statement [Runtime]"
+
+#: 03080301.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Randomize statement</bookmark_value>"
+msgstr "<bookmark_value>Randomize statement</bookmark_value>"
+
+#: 03080301.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
+
+#: 03080301.xhp#par_id3145090.2.help.text
+msgid "Initializes the random-number generator."
+msgstr "Initializes the random-number generator."
+
+#: 03080301.xhp#hd_id3147573.3.help.text
+msgctxt "03080301.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080301.xhp#par_id3145315.4.help.text
+msgid "Randomize [Number]"
+msgstr "Randomize [Number]"
+
+#: 03080301.xhp#hd_id3152456.5.help.text
+msgctxt "03080301.xhp#hd_id3152456.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080301.xhp#par_id3149670.6.help.text
+msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
+msgstr ""
+
+#: 03080301.xhp#hd_id3149655.7.help.text
+msgctxt "03080301.xhp#hd_id3149655.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080301.xhp#par_id3151211.8.help.text
+msgid "Sub ExampleRandomize"
+msgstr "Sub ExampleRandomize"
+
+#: 03080301.xhp#par_id3147229.9.help.text
+msgid "Dim iVar As Integer, sText As String"
+msgstr "Dim iVar As Integer, sText As String"
+
+#: 03080301.xhp#par_id3150870.10.help.text
+msgid "Dim iSpectral(10) As Integer"
+msgstr "Dim iSpectral(10) As Integer"
+
+#: 03080301.xhp#par_id3148673.12.help.text
+msgid "Randomize 2^14-1"
+msgstr "Randomize 2^14-1"
+
+#: 03080301.xhp#par_id3156423.13.help.text
+msgid "For iCount = 1 To 1000"
+msgstr "For iCount = 1 To 1000"
+
+#: 03080301.xhp#par_id3147288.14.help.text
+msgid "iVar = Int((10 * Rnd) ) REM Range from 0 to 9"
+msgstr "iVar = Int((10 * Rnd) ) REM Range from 0 to 9"
+
+#: 03080301.xhp#par_id3155132.15.help.text
+msgid "iSpectral(iVar) = iSpectral(iVar) +1"
+msgstr "iSpectral(iVar) = iSpectral(iVar) +1"
+
+#: 03080301.xhp#par_id3153143.16.help.text
+msgctxt "03080301.xhp#par_id3153143.16.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03080301.xhp#par_id3154011.18.help.text
+msgid "sText = \" | \""
+msgstr "sText = \" | \""
+
+#: 03080301.xhp#par_id3151114.19.help.text
+msgctxt "03080301.xhp#par_id3151114.19.help.text"
+msgid "For iCount = 0 To 9"
+msgstr "For iCount = 0 To 9"
+
+#: 03080301.xhp#par_id3145748.20.help.text
+msgid "sText = sText & iSpectral(iCount) & \" | \""
+msgstr "sText = sText & iSpectral(iCount) & \" | \""
+
+#: 03080301.xhp#par_id3146921.21.help.text
+msgctxt "03080301.xhp#par_id3146921.21.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03080301.xhp#par_id3148617.22.help.text
+msgid "MsgBox sText,0,\"Spectral Distribution\""
+msgstr "MsgBox sText,0,\"Spectral Distribution\""
+
+#: 03080301.xhp#par_id3152941.23.help.text
+msgctxt "03080301.xhp#par_id3152941.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03132100.xhp#tit.help.text
+msgid "GetGuiType Function [Runtime]"
+msgstr "GetGuiType Function [Runtime]"
+
+#: 03132100.xhp#bm_id3147143.help.text
+msgid "<bookmark_value>GetGuiType function</bookmark_value>"
+msgstr "<bookmark_value>GetGuiType function</bookmark_value>"
+
+#: 03132100.xhp#hd_id3155310.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
+
+#: 03132100.xhp#par_id3152459.2.help.text
+msgid "Returns a numerical value that specifies the graphical user interface."
+msgstr "Returns a numerical value that specifies the graphical user interface."
+
+#: 03132100.xhp#par_id3153323.3.help.text
+msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
+msgstr "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
+
+#: 03132100.xhp#hd_id3154894.4.help.text
+msgctxt "03132100.xhp#hd_id3154894.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03132100.xhp#par_id3147143.5.help.text
+msgid "GetGUIType()"
+msgstr "GetGUIType()"
+
+#: 03132100.xhp#hd_id3149346.6.help.text
+msgctxt "03132100.xhp#hd_id3149346.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03132100.xhp#par_id3153748.7.help.text
+msgctxt "03132100.xhp#par_id3153748.7.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03132100.xhp#hd_id3149177.8.help.text
+msgid "Return values:"
+msgstr "Return values:"
+
+#: 03132100.xhp#par_id3147242.9.help.text
+msgid "1: Windows"
+msgstr "1: Windows"
+
+#: 03132100.xhp#par_id3156152.11.help.text
+msgid "4: UNIX"
+msgstr "4: UNIX"
+
+#: 03132100.xhp#hd_id3148685.12.help.text
+msgctxt "03132100.xhp#hd_id3148685.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03132100.xhp#par_id3149233.13.help.text
+msgid "Sub ExampleEnvironment"
+msgstr "Sub ExampleEnvironment"
+
+#: 03132100.xhp#par_id3145609.14.help.text
+msgid "MsgBox GetGUIType"
+msgstr "MsgBox GetGUIType"
+
+#: 03132100.xhp#par_id3145069.15.help.text
+msgctxt "03132100.xhp#par_id3145069.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020103.xhp#tit.help.text
+msgid "Open Statement[Runtime]"
+msgstr "Open Statement[Runtime]"
+
+#: 03020103.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>Open statement</bookmark_value>"
+msgstr "<bookmark_value>Open statement</bookmark_value>"
+
+#: 03020103.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
+
+#: 03020103.xhp#par_id3150769.2.help.text
+msgid "Opens a data channel."
+msgstr "Opens a data channel."
+
+#: 03020103.xhp#hd_id3147230.3.help.text
+msgctxt "03020103.xhp#hd_id3147230.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020103.xhp#par_id3154124.4.help.text
+msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
+msgstr "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
+
+#: 03020103.xhp#hd_id3156280.5.help.text
+msgctxt "03020103.xhp#hd_id3156280.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020103.xhp#par_id3155132.6.help.text
+msgid "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
+msgstr "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
+
+#: 03020103.xhp#par_id3149262.7.help.text
+msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
+msgstr "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
+
+#: 03020103.xhp#par_id3154014.8.help.text
+msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
+msgstr "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
+
+#: 03020103.xhp#par_id3150011.9.help.text
+msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
+msgstr "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
+
+#: 03020103.xhp#par_id3153190.10.help.text
+msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
+msgstr "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
+
+#: 03020103.xhp#par_id3151115.11.help.text
+msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
+msgstr "<emph>DatasetLength:</emph> For random access files, set the length of the records."
+
+#: 03020103.xhp#par_id3153418.12.help.text
+msgid "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears."
+msgstr "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears."
+
+#: 03020103.xhp#hd_id3149123.13.help.text
+msgctxt "03020103.xhp#hd_id3149123.13.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020103.xhp#par_id3150749.14.help.text
+msgctxt "03020103.xhp#par_id3150749.14.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub ExampleWorkWithAFile"
+
+#: 03020103.xhp#par_id3155064.15.help.text
+msgctxt "03020103.xhp#par_id3155064.15.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020103.xhp#par_id3154754.16.help.text
+msgctxt "03020103.xhp#par_id3154754.16.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03020103.xhp#par_id3153711.17.help.text
+msgctxt "03020103.xhp#par_id3153711.17.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020103.xhp#par_id3155764.40.help.text
+msgctxt "03020103.xhp#par_id3155764.40.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMsg as String"
+
+#: 03020103.xhp#par_id3159264.18.help.text
+msgctxt "03020103.xhp#par_id3159264.18.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020103.xhp#par_id3153963.20.help.text
+msgctxt "03020103.xhp#par_id3153963.20.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020103.xhp#par_id3155959.21.help.text
+msgctxt "03020103.xhp#par_id3155959.21.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03020103.xhp#par_id3154705.22.help.text
+msgctxt "03020103.xhp#par_id3154705.22.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"This is a line of text\""
+
+#: 03020103.xhp#par_id3146916.23.help.text
+msgctxt "03020103.xhp#par_id3146916.23.help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumber, \"This is another line of text\""
+
+#: 03020103.xhp#par_id3150942.24.help.text
+msgctxt "03020103.xhp#par_id3150942.24.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020103.xhp#par_id3150300.28.help.text
+msgctxt "03020103.xhp#par_id3150300.28.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020103.xhp#par_id3154022.29.help.text
+msgctxt "03020103.xhp#par_id3154022.29.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aFile For Input As iNumber"
+
+#: 03020103.xhp#par_id3150783.30.help.text
+msgctxt "03020103.xhp#par_id3150783.30.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumber)"
+
+#: 03020103.xhp#par_id3153270.31.help.text
+msgctxt "03020103.xhp#par_id3153270.31.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumber, sLine"
+
+#: 03020103.xhp#par_id3153784.32.help.text
+msgctxt "03020103.xhp#par_id3153784.32.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLine <>\"\" then"
+
+#: 03020103.xhp#par_id3149208.33.help.text
+msgctxt "03020103.xhp#par_id3149208.33.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMsg = sMsg & sLine & chr(13)"
+
+#: 03020103.xhp#par_id3150304.35.help.text
+msgctxt "03020103.xhp#par_id3150304.35.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020103.xhp#par_id3151217.36.help.text
+msgctxt "03020103.xhp#par_id3151217.36.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020103.xhp#par_id3152582.37.help.text
+msgctxt "03020103.xhp#par_id3152582.37.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020103.xhp#par_id3159100.41.help.text
+msgctxt "03020103.xhp#par_id3159100.41.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMsg"
+
+#: 03020103.xhp#par_id3159091.38.help.text
+msgctxt "03020103.xhp#par_id3159091.38.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090200.xhp#tit.help.text
+msgid "Loops"
+msgstr "Loops"
+
+#: 03090200.xhp#hd_id3153990.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
+msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
+
+#: 03090200.xhp#par_id3147226.2.help.text
+msgid "The following statements execute loops."
+msgstr "The following statements execute loops."
+
+#: 03080200.xhp#tit.help.text
+msgid "Exponential and Logarithmic Functions"
+msgstr "Exponential and Logarithmic Functions"
+
+#: 03080200.xhp#hd_id3154758.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
+
+#: 03080200.xhp#par_id3148550.2.help.text
+msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgstr "$[officename] Basic supports the following exponential and logarithmic functions."
+
+#: 01050000.xhp#tit.help.text
+msgid "$[officename] Basic IDE"
+msgstr "$[officename] Basic IDE"
+
+#: 01050000.xhp#hd_id3154422.1.help.text
+msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+
+#: 01050000.xhp#par_id3153142.2.help.text
+msgid "This section describes the structure of the Basic IDE."
+msgstr "This section describes the structure of the Basic IDE."
+
+#: 01050000.xhp#par_idN105C9.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
+
+#: 01050000.xhp#hd_id3153188.5.help.text
+msgid "Commands From the Context menu of the Module Tabs"
+msgstr "Commands From the Context menu of the Module Tabs"
+
+#: 01050000.xhp#hd_id3154731.6.help.text
+msgid "Insert"
+msgstr "Insert"
+
+#: 01050000.xhp#hd_id3151074.8.help.text
+msgid "Module"
+msgstr "Module"
+
+#: 01050000.xhp#par_id3149581.9.help.text
+msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
+
+#: 01050000.xhp#hd_id3147397.10.help.text
+msgid "Dialog"
+msgstr "Dialogue"
+
+#: 01050000.xhp#par_id3144335.11.help.text
+msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewDialog\">Inserts a new dialogue into the current library.</ahelp>"
+
+#: 01050000.xhp#hd_id3155602.12.help.text
+msgctxt "01050000.xhp#hd_id3155602.12.help.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: 01050000.xhp#par_id3155064.13.help.text
+msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
+
+#: 01050000.xhp#hd_id3149018.14.help.text
+msgid "Rename"
+msgstr "Rename"
+
+#: 01050000.xhp#par_id3154754.15.help.text
+msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
+msgstr "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
+
+#: 01050000.xhp#hd_id3150043.16.help.text
+msgid "Hide"
+msgstr "Hide"
+
+#: 01050000.xhp#par_id3145147.17.help.text
+msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+
+#: 01050000.xhp#hd_id3163805.18.help.text
+msgctxt "01050000.xhp#hd_id3163805.18.help.text"
+msgid "Modules"
+msgstr "Modules"
+
+#: 01050000.xhp#par_id3153965.19.help.text
+msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
+msgstr "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organiser</emph></link> dialogue."
+
+#: 03132000.xhp#tit.help.text
+msgid "CreateUnoListener Function [Runtime]"
+msgstr "CreateUnoListener Function [Runtime]"
+
+#: 03132000.xhp#bm_id3155150.help.text
+msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoListener function</bookmark_value>"
+
+#: 03132000.xhp#hd_id3155150.53.help.text
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
+
+#: 03132000.xhp#par_id3149346.52.help.text
+msgid "Creates a Listener instance."
+msgstr "Creates a Listener instance."
+
+#: 03132000.xhp#par_id3153681.51.help.text
+msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
+msgstr "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
+
+#: 03132000.xhp#hd_id3148685.50.help.text
+msgctxt "03132000.xhp#hd_id3148685.50.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03132000.xhp#par_id3143228.49.help.text
+msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+msgstr "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+
+#: 03132000.xhp#hd_id3147574.48.help.text
+msgctxt "03132000.xhp#hd_id3147574.48.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03132000.xhp#par_id3154046.47.help.text
+msgid "The following example is based on a Basic library object."
+msgstr "The following example is based on a Basic library object."
+
+#: 03132000.xhp#par_id3155136.46.help.text
+msgid "Dim oListener"
+msgstr "Dim oListener"
+
+#: 03132000.xhp#par_id3148944.45.help.text
+msgid "oListener = CreateUnoListener( \"ContListener_\",\"com.sun.star.container.XContainerListener\" )"
+msgstr "oListener = CreateUnoListener( \"ContListener_\",\"com.sun.star.container.XContainerListener\" )"
+
+#: 03132000.xhp#par_id3149294.44.help.text
+msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
+msgstr "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
+
+#: 03132000.xhp#par_id3149670.43.help.text
+msgid "The Listener must then be added to the Broadcaster Object. This is done by calling the appropriate method for adding a Listener. These methods always follow the pattern \"addFooListener\", where \"Foo\" is the Listener Interface Type, without the 'X'. In this example, the addContainerListener method is called to register the XContainerListener:"
+msgstr "The Listener must then be added to the Broadcaster Object. This is done by calling the appropriate method for adding a Listener. These methods always follow the pattern \"addFooListener\", where \"Foo\" is the Listener Interface Type, without the 'X'. In this example, the addContainerListener method is called to register the XContainerListener:"
+
+#: 03132000.xhp#par_id3154164.42.help.text
+msgid "Dim oLib"
+msgstr "Dim oLib"
+
+#: 03132000.xhp#par_id3154940.41.help.text
+msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
+msgstr "oLib = BasicLibraries.Library1 ' Library1 must exist!"
+
+#: 03132000.xhp#par_id3150359.40.help.text
+msgid "oLib.addContainerListener( oListener ) ' Register the listener"
+msgstr "oLib.addContainerListener( oListener ) ' Register the listener"
+
+#: 03132000.xhp#par_id3154138.39.help.text
+msgid "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
+msgstr "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
+
+#: 03132000.xhp#par_id3148922.38.help.text
+msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
+msgstr "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
+
+#: 03132000.xhp#par_id3150768.37.help.text
+msgid "In this example, the Listener-Interface uses the following methods:"
+msgstr "In this example, the Listener-Interface uses the following methods:"
+
+#: 03132000.xhp#par_id3151176.36.help.text
+msgid "disposing:"
+msgstr "disposing:"
+
+#: 03132000.xhp#par_id3145173.35.help.text
+msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgstr "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+
+#: 03132000.xhp#par_id3156212.34.help.text
+msgid "elementInserted:"
+msgstr "elementInserted:"
+
+#: 03132000.xhp#par_id3159254.33.help.text
+msgctxt "03132000.xhp#par_id3159254.33.help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Method of the com.sun.star.container.XContainerListener interface"
+
+#: 03132000.xhp#par_id3147287.32.help.text
+msgid "elementRemoved:"
+msgstr "elementRemoved:"
+
+#: 03132000.xhp#par_id3146119.31.help.text
+msgctxt "03132000.xhp#par_id3146119.31.help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Method of the com.sun.star.container.XContainerListener interface"
+
+#: 03132000.xhp#par_id3153951.30.help.text
+msgid "elementReplaced:"
+msgstr "elementReplaced:"
+
+#: 03132000.xhp#par_id3154013.29.help.text
+msgctxt "03132000.xhp#par_id3154013.29.help.text"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr "Method of the com.sun.star.container.XContainerListener interface"
+
+#: 03132000.xhp#par_id3147435.28.help.text
+msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
+msgstr "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
+
+#: 03132000.xhp#par_id3155411.27.help.text
+msgid "ContListener_disposing"
+msgstr "ContListener_disposing"
+
+#: 03132000.xhp#par_id3146923.26.help.text
+msgid "ContListener_elementInserted"
+msgstr "ContListener_elementInserted"
+
+#: 03132000.xhp#par_id3147318.25.help.text
+msgid "ContListener_elementRemoved"
+msgstr "ContListener_elementRemoved"
+
+#: 03132000.xhp#par_id3152578.24.help.text
+msgid "ContListener_elementReplaced"
+msgstr "ContListener_elementReplaced"
+
+#: 03132000.xhp#par_id3150592.23.help.text
+msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
+msgstr "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
+
+#: 03132000.xhp#par_id3149582.22.help.text
+msgid "Sub ContListener_disposing( oEvent )"
+msgstr "Sub ContListener_disposing( oEvent )"
+
+#: 03132000.xhp#par_id3153876.21.help.text
+msgid "MsgBox \"disposing\""
+msgstr "MsgBox \"disposing\""
+
+#: 03132000.xhp#par_id3149959.20.help.text
+msgctxt "03132000.xhp#par_id3149959.20.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr "MsgBox oEvent.Dbg_Properties"
+
+#: 03132000.xhp#par_id3154490.19.help.text
+msgctxt "03132000.xhp#par_id3154490.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3156285.18.help.text
+msgid "Sub ContListener_elementInserted( oEvent )"
+msgstr "Sub ContListener_elementInserted( oEvent )"
+
+#: 03132000.xhp#par_id3154098.17.help.text
+msgid "MsgBox \"elementInserted\""
+msgstr "MsgBox \"elementInserted\""
+
+#: 03132000.xhp#par_id3155601.16.help.text
+msgctxt "03132000.xhp#par_id3155601.16.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr "MsgBox oEvent.Dbg_Properties"
+
+#: 03132000.xhp#par_id3153415.15.help.text
+msgctxt "03132000.xhp#par_id3153415.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3154272.14.help.text
+msgid "Sub ContListener_elementRemoved( oEvent )"
+msgstr "Sub ContListener_elementRemoved( oEvent )"
+
+#: 03132000.xhp#par_id3153947.13.help.text
+msgid "MsgBox \"elementRemoved\""
+msgstr "MsgBox \"elementRemoved\""
+
+#: 03132000.xhp#par_id3146914.12.help.text
+msgctxt "03132000.xhp#par_id3146914.12.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr "MsgBox oEvent.Dbg_Properties"
+
+#: 03132000.xhp#par_id3150749.11.help.text
+msgctxt "03132000.xhp#par_id3150749.11.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3145642.10.help.text
+msgid "Sub ContListener_elementReplaced( oEvent )"
+msgstr "Sub ContListener_elementReplaced( oEvent )"
+
+#: 03132000.xhp#par_id3148915.9.help.text
+msgid "MsgBox \"elementReplaced\""
+msgstr "MsgBox \"elementReplaced\""
+
+#: 03132000.xhp#par_id3148995.8.help.text
+msgctxt "03132000.xhp#par_id3148995.8.help.text"
+msgid "MsgBox oEvent.Dbg_Properties"
+msgstr "MsgBox oEvent.Dbg_Properties"
+
+#: 03132000.xhp#par_id3148407.7.help.text
+msgctxt "03132000.xhp#par_id3148407.7.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3156056.6.help.text
+msgid "You do not need to include the parameter of an event object if the object is not used:"
+msgstr "You do not need to include the parameter of an event object if the object is not used:"
+
+#: 03132000.xhp#par_id3150042.5.help.text
+msgid "' Minimal implementation of Sub disposing"
+msgstr "' Minimal implementation of Sub disposing"
+
+#: 03132000.xhp#par_id3151249.4.help.text
+msgid "Sub ContListener_disposing"
+msgstr "Sub ContListener_disposing"
+
+#: 03132000.xhp#par_id3155333.3.help.text
+msgctxt "03132000.xhp#par_id3155333.3.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03132000.xhp#par_id3150940.2.help.text
+msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+msgstr "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+
+#: 01020000.xhp#tit.help.text
+msgctxt "01020000.xhp#tit.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 01020000.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+
+#: 01020000.xhp#par_id3150793.2.help.text
+msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
+msgstr "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
+
+#: 03030204.xhp#tit.help.text
+msgid "Second Function [Runtime]"
+msgstr "Second Function [Runtime]"
+
+#: 03030204.xhp#bm_id3153346.help.text
+msgid "<bookmark_value>Second function</bookmark_value>"
+msgstr "<bookmark_value>Second function</bookmark_value>"
+
+#: 03030204.xhp#hd_id3153346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
+
+#: 03030204.xhp#par_id3156023.2.help.text
+msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
+msgstr "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
+
+#: 03030204.xhp#hd_id3147264.3.help.text
+msgctxt "03030204.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030204.xhp#par_id3146795.4.help.text
+msgid "Second (Number)"
+msgstr "Second (Number)"
+
+#: 03030204.xhp#hd_id3150792.5.help.text
+msgctxt "03030204.xhp#hd_id3150792.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030204.xhp#par_id3154140.6.help.text
+msgctxt "03030204.xhp#par_id3154140.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03030204.xhp#hd_id3156280.7.help.text
+msgctxt "03030204.xhp#hd_id3156280.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030204.xhp#par_id3154124.8.help.text
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
+msgstr "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
+
+#: 03030204.xhp#par_id3125864.9.help.text
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the seconds of a serial time value that is generated by the <emph>TimeSerial</emph> or <emph>TimeValue </emph>functions. For example, the expression:"
+msgstr "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the seconds of a serial time value that is generated by the <emph>TimeSerial</emph> or <emph>TimeValue </emph>functions. For example, the expression:"
+
+#: 03030204.xhp#par_id3153951.10.help.text
+msgid "Print Second(TimeSerial(12,30,41))"
+msgstr "Print Second(TimeSerial(12,30,41))"
+
+#: 03030204.xhp#par_id3151117.11.help.text
+msgid "returns the value 41."
+msgstr "returns the value 41."
+
+#: 03030204.xhp#hd_id3147426.12.help.text
+msgctxt "03030204.xhp#hd_id3147426.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030204.xhp#par_id3154012.13.help.text
+msgid "Sub ExampleSecond"
+msgstr "Sub ExampleSecond"
+
+#: 03030204.xhp#par_id3156441.14.help.text
+msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
+msgstr "MsgBox \"The exact second of the current time is \"& Second( Now )"
+
+#: 03030204.xhp#par_id3151112.15.help.text
+msgctxt "03030204.xhp#par_id3151112.15.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03103200.xhp#tit.help.text
+msgid "Option Base Statement [Runtime]"
+msgstr "Option Base Statement [Runtime]"
+
+#: 03103200.xhp#bm_id3155805.help.text
+msgid "<bookmark_value>Option Base statement</bookmark_value>"
+msgstr "<bookmark_value>Option Base statement</bookmark_value>"
+
+#: 03103200.xhp#hd_id3155805.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
+
+#: 03103200.xhp#par_id3147242.2.help.text
+msgid "Defines the default lower boundary for arrays as 0 or 1."
+msgstr "Defines the default lower boundary for arrays as 0 or 1."
+
+#: 03103200.xhp#hd_id3150771.3.help.text
+msgctxt "03103200.xhp#hd_id3150771.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103200.xhp#par_id3147573.4.help.text
+msgid "Option Base { 0 | 1}"
+msgstr "Option Base { 0 | 1}"
+
+#: 03103200.xhp#hd_id3145315.5.help.text
+msgctxt "03103200.xhp#hd_id3145315.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03103200.xhp#par_id3147229.6.help.text
+msgctxt "03103200.xhp#par_id3147229.6.help.text"
+msgid "This statement must be added before the executable program code in a module."
+msgstr "This statement must be added before the executable program code in a module."
+
+#: 03103200.xhp#hd_id3150870.7.help.text
+msgctxt "03103200.xhp#hd_id3150870.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103200.xhp#par_id3152921.8.help.text
+msgid "option Base 1"
+msgstr "option Base 1"
+
+#: 03103200.xhp#par_id3153192.10.help.text
+msgid "Sub ExampleOptionBase"
+msgstr "Sub ExampleOptionBase"
+
+#: 03103200.xhp#par_id3149561.11.help.text
+msgid "Dim sVar(20) As String"
+msgstr "Dim sVar(20) As String"
+
+#: 03103200.xhp#par_id3153770.12.help.text
+msgid "msgbox LBound(sVar())"
+msgstr "msgbox LBound(sVar())"
+
+#: 03103200.xhp#par_id3159153.13.help.text
+msgctxt "03103200.xhp#par_id3159153.13.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01040000.xhp#tit.help.text
+msgid "Event-Driven Macros"
+msgstr "Event-Driven Macros"
+
+#: 01040000.xhp#bm_id3154581.help.text
+msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
+msgstr "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
+
+#: 01040000.xhp#hd_id3147348.1.help.text
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
+
+#: 01040000.xhp#par_id3146120.2.help.text
+msgid "This section describes how to assign Basic programs to program events."
+msgstr "This section describes how to assign Basic programs to program events."
+
+#: 01040000.xhp#par_id3149263.4.help.text
+msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
+msgstr "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
+
+#: 01040000.xhp#par_id3148455.5.help.text
+msgctxt "01040000.xhp#par_id3148455.5.help.text"
+msgid "Event"
+msgstr "Event"
+
+#: 01040000.xhp#par_id3145799.6.help.text
+msgid "An assigned macro is executed..."
+msgstr "An assigned macro is executed..."
+
+#: 01040000.xhp#par_id3149379.7.help.text
+msgid "Program Start"
+msgstr "Program Start"
+
+#: 01040000.xhp#par_id3150715.8.help.text
+msgid "... after a $[officename] application is started."
+msgstr "... after a $[officename] application is started."
+
+#: 01040000.xhp#par_id3146914.9.help.text
+msgid "Program End"
+msgstr "Program End"
+
+#: 01040000.xhp#par_id3153765.10.help.text
+msgid "...before a $[officename] application is terminated."
+msgstr "...before a $[officename] application is terminated."
+
+#: 01040000.xhp#par_id3145150.11.help.text
+msgid "Create Document"
+msgstr "Create Document"
+
+#: 01040000.xhp#par_id3163808.12.help.text
+msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
+msgstr "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
+
+#: 01040000.xhp#par_id3145790.13.help.text
+msgid "Open Document"
+msgstr "Open Document"
+
+#: 01040000.xhp#par_id3154572.14.help.text
+msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgstr "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+
+#: 01040000.xhp#par_id3153266.15.help.text
+msgid "Save Document As"
+msgstr "Save Document As"
+
+#: 01040000.xhp#par_id3150208.16.help.text
+msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
+
+#: 01040000.xhp#par_id3158215.43.help.text
+msgid "Document has been saved as"
+msgstr "Document has been saved as"
+
+#: 01040000.xhp#par_id3150980.44.help.text
+msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
+
+#: 01040000.xhp#par_id3150519.17.help.text
+msgid "Save Document"
+msgstr "Save Document"
+
+#: 01040000.xhp#par_id3155529.18.help.text
+msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+
+#: 01040000.xhp#par_id3149404.45.help.text
+msgid "Document has been saved"
+msgstr "Document has been saved"
+
+#: 01040000.xhp#par_id3151332.46.help.text
+msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+
+#: 01040000.xhp#par_id3159171.19.help.text
+msgid "Document is closing"
+msgstr "Document is closing"
+
+#: 01040000.xhp#par_id3146868.20.help.text
+msgid "...before a document is closed."
+msgstr "...before a document is closed."
+
+#: 01040000.xhp#par_id3159097.47.help.text
+msgid "Document closed"
+msgstr "Document closed"
+
+#: 01040000.xhp#par_id3148606.48.help.text
+msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+msgstr "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+
+#: 01040000.xhp#par_id3144772.21.help.text
+msgid "Activate Document"
+msgstr "Activate Document"
+
+#: 01040000.xhp#par_id3149442.22.help.text
+msgid "...after a document is brought to the foreground."
+msgstr "...after a document is brought to the foreground."
+
+#: 01040000.xhp#par_id3150888.23.help.text
+msgid "Deactivate Document"
+msgstr "Deactivate Document"
+
+#: 01040000.xhp#par_id3154060.24.help.text
+msgid "...after another document is brought to the foreground."
+msgstr "...after another document is brought to the foreground."
+
+#: 01040000.xhp#par_id3152384.25.help.text
+msgid "Print Document"
+msgstr "Print Document"
+
+#: 01040000.xhp#par_id3152873.26.help.text
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
+msgstr "...after the <emph>Print</emph> dialogue is closed, but before the actual print process begins."
+
+#: 01040000.xhp#par_id3159227.49.help.text
+msgid "JavaScript run-time error"
+msgstr "JavaScript run-time error"
+
+#: 01040000.xhp#par_id3145362.50.help.text
+msgid "...when a JavaScript run-time error occurs."
+msgstr "...when a JavaScript run-time error occurs."
+
+#: 01040000.xhp#par_id3154767.27.help.text
+msgid "Print Mail Merge"
+msgstr "Print Mail Merge"
+
+#: 01040000.xhp#par_id3153555.28.help.text
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgstr "...after the <emph>Print</emph> dialogue is closed, but before the actual print process begins. This event occurs for each copy printed."
+
+#: 01040000.xhp#par_id3156366.51.help.text
+msgid "Change of the page count"
+msgstr "Change of the page count"
+
+#: 01040000.xhp#par_id3154627.52.help.text
+msgid "...when the page count changes."
+msgstr "...when the page count changes."
+
+#: 01040000.xhp#par_id3154737.53.help.text
+msgid "Message received"
+msgstr "Message received"
+
+#: 01040000.xhp#par_id3150952.54.help.text
+msgid "...if a message was received."
+msgstr "...if a message was received."
+
+#: 01040000.xhp#hd_id3153299.30.help.text
+msgid "Assigning a Macro to an Event"
+msgstr "Assigning a Macro to an Event"
+
+#: 01040000.xhp#par_id3147244.31.help.text
+msgctxt "01040000.xhp#par_id3147244.31.help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+
+#: 01040000.xhp#par_id3146098.55.help.text
+msgid "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
+msgstr "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
+
+#: 01040000.xhp#par_id3150431.32.help.text
+msgid "Select the event from the <emph>Event</emph> list."
+msgstr "Select the event from the <emph>Event</emph> list."
+
+#: 01040000.xhp#par_id3148742.33.help.text
+msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+msgstr "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+
+#: 01040000.xhp#par_id3146321.35.help.text
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr "Click <emph>OK</emph> to assign the macro."
+
+#: 01040000.xhp#par_id3147414.56.help.text
+msgctxt "01040000.xhp#par_id3147414.56.help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Click <emph>OK</emph> to close the dialogue."
+
+#: 01040000.xhp#hd_id3154581.36.help.text
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr "Removing the Assignment of a Macro to an Event"
+
+#: 01040000.xhp#par_id3146883.57.help.text
+msgctxt "01040000.xhp#par_id3146883.57.help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+
+#: 01040000.xhp#par_id3155909.58.help.text
+msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
+msgstr "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
+
+#: 01040000.xhp#par_id3159129.59.help.text
+msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
+msgstr "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
+
+#: 01040000.xhp#par_id3149143.37.help.text
+msgid "Click <emph>Remove</emph>."
+msgstr "Click <emph>Remove</emph>."
+
+#: 01040000.xhp#par_id3149351.60.help.text
+msgctxt "01040000.xhp#par_id3149351.60.help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Click <emph>OK</emph> to close the dialogue."
+
+#: 03060600.xhp#tit.help.text
+msgid "Xor-Operator [Runtime]"
+msgstr "Xor-Operator [Runtime]"
+
+#: 03060600.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Xor operator (logical)</bookmark_value>"
+
+#: 03060600.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
+
+#: 03060600.xhp#par_id3159414.2.help.text
+msgid "Performs a logical Exclusive-Or combination of two expressions."
+msgstr "Performs a logical Exclusive-Or combination of two expressions."
+
+#: 03060600.xhp#hd_id3153381.3.help.text
+msgctxt "03060600.xhp#hd_id3153381.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03060600.xhp#par_id3150400.4.help.text
+msgid "Result = Expression1 Xor Expression2"
+msgstr "Result = Expression1 Xor Expression2"
+
+#: 03060600.xhp#hd_id3153968.5.help.text
+msgctxt "03060600.xhp#hd_id3153968.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03060600.xhp#par_id3150448.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+msgstr "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+
+#: 03060600.xhp#par_id3125864.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+msgstr "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+
+#: 03060600.xhp#par_id3150439.8.help.text
+msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+msgstr "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+
+#: 03060600.xhp#par_id3153770.9.help.text
+msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+msgstr "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+
+#: 03060600.xhp#hd_id3153366.10.help.text
+msgctxt "03060600.xhp#hd_id3153366.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03060600.xhp#par_id3159154.11.help.text
+msgid "Sub ExampleXor"
+msgstr "Sub ExampleXor"
+
+#: 03060600.xhp#par_id3163710.12.help.text
+msgctxt "03060600.xhp#par_id3163710.12.help.text"
+msgid "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+msgstr "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+
+#: 03060600.xhp#par_id3155856.13.help.text
+msgctxt "03060600.xhp#par_id3155856.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060600.xhp#par_id3152462.14.help.text
+msgctxt "03060600.xhp#par_id3152462.14.help.text"
+msgid "vA = 10: vB = 8: vC = 6: vD = Null"
+msgstr "vA = 10: vB = 8: vC = 6: vD = Null"
+
+#: 03060600.xhp#par_id3156442.15.help.text
+msgid "vOut = vA > vB Xor vB > vC REM returns 0"
+msgstr "vOut = vA > vB Xor vB > vC REM returns 0"
+
+#: 03060600.xhp#par_id3153191.16.help.text
+msgid "vOut = vB > vA Xor vB > vC REM returns -1"
+msgstr "vOut = vB > vA Xor vB > vC REM returns -1"
+
+#: 03060600.xhp#par_id3153144.17.help.text
+msgid "vOut = vA > vB Xor vB > vD REM returns -1"
+msgstr "vOut = vA > vB Xor vB > vD REM returns -1"
+
+#: 03060600.xhp#par_id3154944.18.help.text
+msgid "vOut = (vB > vD Xor vB > vA) REM returns 0"
+msgstr "vOut = (vB > vD Xor vB > vA) REM returns 0"
+
+#: 03060600.xhp#par_id3148455.19.help.text
+msgid "vOut = vB Xor vA REM returns 2"
+msgstr "vOut = vB Xor vA REM returns 2"
+
+#: 03060600.xhp#par_id3156283.20.help.text
+msgctxt "03060600.xhp#par_id3156283.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100050.xhp#tit.help.text
+msgid "CCur Function [Runtime]"
+msgstr "CCur Function [Runtime]"
+
+#: 03100050.xhp#bm_id8926053.help.text
+msgid "<bookmark_value>CCur function</bookmark_value>"
+msgstr "<bookmark_value>CCur function</bookmark_value>"
+
+#: 03100050.xhp#par_idN10541.help.text
+msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
+
+#: 03100050.xhp#par_idN10545.help.text
+msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
+msgstr "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
+
+#: 03100050.xhp#par_idN10548.help.text
+msgctxt "03100050.xhp#par_idN10548.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100050.xhp#par_idN105E8.help.text
+msgid "CCur(Expression)"
+msgstr "CCur(Expression)"
+
+#: 03100050.xhp#par_idN105EB.help.text
+msgctxt "03100050.xhp#par_idN105EB.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100050.xhp#par_idN105EF.help.text
+msgid "Currency"
+msgstr "Currency"
+
+#: 03100050.xhp#par_idN105F2.help.text
+msgctxt "03100050.xhp#par_idN105F2.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03100050.xhp#par_idN105F6.help.text
+msgctxt "03100050.xhp#par_idN105F6.help.text"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Expression: Any string or numeric expression that you want to convert."
+
+#: 03020303.xhp#tit.help.text
+msgid "Lof Function [Runtime]"
+msgstr "Lof Function [Runtime]"
+
+#: 03020303.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Lof function</bookmark_value>"
+msgstr "<bookmark_value>Lof function</bookmark_value>"
+
+#: 03020303.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
+
+#: 03020303.xhp#par_id3146794.2.help.text
+msgid "Returns the size of an open file in bytes."
+msgstr "Returns the size of an open file in bytes."
+
+#: 03020303.xhp#hd_id3153380.3.help.text
+msgctxt "03020303.xhp#hd_id3153380.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020303.xhp#par_id3150359.4.help.text
+msgid "Lof (FileNumber)"
+msgstr "Lof (FileNumber)"
+
+#: 03020303.xhp#hd_id3154141.5.help.text
+msgctxt "03020303.xhp#hd_id3154141.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020303.xhp#par_id3147230.6.help.text
+msgctxt "03020303.xhp#par_id3147230.6.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03020303.xhp#hd_id3156281.7.help.text
+msgctxt "03020303.xhp#hd_id3156281.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020303.xhp#par_id3150869.8.help.text
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
+msgstr "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
+
+#: 03020303.xhp#par_id3147349.9.help.text
+msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
+msgstr "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
+
+#: 03020303.xhp#hd_id3155415.10.help.text
+msgctxt "03020303.xhp#hd_id3155415.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020303.xhp#par_id3151074.11.help.text
+msgctxt "03020303.xhp#par_id3151074.11.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr "Sub ExampleRandomAccess"
+
+#: 03020303.xhp#par_id3145251.12.help.text
+msgctxt "03020303.xhp#par_id3145251.12.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020303.xhp#par_id3154730.13.help.text
+msgid "Dim sText As Variant REM must be a Variant"
+msgstr "Dim sText As Variant REM must be a Variant"
+
+#: 03020303.xhp#par_id3145646.14.help.text
+msgctxt "03020303.xhp#par_id3145646.14.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020303.xhp#par_id3153157.15.help.text
+msgctxt "03020303.xhp#par_id3153157.15.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020303.xhp#par_id3149403.17.help.text
+msgctxt "03020303.xhp#par_id3149403.17.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020303.xhp#par_id3149121.18.help.text
+msgctxt "03020303.xhp#par_id3149121.18.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aFile For Random As #iNumber Len=32"
+
+#: 03020303.xhp#par_id3156276.19.help.text
+msgid "Seek #iNumber,1 REM Position at start"
+msgstr "Seek #iNumber,1 REM Position at start"
+
+#: 03020303.xhp#par_id3148405.20.help.text
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+
+#: 03020303.xhp#par_id3154756.21.help.text
+msgctxt "03020303.xhp#par_id3154756.21.help.text"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"This is the second line of text\""
+
+#: 03020303.xhp#par_id3145643.22.help.text
+msgctxt "03020303.xhp#par_id3145643.22.help.text"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"This is the third line of text\""
+
+#: 03020303.xhp#par_id3156383.23.help.text
+msgctxt "03020303.xhp#par_id3156383.23.help.text"
+msgid "Seek #iNumber,2"
+msgstr "Seek #iNumber,2"
+
+#: 03020303.xhp#par_id3155333.24.help.text
+msgctxt "03020303.xhp#par_id3155333.24.help.text"
+msgid "Get #iNumber,,sText"
+msgstr "Get #iNumber,,sText"
+
+#: 03020303.xhp#par_id3149255.25.help.text
+msgctxt "03020303.xhp#par_id3149255.25.help.text"
+msgid "Print sText"
+msgstr "Print sText"
+
+#: 03020303.xhp#par_id3154702.26.help.text
+msgctxt "03020303.xhp#par_id3154702.26.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020303.xhp#par_id3153965.28.help.text
+msgctxt "03020303.xhp#par_id3153965.28.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020303.xhp#par_id3163807.29.help.text
+msgctxt "03020303.xhp#par_id3163807.29.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aFile For Random As #iNumber Len=32"
+
+#: 03020303.xhp#par_id3155607.30.help.text
+msgctxt "03020303.xhp#par_id3155607.30.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumber,2,sText"
+
+#: 03020303.xhp#par_id3150299.31.help.text
+msgid "Put #iNumber,,\"This is a new line of text\""
+msgstr "Put #iNumber,,\"This is a new line of text\""
+
+#: 03020303.xhp#par_id3147002.32.help.text
+msgctxt "03020303.xhp#par_id3147002.32.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr "Get #iNumber,1,sText"
+
+#: 03020303.xhp#par_id3149036.33.help.text
+msgctxt "03020303.xhp#par_id3149036.33.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumber,2,sText"
+
+#: 03020303.xhp#par_id3166425.34.help.text
+msgctxt "03020303.xhp#par_id3166425.34.help.text"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber,20,\"This is the text in record 20\""
+
+#: 03020303.xhp#par_id3149817.35.help.text
+msgctxt "03020303.xhp#par_id3149817.35.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr "Print Lof(#iNumber)"
+
+#: 03020303.xhp#par_id3146811.36.help.text
+msgctxt "03020303.xhp#par_id3146811.36.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020303.xhp#par_id3154200.38.help.text
+msgctxt "03020303.xhp#par_id3154200.38.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120304.xhp#tit.help.text
+msgid "LSet Statement [Runtime]"
+msgstr "LSet Statement [Runtime]"
+
+#: 03120304.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>LSet statement</bookmark_value>"
+msgstr "<bookmark_value>LSet statement</bookmark_value>"
+
+#: 03120304.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
+
+#: 03120304.xhp#par_id3155419.2.help.text
+msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
+msgstr "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
+
+#: 03120304.xhp#hd_id3145317.3.help.text
+msgctxt "03120304.xhp#hd_id3145317.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120304.xhp#par_id3150984.4.help.text
+msgid "LSet Var As String = Text or LSet Var1 = Var2"
+msgstr "LSet Var As String = Text or LSet Var1 = Var2"
+
+#: 03120304.xhp#hd_id3143271.5.help.text
+msgctxt "03120304.xhp#hd_id3143271.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120304.xhp#par_id3145610.6.help.text
+msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
+msgstr "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
+
+#: 03120304.xhp#par_id3154346.7.help.text
+msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
+msgstr "<emph>Text:</emph> String that you want to align to the left of the string variable."
+
+#: 03120304.xhp#par_id3151054.8.help.text
+msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
+msgstr "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
+
+#: 03120304.xhp#par_id3153361.9.help.text
+msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
+msgstr "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
+
+#: 03120304.xhp#par_id3154686.10.help.text
+msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
+msgstr "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
+
+#: 03120304.xhp#hd_id3156282.11.help.text
+msgctxt "03120304.xhp#hd_id3156282.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120304.xhp#par_id3153193.12.help.text
+msgctxt "03120304.xhp#par_id3153193.12.help.text"
+msgid "Sub ExampleRLSet"
+msgstr "Sub ExampleRLSet"
+
+#: 03120304.xhp#par_id3150768.13.help.text
+msgctxt "03120304.xhp#par_id3150768.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120304.xhp#par_id3150447.14.help.text
+msgid "Dim sExpr As String"
+msgstr "Dim sExpr As String"
+
+#: 03120304.xhp#par_id3149561.16.help.text
+msgctxt "03120304.xhp#par_id3149561.16.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr "sVar = String(40,\"*\")"
+
+#: 03120304.xhp#par_id3153768.17.help.text
+msgctxt "03120304.xhp#par_id3153768.17.help.text"
+msgid "sExpr = \"SBX\""
+msgstr "sExpr = \"SBX\""
+
+#: 03120304.xhp#par_id3152940.18.help.text
+msgid "REM Align \"SBX\" within the 40-character reference string"
+msgstr "REM Align \"SBX\" within the 40-character reference string"
+
+#: 03120304.xhp#par_id3148647.19.help.text
+msgctxt "03120304.xhp#par_id3148647.19.help.text"
+msgid "REM Replace asterisks with spaces"
+msgstr "REM Replace asterisks with spaces"
+
+#: 03120304.xhp#par_id3146119.20.help.text
+msgctxt "03120304.xhp#par_id3146119.20.help.text"
+msgid "RSet sVar = sExpr"
+msgstr "RSet sVar = sExpr"
+
+#: 03120304.xhp#par_id3153365.21.help.text
+msgctxt "03120304.xhp#par_id3153365.21.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120304.xhp#par_id3149260.23.help.text
+msgctxt "03120304.xhp#par_id3149260.23.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr "sVar = String(5,\"*\")"
+
+#: 03120304.xhp#par_id3147436.24.help.text
+msgctxt "03120304.xhp#par_id3147436.24.help.text"
+msgid "sExpr = \"123457896\""
+msgstr "sExpr = \"123457896\""
+
+#: 03120304.xhp#par_id3146923.25.help.text
+msgctxt "03120304.xhp#par_id3146923.25.help.text"
+msgid "RSet sVar = sExpr"
+msgstr "RSet sVar = sExpr"
+
+#: 03120304.xhp#par_id3151114.26.help.text
+msgctxt "03120304.xhp#par_id3151114.26.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120304.xhp#par_id3155855.28.help.text
+msgctxt "03120304.xhp#par_id3155855.28.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr "sVar = String(40,\"*\")"
+
+#: 03120304.xhp#par_id3145253.29.help.text
+msgctxt "03120304.xhp#par_id3145253.29.help.text"
+msgid "sExpr = \"SBX\""
+msgstr "sExpr = \"SBX\""
+
+#: 03120304.xhp#par_id3151075.30.help.text
+msgid "REM Left-align \"SBX\" within the 40-character reference string"
+msgstr "REM Left-align \"SBX\" within the 40-character reference string"
+
+#: 03120304.xhp#par_id3147126.31.help.text
+msgctxt "03120304.xhp#par_id3147126.31.help.text"
+msgid "LSet sVar = sExpr"
+msgstr "LSet sVar = sExpr"
+
+#: 03120304.xhp#par_id3154792.32.help.text
+msgctxt "03120304.xhp#par_id3154792.32.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120304.xhp#par_id3154942.34.help.text
+msgctxt "03120304.xhp#par_id3154942.34.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr "sVar = String(5,\"*\")"
+
+#: 03120304.xhp#par_id3155603.35.help.text
+msgctxt "03120304.xhp#par_id3155603.35.help.text"
+msgid "sExpr = \"123456789\""
+msgstr "sExpr = \"123456789\""
+
+#: 03120304.xhp#par_id3150716.36.help.text
+msgctxt "03120304.xhp#par_id3150716.36.help.text"
+msgid "LSet sVar = sExpr"
+msgstr "LSet sVar = sExpr"
+
+#: 03120304.xhp#par_id3146969.37.help.text
+msgctxt "03120304.xhp#par_id3146969.37.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120304.xhp#par_id3150749.38.help.text
+msgctxt "03120304.xhp#par_id3150749.38.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100100.xhp#tit.help.text
+msgid "CBool Function [Runtime]"
+msgstr "CBool Function [Runtime]"
+
+#: 03100100.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>CBool function</bookmark_value>"
+msgstr "<bookmark_value>CBool function</bookmark_value>"
+
+#: 03100100.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
+
+#: 03100100.xhp#par_id3145136.2.help.text
+msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
+msgstr "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
+
+#: 03100100.xhp#hd_id3153345.3.help.text
+msgctxt "03100100.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100100.xhp#par_id3149514.4.help.text
+msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+msgstr "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+
+#: 03100100.xhp#hd_id3156152.5.help.text
+msgctxt "03100100.xhp#hd_id3156152.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100100.xhp#par_id3155419.6.help.text
+msgctxt "03100100.xhp#par_id3155419.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03100100.xhp#hd_id3147530.7.help.text
+msgctxt "03100100.xhp#hd_id3147530.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03100100.xhp#par_id3156344.8.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
+msgstr "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
+
+#: 03100100.xhp#par_id3149655.9.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
+msgstr "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
+
+#: 03100100.xhp#par_id3145171.10.help.text
+msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
+msgstr "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
+
+#: 03100100.xhp#hd_id3156212.11.help.text
+msgctxt "03100100.xhp#hd_id3156212.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03100100.xhp#par_id3147288.12.help.text
+msgid "Sub ExampleCBool"
+msgstr "Sub ExampleCBool"
+
+#: 03100100.xhp#par_id3153768.13.help.text
+msgctxt "03100100.xhp#par_id3153768.13.help.text"
+msgid "Dim sText As String"
+msgstr "Dim sText As String"
+
+#: 03100100.xhp#par_id3155132.14.help.text
+msgid "sText = InputBox(\"Please enter a short sentence:\")"
+msgstr "sText = InputBox(\"Please enter a short sentence:\")"
+
+#: 03100100.xhp#par_id3155855.15.help.text
+msgid "REM Proof if the word »and« appears in the sentence."
+msgstr "REM Proof if the word »and« appears in the sentence."
+
+#: 03100100.xhp#par_id3146984.16.help.text
+msgid "REM Instead of the command line"
+msgstr "REM Instead of the command line"
+
+#: 03100100.xhp#par_id3148576.17.help.text
+msgid "REM If Instr(Input, \"and\")<>0 Then..."
+msgstr "REM If Instr(Input, \"and\")<>0 Then..."
+
+#: 03100100.xhp#par_id3154014.18.help.text
+msgid "REM the CBool function is applied as follows:"
+msgstr "REM the CBool function is applied as follows:"
+
+#: 03100100.xhp#par_id3155413.19.help.text
+msgid "If CBool(Instr(sText, \"and\")) Then"
+msgstr "If CBool(Instr(sText, \"and\")) Then"
+
+#: 03100100.xhp#par_id3152940.20.help.text
+msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
+msgstr "MsgBox \"The word »and« appears in the sentence you entered!\""
+
+#: 03100100.xhp#par_id3153954.21.help.text
+msgid "EndIf"
+msgstr "EndIf"
+
+#: 03100100.xhp#par_id3152886.22.help.text
+msgctxt "03100100.xhp#par_id3152886.22.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030300.xhp#tit.help.text
+msgid "System Date and Time"
+msgstr "System Date and Time"
+
+#: 03030300.xhp#hd_id3154923.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
+msgstr "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
+
+#: 03030300.xhp#par_id3149457.2.help.text
+msgid "The following functions and statements set or return the system date and time."
+msgstr "The following functions and statements set or return the system date and time."
+
+#: 03120311.xhp#tit.help.text
+msgid "Trim Function [Runtime]"
+msgstr "Trim Function [Runtime]"
+
+#: 03120311.xhp#bm_id3150616.help.text
+msgid "<bookmark_value>Trim function</bookmark_value>"
+msgstr "<bookmark_value>Trim function</bookmark_value>"
+
+#: 03120311.xhp#hd_id3150616.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
+
+#: 03120311.xhp#par_id3149177.2.help.text
+msgid "Removes all leading and trailing spaces from a string expression."
+msgstr "Removes all leading and trailing spaces from a string expression."
+
+#: 03120311.xhp#hd_id3159157.3.help.text
+msgctxt "03120311.xhp#hd_id3159157.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120311.xhp#par_id3155341.4.help.text
+msgid "Trim( Text As String )"
+msgstr "Trim( Text As String )"
+
+#: 03120311.xhp#hd_id3155388.5.help.text
+msgctxt "03120311.xhp#hd_id3155388.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120311.xhp#par_id3143228.6.help.text
+msgctxt "03120311.xhp#par_id3143228.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120311.xhp#hd_id3145609.7.help.text
+msgctxt "03120311.xhp#hd_id3145609.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120311.xhp#par_id3159414.8.help.text
+msgctxt "03120311.xhp#par_id3159414.8.help.text"
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "<emph>Text:</emph> Any string expression."
+
+#: 03120311.xhp#hd_id3148663.10.help.text
+msgctxt "03120311.xhp#hd_id3148663.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120311.xhp#par_id3150398.11.help.text
+msgctxt "03120311.xhp#par_id3150398.11.help.text"
+msgid "Sub ExampleSpaces"
+msgstr "Sub ExampleSpaces"
+
+#: 03120311.xhp#par_id3153525.12.help.text
+msgctxt "03120311.xhp#par_id3153525.12.help.text"
+msgid "Dim sText2 as String,sText as String,sOut as String"
+msgstr "Dim sText2 as String,sText as String,sOut as String"
+
+#: 03120311.xhp#par_id3154908.13.help.text
+msgctxt "03120311.xhp#par_id3154908.13.help.text"
+msgid "sText2 = \" <*Las Vegas*> \""
+msgstr "sText2 = \" <*Las Vegas*> \""
+
+#: 03120311.xhp#par_id3144760.15.help.text
+msgctxt "03120311.xhp#par_id3144760.15.help.text"
+msgid "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+msgstr "sOut = \"'\"+sText2 +\"'\"+ Chr(13)"
+
+#: 03120311.xhp#par_id3151383.16.help.text
+msgctxt "03120311.xhp#par_id3151383.16.help.text"
+msgid "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+msgstr "sText = Ltrim(sText2) REM sText = \"<*Las Vegas*> \""
+
+#: 03120311.xhp#par_id3151044.17.help.text
+msgctxt "03120311.xhp#par_id3151044.17.help.text"
+msgid "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut + \"'\"+sText +\"'\" + Chr(13)"
+
+#: 03120311.xhp#par_id3159149.18.help.text
+msgctxt "03120311.xhp#par_id3159149.18.help.text"
+msgid "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+msgstr "sText = Rtrim(sText2) REM sText = \" <*Las Vegas*>\""
+
+#: 03120311.xhp#par_id3150449.19.help.text
+msgctxt "03120311.xhp#par_id3150449.19.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+msgstr "sOut = sOut +\"'\"+ sText +\"'\" + Chr(13)"
+
+#: 03120311.xhp#par_id3149562.20.help.text
+msgctxt "03120311.xhp#par_id3149562.20.help.text"
+msgid "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+msgstr "sText = Trim(sText2) REM sText = \"<*Las Vegas*>\""
+
+#: 03120311.xhp#par_id3161831.21.help.text
+msgctxt "03120311.xhp#par_id3161831.21.help.text"
+msgid "sOut = sOut +\"'\"+ sText +\"'\""
+msgstr "sOut = sOut +\"'\"+ sText +\"'\""
+
+#: 03120311.xhp#par_id3146120.22.help.text
+msgctxt "03120311.xhp#par_id3146120.22.help.text"
+msgid "MsgBox sOut"
+msgstr "MsgBox sOut"
+
+#: 03120311.xhp#par_id3145364.23.help.text
+msgctxt "03120311.xhp#par_id3145364.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03010305.xhp#tit.help.text
+msgid "RGB Function [Runtime]"
+msgstr "RGB Function [Runtime]"
+
+#: 03010305.xhp#hd_id3150792.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
+
+#: 03010305.xhp#par_id3150447.2.help.text
+msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
+msgstr "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer colour value</link> consisting of red, green, and blue components."
+
+#: 03010305.xhp#hd_id3147229.3.help.text
+msgctxt "03010305.xhp#hd_id3147229.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010305.xhp#par_id3155132.4.help.text
+msgid "RGB (Red, Green, Blue)"
+msgstr "RGB (Red, Green, Blue)"
+
+#: 03010305.xhp#hd_id3156442.5.help.text
+msgctxt "03010305.xhp#hd_id3156442.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03010305.xhp#par_id3159153.6.help.text
+msgctxt "03010305.xhp#par_id3159153.6.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03010305.xhp#hd_id3154013.7.help.text
+msgctxt "03010305.xhp#hd_id3154013.7.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010305.xhp#par_id3152597.8.help.text
+msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
+msgstr "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite colour."
+
+#: 03010305.xhp#par_id3146974.9.help.text
+msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
+msgstr "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite colour."
+
+#: 03010305.xhp#par_id3151113.10.help.text
+msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
+msgstr "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite colour."
+
+#: 03010305.xhp#hd_id3147435.11.help.text
+msgctxt "03010305.xhp#hd_id3147435.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010305.xhp#par_id3156283.12.help.text
+msgctxt "03010305.xhp#par_id3156283.12.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub ExampleColour"
+
+#: 03010305.xhp#par_id3149582.13.help.text
+msgctxt "03010305.xhp#par_id3149582.13.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03010305.xhp#par_id3150417.14.help.text
+msgctxt "03010305.xhp#par_id3150417.14.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr "lVar = rgb(128,0,200)"
+
+#: 03010305.xhp#par_id3145647.15.help.text
+msgctxt "03010305.xhp#par_id3145647.15.help.text"
+msgid "msgbox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "msgbox \"The colour \" & lVar & \" consists of:\" & Chr(13) &_"
+
+#: 03010305.xhp#par_id3154491.16.help.text
+msgctxt "03010305.xhp#par_id3154491.16.help.text"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"red= \" & red(lVar) & Chr(13)&_"
+
+#: 03010305.xhp#par_id3149401.17.help.text
+msgctxt "03010305.xhp#par_id3149401.17.help.text"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & green(lVar) & Chr(13)&_"
+
+#: 03010305.xhp#par_id3150716.18.help.text
+msgctxt "03010305.xhp#par_id3150716.18.help.text"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colours\""
+
+#: 03010305.xhp#par_id3150752.19.help.text
+msgctxt "03010305.xhp#par_id3150752.19.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03101400.xhp#tit.help.text
+msgid "DefDbl Statement [Runtime]"
+msgstr "DefDbl Statement [Runtime]"
+
+#: 03101400.xhp#bm_id3147242.help.text
+msgid "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr "<bookmark_value>DefDbl statement</bookmark_value>"
+
+#: 03101400.xhp#hd_id3147242.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
+
+#: 03101400.xhp#par_id3153126.2.help.text
+msgctxt "03101400.xhp#par_id3153126.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+
+#: 03101400.xhp#hd_id3155420.3.help.text
+msgctxt "03101400.xhp#hd_id3155420.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101400.xhp#par_id3147530.4.help.text
+msgctxt "03101400.xhp#par_id3147530.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101400.xhp#hd_id3145069.5.help.text
+msgctxt "03101400.xhp#hd_id3145069.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101400.xhp#par_id3147560.6.help.text
+msgctxt "03101400.xhp#par_id3147560.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+
+#: 03101400.xhp#par_id3150791.7.help.text
+msgctxt "03101400.xhp#par_id3150791.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101400.xhp#par_id3151210.8.help.text
+msgctxt "03101400.xhp#par_id3151210.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Keyword:</emph> Default variable type"
+
+#: 03101400.xhp#par_id3154123.9.help.text
+msgid "<emph>DefDbl:</emph> Double"
+msgstr "<emph>DefDbl:</emph> Double"
+
+#: 03101400.xhp#hd_id3153192.10.help.text
+msgctxt "03101400.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101400.xhp#par_id3156281.12.help.text
+msgctxt "03101400.xhp#par_id3156281.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03101400.xhp#par_id3153970.13.help.text
+msgctxt "03101400.xhp#par_id3153970.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101400.xhp#par_id3149561.14.help.text
+msgctxt "03101400.xhp#par_id3149561.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101400.xhp#par_id3147288.15.help.text
+msgctxt "03101400.xhp#par_id3147288.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101400.xhp#par_id3150487.16.help.text
+msgctxt "03101400.xhp#par_id3150487.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101400.xhp#par_id3151116.17.help.text
+msgctxt "03101400.xhp#par_id3151116.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101400.xhp#par_id3146922.18.help.text
+msgctxt "03101400.xhp#par_id3146922.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101400.xhp#par_id3146984.19.help.text
+msgctxt "03101400.xhp#par_id3146984.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101400.xhp#par_id3147436.21.help.text
+msgid "Sub ExampleDefDBL"
+msgstr "Sub ExampleDefDBL"
+
+#: 03101400.xhp#par_id3153144.22.help.text
+msgid "dValue=1.23e43 REM dValue is an implicit Double variable type"
+msgstr "dValue=1.23e43 REM dValue is an implicit Double variable type"
+
+#: 03101400.xhp#par_id3152941.23.help.text
+msgctxt "03101400.xhp#par_id3152941.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020301.xhp#tit.help.text
+msgid "Eof Function [Runtime]"
+msgstr "Eof Function [Runtime]"
+
+#: 03020301.xhp#bm_id3154598.help.text
+msgid "<bookmark_value>Eof function</bookmark_value>"
+msgstr "<bookmark_value>Eof function</bookmark_value>"
+
+#: 03020301.xhp#hd_id3154598.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
+
+#: 03020301.xhp#par_id3147182.2.help.text
+msgid "Determines if the file pointer has reached the end of a file."
+msgstr "Determines if the file pointer has reached the end of a file."
+
+#: 03020301.xhp#hd_id3149119.3.help.text
+msgctxt "03020301.xhp#hd_id3149119.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020301.xhp#par_id3147399.4.help.text
+msgid "Eof (intexpression As Integer)"
+msgstr "Eof (intexpression As Integer)"
+
+#: 03020301.xhp#hd_id3153539.5.help.text
+msgctxt "03020301.xhp#hd_id3153539.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020301.xhp#par_id3156027.6.help.text
+msgctxt "03020301.xhp#par_id3156027.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03020301.xhp#hd_id3152924.7.help.text
+msgctxt "03020301.xhp#hd_id3152924.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020301.xhp#par_id3153990.8.help.text
+msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+msgstr "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+
+#: 03020301.xhp#par_id3153527.9.help.text
+msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
+msgstr "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
+
+#: 03020301.xhp#hd_id3154046.10.help.text
+msgctxt "03020301.xhp#hd_id3154046.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020301.xhp#par_id3143270.11.help.text
+msgctxt "03020301.xhp#par_id3143270.11.help.text"
+msgid "Sub ExampleWorkWithAFile"
+msgstr "Sub ExampleWorkWithAFile"
+
+#: 03020301.xhp#par_id3150670.12.help.text
+msgctxt "03020301.xhp#par_id3150670.12.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020301.xhp#par_id3154143.13.help.text
+msgctxt "03020301.xhp#par_id3154143.13.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03020301.xhp#par_id3148943.14.help.text
+msgctxt "03020301.xhp#par_id3148943.14.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020301.xhp#par_id3153897.37.help.text
+msgctxt "03020301.xhp#par_id3153897.37.help.text"
+msgid "Dim sMsg as String"
+msgstr "Dim sMsg as String"
+
+#: 03020301.xhp#par_id3156344.15.help.text
+msgctxt "03020301.xhp#par_id3156344.15.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020301.xhp#par_id3148663.17.help.text
+msgctxt "03020301.xhp#par_id3148663.17.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020301.xhp#par_id3153379.18.help.text
+msgctxt "03020301.xhp#par_id3153379.18.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03020301.xhp#par_id3153360.19.help.text
+msgctxt "03020301.xhp#par_id3153360.19.help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Print #iNumber, \"First line of text\""
+
+#: 03020301.xhp#par_id3148797.20.help.text
+msgctxt "03020301.xhp#par_id3148797.20.help.text"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Print #iNumber, \"Another line of text\""
+
+#: 03020301.xhp#par_id3154684.21.help.text
+msgctxt "03020301.xhp#par_id3154684.21.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020301.xhp#par_id3153104.25.help.text
+msgctxt "03020301.xhp#par_id3153104.25.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020301.xhp#par_id3144761.26.help.text
+msgctxt "03020301.xhp#par_id3144761.26.help.text"
+msgid "Open aFile For Input As iNumber"
+msgstr "Open aFile For Input As iNumber"
+
+#: 03020301.xhp#par_id3153193.27.help.text
+msgctxt "03020301.xhp#par_id3153193.27.help.text"
+msgid "While not eof(iNumber)"
+msgstr "While not eof(iNumber)"
+
+#: 03020301.xhp#par_id3158408.28.help.text
+msgctxt "03020301.xhp#par_id3158408.28.help.text"
+msgid "Line Input #iNumber, sLine"
+msgstr "Line Input #iNumber, sLine"
+
+#: 03020301.xhp#par_id3149203.29.help.text
+msgctxt "03020301.xhp#par_id3149203.29.help.text"
+msgid "If sLine <>\"\" then"
+msgstr "If sLine <>\"\" then"
+
+#: 03020301.xhp#par_id3153770.30.help.text
+msgctxt "03020301.xhp#par_id3153770.30.help.text"
+msgid "sMsg = sMsg & sLine & chr(13)"
+msgstr "sMsg = sMsg & sLine & chr(13)"
+
+#: 03020301.xhp#par_id3153367.32.help.text
+msgctxt "03020301.xhp#par_id3153367.32.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03020301.xhp#par_id3147318.33.help.text
+msgctxt "03020301.xhp#par_id3147318.33.help.text"
+msgid "wend"
+msgstr "wend"
+
+#: 03020301.xhp#par_id3152939.34.help.text
+msgctxt "03020301.xhp#par_id3152939.34.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020301.xhp#par_id3153726.38.help.text
+msgctxt "03020301.xhp#par_id3153726.38.help.text"
+msgid "Msgbox sMsg"
+msgstr "Msgbox sMsg"
+
+#: 03020301.xhp#par_id3153092.35.help.text
+msgctxt "03020301.xhp#par_id3153092.35.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03102300.xhp#tit.help.text
+msgid "IsDate Function [Runtime]"
+msgstr "IsDate Function [Runtime]"
+
+#: 03102300.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>IsDate function</bookmark_value>"
+msgstr "<bookmark_value>IsDate function</bookmark_value>"
+
+#: 03102300.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
+
+#: 03102300.xhp#par_id3153311.2.help.text
+msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
+msgstr "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
+
+#: 03102300.xhp#hd_id3153824.3.help.text
+msgctxt "03102300.xhp#hd_id3153824.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102300.xhp#par_id3147573.4.help.text
+msgid "IsDate (Expression)"
+msgstr "IsDate (Expression)"
+
+#: 03102300.xhp#hd_id3143270.5.help.text
+msgctxt "03102300.xhp#hd_id3143270.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03102300.xhp#par_id3147560.6.help.text
+msgctxt "03102300.xhp#par_id3147560.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03102300.xhp#hd_id3148947.7.help.text
+msgctxt "03102300.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102300.xhp#par_id3145069.8.help.text
+msgid "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
+msgstr "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
+
+#: 03102300.xhp#hd_id3150447.9.help.text
+msgctxt "03102300.xhp#hd_id3150447.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102300.xhp#par_id3154217.10.help.text
+msgid "Sub ExampleIsDate"
+msgstr "Sub ExampleIsDate"
+
+#: 03102300.xhp#par_id3153970.11.help.text
+msgid "Dim sDateVar as String"
+msgstr "Dim sDateVar as String"
+
+#: 03102300.xhp#par_id3153193.12.help.text
+msgid "sDateVar = \"12.12.1997\""
+msgstr "sDateVar = \"12.12.1997\""
+
+#: 03102300.xhp#par_id3150869.13.help.text
+msgid "print IsDate(sDateVar) REM Returns True"
+msgstr "print IsDate(sDateVar) REM Returns True"
+
+#: 03102300.xhp#par_id3148453.14.help.text
+msgid "sDateVar = \"12121997\""
+msgstr "sDateVar = \"12121997\""
+
+#: 03102300.xhp#par_id3147288.15.help.text
+msgid "print IsDate(sDateVar) REM Returns False"
+msgstr "print IsDate(sDateVar) REM Returns False"
+
+#: 03102300.xhp#par_id3155132.16.help.text
+msgctxt "03102300.xhp#par_id3155132.16.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030201.xhp#tit.help.text
+msgid "Hour Function [Runtime]"
+msgstr "Hour Function [Runtime]"
+
+#: 03030201.xhp#bm_id3156042.help.text
+msgid "<bookmark_value>Hour function</bookmark_value>"
+msgstr "<bookmark_value>Hour function</bookmark_value>"
+
+#: 03030201.xhp#hd_id3156042.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
+
+#: 03030201.xhp#par_id3149346.2.help.text
+msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
+msgstr "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
+
+#: 03030201.xhp#hd_id3147574.3.help.text
+msgctxt "03030201.xhp#hd_id3147574.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030201.xhp#par_id3147264.4.help.text
+msgid "Hour (Number)"
+msgstr "Hour (Number)"
+
+#: 03030201.xhp#hd_id3145069.5.help.text
+msgctxt "03030201.xhp#hd_id3145069.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030201.xhp#par_id3149670.6.help.text
+msgctxt "03030201.xhp#par_id3149670.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03030201.xhp#hd_id3150359.7.help.text
+msgctxt "03030201.xhp#hd_id3150359.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030201.xhp#par_id3154366.8.help.text
+msgid " <emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
+msgstr " <emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
+
+#: 03030201.xhp#par_id3154909.9.help.text
+msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
+msgstr "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
+
+#: 03030201.xhp#par_id3163798.10.help.text
+msgid "Print Hour(TimeSerial(12,30,41))"
+msgstr "Print Hour(TimeSerial(12,30,41))"
+
+#: 03030201.xhp#par_id3155132.11.help.text
+msgctxt "03030201.xhp#par_id3155132.11.help.text"
+msgid "returns the value 12."
+msgstr "returns the value 12."
+
+#: 03030201.xhp#hd_id3147348.12.help.text
+msgctxt "03030201.xhp#hd_id3147348.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030201.xhp#par_id3146985.13.help.text
+msgid "Sub ExampleHour"
+msgstr "Sub ExampleHour"
+
+#: 03030201.xhp#par_id3156441.14.help.text
+msgid "Print \"The current hour is \" & Hour( Now )"
+msgstr "Print \"The current hour is \" & Hour( Now )"
+
+#: 03030201.xhp#par_id3153145.15.help.text
+msgctxt "03030201.xhp#par_id3153145.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020407.xhp#tit.help.text
+msgid "FileDateTime Function [Runtime]"
+msgstr "FileDateTime Function [Runtime]"
+
+#: 03020407.xhp#bm_id3153361.help.text
+msgid "<bookmark_value>FileDateTime function</bookmark_value>"
+msgstr "<bookmark_value>FileDateTime function</bookmark_value>"
+
+#: 03020407.xhp#hd_id3153361.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
+
+#: 03020407.xhp#par_id3156423.2.help.text
+msgid "Returns a string that contains the date and the time that a file was created or last modified."
+msgstr "Returns a string that contains the date and the time that a file was created or last modified."
+
+#: 03020407.xhp#hd_id3154685.3.help.text
+msgctxt "03020407.xhp#hd_id3154685.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020407.xhp#par_id3154124.4.help.text
+msgid "FileDateTime (Text As String)"
+msgstr "FileDateTime (Text As String)"
+
+#: 03020407.xhp#hd_id3150448.5.help.text
+msgctxt "03020407.xhp#hd_id3150448.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020407.xhp#par_id3159153.6.help.text
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous (no wildcards) file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> Any string expression that contains an unambiguous (no wildcards) file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020407.xhp#par_id3155306.7.help.text
+msgid "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
+msgstr "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
+
+#: 03020407.xhp#hd_id3146119.8.help.text
+msgctxt "03020407.xhp#hd_id3146119.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020407.xhp#par_id3148576.9.help.text
+msgid "Sub ExampleFileDateTime"
+msgstr "Sub ExampleFileDateTime"
+
+#: 03020407.xhp#par_id3161831.10.help.text
+msgid "msgbox FileDateTime(\"C:\\autoexec.bat\")"
+msgstr "msgbox FileDateTime(\"C:\\autoexec.bat\")"
+
+#: 03020407.xhp#par_id3146986.11.help.text
+msgctxt "03020407.xhp#par_id3146986.11.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030200.xhp#tit.help.text
+msgid "Converting Time Values"
+msgstr "Converting Time Values"
+
+#: 03030200.xhp#hd_id3147226.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+
+#: 03030200.xhp#par_id3149415.2.help.text
+msgid "The following functions convert time values to calculable numbers."
+msgstr "The following functions convert time values to calculable numbers."
+
+#: 01010210.xhp#tit.help.text
+msgid "Basics"
+msgstr "Basics"
+
+#: 01010210.xhp#bm_id4488967.help.text
+msgid "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global and local</bookmark_value><bookmark_value>modules;subroutines and functions</bookmark_value>"
+msgstr "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global and local</bookmark_value><bookmark_value>modules;subroutines and functions</bookmark_value>"
+
+#: 01010210.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
+msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
+
+#: 01010210.xhp#par_id3156023.14.help.text
+msgid "This section provides the fundamentals for working with $[officename] Basic."
+msgstr "This section provides the fundamentals for working with $[officename] Basic."
+
+#: 01010210.xhp#par_id3147560.2.help.text
+msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
+msgstr "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
+
+#: 01010210.xhp#par_id314756320.help.text
+msgctxt "01010210.xhp#par_id314756320.help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr ""
+
+#: 01010210.xhp#hd_id3150398.3.help.text
+msgid "What is a Sub?"
+msgstr "What is a Sub?"
+
+#: 01010210.xhp#par_id3148797.4.help.text
+msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
+msgstr "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
+
+#: 01010210.xhp#par_id3150868.15.help.text
+msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgstr "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+
+#: 01010210.xhp#hd_id3156282.5.help.text
+msgid "What is a Function?"
+msgstr "What is a Function?"
+
+#: 01010210.xhp#par_id3156424.6.help.text
+msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
+msgstr "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
+
+#: 01010210.xhp#par_id3146985.7.help.text
+msgid "MySecondValue = myFunction(MyFirstValue)"
+msgstr "MySecondValue = myFunction(MyFirstValue)"
+
+#: 01010210.xhp#hd_id3153364.8.help.text
+msgid "Global and local variables"
+msgstr "Global and local variables"
+
+#: 01010210.xhp#par_id3151112.9.help.text
+msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
+msgstr "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
+
+#: 01010210.xhp#par_id3154012.10.help.text
+msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
+msgstr "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
+
+#: 01010210.xhp#hd_id3150010.11.help.text
+msgid "Structuring"
+msgstr "Structuring"
+
+#: 01010210.xhp#par_id3153727.12.help.text
+msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
+msgstr "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
+
+#: 01010210.xhp#par_id3152578.13.help.text
+msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
+msgstr "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialogue."
+
+#: 03090103.xhp#tit.help.text
+msgid "IIf Statement [Runtime]"
+msgstr "IIf Statement [Runtime]"
+
+#: 03090103.xhp#bm_id3155420.help.text
+msgid "<bookmark_value>IIf statement</bookmark_value>"
+msgstr "<bookmark_value>IIf statement</bookmark_value>"
+
+#: 03090103.xhp#hd_id3155420.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
+
+#: 03090103.xhp#par_id3145610.2.help.text
+msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
+msgstr "Returns one of two possible function results, depending on the logical value of the evaluated expression."
+
+#: 03090103.xhp#hd_id3159413.3.help.text
+msgctxt "03090103.xhp#hd_id3159413.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090103.xhp#par_id3147560.4.help.text
+msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
+msgstr "IIf (Expression, ExpressionTrue, ExpressionFalse)"
+
+#: 03090103.xhp#hd_id3150541.5.help.text
+msgctxt "03090103.xhp#hd_id3150541.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090103.xhp#par_id3153381.6.help.text
+msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
+msgstr "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
+
+#: 03090103.xhp#par_id3150870.7.help.text
+msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
+msgstr "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
+
+#: 03131800.xhp#tit.help.text
+msgid "CreateUnoDialog Function [Runtime]"
+msgstr "CreateUnoDialog Function [Runtime]"
+
+#: 03131800.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+
+#: 03131800.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
+
+#: 03131800.xhp#par_id3154186.2.help.text
+msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
+msgstr "Creates a Basic Uno object that represents a Uno dialogue control during Basic runtime."
+
+#: 03131800.xhp#par_id3153750.3.help.text
+msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
+msgstr "Dialogues are defined in the dialogue libraries. To display a dialogue, a \"live\" dialogue must be created from the library."
+
+#: 03131800.xhp#par_id3153681.4.help.text
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+
+#: 03131800.xhp#hd_id3154286.5.help.text
+msgctxt "03131800.xhp#hd_id3154286.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03131800.xhp#par_id3159176.6.help.text
+msgid "CreateUnoDialog( oDlgDesc )"
+msgstr "CreateUnoDialog( oDlgDesc )"
+
+#: 03131800.xhp#hd_id3143270.7.help.text
+msgctxt "03131800.xhp#hd_id3143270.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03131800.xhp#par_id3159157.8.help.text
+msgid "' Get dialog description from the dialog library"
+msgstr "' Get dialogue description from the dialogue library"
+
+#: 03131800.xhp#par_id3149234.9.help.text
+msgctxt "03131800.xhp#par_id3149234.9.help.text"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
+
+#: 03131800.xhp#par_id3154923.10.help.text
+msgid "' generate \"live\" dialog"
+msgstr "' generate \"live\" dialogue"
+
+#: 03131800.xhp#par_id3149670.11.help.text
+msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
+msgstr "oDlgControl = CreateUnoDialog( oDlgDesc )"
+
+#: 03131800.xhp#par_id3148550.12.help.text
+msgid "' display \"live\" dialog"
+msgstr "' display \"live\" dialogue"
+
+#: 03131800.xhp#par_id3154072.13.help.text
+msgid "oDlgControl.execute"
+msgstr "oDlgControl.execute"
+
+#: 03130000.xhp#tit.help.text
+msgid "Other Commands"
+msgstr "Other Commands"
+
+#: 03130000.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+msgstr "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+
+#: 03130000.xhp#par_id3153312.2.help.text
+msgid "This is a list of the functions and the statements that are not included in the other categories."
+msgstr "This is a list of the functions and the statements that are not included in the other categories."
+
+#: 03060000.xhp#tit.help.text
+msgid "Logical Operators"
+msgstr "Logical Operators"
+
+#: 03060000.xhp#hd_id3147559.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
+
+#: 03060000.xhp#par_id3153379.2.help.text
+msgid "The following logical operators are supported by $[officename] Basic."
+msgstr "The following logical operators are supported by $[officename] Basic."
+
+#: 03060000.xhp#par_id3154138.3.help.text
+msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
+msgstr "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
+
+#: 03102400.xhp#tit.help.text
+msgid "IsEmpty Function [Runtime]"
+msgstr "IsEmpty Function [Runtime]"
+
+#: 03102400.xhp#bm_id3153394.help.text
+msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgstr "<bookmark_value>IsEmpty function</bookmark_value>"
+
+#: 03102400.xhp#hd_id3153394.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
+
+#: 03102400.xhp#par_id3163045.2.help.text
+msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
+msgstr "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialised."
+
+#: 03102400.xhp#hd_id3159158.3.help.text
+msgctxt "03102400.xhp#hd_id3159158.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102400.xhp#par_id3153126.4.help.text
+msgid "IsEmpty (Var)"
+msgstr "IsEmpty (Var)"
+
+#: 03102400.xhp#hd_id3148685.5.help.text
+msgctxt "03102400.xhp#hd_id3148685.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03102400.xhp#par_id3156344.6.help.text
+msgctxt "03102400.xhp#par_id3156344.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03102400.xhp#hd_id3148947.7.help.text
+msgctxt "03102400.xhp#hd_id3148947.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102400.xhp#par_id3154347.8.help.text
+msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
+msgstr "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
+
+#: 03102400.xhp#hd_id3154138.9.help.text
+msgctxt "03102400.xhp#hd_id3154138.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102400.xhp#par_id3125864.10.help.text
+msgid "Sub ExampleIsEmpty"
+msgstr "Sub ExampleIsEmpty"
+
+#: 03102400.xhp#par_id3150449.11.help.text
+msgid "Dim sVar as Variant"
+msgstr "Dim sVar as Variant"
+
+#: 03102400.xhp#par_id3153970.12.help.text
+msgid "sVar = Empty"
+msgstr "sVar = Empty"
+
+#: 03102400.xhp#par_id3154863.13.help.text
+msgid "Print IsEmpty(sVar) REM Returns True"
+msgstr "Print IsEmpty(sVar) REM Returns True"
+
+#: 03102400.xhp#par_id3151043.14.help.text
+msgctxt "03102400.xhp#par_id3151043.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030303.xhp#tit.help.text
+msgid "Timer Function [Runtime]"
+msgstr "Timer Function [Runtime]"
+
+#: 03030303.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>Timer function</bookmark_value>"
+msgstr "<bookmark_value>Timer function</bookmark_value>"
+
+#: 03030303.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
+
+#: 03030303.xhp#par_id3156023.2.help.text
+msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
+msgstr "Returns a value that specifies the number of seconds that have elapsed since midnight."
+
+#: 03030303.xhp#par_id3156212.3.help.text
+msgid "You must first declare a variable to call the Timer function and assign it the \"Long \" data type, otherwise a Date value is returned."
+msgstr "You must first declare a variable to call the Timer function and assign it the \"Long \" data type, otherwise a Date value is returned."
+
+#: 03030303.xhp#hd_id3153768.4.help.text
+msgctxt "03030303.xhp#hd_id3153768.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030303.xhp#par_id3161831.5.help.text
+msgid "Timer"
+msgstr "Timer"
+
+#: 03030303.xhp#hd_id3146975.6.help.text
+msgctxt "03030303.xhp#hd_id3146975.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030303.xhp#par_id3146984.7.help.text
+msgctxt "03030303.xhp#par_id3146984.7.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 03030303.xhp#hd_id3156442.8.help.text
+msgctxt "03030303.xhp#hd_id3156442.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030303.xhp#par_id3153951.9.help.text
+msgid "Sub ExampleTimer"
+msgstr "Sub ExampleTimer"
+
+#: 03030303.xhp#par_id3147427.10.help.text
+msgid "Dim lSec as long,lMin as long,lHour as long"
+msgstr "Dim lSec as long,lMin as long,lHour as long"
+
+#: 03030303.xhp#par_id3153092.11.help.text
+msgid "lSec = Timer"
+msgstr "lSec = Timer"
+
+#: 03030303.xhp#par_id3145748.12.help.text
+msgid "MsgBox lSec,0,\"Seconds since midnight\""
+msgstr "MsgBox lSec,0,\"Seconds since midnight\""
+
+#: 03030303.xhp#par_id3149260.13.help.text
+msgid "lMin = lSec / 60"
+msgstr "lMin = lSec / 60"
+
+#: 03030303.xhp#par_id3148646.14.help.text
+msgid "lSec = lSec Mod 60"
+msgstr "lSec = lSec Mod 60"
+
+#: 03030303.xhp#par_id3148575.15.help.text
+msgid "lHour = lMin / 60"
+msgstr "lHour = lMin / 60"
+
+#: 03030303.xhp#par_id3150418.16.help.text
+msgid "lMin = lMin Mod 60"
+msgstr "lMin = lMin Mod 60"
+
+#: 03030303.xhp#par_id3156283.17.help.text
+msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
+msgstr "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
+
+#: 03030303.xhp#par_id3153158.18.help.text
+msgctxt "03030303.xhp#par_id3153158.18.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: keys.xhp#tit.help.text
+msgid "Keyboard Shortcuts in the Basic IDE"
+msgstr "Keyboard Shortcuts in the Basic IDE"
+
+#: keys.xhp#bm_id3154760.help.text
+msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
+msgstr "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
+
+#: keys.xhp#hd_id3154760.1.help.text
+msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
+
+#: keys.xhp#par_id3149655.2.help.text
+msgid "In the Basic IDE you can use the following keyboard shortcuts:"
+msgstr "In the Basic IDE you can use the following keyboard shortcuts:"
+
+#: keys.xhp#par_id3154908.3.help.text
+msgid "Action"
+msgstr "Action"
+
+#: keys.xhp#par_id3153192.4.help.text
+msgid "Keyboard shortcut"
+msgstr "Keyboard shortcut"
+
+#: keys.xhp#par_id3159254.5.help.text
+msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
+msgstr "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
+
+#: keys.xhp#par_id3163712.6.help.text
+msgid "F5"
+msgstr "F5"
+
+#: keys.xhp#par_id3150010.7.help.text
+msgctxt "keys.xhp#par_id3150010.7.help.text"
+msgid "Stop"
+msgstr "Stop"
+
+#: keys.xhp#par_id3154319.8.help.text
+msgid "Shift+F5"
+msgstr "Shift+F5"
+
+#: keys.xhp#par_id3151073.11.help.text
+msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
+msgstr "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
+
+#: keys.xhp#par_id3154731.12.help.text
+msgid "F7"
+msgstr "F7"
+
+#: keys.xhp#par_id3148455.13.help.text
+msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
+msgstr "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
+
+#: keys.xhp#par_id3150716.14.help.text
+msgid "F8"
+msgstr "F8"
+
+#: keys.xhp#par_id3156275.15.help.text
+msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
+msgstr "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
+
+#: keys.xhp#par_id3153764.16.help.text
+msgid "Shift+F8"
+msgstr "Shift+F8"
+
+#: keys.xhp#par_id3150323.17.help.text
+msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
+msgstr "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
+
+#: keys.xhp#par_id3147339.18.help.text
+msgid "F9"
+msgstr "F9"
+
+#: keys.xhp#par_id3153963.19.help.text
+msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
+msgstr "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
+
+#: keys.xhp#par_id3155175.20.help.text
+msgid "Shift+F9"
+msgstr "Shift+F9"
+
+#: keys.xhp#par_id3154702.21.help.text
+msgid "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8."
+msgstr "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognise this only after the next F5, F8, or Shift+F8."
+
+#: 03101700.xhp#tit.help.text
+msgid "DefObj Statement [Runtime]"
+msgstr "DefObj Statement [Runtime]"
+
+#: 03101700.xhp#bm_id3149811.help.text
+msgid "<bookmark_value>DefObj statement</bookmark_value>"
+msgstr "<bookmark_value>DefObj statement</bookmark_value>"
+
+#: 03101700.xhp#hd_id3149811.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
+
+#: 03101700.xhp#par_id3147573.2.help.text
+msgctxt "03101700.xhp#par_id3147573.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+
+#: 03101700.xhp#hd_id3150504.3.help.text
+msgctxt "03101700.xhp#hd_id3150504.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101700.xhp#par_id3147530.4.help.text
+msgctxt "03101700.xhp#par_id3147530.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101700.xhp#hd_id3153896.5.help.text
+msgctxt "03101700.xhp#hd_id3153896.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101700.xhp#par_id3148552.6.help.text
+msgctxt "03101700.xhp#par_id3148552.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+
+#: 03101700.xhp#par_id3150358.7.help.text
+msgctxt "03101700.xhp#par_id3150358.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101700.xhp#par_id3148798.8.help.text
+msgctxt "03101700.xhp#par_id3148798.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Keyword: </emph>Default variable type"
+
+#: 03101700.xhp#par_id3150769.9.help.text
+msgid "<emph>DefObj:</emph> Object"
+msgstr "<emph>DefObj:</emph> Object"
+
+#: 03101700.xhp#hd_id3156212.10.help.text
+msgctxt "03101700.xhp#hd_id3156212.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101700.xhp#par_id3153969.12.help.text
+msgctxt "03101700.xhp#par_id3153969.12.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03101700.xhp#par_id3156424.13.help.text
+msgctxt "03101700.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101700.xhp#par_id3159254.14.help.text
+msgctxt "03101700.xhp#par_id3159254.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101700.xhp#par_id3150440.15.help.text
+msgctxt "03101700.xhp#par_id3150440.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101700.xhp#par_id3161832.16.help.text
+msgctxt "03101700.xhp#par_id3161832.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101700.xhp#par_id3145365.17.help.text
+msgctxt "03101700.xhp#par_id3145365.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101700.xhp#par_id3149481.18.help.text
+msgctxt "03101700.xhp#par_id3149481.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101700.xhp#par_id3152886.19.help.text
+msgctxt "03101700.xhp#par_id3152886.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03090300.xhp#tit.help.text
+msgid "Jumps"
+msgstr "Jumps"
+
+#: 03090300.xhp#hd_id3151262.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+
+#: 03090300.xhp#par_id3148983.2.help.text
+msgid "The following statements execute jumps."
+msgstr "The following statements execute jumps."
+
+#: 03132300.xhp#tit.help.text
+msgid "CreateUnoValue Function [Runtime]"
+msgstr "CreateUnoValue Function [Runtime]"
+
+#: 03132300.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoValue function</bookmark_value>"
+
+#: 03132300.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
+
+#: 03132300.xhp#par_id3147291.2.help.text
+msgid "Returns an object that represents a strictly typed value referring to the Uno type system. "
+msgstr "Returns an object that represents a strictly typed value referring to the Uno type system. "
+
+#: 03132300.xhp#par_id3143267.3.help.text
+msgid "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
+msgstr "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
+
+#: 03132300.xhp#par_id3153626.4.help.text
+msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
+msgstr "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
+
+#: 03132300.xhp#hd_id3147560.5.help.text
+msgctxt "03132300.xhp#hd_id3147560.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03132300.xhp#par_id3154760.6.help.text
+msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
+msgstr "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
+
+#: 03132300.xhp#par_id3150541.7.help.text
+msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
+msgstr "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
+
+#: 03132300.xhp#par_id3153524.8.help.text
+msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
+msgstr "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognise these types as they are only defined in the corresponding service."
+
+#: 03132300.xhp#par_id3154366.9.help.text
+msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
+msgstr "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
+
+#: 03132300.xhp#par_id3150769.10.help.text
+msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
+msgstr "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
+
+#: 03101500.xhp#tit.help.text
+msgid "DefInt Statement [Runtime]"
+msgstr "DefInt Statement [Runtime]"
+
+#: 03101500.xhp#bm_id3149811.help.text
+msgid "<bookmark_value>DefInt statement</bookmark_value>"
+msgstr "<bookmark_value>DefInt statement</bookmark_value>"
+
+#: 03101500.xhp#hd_id3149811.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
+
+#: 03101500.xhp#par_id3149762.2.help.text
+msgctxt "03101500.xhp#par_id3149762.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+
+#: 03101500.xhp#hd_id3148686.3.help.text
+msgctxt "03101500.xhp#hd_id3148686.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101500.xhp#par_id3156023.4.help.text
+msgctxt "03101500.xhp#par_id3156023.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101500.xhp#hd_id3156344.5.help.text
+msgctxt "03101500.xhp#hd_id3156344.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101500.xhp#par_id3147560.6.help.text
+msgctxt "03101500.xhp#par_id3147560.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+
+#: 03101500.xhp#par_id3150398.7.help.text
+msgctxt "03101500.xhp#par_id3150398.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101500.xhp#par_id3154365.8.help.text
+msgctxt "03101500.xhp#par_id3154365.8.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Keyword:</emph> Default variable type"
+
+#: 03101500.xhp#par_id3125863.9.help.text
+msgid "<emph>DefInt:</emph> Integer"
+msgstr "<emph>DefInt:</emph> Integer"
+
+#: 03101500.xhp#hd_id3154123.10.help.text
+msgctxt "03101500.xhp#hd_id3154123.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101500.xhp#par_id3151042.12.help.text
+msgid "REM Prefix definitions for variable types"
+msgstr "REM Prefix definitions for variable types"
+
+#: 03101500.xhp#par_id3156424.13.help.text
+msgctxt "03101500.xhp#par_id3156424.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101500.xhp#par_id3159254.14.help.text
+msgctxt "03101500.xhp#par_id3159254.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101500.xhp#par_id3150440.15.help.text
+msgctxt "03101500.xhp#par_id3150440.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101500.xhp#par_id3155855.16.help.text
+msgctxt "03101500.xhp#par_id3155855.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101500.xhp#par_id3152885.17.help.text
+msgctxt "03101500.xhp#par_id3152885.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101500.xhp#par_id3148646.18.help.text
+msgctxt "03101500.xhp#par_id3148646.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101500.xhp#par_id3153951.19.help.text
+msgctxt "03101500.xhp#par_id3153951.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101500.xhp#par_id3146924.21.help.text
+msgid "Sub ExampleDefInt"
+msgstr "Sub ExampleDefInt"
+
+#: 03101500.xhp#par_id3153728.22.help.text
+msgid "iCount=200 REM iCount is an implicit integer variable"
+msgstr "iCount=200 REM iCount is an implicit integer variable"
+
+#: 03101500.xhp#par_id3150010.23.help.text
+msgctxt "03101500.xhp#par_id3150010.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030103.xhp#tit.help.text
+msgid "Day Function [Runtime]"
+msgstr "Day Function [Runtime]"
+
+#: 03030103.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>Day function</bookmark_value>"
+msgstr "<bookmark_value>Day function</bookmark_value>"
+
+#: 03030103.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
+
+#: 03030103.xhp#par_id3147560.2.help.text
+msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
+msgstr "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
+
+#: 03030103.xhp#hd_id3149456.3.help.text
+msgctxt "03030103.xhp#hd_id3149456.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030103.xhp#par_id3150358.4.help.text
+msgid "Day (Number)"
+msgstr "Day (Number)"
+
+#: 03030103.xhp#hd_id3148798.5.help.text
+msgctxt "03030103.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030103.xhp#par_id3125865.6.help.text
+msgctxt "03030103.xhp#par_id3125865.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03030103.xhp#hd_id3150448.7.help.text
+msgctxt "03030103.xhp#hd_id3150448.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030103.xhp#par_id3156423.8.help.text
+msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
+msgstr "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
+
+#: 03030103.xhp#par_id3145786.9.help.text
+msgid "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
+msgstr "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
+
+#: 03030103.xhp#par_id3145364.10.help.text
+msgid "Print Day (DateSerial(1994, 12, 20))"
+msgstr "Print Day (DateSerial(1994, 12, 20))"
+
+#: 03030103.xhp#par_id3153190.11.help.text
+msgid "returns the value 20."
+msgstr "returns the value 20."
+
+#: 03030103.xhp#hd_id3149481.12.help.text
+msgctxt "03030103.xhp#hd_id3149481.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030103.xhp#par_id3155413.13.help.text
+msgid "sub ExampleDay"
+msgstr "sub ExampleDay"
+
+#: 03030103.xhp#par_id3149260.14.help.text
+msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+msgstr "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
+
+#: 03030103.xhp#par_id3148645.15.help.text
+msgctxt "03030103.xhp#par_id3148645.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030105.xhp#tit.help.text
+msgid "WeekDay Function [Runtime]"
+msgstr "WeekDay Function [Runtime]"
+
+#: 03030105.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>WeekDay function</bookmark_value>"
+msgstr "<bookmark_value>WeekDay function</bookmark_value>"
+
+#: 03030105.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
+
+#: 03030105.xhp#par_id3146795.2.help.text
+msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
+
+#: 03030105.xhp#hd_id3145068.3.help.text
+msgctxt "03030105.xhp#hd_id3145068.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030105.xhp#par_id3149655.4.help.text
+msgid "WeekDay (Number)"
+msgstr "WeekDay (Number)"
+
+#: 03030105.xhp#hd_id3148799.5.help.text
+msgctxt "03030105.xhp#hd_id3148799.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030105.xhp#par_id3154125.6.help.text
+msgctxt "03030105.xhp#par_id3154125.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03030105.xhp#hd_id3150768.7.help.text
+msgctxt "03030105.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030105.xhp#par_id3151042.8.help.text
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
+msgstr "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
+
+#: 03030105.xhp#par_id3159254.9.help.text
+msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
+msgstr "The following example determines the day of the week using the WeekDay function when you enter a date."
+
+#: 03030105.xhp#hd_id3148616.10.help.text
+msgctxt "03030105.xhp#hd_id3148616.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030105.xhp#par_id3145749.11.help.text
+msgid "Sub ExampleWeekDay"
+msgstr "Sub ExampleWeekDay"
+
+#: 03030105.xhp#par_id3147426.12.help.text
+msgid "Dim sDay As String"
+msgstr "Dim sDay As String"
+
+#: 03030105.xhp#par_id3148576.13.help.text
+msgid "REM Return and display the day of the week"
+msgstr "REM Return and display the day of the week"
+
+#: 03030105.xhp#par_id3155412.14.help.text
+msgid "Select Case WeekDay( Now )"
+msgstr "Select Case WeekDay( Now )"
+
+#: 03030105.xhp#par_id3155306.15.help.text
+msgid "case 1"
+msgstr "case 1"
+
+#: 03030105.xhp#par_id3151117.16.help.text
+msgid "sDay=\"Sunday\""
+msgstr "sDay=\"Sunday\""
+
+#: 03030105.xhp#par_id3152460.17.help.text
+msgid "case 2"
+msgstr "case 2"
+
+#: 03030105.xhp#par_id3153952.18.help.text
+msgid "sDay=\"Monday\""
+msgstr "sDay=\"Monday\""
+
+#: 03030105.xhp#par_id3149666.19.help.text
+msgid "case 3"
+msgstr "case 3"
+
+#: 03030105.xhp#par_id3153157.20.help.text
+msgid "sDay=\"Tuesday\""
+msgstr "sDay=\"Tuesday\""
+
+#: 03030105.xhp#par_id3154730.21.help.text
+msgid "case 4"
+msgstr "case 4"
+
+#: 03030105.xhp#par_id3154942.22.help.text
+msgid "sDay=\"Wednesday\""
+msgstr "sDay=\"Wednesday\""
+
+#: 03030105.xhp#par_id3145799.23.help.text
+msgid "case 5"
+msgstr "case 5"
+
+#: 03030105.xhp#par_id3155416.24.help.text
+msgid "sDay=\"Thursday\""
+msgstr "sDay=\"Thursday\""
+
+#: 03030105.xhp#par_id3150716.25.help.text
+msgid "case 6"
+msgstr "case 6"
+
+#: 03030105.xhp#par_id3154015.26.help.text
+msgid "sDay=\"Friday\""
+msgstr "sDay=\"Friday\""
+
+#: 03030105.xhp#par_id3146971.27.help.text
+msgid "case 7"
+msgstr "case 7"
+
+#: 03030105.xhp#par_id3153707.28.help.text
+msgid "sDay=\"Saturday\""
+msgstr "sDay=\"Saturday\""
+
+#: 03030105.xhp#par_id3155065.29.help.text
+msgctxt "03030105.xhp#par_id3155065.29.help.text"
+msgid "End Select"
+msgstr "End Select"
+
+#: 03030105.xhp#par_id3148993.30.help.text
+msgid "msgbox \"\" + sDay,64,\"Today is\""
+msgstr "msgbox \"\" + sDay,64,\"Today is\""
+
+#: 03030105.xhp#par_id3149019.31.help.text
+msgctxt "03030105.xhp#par_id3149019.31.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080601.xhp#tit.help.text
+msgid "Abs Function [Runtime]"
+msgstr "Abs Function [Runtime]"
+
+#: 03080601.xhp#bm_id3159201.help.text
+msgid "<bookmark_value>Abs function</bookmark_value>"
+msgstr "<bookmark_value>Abs function</bookmark_value>"
+
+#: 03080601.xhp#hd_id3159201.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
+
+#: 03080601.xhp#par_id3153394.2.help.text
+msgid "Returns the absolute value of a numeric expression."
+msgstr "Returns the absolute value of a numeric expression."
+
+#: 03080601.xhp#hd_id3149233.3.help.text
+msgctxt "03080601.xhp#hd_id3149233.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080601.xhp#par_id3147573.4.help.text
+msgid "Abs (Number)"
+msgstr "Abs (Number)"
+
+#: 03080601.xhp#hd_id3156152.5.help.text
+msgctxt "03080601.xhp#hd_id3156152.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080601.xhp#par_id3149670.6.help.text
+msgctxt "03080601.xhp#par_id3149670.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080601.xhp#hd_id3154924.7.help.text
+msgctxt "03080601.xhp#hd_id3154924.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080601.xhp#par_id3154347.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to return the absolute value for. Positive numbers, including 0, are returned unchanged, whereas negative numbers are converted to positive numbers."
+msgstr "<emph>Number:</emph> Any numeric expression that you want to return the absolute value for. Positive numbers, including 0, are returned unchanged, whereas negative numbers are converted to positive numbers."
+
+#: 03080601.xhp#par_id3153381.9.help.text
+msgid "The following example uses the Abs function to calculate the difference between two values. It does not matter which value you enter first."
+msgstr "The following example uses the Abs function to calculate the difference between two values. It does not matter which value you enter first."
+
+#: 03080601.xhp#hd_id3148451.10.help.text
+msgctxt "03080601.xhp#hd_id3148451.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080601.xhp#par_id3154124.11.help.text
+msgid "Sub ExampleDifference"
+msgstr "Sub ExampleDifference"
+
+#: 03080601.xhp#par_id3150768.12.help.text
+msgid "Dim siW1 As Single"
+msgstr "Dim siW1 As Single"
+
+#: 03080601.xhp#par_id3125864.13.help.text
+msgid "Dim siW2 As Single"
+msgstr "Dim siW2 As Single"
+
+#: 03080601.xhp#par_id3145786.14.help.text
+msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value input\"))"
+msgstr "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value input\"))"
+
+#: 03080601.xhp#par_id3149561.15.help.text
+msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value input\"))"
+msgstr "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value input\"))"
+
+#: 03080601.xhp#par_id3145750.16.help.text
+msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
+msgstr "Print \"The difference is \"; Abs(siW1 - siW2)"
+
+#: 03080601.xhp#par_id3147319.17.help.text
+msgctxt "03080601.xhp#par_id3147319.17.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100500.xhp#tit.help.text
+msgid "CInt Function [Runtime]"
+msgstr "CInt Function [Runtime]"
+
+#: 03100500.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>CInt function</bookmark_value>"
+msgstr "<bookmark_value>CInt function</bookmark_value>"
+
+#: 03100500.xhp#hd_id3149346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
+
+#: 03100500.xhp#par_id3155419.2.help.text
+msgid "Converts any string or numeric expression to an integer."
+msgstr "Converts any string or numeric expression to an integer."
+
+#: 03100500.xhp#hd_id3147573.3.help.text
+msgctxt "03100500.xhp#hd_id3147573.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100500.xhp#par_id3154142.4.help.text
+msgid "CInt (Expression)"
+msgstr "CInt (Expression)"
+
+#: 03100500.xhp#hd_id3147531.5.help.text
+msgctxt "03100500.xhp#hd_id3147531.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100500.xhp#par_id3147560.6.help.text
+msgctxt "03100500.xhp#par_id3147560.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03100500.xhp#hd_id3145069.7.help.text
+msgctxt "03100500.xhp#hd_id3145069.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03100500.xhp#par_id3159414.8.help.text
+msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+
+#: 03100500.xhp#par_id3150358.9.help.text
+msgctxt "03100500.xhp#par_id3150358.9.help.text"
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "This function always rounds the fractional part of a number to the nearest integer."
+
+#: 03100500.xhp#hd_id3145419.10.help.text
+msgctxt "03100500.xhp#hd_id3145419.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03100500.xhp#par_id3150448.11.help.text
+msgctxt "03100500.xhp#par_id3150448.11.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr "Sub ExampleCountryConvert"
+
+#: 03100500.xhp#par_id3156423.12.help.text
+msgctxt "03100500.xhp#par_id3156423.12.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234.5678)"
+
+#: 03100500.xhp#par_id3150869.13.help.text
+msgctxt "03100500.xhp#par_id3150869.13.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234.5678)"
+
+#: 03100500.xhp#par_id3153768.14.help.text
+msgctxt "03100500.xhp#par_id3153768.14.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234.5678)"
+
+#: 03100500.xhp#par_id3145786.15.help.text
+msgctxt "03100500.xhp#par_id3145786.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020205.xhp#tit.help.text
+msgid "Write Statement [Runtime]"
+msgstr "Write Statement [Runtime]"
+
+#: 03020205.xhp#bm_id3147229.help.text
+msgid "<bookmark_value>Write statement</bookmark_value>"
+msgstr "<bookmark_value>Write statement</bookmark_value>"
+
+#: 03020205.xhp#hd_id3147229.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
+
+#: 03020205.xhp#par_id3154685.2.help.text
+msgid "Writes data to a sequential file."
+msgstr "Writes data to a sequential file."
+
+#: 03020205.xhp#hd_id3150449.3.help.text
+msgctxt "03020205.xhp#hd_id3150449.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020205.xhp#par_id3145785.4.help.text
+msgid "Write [#FileName], [Expressionlist]"
+msgstr "Write [#FileName], [Expressionlist]"
+
+#: 03020205.xhp#hd_id3151116.5.help.text
+msgctxt "03020205.xhp#hd_id3151116.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020205.xhp#par_id3153728.6.help.text
+msgctxt "03020205.xhp#par_id3153728.6.help.text"
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+
+#: 03020205.xhp#par_id3146120.7.help.text
+msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
+msgstr "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
+
+#: 03020205.xhp#par_id3150010.8.help.text
+msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
+msgstr "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
+
+#: 03020205.xhp#par_id3163713.9.help.text
+msgid "To add an expression list to a new or an existing file, the file must be opened in the <emph>Output</emph> or <emph>Append</emph> mode."
+msgstr "To add an expression list to a new or an existing file, the file must be opened in the <emph>Output</emph> or <emph>Append</emph> mode."
+
+#: 03020205.xhp#par_id3147428.10.help.text
+msgid "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
+msgstr "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
+
+#: 03020205.xhp#par_id1002838.help.text
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgstr "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+
+#: 03020205.xhp#par_id6618854.help.text
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgstr "Numbers with decimal delimiters are converted according to the locale settings."
+
+#: 03020205.xhp#hd_id3151073.11.help.text
+msgctxt "03020205.xhp#hd_id3151073.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020205.xhp#par_id3145252.12.help.text
+msgid "Sub ExampleWrite"
+msgstr "Sub ExampleWrite"
+
+#: 03020205.xhp#par_id3149958.13.help.text
+msgctxt "03020205.xhp#par_id3149958.13.help.text"
+msgid "Dim iCount As Integer"
+msgstr "Dim iCount As Integer"
+
+#: 03020205.xhp#par_id3156284.14.help.text
+msgid "Dim sValue As String"
+msgstr "Dim sValue As String"
+
+#: 03020205.xhp#par_id3145645.15.help.text
+msgid "iCount = Freefile"
+msgstr "iCount = Freefile"
+
+#: 03020205.xhp#par_id3153417.16.help.text
+msgid "open \"C:\\data.txt\" for OutPut as iCount"
+msgstr "open \"C:\\data.txt\" for OutPut as iCount"
+
+#: 03020205.xhp#par_id3149401.17.help.text
+msgid "sValue = \"Hamburg\""
+msgstr "sValue = \"Hamburg\""
+
+#: 03020205.xhp#par_id3156275.18.help.text
+msgid "Write #iCount,sValue,200"
+msgstr "Write #iCount,sValue,200"
+
+#: 03020205.xhp#par_id3146913.19.help.text
+msgid "sValue = \"New York\""
+msgstr "sValue = \"New York\""
+
+#: 03020205.xhp#par_id3155064.20.help.text
+msgid "Write #iCount,sValue,300"
+msgstr "Write #iCount,sValue,300"
+
+#: 03020205.xhp#par_id3150322.21.help.text
+msgid "sValue = \"Miami\""
+msgstr "sValue = \"Miami\""
+
+#: 03020205.xhp#par_id3155766.22.help.text
+msgid "Write #iCount,sValue,450"
+msgstr "Write #iCount,sValue,450"
+
+#: 03020205.xhp#par_id3145643.23.help.text
+msgid "close #iCount"
+msgstr "close #iCount"
+
+#: 03020205.xhp#par_id3150044.24.help.text
+msgctxt "03020205.xhp#par_id3150044.24.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 00000002.xhp#tit.help.text
+msgid "$[officename] Basic Glossary"
+msgstr "$[officename] Basic Glossary"
+
+#: 00000002.xhp#hd_id3145068.1.help.text
+msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
+msgstr "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
+
+#: 00000002.xhp#par_id3150792.2.help.text
+msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
+msgstr "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
+
+#: 00000002.xhp#hd_id3155133.7.help.text
+msgid "Decimal Point"
+msgstr "Decimal Point"
+
+#: 00000002.xhp#par_id3156443.8.help.text
+msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
+msgstr "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
+
+#: 00000002.xhp#par_id3153092.9.help.text
+msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+msgstr "The behaviour has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+
+#: 00000002.xhp#hd_id3155854.29.help.text
+msgid "Colors"
+msgstr "Colours"
+
+#: 00000002.xhp#par_id3145366.30.help.text
+msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
+msgstr "In $[officename] Basic, colours are treated as long integer value. The return value of colour queries is also always a long integer value. When defining properties, colours can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
+
+#: 00000002.xhp#hd_id3146119.32.help.text
+msgid "Measurement Units"
+msgstr "Measurement Units"
+
+#: 00000002.xhp#par_id3154013.33.help.text
+msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
+msgstr "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
+
+#: 00000002.xhp#bm_id3145801.help.text
+msgid "<bookmark_value>twips; definition</bookmark_value>"
+msgstr "<bookmark_value>twips; definition</bookmark_value>"
+
+#: 00000002.xhp#hd_id3145801.5.help.text
+msgid "Twips"
+msgstr "Twips"
+
+#: 00000002.xhp#par_id3154731.6.help.text
+msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
+msgstr "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimetre."
+
+#: 00000002.xhp#hd_id3153159.106.help.text
+msgid "URL Notation"
+msgstr "URL Notation"
+
+#: 00000002.xhp#par_id3153415.108.help.text
+msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
+msgstr "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
+
+#: 00000002.xhp#par_id3149121.107.help.text
+msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+msgstr "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+
+#: 00000002.xhp#par_id3168612.109.help.text
+msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
+msgstr "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
+
+#: 00000002.xhp#par_id3150324.110.help.text
+msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
+msgstr "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
+
+#: 03090401.xhp#tit.help.text
+msgid "Call Statement [Runtime]"
+msgstr "Call Statement [Runtime]"
+
+#: 03090401.xhp#bm_id3154422.help.text
+msgid "<bookmark_value>Call statement</bookmark_value>"
+msgstr "<bookmark_value>Call statement</bookmark_value>"
+
+#: 03090401.xhp#hd_id3154422.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
+
+#: 03090401.xhp#par_id3153394.2.help.text
+msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
+msgstr "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
+
+#: 03090401.xhp#hd_id3153345.3.help.text
+msgctxt "03090401.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090401.xhp#par_id3150984.4.help.text
+msgid "[Call] Name [Parameter]"
+msgstr "[Call] Name [Parameter]"
+
+#: 03090401.xhp#hd_id3150771.5.help.text
+msgctxt "03090401.xhp#hd_id3150771.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090401.xhp#par_id3148473.6.help.text
+msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
+msgstr "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
+
+#: 03090401.xhp#par_id3148946.7.help.text
+msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
+msgstr "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
+
+#: 03090401.xhp#par_id3154216.8.help.text
+msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
+msgstr "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
+
+#: 03090401.xhp#hd_id3125865.9.help.text
+msgctxt "03090401.xhp#hd_id3125865.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090401.xhp#par_id3159254.12.help.text
+msgid "Sub ExampleCall"
+msgstr "Sub ExampleCall"
+
+#: 03090401.xhp#par_id3161832.13.help.text
+msgctxt "03090401.xhp#par_id3161832.13.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03090401.xhp#par_id3147317.14.help.text
+msgctxt "03090401.xhp#par_id3147317.14.help.text"
+msgid "sVar = \"Office\""
+msgstr "sVar = \"Office\""
+
+#: 03090401.xhp#par_id3145273.15.help.text
+msgid "Call f_callFun sVar"
+msgstr "Call f_callFun sVar"
+
+#: 03090401.xhp#par_id3147435.16.help.text
+msgctxt "03090401.xhp#par_id3147435.16.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03090401.xhp#par_id3155414.18.help.text
+msgid "Sub f_callFun (sText as String)"
+msgstr "Sub f_callFun (sText as String)"
+
+#: 03090401.xhp#par_id3151112.19.help.text
+msgctxt "03090401.xhp#par_id3151112.19.help.text"
+msgid "Msgbox sText"
+msgstr "Msgbox sText"
+
+#: 03090401.xhp#par_id3148646.20.help.text
+msgctxt "03090401.xhp#par_id3148646.20.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01050300.xhp#tit.help.text
+msgid "Manage Breakpoints"
+msgstr "Manage Breakpoints"
+
+#: 01050300.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+
+#: 01050300.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
+
+#: 01050300.xhp#hd_id3149670.3.help.text
+msgid "Breakpoints"
+msgstr "Breakpoints"
+
+#: 01050300.xhp#par_id3150398.4.help.text
+msgid "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
+
+#: 01050300.xhp#hd_id3156280.6.help.text
+msgid "Active"
+msgstr "Active"
+
+#: 01050300.xhp#par_id3154910.7.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
+
+#: 01050300.xhp#hd_id3144500.8.help.text
+msgid "Pass Count"
+msgstr "Pass Count"
+
+#: 01050300.xhp#par_id3161831.9.help.text
+msgid "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
+
+#: 01050300.xhp#hd_id3152579.10.help.text
+msgid "New"
+msgstr "New"
+
+#: 01050300.xhp#par_id3148575.11.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
+
+#: 01050300.xhp#hd_id3147319.12.help.text
+msgctxt "01050300.xhp#hd_id3147319.12.help.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: 01050300.xhp#par_id3153363.13.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
+
+#: 03020415.xhp#tit.help.text
+msgid "FileExists Function [Runtime]"
+msgstr "FileExists Function [Runtime]"
+
+#: 03020415.xhp#bm_id3148946.help.text
+msgid "<bookmark_value>FileExists function</bookmark_value>"
+msgstr "<bookmark_value>FileExists function</bookmark_value>"
+
+#: 03020415.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
+
+#: 03020415.xhp#par_id3153361.2.help.text
+msgid "Determines if a file or a directory is available on the data medium."
+msgstr "Determines if a file or a directory is available on the data medium."
+
+#: 03020415.xhp#hd_id3150447.3.help.text
+msgctxt "03020415.xhp#hd_id3150447.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020415.xhp#par_id3154685.4.help.text
+msgid "FileExists(FileName As String | DirectoryName As String)"
+msgstr "FileExists(FileName As String | DirectoryName As String)"
+
+#: 03020415.xhp#hd_id3154126.5.help.text
+msgctxt "03020415.xhp#hd_id3154126.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020415.xhp#par_id3150769.6.help.text
+msgctxt "03020415.xhp#par_id3150769.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03020415.xhp#hd_id3153770.7.help.text
+msgctxt "03020415.xhp#hd_id3153770.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020415.xhp#par_id3147349.8.help.text
+msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020415.xhp#hd_id3149664.9.help.text
+msgctxt "03020415.xhp#hd_id3149664.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020415.xhp#par_id3145272.10.help.text
+msgid "sub ExampleFileExists"
+msgstr "sub ExampleFileExists"
+
+#: 03020415.xhp#par_id3147317.12.help.text
+msgid "msgbox FileExists(\"C:\\autoexec.bat\")"
+msgstr "msgbox FileExists(\"C:\\autoexec.bat\")"
+
+#: 03020415.xhp#par_id3153190.13.help.text
+msgid "msgbox FileExists(\"file:///d|/bookmark.htm\")"
+msgstr "msgbox FileExists(\"file:///d|/bookmark.htm\")"
+
+#: 03020415.xhp#par_id3148645.14.help.text
+msgid "msgbox FileExists(\"file:///d|/private\")"
+msgstr "msgbox FileExists(\"file:///d|/private\")"
+
+#: 03020415.xhp#par_id3149262.15.help.text
+msgctxt "03020415.xhp#par_id3149262.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120402.xhp#tit.help.text
+msgid "Len Function [Runtime]"
+msgstr "Len Function [Runtime]"
+
+#: 03120402.xhp#bm_id3154136.help.text
+msgid "<bookmark_value>Len function</bookmark_value>"
+msgstr "<bookmark_value>Len function</bookmark_value>"
+
+#: 03120402.xhp#hd_id3154136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
+
+#: 03120402.xhp#par_id3147576.2.help.text
+msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
+msgstr "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
+
+#: 03120402.xhp#hd_id3159177.3.help.text
+msgctxt "03120402.xhp#hd_id3159177.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120402.xhp#par_id3150669.4.help.text
+msgid "Len (Text As String)"
+msgstr "Len (Text As String)"
+
+#: 03120402.xhp#hd_id3148473.5.help.text
+msgctxt "03120402.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120402.xhp#par_id3143270.6.help.text
+msgctxt "03120402.xhp#par_id3143270.6.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03120402.xhp#hd_id3147531.7.help.text
+msgctxt "03120402.xhp#hd_id3147531.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120402.xhp#par_id3147265.8.help.text
+msgid "<emph>Text:</emph> Any string expression or a variable of another type."
+msgstr "<emph>Text:</emph> Any string expression or a variable of another type."
+
+#: 03120402.xhp#hd_id3153360.9.help.text
+msgctxt "03120402.xhp#hd_id3153360.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120402.xhp#par_id3150792.10.help.text
+msgctxt "03120402.xhp#par_id3150792.10.help.text"
+msgid "Sub ExampleLen"
+msgstr "Sub ExampleLen"
+
+#: 03120402.xhp#par_id3151211.11.help.text
+msgctxt "03120402.xhp#par_id3151211.11.help.text"
+msgid "Dim sText as String"
+msgstr "Dim sText as String"
+
+#: 03120402.xhp#par_id3154125.12.help.text
+msgctxt "03120402.xhp#par_id3154125.12.help.text"
+msgid "sText = \"Las Vegas\""
+msgstr "sText = \"Las Vegas\""
+
+#: 03120402.xhp#par_id3156214.13.help.text
+msgid "MsgBox Len(sText) REM Returns 9"
+msgstr "MsgBox Len(sText) REM Returns 9"
+
+#: 03120402.xhp#par_id3125864.14.help.text
+msgctxt "03120402.xhp#par_id3125864.14.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03103600.xhp#tit.help.text
+msgid "TypeName Function; VarType Function[Runtime]"
+msgstr "TypeName Function; VarType Function[Runtime]"
+
+#: 03103600.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+msgstr "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+
+#: 03103600.xhp#hd_id3143267.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+
+#: 03103600.xhp#par_id3159157.2.help.text
+msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+msgstr "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+
+#: 03103600.xhp#hd_id3153825.3.help.text
+msgctxt "03103600.xhp#hd_id3153825.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103600.xhp#par_id3155341.4.help.text
+msgid "TypeName (Variable)VarType (Variable)"
+msgstr "TypeName (Variable)VarType (Variable)"
+
+#: 03103600.xhp#hd_id3145610.5.help.text
+msgctxt "03103600.xhp#hd_id3145610.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03103600.xhp#par_id3148947.6.help.text
+msgid "String; Integer"
+msgstr "String; Integer"
+
+#: 03103600.xhp#hd_id3146795.7.help.text
+msgctxt "03103600.xhp#hd_id3146795.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03103600.xhp#par_id3148664.8.help.text
+msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+msgstr "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+
+#: 03103600.xhp#par_id3145171.9.help.text
+msgid "key word"
+msgstr "key word"
+
+#: 03103600.xhp#par_id3156212.10.help.text
+msgid "VarType"
+msgstr "VarType"
+
+#: 03103600.xhp#par_id3154684.11.help.text
+msgid "Variable type"
+msgstr "Variable type"
+
+#: 03103600.xhp#par_id3151041.12.help.text
+msgid "Boolean"
+msgstr "Boolean"
+
+#: 03103600.xhp#par_id3153367.13.help.text
+msgid "11"
+msgstr "11"
+
+#: 03103600.xhp#par_id3148645.14.help.text
+msgid "Boolean variable"
+msgstr "Boolean variable"
+
+#: 03103600.xhp#par_id3153138.15.help.text
+msgctxt "03103600.xhp#par_id3153138.15.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 03103600.xhp#par_id3153363.16.help.text
+msgctxt "03103600.xhp#par_id3153363.16.help.text"
+msgid "7"
+msgstr "7"
+
+#: 03103600.xhp#par_id3155411.17.help.text
+msgid "Date variable"
+msgstr "Date variable"
+
+#: 03103600.xhp#par_id3146975.18.help.text
+msgctxt "03103600.xhp#par_id3146975.18.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03103600.xhp#par_id3150486.19.help.text
+msgctxt "03103600.xhp#par_id3150486.19.help.text"
+msgid "5"
+msgstr "5"
+
+#: 03103600.xhp#par_id3148616.20.help.text
+msgid "Double floating point variable"
+msgstr "Double floating point variable"
+
+#: 03103600.xhp#par_id3148457.21.help.text
+msgctxt "03103600.xhp#par_id3148457.21.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03103600.xhp#par_id3145647.22.help.text
+msgctxt "03103600.xhp#par_id3145647.22.help.text"
+msgid "2"
+msgstr "2"
+
+#: 03103600.xhp#par_id3154490.23.help.text
+msgid "Integer variable"
+msgstr "Integer variable"
+
+#: 03103600.xhp#par_id3149960.24.help.text
+msgctxt "03103600.xhp#par_id3149960.24.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03103600.xhp#par_id3154513.25.help.text
+msgctxt "03103600.xhp#par_id3154513.25.help.text"
+msgid "3"
+msgstr "3"
+
+#: 03103600.xhp#par_id3151318.26.help.text
+msgid "Long integer variable"
+msgstr "Long integer variable"
+
+#: 03103600.xhp#par_id3146972.27.help.text
+msgid "Object"
+msgstr "Object"
+
+#: 03103600.xhp#par_id3154482.28.help.text
+msgid "9"
+msgstr "9"
+
+#: 03103600.xhp#par_id3150323.29.help.text
+msgid "Object variable"
+msgstr "Object variable"
+
+#: 03103600.xhp#par_id3148405.30.help.text
+msgctxt "03103600.xhp#par_id3148405.30.help.text"
+msgid "Single"
+msgstr "Single"
+
+#: 03103600.xhp#par_id3149020.31.help.text
+msgctxt "03103600.xhp#par_id3149020.31.help.text"
+msgid "4"
+msgstr "4"
+
+#: 03103600.xhp#par_id3147341.32.help.text
+msgid "Single floating-point variable"
+msgstr "Single floating-point variable"
+
+#: 03103600.xhp#par_id3155901.33.help.text
+msgctxt "03103600.xhp#par_id3155901.33.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03103600.xhp#par_id3155960.34.help.text
+msgid "8"
+msgstr "8"
+
+#: 03103600.xhp#par_id3146313.35.help.text
+msgid "String variable"
+msgstr "String variable"
+
+#: 03103600.xhp#par_id3145149.36.help.text
+msgid "Variant"
+msgstr "Variant"
+
+#: 03103600.xhp#par_id3154021.37.help.text
+msgid "12"
+msgstr "12"
+
+#: 03103600.xhp#par_id3145789.38.help.text
+msgid "Variant variable (can contain all types specified by the definition)"
+msgstr "Variant variable (can contain all types specified by the definition)"
+
+#: 03103600.xhp#par_id3148630.39.help.text
+msgid "Empty"
+msgstr "Empty"
+
+#: 03103600.xhp#par_id3152584.40.help.text
+msgctxt "03103600.xhp#par_id3152584.40.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03103600.xhp#par_id3151278.41.help.text
+msgid "Variable is not initialized"
+msgstr "Variable is not initialised"
+
+#: 03103600.xhp#par_id3154576.42.help.text
+msgid "Null"
+msgstr "Null"
+
+#: 03103600.xhp#par_id3166424.43.help.text
+msgctxt "03103600.xhp#par_id3166424.43.help.text"
+msgid "1"
+msgstr "1"
+
+#: 03103600.xhp#par_id3145131.44.help.text
+msgid "No valid data"
+msgstr "No valid data"
+
+#: 03103600.xhp#hd_id3149338.45.help.text
+msgctxt "03103600.xhp#hd_id3149338.45.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103600.xhp#par_id3150363.46.help.text
+msgid "Sub ExampleType"
+msgstr "Sub ExampleType"
+
+#: 03103600.xhp#par_id3159088.47.help.text
+msgctxt "03103600.xhp#par_id3159088.47.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03103600.xhp#par_id3150089.48.help.text
+msgctxt "03103600.xhp#par_id3150089.48.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03103600.xhp#par_id3156139.49.help.text
+msgid "Dim siVar As Single"
+msgstr "Dim siVar As Single"
+
+#: 03103600.xhp#par_id3151217.50.help.text
+msgid "Dim dVar As Double"
+msgstr "Dim dVar As Double"
+
+#: 03103600.xhp#par_id3154658.51.help.text
+msgid "Dim bVar As Boolean"
+msgstr "Dim bVar As Boolean"
+
+#: 03103600.xhp#par_id3152992.52.help.text
+msgctxt "03103600.xhp#par_id3152992.52.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03103600.xhp#par_id3155509.53.help.text
+msgid "Msgbox TypeName(iVar) & \" \" & VarType(iVar) & Chr(13) &_"
+msgstr "Msgbox TypeName(iVar) & \" \" & VarType(iVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3150370.54.help.text
+msgid "TypeName(sVar) & \" \" & VarType(sVar) & Chr(13) &_"
+msgstr "TypeName(sVar) & \" \" & VarType(sVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3155532.55.help.text
+msgid "TypeName(siVar) & \" \" & VarType(siVar) & Chr(13) &_"
+msgstr "TypeName(siVar) & \" \" & VarType(siVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3152988.56.help.text
+msgid "TypeName(dVar) & \" \" & VarType(dVar) & Chr(13) &_"
+msgstr "TypeName(dVar) & \" \" & VarType(dVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3156166.57.help.text
+msgid "TypeName(bVar) & \" \" & VarType(bVar) & Chr(13) &_"
+msgstr "TypeName(bVar) & \" \" & VarType(bVar) & Chr(13) &_"
+
+#: 03103600.xhp#par_id3148817.58.help.text
+msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types in $[officename] Basic\""
+msgstr "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types in $[officename] Basic\""
+
+#: 03103600.xhp#par_id3154259.59.help.text
+msgctxt "03103600.xhp#par_id3154259.59.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03110000.xhp#tit.help.text
+msgid "Comparison Operators"
+msgstr "Comparison Operators"
+
+#: 03110000.xhp#hd_id3155555.1.help.text
+msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+
+#: 03110000.xhp#par_id3153528.2.help.text
+msgid "The available comparison operators are described here."
+msgstr "The available comparison operators are described here."
+
+#: 03070300.xhp#tit.help.text
+msgid "\"+\" Operator [Runtime]"
+msgstr "\"+\" Operator [Runtime]"
+
+#: 03070300.xhp#bm_id3145316.help.text
+msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
+
+#: 03070300.xhp#hd_id3145316.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
+
+#: 03070300.xhp#par_id3145068.2.help.text
+msgid "Adds or combines two expressions."
+msgstr "Adds or combines two expressions."
+
+#: 03070300.xhp#hd_id3144500.3.help.text
+msgctxt "03070300.xhp#hd_id3144500.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03070300.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 + Expression2"
+msgstr "Result = Expression1 + Expression2"
+
+#: 03070300.xhp#hd_id3150400.5.help.text
+msgctxt "03070300.xhp#hd_id3150400.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03070300.xhp#par_id3154123.6.help.text
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgstr "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+
+#: 03070300.xhp#par_id3150870.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+msgstr "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+
+#: 03070300.xhp#hd_id3153969.8.help.text
+msgctxt "03070300.xhp#hd_id3153969.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03070300.xhp#par_id3150440.9.help.text
+msgid "Sub ExampleAddition1"
+msgstr "Sub ExampleAddition1"
+
+#: 03070300.xhp#par_id3159254.10.help.text
+msgid "Print 5 + 5"
+msgstr "Print 5 + 5"
+
+#: 03070300.xhp#par_id3152460.11.help.text
+msgctxt "03070300.xhp#par_id3152460.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070300.xhp#par_id3153191.13.help.text
+msgid "Sub ExampleAddition2"
+msgstr "Sub ExampleAddition2"
+
+#: 03070300.xhp#par_id3146120.14.help.text
+msgctxt "03070300.xhp#par_id3146120.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr "Dim iValue1 as Integer"
+
+#: 03070300.xhp#par_id3155411.15.help.text
+msgctxt "03070300.xhp#par_id3155411.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr "Dim iValue2 as Integer"
+
+#: 03070300.xhp#par_id3147435.16.help.text
+msgctxt "03070300.xhp#par_id3147435.16.help.text"
+msgid "iValue1 = 5"
+msgstr "iValue1 = 5"
+
+#: 03070300.xhp#par_id3163710.17.help.text
+msgctxt "03070300.xhp#par_id3163710.17.help.text"
+msgid "iValue2 = 10"
+msgstr "iValue2 = 10"
+
+#: 03070300.xhp#par_id3151118.18.help.text
+msgid "Print iValue1 + iValue2"
+msgstr "Print iValue1 + iValue2"
+
+#: 03070300.xhp#par_id3146974.19.help.text
+msgctxt "03070300.xhp#par_id3146974.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03130600.xhp#tit.help.text
+msgid "Wait Statement [Runtime]"
+msgstr "Wait Statement [Runtime]"
+
+#: 03130600.xhp#bm_id3154136.help.text
+msgid "<bookmark_value>Wait statement</bookmark_value>"
+msgstr "<bookmark_value>Wait statement</bookmark_value>"
+
+#: 03130600.xhp#hd_id3154136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
+
+#: 03130600.xhp#par_id3149236.2.help.text
+msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
+msgstr "Interrupts the program execution for the amount of time that you specify in milliseconds."
+
+#: 03130600.xhp#hd_id3143229.3.help.text
+msgctxt "03130600.xhp#hd_id3143229.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03130600.xhp#par_id3150669.4.help.text
+msgid "Wait millisec"
+msgstr "Wait millisec"
+
+#: 03130600.xhp#hd_id3148943.5.help.text
+msgctxt "03130600.xhp#hd_id3148943.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03130600.xhp#par_id3154924.6.help.text
+msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+msgstr "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+
+#: 03130600.xhp#hd_id3150541.7.help.text
+msgctxt "03130600.xhp#hd_id3150541.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03130600.xhp#par_id3154138.8.help.text
+msgctxt "03130600.xhp#par_id3154138.8.help.text"
+msgid "Sub ExampleWait"
+msgstr "Sub ExampleWait"
+
+#: 03130600.xhp#par_id3154367.9.help.text
+msgctxt "03130600.xhp#par_id3154367.9.help.text"
+msgid "Dim lTick As Long"
+msgstr "Dim lTick As Long"
+
+#: 03130600.xhp#par_id3154909.10.help.text
+msgctxt "03130600.xhp#par_id3154909.10.help.text"
+msgid "lTick = GetSystemTicks()"
+msgstr "lTick = GetSystemTicks()"
+
+#: 03130600.xhp#par_id3151042.11.help.text
+msgctxt "03130600.xhp#par_id3151042.11.help.text"
+msgid "wait 2000"
+msgstr "wait 2000"
+
+#: 03130600.xhp#par_id3154217.12.help.text
+msgctxt "03130600.xhp#par_id3154217.12.help.text"
+msgid "lTick = (GetSystemTicks() - lTick)"
+msgstr "lTick = (GetSystemTicks() - lTick)"
+
+#: 03130600.xhp#par_id3156214.13.help.text
+msgctxt "03130600.xhp#par_id3156214.13.help.text"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+
+#: 03130600.xhp#par_id3148922.14.help.text
+msgctxt "03130600.xhp#par_id3148922.14.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020403.xhp#tit.help.text
+msgid "CurDir Function [Runtime]"
+msgstr "CurDir Function [Runtime]"
+
+#: 03020403.xhp#bm_id3153126.help.text
+msgid "<bookmark_value>CurDir function</bookmark_value>"
+msgstr "<bookmark_value>CurDir function</bookmark_value>"
+
+#: 03020403.xhp#hd_id3153126.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
+
+#: 03020403.xhp#par_id3156343.2.help.text
+msgid "Returns a variant string that represents the current path of the specified drive."
+msgstr "Returns a variant string that represents the current path of the specified drive."
+
+#: 03020403.xhp#hd_id3149457.3.help.text
+msgctxt "03020403.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020403.xhp#par_id3153381.4.help.text
+msgid "CurDir [(Text As String)]"
+msgstr "CurDir [(Text As String)]"
+
+#: 03020403.xhp#hd_id3154366.5.help.text
+msgctxt "03020403.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020403.xhp#par_id3156281.6.help.text
+msgctxt "03020403.xhp#par_id3156281.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03020403.xhp#hd_id3156423.7.help.text
+msgctxt "03020403.xhp#hd_id3156423.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020403.xhp#par_id3153193.8.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies an existing drive (for example, \"C\" for the first partition of the first hard drive)."
+msgstr "<emph>Text:</emph> Any string expression that specifies an existing drive (for example, \"C\" for the first partition of the first hard drive)."
+
+#: 03020403.xhp#par_id3155133.9.help.text
+msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
+msgstr "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
+
+#: 03020403.xhp#par_id3150010.10.help.text
+msgid "This function is not case-sensitive."
+msgstr "This function is not case-sensitive."
+
+#: 03020403.xhp#hd_id3155411.11.help.text
+msgctxt "03020403.xhp#hd_id3155411.11.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020403.xhp#par_id3151113.12.help.text
+msgid "Sub ExampleCurDir"
+msgstr "Sub ExampleCurDir"
+
+#: 03020403.xhp#par_id3155306.13.help.text
+msgctxt "03020403.xhp#par_id3155306.13.help.text"
+msgid "Dim sDir1 as String , sDir2 as String"
+msgstr "Dim sDir1 as String , sDir2 as String"
+
+#: 03020403.xhp#par_id3156444.14.help.text
+msgctxt "03020403.xhp#par_id3156444.14.help.text"
+msgid "sDir1 = \"c:\\Test\""
+msgstr "sDir1 = \"c:\\Test\""
+
+#: 03020403.xhp#par_id3147318.15.help.text
+msgctxt "03020403.xhp#par_id3147318.15.help.text"
+msgid "sDir2 = \"d:\\private\""
+msgstr "sDir2 = \"d:\\private\""
+
+#: 03020403.xhp#par_id3154013.16.help.text
+msgctxt "03020403.xhp#par_id3154013.16.help.text"
+msgid "ChDir( sDir1 )"
+msgstr "ChDir( sDir1 )"
+
+#: 03020403.xhp#par_id3153877.17.help.text
+msgctxt "03020403.xhp#par_id3153877.17.help.text"
+msgid "msgbox CurDir"
+msgstr "msgbox CurDir"
+
+#: 03020403.xhp#par_id3144764.18.help.text
+msgctxt "03020403.xhp#par_id3144764.18.help.text"
+msgid "ChDir( sDir2 )"
+msgstr "ChDir( sDir2 )"
+
+#: 03020403.xhp#par_id3147125.19.help.text
+msgctxt "03020403.xhp#par_id3147125.19.help.text"
+msgid "msgbox CurDir"
+msgstr "msgbox CurDir"
+
+#: 03020403.xhp#par_id3149581.20.help.text
+msgctxt "03020403.xhp#par_id3149581.20.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120201.xhp#tit.help.text
+msgid "Space Function [Runtime]"
+msgstr "Space Function [Runtime]"
+
+#: 03120201.xhp#bm_id3150499.help.text
+msgid "<bookmark_value>Space function</bookmark_value>"
+msgstr "<bookmark_value>Space function</bookmark_value>"
+
+#: 03120201.xhp#hd_id3150499.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
+
+#: 03120201.xhp#par_id3154927.2.help.text
+msgid "Returns a string that consists of a specified amount of spaces."
+msgstr "Returns a string that consists of a specified amount of spaces."
+
+#: 03120201.xhp#hd_id3153394.3.help.text
+msgctxt "03120201.xhp#hd_id3153394.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120201.xhp#par_id3143267.4.help.text
+msgid "Space (n As Long)"
+msgstr "Space (n As Long)"
+
+#: 03120201.xhp#hd_id3147242.5.help.text
+msgctxt "03120201.xhp#hd_id3147242.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120201.xhp#par_id3149233.6.help.text
+msgctxt "03120201.xhp#par_id3149233.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120201.xhp#hd_id3156152.7.help.text
+msgctxt "03120201.xhp#hd_id3156152.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120201.xhp#par_id3143228.8.help.text
+msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
+msgstr "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
+
+#: 03120201.xhp#hd_id3154760.9.help.text
+msgctxt "03120201.xhp#hd_id3154760.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120201.xhp#par_id3147560.10.help.text
+msgid "Sub ExampleSpace"
+msgstr "Sub ExampleSpace"
+
+#: 03120201.xhp#par_id3149670.11.help.text
+msgid "Dim sText As String,sOut As String"
+msgstr "Dim sText As String,sOut As String"
+
+#: 03120201.xhp#par_id3154938.12.help.text
+msgid "DIm iLen As Integer"
+msgstr "DIm iLen As Integer"
+
+#: 03120201.xhp#par_id3153525.13.help.text
+msgid "iLen = 10"
+msgstr "iLen = 10"
+
+#: 03120201.xhp#par_id3151211.14.help.text
+msgctxt "03120201.xhp#par_id3151211.14.help.text"
+msgid "sText = \"Las Vegas\""
+msgstr "sText = \"Las Vegas\""
+
+#: 03120201.xhp#par_id3156282.15.help.text
+msgid "sOut = sText & Space(iLen) & sText & Chr(13) &_"
+msgstr "sOut = sText & Space(iLen) & sText & Chr(13) &_"
+
+#: 03120201.xhp#par_id3144760.16.help.text
+msgid "sText & Space(iLen*2) & sText & Chr(13) &_"
+msgstr "sText & Space(iLen*2) & sText & Chr(13) &_"
+
+#: 03120201.xhp#par_id3159149.17.help.text
+msgid "sText & Space(iLen*4) & sText & Chr(13)"
+msgstr "sText & Space(iLen*4) & sText & Chr(13)"
+
+#: 03120201.xhp#par_id3154216.18.help.text
+msgid "msgBox sOut,0,\"Info:\""
+msgstr "msgBox sOut,0,\"Info:\""
+
+#: 03120201.xhp#par_id3158409.19.help.text
+msgctxt "03120201.xhp#par_id3158409.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030130.xhp#tit.help.text
+msgid "DatePart Function [Runtime]"
+msgstr "DatePart Function [Runtime]"
+
+#: 03030130.xhp#bm_id249946.help.text
+msgid "<bookmark_value>DatePart function</bookmark_value>"
+msgstr "<bookmark_value>DatePart function</bookmark_value>"
+
+#: 03030130.xhp#par_idN10542.help.text
+msgid "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function [Runtime]</link>"
+
+#: 03030130.xhp#par_idN10546.help.text
+msgid "The DatePart function returns a specified part of a date."
+msgstr "The DatePart function returns a specified part of a date."
+
+#: 03030130.xhp#par_idN10549.help.text
+msgctxt "03030130.xhp#par_idN10549.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030130.xhp#par_idN105E8.help.text
+msgid "DatePart (Add, Date [, Week_start [, Year_start]])"
+msgstr "DatePart (Add, Date [, Week_start [, Year_start]])"
+
+#: 03030130.xhp#par_idN105EB.help.text
+msgctxt "03030130.xhp#par_idN105EB.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030130.xhp#par_idN105EF.help.text
+msgctxt "03030130.xhp#par_idN105EF.help.text"
+msgid "A Variant containing a date."
+msgstr "A Variant containing a date."
+
+#: 03030130.xhp#par_idN105F2.help.text
+msgctxt "03030130.xhp#par_idN105F2.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030130.xhp#par_idN105F6.help.text
+msgctxt "03030130.xhp#par_idN105F6.help.text"
+msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+msgstr "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+
+#: 03030130.xhp#par_idN10604.help.text
+msgid "<emph>Date</emph> - The date from which the result is calculated."
+msgstr "<emph>Date</emph> - The date from which the result is calculated."
+
+#: 03030130.xhp#par_idN10611.help.text
+msgctxt "03030130.xhp#par_idN10611.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030130.xhp#par_idN10615.help.text
+msgid "Sub example_datepart"
+msgstr "Sub example_datepart"
+
+#: 03030130.xhp#par_idN10618.help.text
+msgid "msgbox DatePart(\"ww\", \"12/31/2005\")"
+msgstr "msgbox DatePart(\"ww\", \"12/31/2005\")"
+
+#: 03030130.xhp#par_idN1061B.help.text
+msgctxt "03030130.xhp#par_idN1061B.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090405.xhp#tit.help.text
+msgid "FreeLibrary Function [Runtime]"
+msgstr "FreeLibrary Function [Runtime]"
+
+#: 03090405.xhp#bm_id3143270.help.text
+msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
+msgstr "<bookmark_value>FreeLibrary function</bookmark_value>"
+
+#: 03090405.xhp#hd_id3143270.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
+
+#: 03090405.xhp#par_id3147559.2.help.text
+msgid "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+msgstr "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+
+#: 03090405.xhp#hd_id3148550.3.help.text
+msgctxt "03090405.xhp#hd_id3148550.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090405.xhp#par_id3153361.4.help.text
+msgid "FreeLibrary (LibName As String)"
+msgstr "FreeLibrary (LibName As String)"
+
+#: 03090405.xhp#hd_id3153380.5.help.text
+msgctxt "03090405.xhp#hd_id3153380.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090405.xhp#par_id3154138.6.help.text
+msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
+msgstr "<emph>LibName:</emph> String expression that specifies the name of the DLL."
+
+#: 03090405.xhp#par_id3146923.7.help.text
+msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
+msgstr "FreeLibrary can only release DLLs that are loaded during Basic runtime."
+
+#: 03090405.xhp#hd_id3153363.8.help.text
+msgctxt "03090405.xhp#hd_id3153363.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090405.xhp#par_id3155855.9.help.text
+msgctxt "03090405.xhp#par_id3155855.9.help.text"
+msgid "Declare Sub MyMessageBeep Lib \"user32.dll\" Alias \"MessageBeep\" ( long )"
+msgstr "Declare Sub MyMessageBeep Lib \"user32.dll\" Alias \"MessageBeep\" ( long )"
+
+#: 03090405.xhp#par_id3149664.11.help.text
+msgctxt "03090405.xhp#par_id3149664.11.help.text"
+msgid "Sub ExampleDeclare"
+msgstr "Sub ExampleDeclare"
+
+#: 03090405.xhp#par_id3148618.12.help.text
+msgctxt "03090405.xhp#par_id3148618.12.help.text"
+msgid "Dim lValue As Long"
+msgstr "Dim lValue As Long"
+
+#: 03090405.xhp#par_id3147350.13.help.text
+msgctxt "03090405.xhp#par_id3147350.13.help.text"
+msgid "lValue = 5000"
+msgstr "lValue = 5000"
+
+#: 03090405.xhp#par_id3148648.14.help.text
+msgctxt "03090405.xhp#par_id3148648.14.help.text"
+msgid "MyMessageBeep( lValue )"
+msgstr "MyMessageBeep( lValue )"
+
+#: 03090405.xhp#par_id3145750.15.help.text
+msgctxt "03090405.xhp#par_id3145750.15.help.text"
+msgid "FreeLibrary(\"user32.dll\" )"
+msgstr "FreeLibrary(\"user32.dll\" )"
+
+#: 03090405.xhp#par_id3149412.16.help.text
+msgctxt "03090405.xhp#par_id3149412.16.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080502.xhp#tit.help.text
+msgid "Int Function [Runtime]"
+msgstr "Int Function [Runtime]"
+
+#: 03080502.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>Int function</bookmark_value>"
+msgstr "<bookmark_value>Int function</bookmark_value>"
+
+#: 03080502.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
+
+#: 03080502.xhp#par_id3155420.2.help.text
+msgid "Returns the integer portion of a number."
+msgstr "Returns the integer portion of a number."
+
+#: 03080502.xhp#hd_id3147559.3.help.text
+msgctxt "03080502.xhp#hd_id3147559.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080502.xhp#par_id3146795.4.help.text
+msgid "Int (Number)"
+msgstr "Int (Number)"
+
+#: 03080502.xhp#hd_id3149670.5.help.text
+msgctxt "03080502.xhp#hd_id3149670.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080502.xhp#par_id3150400.6.help.text
+msgctxt "03080502.xhp#par_id3150400.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080502.xhp#hd_id3149656.7.help.text
+msgctxt "03080502.xhp#hd_id3149656.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080502.xhp#par_id3148797.8.help.text
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr "<emph>Number:</emph> Any valid numeric expression."
+
+#: 03080502.xhp#hd_id3148672.9.help.text
+msgctxt "03080502.xhp#hd_id3148672.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080502.xhp#par_id3156214.10.help.text
+msgid "sub ExampleINT"
+msgstr "sub ExampleINT"
+
+#: 03080502.xhp#par_id3125864.11.help.text
+msgid "Print Int(3.99) REM returns the value 3"
+msgstr "Print Int(3.99) REM returns the value 3"
+
+#: 03080502.xhp#par_id3145787.12.help.text
+msgid "Print Int(0) REM returns the value 0"
+msgstr "Print Int(0) REM returns the value 0"
+
+#: 03080502.xhp#par_id3153143.13.help.text
+msgid "Print Int(-3.14159) REM returns the value -4"
+msgstr "Print Int(-3.14159) REM returns the value -4"
+
+#: 03080502.xhp#par_id3152578.14.help.text
+msgctxt "03080502.xhp#par_id3152578.14.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020409.xhp#tit.help.text
+msgid "GetAttr Function [Runtime]"
+msgstr "GetAttr Function [Runtime]"
+
+#: 03020409.xhp#bm_id3150984.help.text
+msgid "<bookmark_value>GetAttr function</bookmark_value>"
+msgstr "<bookmark_value>GetAttr function</bookmark_value>"
+
+#: 03020409.xhp#hd_id3150984.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
+
+#: 03020409.xhp#par_id3154347.2.help.text
+msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+msgstr "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+
+#: 03020409.xhp#hd_id3149457.3.help.text
+msgctxt "03020409.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020409.xhp#par_id3150359.4.help.text
+msgid "GetAttr (Text As String)"
+msgstr "GetAttr (Text As String)"
+
+#: 03020409.xhp#hd_id3151211.5.help.text
+msgctxt "03020409.xhp#hd_id3151211.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020409.xhp#par_id3154909.6.help.text
+msgctxt "03020409.xhp#par_id3154909.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03020409.xhp#hd_id3145172.7.help.text
+msgctxt "03020409.xhp#hd_id3145172.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020409.xhp#par_id3151042.8.help.text
+msgctxt "03020409.xhp#par_id3151042.8.help.text"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020409.xhp#par_id3161831.9.help.text
+msgid "This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:"
+msgstr "This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:"
+
+#: 03020409.xhp#hd_id3145364.10.help.text
+msgctxt "03020409.xhp#hd_id3145364.10.help.text"
+msgid "Value"
+msgstr "Value"
+
+#: 03020409.xhp#par_id3147349.11.help.text
+msgctxt "03020409.xhp#par_id3147349.11.help.text"
+msgid "0 : Normal files."
+msgstr "0 : Normal files."
+
+#: 03020409.xhp#par_id3147434.12.help.text
+msgctxt "03020409.xhp#par_id3147434.12.help.text"
+msgid "1 : Read-only files."
+msgstr "1 : Read-only files."
+
+#: 03020409.xhp#par_id3159154.15.help.text
+msgid "8 : Returns the name of the volume"
+msgstr "8 : Returns the name of the volume"
+
+#: 03020409.xhp#par_id3145271.16.help.text
+msgctxt "03020409.xhp#par_id3145271.16.help.text"
+msgid "16 : Returns the name of the directory only."
+msgstr "16 : Returns the name of the directory only."
+
+#: 03020409.xhp#par_id3153953.17.help.text
+msgctxt "03020409.xhp#par_id3153953.17.help.text"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32 : File was changed since last backup (Archive bit)."
+
+#: 03020409.xhp#par_id3156444.18.help.text
+msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
+msgstr "If you want to know if a bit of the attribute byte is set, use the following query method:"
+
+#: 03020409.xhp#hd_id3153094.19.help.text
+msgctxt "03020409.xhp#hd_id3153094.19.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020409.xhp#par_id3154491.20.help.text
+msgctxt "03020409.xhp#par_id3154491.20.help.text"
+msgid "Sub ExampleSetGetAttr"
+msgstr "Sub ExampleSetGetAttr"
+
+#: 03020409.xhp#par_id3155415.21.help.text
+msgctxt "03020409.xhp#par_id3155415.21.help.text"
+msgid "On Error Goto ErrorHandler REM Define target for error-handler"
+msgstr "On Error Goto ErrorHandler REM Define target for error-handler"
+
+#: 03020409.xhp#par_id3154944.22.help.text
+msgctxt "03020409.xhp#par_id3154944.22.help.text"
+msgid "If Dir(\"C:\\test\",16)=\"\" Then MkDir \"C:\\test\""
+msgstr "If Dir(\"C:\\test\",16)=\"\" Then MkDir \"C:\\test\""
+
+#: 03020409.xhp#par_id3151075.23.help.text
+msgctxt "03020409.xhp#par_id3151075.23.help.text"
+msgid "If Dir(\"C:\\test\\autoexec.sav\")=\"\" THEN Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+msgstr "If Dir(\"C:\\test\\autoexec.sav\")=\"\" THEN Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+
+#: 03020409.xhp#par_id3149959.24.help.text
+msgctxt "03020409.xhp#par_id3149959.24.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+msgstr "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+
+#: 03020409.xhp#par_id3153418.25.help.text
+msgctxt "03020409.xhp#par_id3153418.25.help.text"
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+msgstr "Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+
+#: 03020409.xhp#par_id3149122.26.help.text
+msgctxt "03020409.xhp#par_id3149122.26.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,1"
+msgstr "SetAttr \"c:\\test\\autoexec.sav\" ,1"
+
+#: 03020409.xhp#par_id3154480.27.help.text
+msgctxt "03020409.xhp#par_id3154480.27.help.text"
+msgid "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+msgstr "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+
+#: 03020409.xhp#par_id3150753.28.help.text
+msgctxt "03020409.xhp#par_id3150753.28.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020409.xhp#par_id3150323.29.help.text
+msgctxt "03020409.xhp#par_id3150323.29.help.text"
+msgid "ErrorHandler:"
+msgstr "ErrorHandler:"
+
+#: 03020409.xhp#par_id3154754.30.help.text
+msgctxt "03020409.xhp#par_id3154754.30.help.text"
+msgid "Print Error"
+msgstr "Print Error"
+
+#: 03020409.xhp#par_id3155764.31.help.text
+msgctxt "03020409.xhp#par_id3155764.31.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020409.xhp#par_id3156382.32.help.text
+msgctxt "03020409.xhp#par_id3156382.32.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090203.xhp#tit.help.text
+msgid "While...Wend Statement[Runtime]"
+msgstr "While...Wend Statement[Runtime]"
+
+#: 03090203.xhp#bm_id3150400.help.text
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
+msgstr "<bookmark_value>While;While...Wend loop</bookmark_value>"
+
+#: 03090203.xhp#hd_id3150400.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+
+#: 03090203.xhp#par_id3151211.2.help.text
+msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
+msgstr "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
+
+#: 03090203.xhp#par_id3151041.3.help.text
+msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+msgstr "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+
+#: 03090203.xhp#par_id3145172.4.help.text
+msgid "A Do...Loop is more flexible than a While...Wend."
+msgstr "A Do...Loop is more flexible than a While...Wend."
+
+#: 03090203.xhp#hd_id3155133.5.help.text
+msgctxt "03090203.xhp#hd_id3155133.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090203.xhp#par_id3147288.6.help.text
+msgid "While Condition [Statement] Wend"
+msgstr "While Condition [Statement] Wend"
+
+#: 03090203.xhp#hd_id3153139.7.help.text
+msgctxt "03090203.xhp#hd_id3153139.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090203.xhp#par_id3159153.8.help.text
+msgid "Sub ExampleWhileWend"
+msgstr "Sub ExampleWhileWend"
+
+#: 03090203.xhp#par_id3151114.9.help.text
+msgid "Dim stext As String"
+msgstr "Dim stext As String"
+
+#: 03090203.xhp#par_id3153143.10.help.text
+msgid "Dim iRun As Integer"
+msgstr "Dim iRun As Integer"
+
+#: 03090203.xhp#par_id3155306.11.help.text
+msgid "sText =\"This is a short text\""
+msgstr "sText =\"This is a short text\""
+
+#: 03090203.xhp#par_id3154011.12.help.text
+msgid "iRun = 1"
+msgstr "iRun = 1"
+
+#: 03090203.xhp#par_id3147215.13.help.text
+msgid "while iRun < Len(sText)"
+msgstr "while iRun < Len(sText)"
+
+#: 03090203.xhp#par_id3147427.14.help.text
+msgid "if Mid(sText,iRun,1 )<> \" \" then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+msgstr "if Mid(sText,iRun,1 )<> \" \" then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+
+#: 03090203.xhp#par_id3149665.15.help.text
+msgid "iRun = iRun + 1"
+msgstr "iRun = iRun + 1"
+
+#: 03090203.xhp#par_id3152939.16.help.text
+msgid "Wend"
+msgstr "Wend"
+
+#: 03090203.xhp#par_id3153189.17.help.text
+msgid "MsgBox sText,0,\"Text encoded\""
+msgstr "MsgBox sText,0,\"Text encoded\""
+
+#: 03090203.xhp#par_id3145251.18.help.text
+msgctxt "03090203.xhp#par_id3145251.18.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090201.xhp#tit.help.text
+msgid "Do...Loop Statement [Runtime]"
+msgstr "Do...Loop Statement [Runtime]"
+
+#: 03090201.xhp#bm_id3156116.help.text
+msgid "<bookmark_value>Do...Loop statement</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
+msgstr "<bookmark_value>Do...Loop statement</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
+
+#: 03090201.xhp#hd_id3156116.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
+
+#: 03090201.xhp#par_id3109850.2.help.text
+msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
+msgstr "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
+
+#: 03090201.xhp#hd_id3149119.3.help.text
+msgctxt "03090201.xhp#hd_id3149119.3.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 03090201.xhp#par_id3155150.4.help.text
+msgid "Do [{While | Until} condition = True]"
+msgstr "Do [{While | Until} condition = True]"
+
+#: 03090201.xhp#par_id3154422.5.help.text
+msgctxt "03090201.xhp#par_id3154422.5.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090201.xhp#par_id3150789.6.help.text
+msgctxt "03090201.xhp#par_id3150789.6.help.text"
+msgid "[Exit Do]"
+msgstr "[Exit Do]"
+
+#: 03090201.xhp#par_id3155805.7.help.text
+msgctxt "03090201.xhp#par_id3155805.7.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090201.xhp#par_id3145090.8.help.text
+msgctxt "03090201.xhp#par_id3145090.8.help.text"
+msgid "Loop"
+msgstr "Loop"
+
+#: 03090201.xhp#par_id3154749.9.help.text
+msgid "or"
+msgstr "or"
+
+#: 03090201.xhp#par_id3150503.10.help.text
+msgctxt "03090201.xhp#par_id3150503.10.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03090201.xhp#par_id3149762.11.help.text
+msgctxt "03090201.xhp#par_id3149762.11.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090201.xhp#par_id3150984.12.help.text
+msgctxt "03090201.xhp#par_id3150984.12.help.text"
+msgid "[Exit Do]"
+msgstr "[Exit Do]"
+
+#: 03090201.xhp#par_id3143228.13.help.text
+msgctxt "03090201.xhp#par_id3143228.13.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090201.xhp#par_id3149235.14.help.text
+msgid "Loop [{While | Until} condition = True]"
+msgstr "Loop [{While | Until} condition = True]"
+
+#: 03090201.xhp#hd_id3156024.15.help.text
+msgid "Parameters/Elements"
+msgstr "Parameters/Elements"
+
+#: 03090201.xhp#par_id3156344.16.help.text
+msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
+msgstr "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
+
+#: 03090201.xhp#par_id3149669.17.help.text
+msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
+msgstr "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
+
+#: 03090201.xhp#par_id3150791.18.help.text
+msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
+msgstr "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
+
+#: 03090201.xhp#hd_id3154366.19.help.text
+msgctxt "03090201.xhp#hd_id3154366.19.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 03090201.xhp#par_id3145171.20.help.text
+msgid "Do While condition = True"
+msgstr "Do While condition = True"
+
+#: 03090201.xhp#par_id3149203.21.help.text
+msgctxt "03090201.xhp#par_id3149203.21.help.text"
+msgid "...statement block"
+msgstr "...statement block"
+
+#: 03090201.xhp#par_id3125864.22.help.text
+msgctxt "03090201.xhp#par_id3125864.22.help.text"
+msgid "Loop"
+msgstr "Loop"
+
+#: 03090201.xhp#par_id3154124.24.help.text
+msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+msgstr "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+
+#: 03090201.xhp#par_id3153968.25.help.text
+msgid "Do Until condition = True"
+msgstr "Do Until condition = True"
+
+#: 03090201.xhp#par_id3154909.26.help.text
+msgctxt "03090201.xhp#par_id3154909.26.help.text"
+msgid "...statement block"
+msgstr "...statement block"
+
+#: 03090201.xhp#par_id3159151.27.help.text
+msgctxt "03090201.xhp#par_id3159151.27.help.text"
+msgid "Loop"
+msgstr "Loop"
+
+#: 03090201.xhp#par_id3150440.29.help.text
+msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
+msgstr "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
+
+#: 03090201.xhp#par_id3153952.30.help.text
+msgctxt "03090201.xhp#par_id3153952.30.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03090201.xhp#par_id3147349.31.help.text
+msgctxt "03090201.xhp#par_id3147349.31.help.text"
+msgid "...statement block"
+msgstr "...statement block"
+
+#: 03090201.xhp#par_id3159153.32.help.text
+msgid "Loop While condition = True"
+msgstr "Loop While condition = True"
+
+#: 03090201.xhp#par_id3146985.34.help.text
+msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+msgstr "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+
+#: 03090201.xhp#par_id3150488.35.help.text
+msgctxt "03090201.xhp#par_id3150488.35.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03090201.xhp#par_id3153189.36.help.text
+msgctxt "03090201.xhp#par_id3153189.36.help.text"
+msgid "...statement block"
+msgstr "...statement block"
+
+#: 03090201.xhp#par_id3155411.37.help.text
+msgid "Loop Until condition = True"
+msgstr "Loop Until condition = True"
+
+#: 03090201.xhp#par_id3151117.39.help.text
+msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
+msgstr "The statement block between the Do and the Loop statements repeats until the condition is true."
+
+#: 03090201.xhp#par_id3149484.41.help.text
+msgid "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
+msgstr "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
+
+#: 03090201.xhp#par_id3149262.42.help.text
+msgid "Do..."
+msgstr "Do..."
+
+#: 03090201.xhp#par_id3149298.43.help.text
+msgctxt "03090201.xhp#par_id3149298.43.help.text"
+msgid "statements"
+msgstr "statements"
+
+#: 03090201.xhp#par_id3145646.44.help.text
+msgid "If condition = True Then Exit Do"
+msgstr "If condition = True Then Exit Do"
+
+#: 03090201.xhp#par_id3154490.45.help.text
+msgctxt "03090201.xhp#par_id3154490.45.help.text"
+msgid "statements"
+msgstr "statements"
+
+#: 03090201.xhp#par_id3153159.46.help.text
+msgid "Loop..."
+msgstr "Loop..."
+
+#: 03090201.xhp#hd_id3147396.47.help.text
+msgctxt "03090201.xhp#hd_id3147396.47.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 03090201.xhp#par_id3144764.49.help.text
+msgid "Sub ExampleDoLoop"
+msgstr "Sub ExampleDoLoop"
+
+#: 03090201.xhp#par_id3154791.50.help.text
+msgid "Dim sFile As String"
+msgstr "Dim sFile As String"
+
+#: 03090201.xhp#par_id3149401.51.help.text
+msgctxt "03090201.xhp#par_id3149401.51.help.text"
+msgid "Dim sPath As String"
+msgstr "Dim sPath As String"
+
+#: 03090201.xhp#par_id3155600.52.help.text
+msgid "sPath = \"c:\\\""
+msgstr "sPath = \"c:\\\""
+
+#: 03090201.xhp#par_id3150717.53.help.text
+msgid "sFile = Dir$( sPath ,22)"
+msgstr "sFile = Dir$( sPath ,22)"
+
+#: 03090201.xhp#par_id3146898.54.help.text
+msgctxt "03090201.xhp#par_id3146898.54.help.text"
+msgid "If sFile <> \"\" Then"
+msgstr "If sFile <> \"\" Then"
+
+#: 03090201.xhp#par_id3156333.55.help.text
+msgctxt "03090201.xhp#par_id3156333.55.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03090201.xhp#par_id3153947.56.help.text
+msgid "MsgBox sFile"
+msgstr "MsgBox sFile"
+
+#: 03090201.xhp#par_id3150327.57.help.text
+msgctxt "03090201.xhp#par_id3150327.57.help.text"
+msgid "sFile = Dir$"
+msgstr "sFile = Dir$"
+
+#: 03090201.xhp#par_id3150749.58.help.text
+msgctxt "03090201.xhp#par_id3150749.58.help.text"
+msgid "Loop Until sFile = \"\""
+msgstr "Loop Until sFile = \"\""
+
+#: 03090201.xhp#par_id3153765.59.help.text
+msgctxt "03090201.xhp#par_id3153765.59.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03090201.xhp#par_id3148914.60.help.text
+msgctxt "03090201.xhp#par_id3148914.60.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 01030400.xhp#tit.help.text
+msgid "Organizing Libraries and Modules"
+msgstr "Organising Libraries and Modules"
+
+#: 01030400.xhp#bm_id3148797.help.text
+msgid "<bookmark_value>libraries;organizing</bookmark_value><bookmark_value>modules;organizing</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogs</bookmark_value><bookmark_value>dialogs;organizing</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries/dialogs</bookmark_value><bookmark_value>renaming modules and dialogs</bookmark_value>"
+msgstr "<bookmark_value>libraries;organising</bookmark_value><bookmark_value>modules;organising</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogues</bookmark_value><bookmark_value>dialogues;organising</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organising;modules/libraries/dialogues</bookmark_value><bookmark_value>renaming modules and dialogues</bookmark_value>"
+
+#: 01030400.xhp#hd_id3148797.1.help.text
+msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
+msgstr "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
+
+#: 01030400.xhp#hd_id3150868.4.help.text
+msgid "Organizing Libraries"
+msgstr "Organising Libraries"
+
+#: 01030400.xhp#hd_id3125864.5.help.text
+msgid "Creating a New Library"
+msgstr "Creating a New Library"
+
+#: 01030400.xhp#par_id3152576.6.help.text
+msgctxt "01030400.xhp#par_id3152576.6.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialogue."
+
+#: 01030400.xhp#par_id3153726.8.help.text
+msgctxt "01030400.xhp#par_id3153726.8.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Click the <emph>Libraries</emph> tab."
+
+#: 01030400.xhp#par_id3149664.9.help.text
+msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+msgstr "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+
+#: 01030400.xhp#par_id3153365.10.help.text
+msgid "Click <emph>New</emph> and insert a name to create a new library."
+msgstr "Click <emph>New</emph> and insert a name to create a new library."
+
+#: 01030400.xhp#hd_id3147394.48.help.text
+msgid "Appending a Library"
+msgstr "Appending a Library"
+
+#: 01030400.xhp#par_id3153157.49.help.text
+msgctxt "01030400.xhp#par_id3153157.49.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialogue."
+
+#: 01030400.xhp#par_id3146972.50.help.text
+msgctxt "01030400.xhp#par_id3146972.50.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Click the <emph>Libraries</emph> tab."
+
+#: 01030400.xhp#par_id3145640.51.help.text
+msgid "Select to where you want to append the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be appended to this document and only available from there."
+msgstr "Select to where you want to append the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be appended to this document and only available from there."
+
+#: 01030400.xhp#par_id3154253.52.help.text
+msgid "Click <emph>Append</emph> and select an external library to append."
+msgstr "Click <emph>Append</emph> and select an external library to append."
+
+#: 01030400.xhp#par_id3154705.53.help.text
+msgid "Select all libraries to be appended in the <emph>Append Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
+msgstr "Select all libraries to be appended in the <emph>Append Libraries</emph> dialogue. The dialogue displays all libraries that are contained in the selected file."
+
+#: 01030400.xhp#par_id3163807.54.help.text
+msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
+msgstr "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
+
+#: 01030400.xhp#par_id3145228.55.help.text
+msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
+msgstr "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
+
+#: 01030400.xhp#par_id3147004.56.help.text
+msgid "Click <emph>OK</emph> to append the library."
+msgstr "Click <emph>OK</emph> to append the library."
+
+#: 01030400.xhp#hd_id3159100.17.help.text
+msgid "Deleting a Library"
+msgstr "Deleting a Library"
+
+#: 01030400.xhp#par_id3150086.18.help.text
+msgctxt "01030400.xhp#par_id3150086.18.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialogue."
+
+#: 01030400.xhp#par_id3146808.57.help.text
+msgctxt "01030400.xhp#par_id3146808.57.help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Click the <emph>Libraries</emph> tab."
+
+#: 01030400.xhp#par_id3158212.58.help.text
+msgid "Select the library to be deleted from the list."
+msgstr "Select the library to be deleted from the list."
+
+#: 01030400.xhp#par_id3150361.20.help.text
+msgctxt "01030400.xhp#par_id3150361.20.help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Click <emph>Delete</emph>."
+
+#: 01030400.xhp#par_id3152986.19.help.text
+msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
+msgstr "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
+
+#: 01030400.xhp#par_id3148868.59.help.text
+msgid "You cannot delete the default library named \"Standard\"."
+msgstr "You cannot delete the default library named \"Standard\"."
+
+#: 01030400.xhp#par_id3146869.60.help.text
+msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
+msgstr "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
+
+#: 01030400.xhp#hd_id3147070.21.help.text
+msgid "Organizing Modules and Dialogs"
+msgstr "Organising Modules and Dialogues"
+
+#: 01030400.xhp#hd_id3155265.61.help.text
+msgid "Creating a New Module or Dialog"
+msgstr "Creating a New Module or Dialogue"
+
+#: 01030400.xhp#par_id3154537.62.help.text
+msgctxt "01030400.xhp#par_id3154537.62.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialogue."
+
+#: 01030400.xhp#par_id3146781.63.help.text
+msgctxt "01030400.xhp#par_id3146781.63.help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+
+#: 01030400.xhp#par_id3159206.64.help.text
+msgid "Select the library where the module will be inserted and click <emph>New</emph>."
+msgstr "Select the library where the module will be inserted and click <emph>New</emph>."
+
+#: 01030400.xhp#par_id3152389.65.help.text
+msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
+msgstr "Enter a name for the module or the dialogue and click <emph>OK</emph>."
+
+#: 01030400.xhp#hd_id3152872.25.help.text
+msgid "Renaming a Module or Dialog"
+msgstr "Renaming a Module or Dialogue"
+
+#: 01030400.xhp#par_id3159230.66.help.text
+msgctxt "01030400.xhp#par_id3159230.66.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialogue."
+
+#: 01030400.xhp#par_id3150046.67.help.text
+msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
+msgstr "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
+
+#: 01030400.xhp#par_id3153801.27.help.text
+msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
+msgstr "In the Basic IDE, right-click the name of the module or dialogue in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
+
+#: 01030400.xhp#par_id3155526.28.help.text
+msgid "Press Enter to confirm your changes."
+msgstr "Press Enter to confirm your changes."
+
+#: 01030400.xhp#hd_id3146963.29.help.text
+msgid "Deleting a Module or Dialog"
+msgstr "Deleting a Module or Dialogue"
+
+#: 01030400.xhp#par_id3147547.68.help.text
+msgctxt "01030400.xhp#par_id3147547.68.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialogue."
+
+#: 01030400.xhp#par_id3150958.69.help.text
+msgctxt "01030400.xhp#par_id3150958.69.help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+
+#: 01030400.xhp#par_id3149870.30.help.text
+msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
+msgstr "Select the module or dialogue to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
+
+#: 01030400.xhp#par_id3147248.32.help.text
+msgctxt "01030400.xhp#par_id3147248.32.help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Click <emph>Delete</emph>."
+
+#: 01030400.xhp#par_id3151339.31.help.text
+msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
+msgstr "Deleting a module permanently deletes all existing procedures and functions in that module."
+
+#: 01030400.xhp#hd_id3151392.33.help.text
+msgid "Organizing Projects among Documents or Templates"
+msgstr "Organising Projects among Documents or Templates"
+
+#: 01030400.xhp#hd_id3156400.36.help.text
+msgid "Moving or copying modules between documents, templates and the application."
+msgstr "Moving or copying modules between documents, templates and the application."
+
+#: 01030400.xhp#par_id3146819.37.help.text
+msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
+msgstr "Open all documents or templates among which you want to move or copy the modules or dialogues."
+
+#: 01030400.xhp#par_id3149319.38.help.text
+msgctxt "01030400.xhp#par_id3149319.38.help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialogue."
+
+#: 01030400.xhp#par_id3145637.39.help.text
+msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
+msgstr "To move a module or dialogue to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
+
+#: 03080103.xhp#tit.help.text
+msgid "Sin Function [Runtime]"
+msgstr "Sin Function [Runtime]"
+
+#: 03080103.xhp#bm_id3153896.help.text
+msgid "<bookmark_value>Sin function</bookmark_value>"
+msgstr "<bookmark_value>Sin function</bookmark_value>"
+
+#: 03080103.xhp#hd_id3153896.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
+
+#: 03080103.xhp#par_id3149456.2.help.text
+msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+
+#: 03080103.xhp#par_id3153379.3.help.text
+msgid "Using the angle Alpha, the Sin Function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle."
+msgstr "Using the angle Alpha, the Sin Function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle."
+
+#: 03080103.xhp#par_id3148798.4.help.text
+msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
+msgstr "Sin(Alpha) = side opposite the angle/hypotenuse"
+
+#: 03080103.xhp#hd_id3147230.5.help.text
+msgctxt "03080103.xhp#hd_id3147230.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080103.xhp#par_id3154909.6.help.text
+msgid "Sin (Number)"
+msgstr "Sin (Number)"
+
+#: 03080103.xhp#hd_id3156214.7.help.text
+msgctxt "03080103.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080103.xhp#par_id3150870.8.help.text
+msgctxt "03080103.xhp#par_id3150870.8.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080103.xhp#hd_id3155132.9.help.text
+msgctxt "03080103.xhp#hd_id3155132.9.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080103.xhp#par_id3145786.10.help.text
+msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
+msgstr "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
+
+#: 03080103.xhp#par_id3155413.11.help.text
+msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
+msgstr "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
+
+#: 03080103.xhp#par_id3149664.12.help.text
+msgid "grad=(radiant*180)/pi"
+msgstr "grad=(radiant*180)/pi"
+
+#: 03080103.xhp#par_id3153143.13.help.text
+msgid "radiant=(grad*pi)/180"
+msgstr "radiant=(grad*pi)/180"
+
+#: 03080103.xhp#par_id3151112.14.help.text
+msgctxt "03080103.xhp#par_id3151112.14.help.text"
+msgid "Pi is approximately 3.141593."
+msgstr "Pi is approximately 3.141593."
+
+#: 03080103.xhp#hd_id3163712.15.help.text
+msgctxt "03080103.xhp#hd_id3163712.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080103.xhp#par_id3149482.16.help.text
+msgctxt "03080103.xhp#par_id3149482.16.help.text"
+msgid "REM In this example, the following entry is possible for a right-angled triangle:"
+msgstr "REM In this example, the following entry is possible for a right-angled triangle:"
+
+#: 03080103.xhp#par_id3148577.17.help.text
+msgid "REM The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
+msgstr "REM The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
+
+#: 03080103.xhp#par_id3152941.18.help.text
+msgid "Sub ExampleSine"
+msgstr "Sub ExampleSine"
+
+#: 03080103.xhp#par_id3150011.19.help.text
+msgid "REM Pi = 3.1415926 is a predefined variable"
+msgstr "REM Pi = 3.1415926 is a predefined variable"
+
+#: 03080103.xhp#par_id3153159.20.help.text
+msgctxt "03080103.xhp#par_id3153159.20.help.text"
+msgid "Dim d1 as Double"
+msgstr "Dim d1 as Double"
+
+#: 03080103.xhp#par_id3154491.21.help.text
+msgctxt "03080103.xhp#par_id3154491.21.help.text"
+msgid "Dim dAlpha as Double"
+msgstr "Dim dAlpha as Double"
+
+#: 03080103.xhp#par_id3145251.22.help.text
+msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
+msgstr "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
+
+#: 03080103.xhp#par_id3148456.23.help.text
+msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+
+#: 03080103.xhp#par_id3153877.24.help.text
+msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+msgstr "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+
+#: 03080103.xhp#par_id3150717.25.help.text
+msgctxt "03080103.xhp#par_id3150717.25.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090409.xhp#tit.help.text
+msgid "Sub Statement [Runtime]"
+msgstr "Sub Statement [Runtime]"
+
+#: 03090409.xhp#bm_id3147226.help.text
+msgid "<bookmark_value>Sub statement</bookmark_value>"
+msgstr "<bookmark_value>Sub statement</bookmark_value>"
+
+#: 03090409.xhp#hd_id3147226.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
+
+#: 03090409.xhp#par_id3153311.2.help.text
+msgid "Defines a subroutine."
+msgstr "Defines a subroutine."
+
+#: 03090409.xhp#hd_id3149416.3.help.text
+msgctxt "03090409.xhp#hd_id3149416.3.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 03090409.xhp#par_idN105E7.help.text
+msgid "Sub Name[(VarName1 [As Type][, VarName2 [As Type][,...]])]"
+msgstr "Sub Name[(VarName1 [As Type][, VarName2 [As Type][,...]])]"
+
+#: 03090409.xhp#par_id3147530.5.help.text
+msgctxt "03090409.xhp#par_id3147530.5.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090409.xhp#par_id3146795.8.help.text
+msgctxt "03090409.xhp#par_id3146795.8.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090409.xhp#hd_id3153525.9.help.text
+msgctxt "03090409.xhp#hd_id3153525.9.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090409.xhp#par_id3150792.10.help.text
+msgid "<emph>Name:</emph> Name of the subroutine ."
+msgstr "<emph>Name:</emph> Name of the subroutine ."
+
+#: 03090409.xhp#par_id3154138.11.help.text
+msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
+msgstr "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
+
+#: 03090409.xhp#par_id3154908.12.help.text
+msgid "<emph>Type:</emph> Type-declaration key word."
+msgstr "<emph>Type:</emph> Type-declaration key word."
+
+#: 03090409.xhp#hd_id3153770.16.help.text
+msgctxt "03090409.xhp#hd_id3153770.16.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090409.xhp#par_id3151113.17.help.text
+msgctxt "03090409.xhp#par_id3151113.17.help.text"
+msgid "Sub Example"
+msgstr "Sub Example"
+
+#: 03090409.xhp#par_idN1063F.help.text
+msgid "REM some statements"
+msgstr "REM some statements"
+
+#: 03090409.xhp#par_id3154319.19.help.text
+msgctxt "03090409.xhp#par_id3154319.19.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03060400.xhp#tit.help.text
+msgid "Not-Operator [Runtime]"
+msgstr "Not-Operator [Runtime]"
+
+#: 03060400.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Not operator (logical)</bookmark_value>"
+
+#: 03060400.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+
+#: 03060400.xhp#par_id3159414.2.help.text
+msgid "Negates an expression by inverting the bit values."
+msgstr "Negates an expression by inverting the bit values."
+
+#: 03060400.xhp#hd_id3149457.3.help.text
+msgctxt "03060400.xhp#hd_id3149457.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03060400.xhp#par_id3150360.4.help.text
+msgid "Result = Not Expression"
+msgstr "Result = Not Expression"
+
+#: 03060400.xhp#hd_id3151211.5.help.text
+msgctxt "03060400.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03060400.xhp#par_id3147228.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
+msgstr "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
+
+#: 03060400.xhp#par_id3154124.7.help.text
+msgid "<emph>Expression:</emph> Any expression that you want to negate."
+msgstr "<emph>Expression:</emph> Any expression that you want to negate."
+
+#: 03060400.xhp#par_id3150868.8.help.text
+msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
+msgstr "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
+
+#: 03060400.xhp#par_id3145785.9.help.text
+msgid "In a bitwise negation each individual bit is inverted."
+msgstr "In a bitwise negation each individual bit is inverted."
+
+#: 03060400.xhp#hd_id3153093.10.help.text
+msgctxt "03060400.xhp#hd_id3153093.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03060400.xhp#par_id3153143.11.help.text
+msgid "Sub ExampleNot"
+msgstr "Sub ExampleNot"
+
+#: 03060400.xhp#par_id3147317.12.help.text
+msgctxt "03060400.xhp#par_id3147317.12.help.text"
+msgid "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+msgstr "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+
+#: 03060400.xhp#par_id3145274.13.help.text
+msgctxt "03060400.xhp#par_id3145274.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060400.xhp#par_id3153363.14.help.text
+msgctxt "03060400.xhp#par_id3153363.14.help.text"
+msgid "vA = 10: vB = 8: vC = 6: vD = Null"
+msgstr "vA = 10: vB = 8: vC = 6: vD = Null"
+
+#: 03060400.xhp#par_id3145749.15.help.text
+msgid "vOut = Not vA REM Returns -11"
+msgstr "vOut = Not vA REM Returns -11"
+
+#: 03060400.xhp#par_id3148645.16.help.text
+msgid "vOut = Not(vC > vD) REM Returns -1"
+msgstr "vOut = Not(vC > vD) REM Returns -1"
+
+#: 03060400.xhp#par_id3156441.17.help.text
+msgid "vOut = Not(vB > vA) REM Returns -1"
+msgstr "vOut = Not(vB > vA) REM Returns -1"
+
+#: 03060400.xhp#par_id3152596.18.help.text
+msgid "vOut = Not(vA > vB) REM Returns 0"
+msgstr "vOut = Not(vA > vB) REM Returns 0"
+
+#: 03060400.xhp#par_id3154319.19.help.text
+msgctxt "03060400.xhp#par_id3154319.19.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03103300.xhp#tit.help.text
+msgid "Option Explicit Statement [Runtime]"
+msgstr "Option Explicit Statement [Runtime]"
+
+#: 03103300.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
+msgstr "<bookmark_value>Option Explicit statement</bookmark_value>"
+
+#: 03103300.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
+
+#: 03103300.xhp#par_id3148538.2.help.text
+msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
+msgstr "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
+
+#: 03103300.xhp#hd_id3149763.3.help.text
+msgctxt "03103300.xhp#hd_id3149763.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103300.xhp#par_id3149514.4.help.text
+msgctxt "03103300.xhp#par_id3149514.4.help.text"
+msgid "Option Explicit"
+msgstr "Option Explicit"
+
+#: 03103300.xhp#hd_id3145315.5.help.text
+msgctxt "03103300.xhp#hd_id3145315.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03103300.xhp#par_id3145172.6.help.text
+msgctxt "03103300.xhp#par_id3145172.6.help.text"
+msgid "This statement must be added before the executable program code in a module."
+msgstr "This statement must be added before the executable program code in a module."
+
+#: 03103300.xhp#hd_id3125864.7.help.text
+msgctxt "03103300.xhp#hd_id3125864.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103300.xhp#par_id3154217.8.help.text
+msgctxt "03103300.xhp#par_id3154217.8.help.text"
+msgid "Option Explicit"
+msgstr "Option Explicit"
+
+#: 03103300.xhp#par_id3156214.9.help.text
+msgid "Sub ExampleExplicit"
+msgstr "Sub ExampleExplicit"
+
+#: 03103300.xhp#par_id3153193.10.help.text
+msgctxt "03103300.xhp#par_id3153193.10.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03103300.xhp#par_id3159252.11.help.text
+msgctxt "03103300.xhp#par_id3159252.11.help.text"
+msgid "sVar = \"Las Vegas\""
+msgstr "sVar = \"Las Vegas\""
+
+#: 03103300.xhp#par_id3145787.12.help.text
+msgid "For i% = 1 to 10 REM This results in a run-time error"
+msgstr "For i% = 1 to 10 REM This results in a run-time error"
+
+#: 03103300.xhp#par_id3152598.13.help.text
+msgid "REM"
+msgstr "REM"
+
+#: 03103300.xhp#par_id3145749.14.help.text
+msgid "Next i%"
+msgstr "Next i%"
+
+#: 03103300.xhp#par_id3150010.15.help.text
+msgctxt "03103300.xhp#par_id3150010.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03100900.xhp#tit.help.text
+msgid "CSng Function[Runtime]"
+msgstr "CSng Function[Runtime]"
+
+#: 03100900.xhp#bm_id3153753.help.text
+msgid "<bookmark_value>CSng function</bookmark_value>"
+msgstr "<bookmark_value>CSng function</bookmark_value>"
+
+#: 03100900.xhp#hd_id3153753.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function[Runtime]\">CSng Function[Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function[Runtime]\">CSng Function[Runtime]</link>"
+
+#: 03100900.xhp#par_id3149748.2.help.text
+msgid "Converts any string or numeric expression to data type Single."
+msgstr "Converts any string or numeric expression to data type Single."
+
+#: 03100900.xhp#hd_id3153255.3.help.text
+msgctxt "03100900.xhp#hd_id3153255.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100900.xhp#par_id3148983.4.help.text
+msgid "CSng (Expression)"
+msgstr "CSng (Expression)"
+
+#: 03100900.xhp#hd_id3152347.5.help.text
+msgctxt "03100900.xhp#hd_id3152347.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100900.xhp#par_id3153750.6.help.text
+msgctxt "03100900.xhp#par_id3153750.6.help.text"
+msgid "Single"
+msgstr "Single"
+
+#: 03100900.xhp#hd_id3146957.7.help.text
+msgctxt "03100900.xhp#hd_id3146957.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03100900.xhp#par_id3153345.8.help.text
+msgctxt "03100900.xhp#par_id3153345.8.help.text"
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+
+#: 03100900.xhp#hd_id3149514.9.help.text
+msgctxt "03100900.xhp#hd_id3149514.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03100900.xhp#par_id3154142.10.help.text
+msgid "Sub ExampleCSNG"
+msgstr "Sub ExampleCSNG"
+
+#: 03100900.xhp#par_id3147573.11.help.text
+msgctxt "03100900.xhp#par_id3147573.11.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234.5678)"
+
+#: 03100900.xhp#par_id3150772.12.help.text
+msgctxt "03100900.xhp#par_id3150772.12.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234.5678)"
+
+#: 03100900.xhp#par_id3147531.13.help.text
+msgctxt "03100900.xhp#par_id3147531.13.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234.5678)"
+
+#: 03100900.xhp#par_id3147265.14.help.text
+msgctxt "03100900.xhp#par_id3147265.14.help.text"
+msgid "Msgbox CSng(1234.5678)"
+msgstr "Msgbox CSng(1234.5678)"
+
+#: 03100900.xhp#par_id3159414.15.help.text
+msgctxt "03100900.xhp#par_id3159414.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01020200.xhp#tit.help.text
+msgid "Using Objects"
+msgstr "Using Objects"
+
+#: 01020200.xhp#hd_id3145645.1.help.text
+msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
+msgstr "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
+
+#: 01020200.xhp#par_id3153707.76.help.text
+msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
+msgstr "The object catalogue provides an overview of all modules and dialogues you have created in $[officename]."
+
+#: 01020200.xhp#par_id3147346.78.help.text
+msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
+msgstr "Click the <emph>Object Catalogue</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalogue."
+
+#: 01020200.xhp#par_id3155114.79.help.text
+msgid "The dialog shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
+msgstr "The dialogue shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
+
+#: 01020200.xhp#par_id3150786.83.help.text
+msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, select the corresponding entry and click the <emph>Show</emph> icon <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Icon</alt></image>."
+msgstr "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, select the corresponding entry and click the <emph>Show</emph> icon <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Icon</alt></image>."
+
+#: 01020200.xhp#par_id3153266.81.help.text
+msgid "Click the (X) icon in the title bar to close the object catalog."
+msgstr "Click the (X) icon in the title bar to close the object catalogue."
+
+#: 03030203.xhp#tit.help.text
+msgid "Now Function [Runtime]"
+msgstr "Now Function [Runtime]"
+
+#: 03030203.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Now function</bookmark_value>"
+msgstr "<bookmark_value>Now function</bookmark_value>"
+
+#: 03030203.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
+
+#: 03030203.xhp#par_id3149670.2.help.text
+msgid "Returns the current system date and time as a <emph>Date</emph> value."
+msgstr "Returns the current system date and time as a <emph>Date</emph> value."
+
+#: 03030203.xhp#hd_id3149456.3.help.text
+msgctxt "03030203.xhp#hd_id3149456.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030203.xhp#par_id3149655.4.help.text
+msgid "Now"
+msgstr "Now"
+
+#: 03030203.xhp#hd_id3154366.5.help.text
+msgctxt "03030203.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030203.xhp#par_id3154909.6.help.text
+msgctxt "03030203.xhp#par_id3154909.6.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 03030203.xhp#hd_id3147229.7.help.text
+msgctxt "03030203.xhp#hd_id3147229.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030203.xhp#par_id3145172.8.help.text
+msgid "Sub ExampleNow"
+msgstr "Sub ExampleNow"
+
+#: 03030203.xhp#par_id3150870.9.help.text
+msgid "msgbox \"It is now \" & Now"
+msgstr "msgbox \"It is now \" & Now"
+
+#: 03030203.xhp#par_id3145787.10.help.text
+msgctxt "03030203.xhp#par_id3145787.10.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03131400.xhp#tit.help.text
+msgid "TwipsPerPixelY Function [Runtime]"
+msgstr "TwipsPerPixelY Function [Runtime]"
+
+#: 03131400.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+msgstr "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+
+#: 03131400.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
+
+#: 03131400.xhp#par_id3154186.2.help.text
+msgid "Returns the number of twips that represent the height of a pixel."
+msgstr "Returns the number of twips that represent the height of a pixel."
+
+#: 03131400.xhp#hd_id3145090.3.help.text
+msgctxt "03131400.xhp#hd_id3145090.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03131400.xhp#par_id3153681.4.help.text
+msgid "n = TwipsPerPixelY"
+msgstr "n = TwipsPerPixelY"
+
+#: 03131400.xhp#hd_id3148473.5.help.text
+msgctxt "03131400.xhp#hd_id3148473.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03131400.xhp#par_id3154306.6.help.text
+msgctxt "03131400.xhp#par_id3154306.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03131400.xhp#hd_id3149235.7.help.text
+msgctxt "03131400.xhp#hd_id3149235.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03131400.xhp#par_id3150503.8.help.text
+msgctxt "03131400.xhp#par_id3150503.8.help.text"
+msgid "Sub ExamplePixelTwips"
+msgstr "Sub ExamplePixelTwips"
+
+#: 03131400.xhp#par_id3154142.9.help.text
+msgctxt "03131400.xhp#par_id3154142.9.help.text"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+
+#: 03131400.xhp#par_id3148944.10.help.text
+msgctxt "03131400.xhp#par_id3148944.10.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020414.xhp#tit.help.text
+msgid "SetAttr Statement [Runtime]"
+msgstr "SetAttr Statement [Runtime]"
+
+#: 03020414.xhp#bm_id3147559.help.text
+msgid "<bookmark_value>SetAttr statement</bookmark_value>"
+msgstr "<bookmark_value>SetAttr statement</bookmark_value>"
+
+#: 03020414.xhp#hd_id3147559.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
+
+#: 03020414.xhp#par_id3147264.2.help.text
+msgid "Sets the attribute information for a specified file."
+msgstr "Sets the attribute information for a specified file."
+
+#: 03020414.xhp#hd_id3150359.3.help.text
+msgctxt "03020414.xhp#hd_id3150359.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020414.xhp#par_id3154365.4.help.text
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr "SetAttr FileName As String, Attribute As Integer"
+
+#: 03020414.xhp#hd_id3125863.5.help.text
+msgctxt "03020414.xhp#hd_id3125863.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020414.xhp#par_id3154909.6.help.text
+msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020414.xhp#par_id3153192.7.help.text
+msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
+msgstr "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
+
+#: 03020414.xhp#par_id3145786.8.help.text
+msgid "<emph>Value</emph>"
+msgstr "<emph>Value</emph>"
+
+#: 03020414.xhp#par_id3152596.9.help.text
+msgctxt "03020414.xhp#par_id3152596.9.help.text"
+msgid "0 : Normal files."
+msgstr "0 : Normal files."
+
+#: 03020414.xhp#par_id3149262.10.help.text
+msgctxt "03020414.xhp#par_id3149262.10.help.text"
+msgid "1 : Read-only files."
+msgstr "1 : Read-only files."
+
+#: 03020414.xhp#par_id3152576.13.help.text
+msgctxt "03020414.xhp#par_id3152576.13.help.text"
+msgid "32 : File was changed since last backup (Archive bit)."
+msgstr "32 : File was changed since last backup (Archive bit)."
+
+#: 03020414.xhp#par_id3153093.14.help.text
+msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
+msgstr "You can set multiple attributes by combining the respective values with a logic OR statement."
+
+#: 03020414.xhp#hd_id3147434.15.help.text
+msgctxt "03020414.xhp#hd_id3147434.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020414.xhp#par_id3154012.16.help.text
+msgctxt "03020414.xhp#par_id3154012.16.help.text"
+msgid "Sub ExampleSetGetAttr"
+msgstr "Sub ExampleSetGetAttr"
+
+#: 03020414.xhp#par_id3148645.17.help.text
+msgctxt "03020414.xhp#par_id3148645.17.help.text"
+msgid "On Error Goto ErrorHandler REM Define target for error-handler"
+msgstr "On Error Goto ErrorHandler REM Define target for error-handler"
+
+#: 03020414.xhp#par_id3145647.18.help.text
+msgctxt "03020414.xhp#par_id3145647.18.help.text"
+msgid "If Dir(\"C:\\test\",16)=\"\" Then MkDir \"C:\\test\""
+msgstr "If Dir(\"C:\\test\",16)=\"\" Then MkDir \"C:\\test\""
+
+#: 03020414.xhp#par_id3147126.19.help.text
+msgctxt "03020414.xhp#par_id3147126.19.help.text"
+msgid "If Dir(\"C:\\test\\autoexec.sav\")=\"\" THEN Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+msgstr "If Dir(\"C:\\test\\autoexec.sav\")=\"\" THEN Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+
+#: 03020414.xhp#par_id3151074.20.help.text
+msgctxt "03020414.xhp#par_id3151074.20.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+msgstr "SetAttr \"c:\\test\\autoexec.sav\" ,0"
+
+#: 03020414.xhp#par_id3153158.21.help.text
+msgctxt "03020414.xhp#par_id3153158.21.help.text"
+msgid "Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+msgstr "Filecopy \"c:\\autoexec.bat\", \"c:\\test\\autoexec.sav\""
+
+#: 03020414.xhp#par_id3149378.22.help.text
+msgctxt "03020414.xhp#par_id3149378.22.help.text"
+msgid "SetAttr \"c:\\test\\autoexec.sav\" ,1"
+msgstr "SetAttr \"c:\\test\\autoexec.sav\" ,1"
+
+#: 03020414.xhp#par_id3150716.23.help.text
+msgctxt "03020414.xhp#par_id3150716.23.help.text"
+msgid "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+msgstr "print GetAttr( \"c:\\test\\autoexec.sav\" )"
+
+#: 03020414.xhp#par_id3154018.24.help.text
+msgctxt "03020414.xhp#par_id3154018.24.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020414.xhp#par_id3149121.25.help.text
+msgctxt "03020414.xhp#par_id3149121.25.help.text"
+msgid "ErrorHandler:"
+msgstr "ErrorHandler:"
+
+#: 03020414.xhp#par_id3156275.26.help.text
+msgctxt "03020414.xhp#par_id3156275.26.help.text"
+msgid "Print Error"
+msgstr "Print Error"
+
+#: 03020414.xhp#par_id3153707.27.help.text
+msgctxt "03020414.xhp#par_id3153707.27.help.text"
+msgid "end"
+msgstr "end"
+
+#: 03020414.xhp#par_id3145640.28.help.text
+msgctxt "03020414.xhp#par_id3145640.28.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020200.xhp#tit.help.text
+msgid "File Input/Output Functions"
+msgstr "File Input/Output Functions"
+
+#: 03020200.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
+
+#: 03060500.xhp#tit.help.text
+msgid "Or-Operator [Runtime]"
+msgstr "Or-Operator [Runtime]"
+
+#: 03060500.xhp#bm_id3150986.help.text
+msgid "<bookmark_value>Or operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Or operator (logical)</bookmark_value>"
+
+#: 03060500.xhp#hd_id3150986.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
+
+#: 03060500.xhp#par_id3148552.2.help.text
+msgid "Performs a logical OR disjunction on two expressions."
+msgstr "Performs a logical OR disjunction on two expressions."
+
+#: 03060500.xhp#hd_id3148664.3.help.text
+msgctxt "03060500.xhp#hd_id3148664.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03060500.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 Or Expression2"
+msgstr "Result = Expression1 Or Expression2"
+
+#: 03060500.xhp#hd_id3151211.5.help.text
+msgctxt "03060500.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03060500.xhp#par_id3153192.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the disjunction."
+msgstr "<emph>Result:</emph> Any numeric variable that contains the result of the disjunction."
+
+#: 03060500.xhp#par_id3147229.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to compare."
+msgstr "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to compare."
+
+#: 03060500.xhp#par_id3154684.8.help.text
+msgid "A logical OR disjunction of two Boolean expressions returns the value True if at least one comparison expression is True."
+msgstr "A logical OR disjunction of two Boolean expressions returns the value True if at least one comparison expression is True."
+
+#: 03060500.xhp#par_id3153768.9.help.text
+msgid "A bit-wise comparison sets a bit in the result if the corresponding bit is set in at least one of the two expressions."
+msgstr "A bit-wise comparison sets a bit in the result if the corresponding bit is set in at least one of the two expressions."
+
+#: 03060500.xhp#hd_id3161831.10.help.text
+msgctxt "03060500.xhp#hd_id3161831.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03060500.xhp#par_id3147427.11.help.text
+msgid "Sub ExampleOr"
+msgstr "Sub ExampleOr"
+
+#: 03060500.xhp#par_id3153142.12.help.text
+msgctxt "03060500.xhp#par_id3153142.12.help.text"
+msgid "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+msgstr "Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant"
+
+#: 03060500.xhp#par_id3154014.13.help.text
+msgctxt "03060500.xhp#par_id3154014.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060500.xhp#par_id3155856.14.help.text
+msgctxt "03060500.xhp#par_id3155856.14.help.text"
+msgid "vA = 10: vB = 8: vC = 6: vD = Null"
+msgstr "vA = 10: vB = 8: vC = 6: vD = Null"
+
+#: 03060500.xhp#par_id3152460.15.help.text
+msgid "vOut = vA > vB Or vB > vC REM -1"
+msgstr "vOut = vA > vB Or vB > vC REM -1"
+
+#: 03060500.xhp#par_id3147349.16.help.text
+msgid "vOut = vB > vA Or vB > vC REM -1"
+msgstr "vOut = vB > vA Or vB > vC REM -1"
+
+#: 03060500.xhp#par_id3151114.17.help.text
+msgid "vOut = vA > vB Or vB > vD REM -1"
+msgstr "vOut = vA > vB Or vB > vD REM -1"
+
+#: 03060500.xhp#par_id3153726.18.help.text
+msgid "vOut = (vB > vD Or vB > vA) REM 0"
+msgstr "vOut = (vB > vD Or vB > vA) REM 0"
+
+#: 03060500.xhp#par_id3152598.19.help.text
+msgid "vOut = vB Or vA REM 10"
+msgstr "vOut = vB Or vA REM 10"
+
+#: 03060500.xhp#par_id3150420.20.help.text
+msgctxt "03060500.xhp#par_id3150420.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03120102.xhp#tit.help.text
+msgid "Chr Function [Runtime]"
+msgstr "Chr Function [Runtime]"
+
+#: 03120102.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>Chr function</bookmark_value>"
+msgstr "<bookmark_value>Chr function</bookmark_value>"
+
+#: 03120102.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
+
+#: 03120102.xhp#par_id3153311.2.help.text
+msgid "Returns the character that corresponds to the specified character code."
+msgstr "Returns the character that corresponds to the specified character code."
+
+#: 03120102.xhp#hd_id3149514.3.help.text
+msgctxt "03120102.xhp#hd_id3149514.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120102.xhp#par_id3150669.4.help.text
+msgid "Chr(Expression As Integer)"
+msgstr "Chr(Expression As Integer)"
+
+#: 03120102.xhp#hd_id3143228.5.help.text
+msgctxt "03120102.xhp#hd_id3143228.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120102.xhp#par_id3153824.6.help.text
+msgctxt "03120102.xhp#par_id3153824.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120102.xhp#hd_id3148944.7.help.text
+msgctxt "03120102.xhp#hd_id3148944.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120102.xhp#par_id3149295.8.help.text
+msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
+msgstr "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
+
+#: 03120102.xhp#par_id3159414.9.help.text
+msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
+msgstr "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
+
+#: 03120102.xhp#hd_id3154366.10.help.text
+msgctxt "03120102.xhp#hd_id3154366.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120102.xhp#par_id3144502.11.help.text
+msgid "sub ExampleChr"
+msgstr "sub ExampleChr"
+
+#: 03120102.xhp#par_id3154909.12.help.text
+msgid "REM This example inserts quotation marks (ASCII value 34) in a string."
+msgstr "REM This example inserts quotation marks (ASCII value 34) in a string."
+
+#: 03120102.xhp#par_id3151380.13.help.text
+msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+msgstr "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+
+#: 03120102.xhp#par_id3145174.14.help.text
+msgid "REM The printout appears in the dialog as: A \"short\" trip."
+msgstr "REM The printout appears in the dialogue as: A \"short\" trip."
+
+#: 03120102.xhp#par_id3154685.15.help.text
+msgctxt "03120102.xhp#par_id3154685.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120102.xhp#par_idN10668.help.text
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
+
+#: 01000000.xhp#tit.help.text
+msgid "Programming with $[officename] Basic "
+msgstr "Programming with $[officename] Basic "
+
+#: 01000000.xhp#hd_id3156027.1.help.text
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
+
+#: 01000000.xhp#par_id3153708.2.help.text
+msgid "This is where you find general information about working with macros and $[officename] Basic."
+msgstr "This is where you find general information about working with macros and $[officename] Basic."
+
+#: 03030302.xhp#tit.help.text
+msgid "Time Statement [Runtime]"
+msgstr "Time Statement [Runtime]"
+
+#: 03030302.xhp#bm_id3145090.help.text
+msgid "<bookmark_value>Time statement</bookmark_value>"
+msgstr "<bookmark_value>Time statement</bookmark_value>"
+
+#: 03030302.xhp#hd_id3145090.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement [Runtime]</link>"
+
+#: 03030302.xhp#par_id3150984.2.help.text
+msgid "This function returns the current system time as a string in the format \"HH:MM:SS\"."
+msgstr "This function returns the current system time as a string in the format \"HH:MM:SS\"."
+
+#: 03030302.xhp#hd_id3154346.3.help.text
+msgctxt "03030302.xhp#hd_id3154346.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030302.xhp#par_id3149670.4.help.text
+msgid "Time"
+msgstr "Time"
+
+#: 03030302.xhp#hd_id3150792.5.help.text
+msgctxt "03030302.xhp#hd_id3150792.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030302.xhp#par_id3149656.6.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the new time in the format \"HH:MM:SS\"."
+msgstr "<emph>Text:</emph> Any string expression that specifies the new time in the format \"HH:MM:SS\"."
+
+#: 03030302.xhp#hd_id3145173.7.help.text
+msgctxt "03030302.xhp#hd_id3145173.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030302.xhp#par_id3156281.8.help.text
+msgid "Sub ExampleTime"
+msgstr "Sub ExampleTime"
+
+#: 03030302.xhp#par_id3150870.9.help.text
+msgid "MsgBox Time,0,\"The time is\""
+msgstr "MsgBox Time,0,\"The time is\""
+
+#: 03030302.xhp#par_id3154123.10.help.text
+msgctxt "03030302.xhp#par_id3154123.10.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090404.xhp#tit.help.text
+msgid "End Statement [Runtime]"
+msgstr "End Statement [Runtime]"
+
+#: 03090404.xhp#bm_id3150771.help.text
+msgid "<bookmark_value>End statement</bookmark_value>"
+msgstr "<bookmark_value>End statement</bookmark_value>"
+
+#: 03090404.xhp#hd_id3150771.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
+
+#: 03090404.xhp#par_id3153126.2.help.text
+msgid "Ends a procedure or block."
+msgstr "Ends a procedure or block."
+
+#: 03090404.xhp#hd_id3147264.3.help.text
+msgctxt "03090404.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090404.xhp#par_id3148552.4.help.text
+msgid "End, End Function, End If, End Select, End Sub"
+msgstr "End, End Function, End If, End Select, End Sub"
+
+#: 03090404.xhp#hd_id3149456.5.help.text
+msgctxt "03090404.xhp#hd_id3149456.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090404.xhp#par_id3150398.6.help.text
+msgid "Use the End statement as follows:"
+msgstr "Use the End statement as follows:"
+
+#: 03090404.xhp#hd_id3154366.7.help.text
+msgid "Statement"
+msgstr "Statement"
+
+#: 03090404.xhp#par_id3151043.8.help.text
+msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
+msgstr "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
+
+#: 03090404.xhp#par_id3145171.9.help.text
+msgid "End Function: Ends a <emph>Function</emph> statement."
+msgstr "End Function: Ends a <emph>Function</emph> statement."
+
+#: 03090404.xhp#par_id3153192.10.help.text
+msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgstr "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+
+#: 03090404.xhp#par_id3148451.11.help.text
+msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
+msgstr "End Select: Marks the end of a <emph>Select Case</emph> block."
+
+#: 03090404.xhp#par_id3155131.12.help.text
+msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgstr "End Sub: Ends a <emph>Sub</emph> statement."
+
+#: 03090404.xhp#hd_id3146120.13.help.text
+msgctxt "03090404.xhp#hd_id3146120.13.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090404.xhp#par_id3146985.14.help.text
+msgctxt "03090404.xhp#par_id3146985.14.help.text"
+msgid "Sub ExampleRandomSelect"
+msgstr "Sub ExampleRandomSelect"
+
+#: 03090404.xhp#par_id3153363.15.help.text
+msgctxt "03090404.xhp#par_id3153363.15.help.text"
+msgid "Dim iVar As Integer"
+msgstr "Dim iVar As Integer"
+
+#: 03090404.xhp#par_id3153727.16.help.text
+msgctxt "03090404.xhp#par_id3153727.16.help.text"
+msgid "iVar = Int((15 * Rnd) -2)"
+msgstr "iVar = Int((15 * Rnd) -2)"
+
+#: 03090404.xhp#par_id3150011.17.help.text
+msgctxt "03090404.xhp#par_id3150011.17.help.text"
+msgid "Select Case iVar"
+msgstr "Select Case iVar"
+
+#: 03090404.xhp#par_id3149481.18.help.text
+msgctxt "03090404.xhp#par_id3149481.18.help.text"
+msgid "Case 1 To 5"
+msgstr "Case 1 To 5"
+
+#: 03090404.xhp#par_id3152887.19.help.text
+msgctxt "03090404.xhp#par_id3152887.19.help.text"
+msgid "Print \"Number from 1 to 5\""
+msgstr "Print \"Number from 1 to 5\""
+
+#: 03090404.xhp#par_id3163713.20.help.text
+msgctxt "03090404.xhp#par_id3163713.20.help.text"
+msgid "Case 6, 7, 8"
+msgstr "Case 6, 7, 8"
+
+#: 03090404.xhp#par_id3148618.21.help.text
+msgctxt "03090404.xhp#par_id3148618.21.help.text"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Print \"Number from 6 to 8\""
+
+#: 03090404.xhp#par_id3153144.22.help.text
+msgctxt "03090404.xhp#par_id3153144.22.help.text"
+msgid "Case Is > 8 And iVar < 11"
+msgstr "Case Is > 8 And iVar < 11"
+
+#: 03090404.xhp#par_id3147436.23.help.text
+msgctxt "03090404.xhp#par_id3147436.23.help.text"
+msgid "Print \"Greater than 8\""
+msgstr "Print \"Greater than 8\""
+
+#: 03090404.xhp#par_id3155418.24.help.text
+msgctxt "03090404.xhp#par_id3155418.24.help.text"
+msgid "Case Else"
+msgstr "Case Else"
+
+#: 03090404.xhp#par_id3150418.25.help.text
+msgctxt "03090404.xhp#par_id3150418.25.help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Print \"Outside range 1 to 10\""
+
+#: 03090404.xhp#par_id3156285.26.help.text
+msgctxt "03090404.xhp#par_id3156285.26.help.text"
+msgid "End Select"
+msgstr "End Select"
+
+#: 03090404.xhp#par_id3149582.27.help.text
+msgctxt "03090404.xhp#par_id3149582.27.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090000.xhp#tit.help.text
+msgid "Controlling Program Execution"
+msgstr "Controlling Program Execution"
+
+#: 03090000.xhp#hd_id3145136.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
+msgstr "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
+
+#: 03090000.xhp#par_id3143268.2.help.text
+msgid "The following statements control the execution of a program."
+msgstr "The following statements control the execution of a program."
+
+#: 03090000.xhp#par_id3156152.3.help.text
+msgid "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements."
+msgstr "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements."
+
+#: 03090202.xhp#tit.help.text
+msgid "For...Next Statement [Runtime]"
+msgstr "For...Next Statement [Runtime]"
+
+#: 03090202.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
+msgstr "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
+
+#: 03090202.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
+
+#: 03090202.xhp#par_id3143267.2.help.text
+msgid "Repeats the statements between the For...Next block a specified number of times."
+msgstr "Repeats the statements between the For...Next block a specified number of times."
+
+#: 03090202.xhp#hd_id3156153.3.help.text
+msgctxt "03090202.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090202.xhp#par_id3148473.4.help.text
+msgid "For counter=start To end [Step step]"
+msgstr "For counter=start To end [Step step]"
+
+#: 03090202.xhp#par_id3156024.5.help.text
+msgctxt "03090202.xhp#par_id3156024.5.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090202.xhp#par_id3146796.6.help.text
+msgid "[Exit For]"
+msgstr "[Exit For]"
+
+#: 03090202.xhp#par_id3159414.7.help.text
+msgctxt "03090202.xhp#par_id3159414.7.help.text"
+msgid "statement block"
+msgstr "statement block"
+
+#: 03090202.xhp#par_id3153897.8.help.text
+msgid "Next [counter]"
+msgstr "Next [counter]"
+
+#: 03090202.xhp#hd_id3150400.9.help.text
+msgid "Variables:"
+msgstr "Variables:"
+
+#: 03090202.xhp#par_id3150358.10.help.text
+msgid "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
+msgstr "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
+
+#: 03090202.xhp#par_id3152455.11.help.text
+msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
+msgstr "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
+
+#: 03090202.xhp#par_id3151043.12.help.text
+msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
+msgstr "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
+
+#: 03090202.xhp#par_id3156281.13.help.text
+msgid "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
+msgstr "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
+
+#: 03090202.xhp#par_id3154684.14.help.text
+msgid "The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters."
+msgstr "The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters."
+
+#: 03090202.xhp#par_id3147287.15.help.text
+msgid "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
+msgstr "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
+
+#: 03090202.xhp#par_id3159154.16.help.text
+msgid "It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement."
+msgstr "It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement."
+
+#: 03090202.xhp#par_id3155306.17.help.text
+msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
+msgstr "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
+
+#: 03090202.xhp#par_id3155854.18.help.text
+msgid "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
+msgstr "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
+
+#: 03090202.xhp#par_id3145273.19.help.text
+msgid "Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:"
+msgstr "Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:"
+
+#: 03090202.xhp#par_id3153190.20.help.text
+msgid "For..."
+msgstr "For..."
+
+#: 03090202.xhp#par_id3149482.21.help.text
+msgctxt "03090202.xhp#par_id3149482.21.help.text"
+msgid "statements"
+msgstr "statements"
+
+#: 03090202.xhp#par_id3147124.22.help.text
+msgid "If condition = True Then Exit For"
+msgstr "If condition = True Then Exit For"
+
+#: 03090202.xhp#par_id3153159.23.help.text
+msgctxt "03090202.xhp#par_id3153159.23.help.text"
+msgid "statements"
+msgstr "statements"
+
+#: 03090202.xhp#par_id3154096.24.help.text
+msgid "Next"
+msgstr "Next"
+
+#: 03090202.xhp#par_id3156286.25.help.text
+msgid "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
+msgstr "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
+
+#: 03090202.xhp#hd_id3148457.26.help.text
+msgctxt "03090202.xhp#hd_id3148457.26.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 03090202.xhp#par_id3151074.27.help.text
+msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
+msgstr "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
+
+#: 03090202.xhp#par_id3155603.28.help.text
+msgid "Sub ExampleSort"
+msgstr "Sub ExampleSort"
+
+#: 03090202.xhp#par_id3156275.29.help.text
+msgid "Dim sEntry(9) As String"
+msgstr "Dim sEntry(9) As String"
+
+#: 03090202.xhp#par_id3155066.30.help.text
+msgctxt "03090202.xhp#par_id3155066.30.help.text"
+msgid "Dim iCount As Integer"
+msgstr "Dim iCount As Integer"
+
+#: 03090202.xhp#par_id3150751.31.help.text
+msgid "Dim iCount2 As Integer"
+msgstr "Dim iCount2 As Integer"
+
+#: 03090202.xhp#par_id3155446.32.help.text
+msgctxt "03090202.xhp#par_id3155446.32.help.text"
+msgid "Dim sTemp As String"
+msgstr "Dim sTemp As String"
+
+#: 03090202.xhp#par_id3155767.42.help.text
+msgid "sEntry(0) = \"Jerry\""
+msgstr "sEntry(0) = \"Jerry\""
+
+#: 03090202.xhp#par_id3153711.33.help.text
+msgid "sEntry(1) = \"Patty\""
+msgstr "sEntry(1) = \"Patty\""
+
+#: 03090202.xhp#par_id3148993.34.help.text
+msgid "sEntry(2) = \"Kurt\""
+msgstr "sEntry(2) = \"Kurt\""
+
+#: 03090202.xhp#par_id3156382.35.help.text
+msgid "sEntry(3) = \"Thomas\""
+msgstr "sEntry(3) = \"Thomas\""
+
+#: 03090202.xhp#par_id3155174.36.help.text
+msgid "sEntry(4) = \"Michael\""
+msgstr "sEntry(4) = \"Michael\""
+
+#: 03090202.xhp#par_id3166448.37.help.text
+msgid "sEntry(5) = \"David\""
+msgstr "sEntry(5) = \"David\""
+
+#: 03090202.xhp#par_id3149255.38.help.text
+msgid "sEntry(6) = \"Cathy\""
+msgstr "sEntry(6) = \"Cathy\""
+
+#: 03090202.xhp#par_id3149565.39.help.text
+msgid "sEntry(7) = \"Susie\""
+msgstr "sEntry(7) = \"Susie\""
+
+#: 03090202.xhp#par_id3145148.40.help.text
+msgid "sEntry(8) = \"Edward\""
+msgstr "sEntry(8) = \"Edward\""
+
+#: 03090202.xhp#par_id3145229.41.help.text
+msgid "sEntry(9) = \"Christine\""
+msgstr "sEntry(9) = \"Christine\""
+
+#: 03090202.xhp#par_id3149107.44.help.text
+msgctxt "03090202.xhp#par_id3149107.44.help.text"
+msgid "For iCount = 0 To 9"
+msgstr "For iCount = 0 To 9"
+
+#: 03090202.xhp#par_id3148485.45.help.text
+msgid "For iCount2 = iCount + 1 To 9"
+msgstr "For iCount2 = iCount + 1 To 9"
+
+#: 03090202.xhp#par_id3155608.46.help.text
+msgid "If sEntry(iCount) > sEntry(iCount2) Then"
+msgstr "If sEntry(iCount) > sEntry(iCount2) Then"
+
+#: 03090202.xhp#par_id3150938.47.help.text
+msgid "sTemp = sEntry(iCount)"
+msgstr "sTemp = sEntry(iCount)"
+
+#: 03090202.xhp#par_id3153790.48.help.text
+msgid "sEntry(iCount) = sEntry(iCount2)"
+msgstr "sEntry(iCount) = sEntry(iCount2)"
+
+#: 03090202.xhp#par_id3149210.49.help.text
+msgid "sEntry(iCount2) = sTemp"
+msgstr "sEntry(iCount2) = sTemp"
+
+#: 03090202.xhp#par_id3153781.50.help.text
+msgctxt "03090202.xhp#par_id3153781.50.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03090202.xhp#par_id3158446.51.help.text
+msgid "Next iCount2"
+msgstr "Next iCount2"
+
+#: 03090202.xhp#par_id3150783.52.help.text
+msgctxt "03090202.xhp#par_id3150783.52.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03090202.xhp#par_id3151278.57.help.text
+msgctxt "03090202.xhp#par_id3151278.57.help.text"
+msgid "For iCount = 0 To 9"
+msgstr "For iCount = 0 To 9"
+
+#: 03090202.xhp#par_id3148462.58.help.text
+msgid "Print sEntry(iCount)"
+msgstr "Print sEntry(iCount)"
+
+#: 03090202.xhp#par_id3149528.59.help.text
+msgctxt "03090202.xhp#par_id3149528.59.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03090202.xhp#par_id3152580.60.help.text
+msgctxt "03090202.xhp#par_id3152580.60.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03010101.xhp#tit.help.text
+msgid "MsgBox Statement [Runtime]"
+msgstr "MsgBox Statement [Runtime]"
+
+#: 03010101.xhp#bm_id1807916.help.text
+msgid "<bookmark_value>MsgBox statement</bookmark_value>"
+msgstr "<bookmark_value>MsgBox statement</bookmark_value>"
+
+#: 03010101.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
+
+#: 03010101.xhp#par_id3148947.2.help.text
+msgid "Displays a dialog box containing a message."
+msgstr "Displays a dialogue box containing a message."
+
+#: 03010101.xhp#hd_id3153897.3.help.text
+msgctxt "03010101.xhp#hd_id3153897.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010101.xhp#par_id3148664.4.help.text
+msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
+msgstr "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
+
+#: 03010101.xhp#hd_id3153361.5.help.text
+msgctxt "03010101.xhp#hd_id3153361.5.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010101.xhp#par_id3148798.6.help.text
+msgctxt "03010101.xhp#par_id3148798.6.help.text"
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr "<emph>Text</emph>: String expression displayed as a message in the dialogue box. Line breaks can be inserted with Chr$(13)."
+
+#: 03010101.xhp#par_id3150769.7.help.text
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
+msgstr "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialogue. If omitted, the title bar displays the name of the respective application."
+
+#: 03010101.xhp#par_id3147228.8.help.text
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
+msgstr "<emph>Type</emph>: Any integer expression that specifies the dialogue type, as well as the number and type of buttons to display, and the icon type. <emph>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
+
+#: 03010101.xhp#par_id3161832.9.help.text
+msgctxt "03010101.xhp#par_id3161832.9.help.text"
+msgid "0 : Display OK button only."
+msgstr "0 : Display OK button only."
+
+#: 03010101.xhp#par_id3153726.10.help.text
+msgctxt "03010101.xhp#par_id3153726.10.help.text"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Display OK and Cancel buttons."
+
+#: 03010101.xhp#par_id3149665.11.help.text
+msgctxt "03010101.xhp#par_id3149665.11.help.text"
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr "2 : Display Abort, Retry, and Ignore buttons."
+
+#: 03010101.xhp#par_id3147318.12.help.text
+msgid "3 : Display Yes, No and Cancel buttons."
+msgstr "3 : Display Yes, No and Cancel buttons."
+
+#: 03010101.xhp#par_id3155412.13.help.text
+msgctxt "03010101.xhp#par_id3155412.13.help.text"
+msgid "4 : Display Yes and No buttons."
+msgstr "4 : Display Yes and No buttons."
+
+#: 03010101.xhp#par_id3146119.14.help.text
+msgctxt "03010101.xhp#par_id3146119.14.help.text"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Display Retry and Cancel buttons."
+
+#: 03010101.xhp#par_id3159155.15.help.text
+msgctxt "03010101.xhp#par_id3159155.15.help.text"
+msgid "16 : Add the Stop icon to the dialog."
+msgstr "16 : Add the Stop icon to the dialogue."
+
+#: 03010101.xhp#par_id3145366.16.help.text
+msgctxt "03010101.xhp#par_id3145366.16.help.text"
+msgid "32 : Add the Question icon to the dialog."
+msgstr "32 : Add the Question icon to the dialogue."
+
+#: 03010101.xhp#par_id3147350.17.help.text
+msgid "48 : Add the Exclamation icon to the dialog."
+msgstr "48 : Add the Exclamation icon to the dialogue."
+
+#: 03010101.xhp#par_id3149960.18.help.text
+msgctxt "03010101.xhp#par_id3149960.18.help.text"
+msgid "64 : Add the Information icon to the dialog."
+msgstr "64 : Add the Information icon to the dialogue."
+
+#: 03010101.xhp#par_id3154944.19.help.text
+msgctxt "03010101.xhp#par_id3154944.19.help.text"
+msgid "128 : First button in the dialog as default button."
+msgstr "128 : First button in the dialogue as default button."
+
+#: 03010101.xhp#par_id3155417.20.help.text
+msgctxt "03010101.xhp#par_id3155417.20.help.text"
+msgid "256 : Second button in the dialog as default button."
+msgstr "256 : Second button in the dialogue as default button."
+
+#: 03010101.xhp#par_id3153878.21.help.text
+msgctxt "03010101.xhp#par_id3153878.21.help.text"
+msgid "512 : Third button in the dialog as default button."
+msgstr "512 : Third button in the dialogue as default button."
+
+#: 03010101.xhp#hd_id3150715.22.help.text
+msgctxt "03010101.xhp#hd_id3150715.22.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010101.xhp#par_id3154511.23.help.text
+msgctxt "03010101.xhp#par_id3154511.23.help.text"
+msgid "Sub ExampleMsgBox"
+msgstr "Sub ExampleMsgBox"
+
+#: 03010101.xhp#par_id3150327.24.help.text
+msgid "Const sText1 = \"An unexpected error occurred.\""
+msgstr "Const sText1 = \"An unexpected error occurred.\""
+
+#: 03010101.xhp#par_id3146912.25.help.text
+msgid "Const sText2 = \"The program execution will continue, however.\""
+msgstr "Const sText2 = \"The program execution will continue, however.\""
+
+#: 03010101.xhp#par_id3154757.26.help.text
+msgid "Const sText3 = \"Error\""
+msgstr "Const sText3 = \"Error\""
+
+#: 03010101.xhp#par_id3155445.27.help.text
+msgid "MsgBox(sText1 + Chr(13) + sText2,16,sText3)"
+msgstr "MsgBox(sText1 + Chr(13) + sText2,16,sText3)"
+
+#: 03010101.xhp#par_id3155768.28.help.text
+msgctxt "03010101.xhp#par_id3155768.28.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03132200.xhp#tit.help.text
+msgid "ThisComponent Statement [Runtime]"
+msgstr "ThisComponent Statement [Runtime]"
+
+#: 03132200.xhp#bm_id3155342.help.text
+msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
+msgstr "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
+
+#: 03132200.xhp#hd_id3155342.1.help.text
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+
+#: 03132200.xhp#par_id3154923.2.help.text
+msgid "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
+msgstr "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
+
+#: 03132200.xhp#hd_id3154346.3.help.text
+msgctxt "03132200.xhp#hd_id3154346.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03132200.xhp#par_id3151056.4.help.text
+msgid "ThisComponent"
+msgstr "ThisComponent"
+
+#: 03132200.xhp#hd_id3154940.5.help.text
+msgctxt "03132200.xhp#hd_id3154940.5.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03132200.xhp#par_id3151211.6.help.text
+msgctxt "03132200.xhp#par_id3151211.6.help.text"
+msgid "Sub Main"
+msgstr "Sub Main"
+
+#: 03132200.xhp#par_id3154123.7.help.text
+msgid " REM updates the \"Table of Contents\" in a text doc"
+msgstr " REM updates the \"Table of Contents\" in a text doc"
+
+#: 03132200.xhp#par_id3151381.8.help.text
+msgid " Dim allindexes, index As Object"
+msgstr " Dim allindexes, index As Object"
+
+#: 03132200.xhp#par_id3150769.9.help.text
+msgid " allindexes = ThisComponent.getDocumentIndexes()"
+msgstr " allindexes = ThisComponent.getDocumentIndexes()"
+
+#: 03132200.xhp#par_id3153194.10.help.text
+msgid " index = allindexes.getByName(\"Table of Contents1\")"
+msgstr " index = allindexes.getByName(\"Table of Contents1\")"
+
+#: 03132200.xhp#par_id3156422.11.help.text
+msgid " REM use the default name for Table of Contents and a 1"
+msgstr " REM use the default name for Table of Contents and a 1"
+
+#: 03132200.xhp#par_id3153368.12.help.text
+msgid " index.update()"
+msgstr " index.update()"
+
+#: 03132200.xhp#par_id3161832.13.help.text
+msgctxt "03132200.xhp#par_id3161832.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03102200.xhp#tit.help.text
+msgid "IsArray Function [Runtime]"
+msgstr "IsArray Function [Runtime]"
+
+#: 03102200.xhp#bm_id3154346.help.text
+msgid "<bookmark_value>IsArray function</bookmark_value>"
+msgstr "<bookmark_value>IsArray function</bookmark_value>"
+
+#: 03102200.xhp#hd_id3154346.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
+
+#: 03102200.xhp#par_id3159413.2.help.text
+msgid "Determines if a variable is a data field in an array."
+msgstr "Determines if a variable is a data field in an array."
+
+#: 03102200.xhp#hd_id3150792.3.help.text
+msgctxt "03102200.xhp#hd_id3150792.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102200.xhp#par_id3153379.4.help.text
+msgid "IsArray (Var)"
+msgstr "IsArray (Var)"
+
+#: 03102200.xhp#hd_id3154365.5.help.text
+msgctxt "03102200.xhp#hd_id3154365.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03102200.xhp#par_id3154685.6.help.text
+msgctxt "03102200.xhp#par_id3154685.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03102200.xhp#hd_id3153969.7.help.text
+msgctxt "03102200.xhp#hd_id3153969.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102200.xhp#par_id3145172.8.help.text
+msgid "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
+msgstr "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
+
+#: 03102200.xhp#hd_id3155131.9.help.text
+msgctxt "03102200.xhp#hd_id3155131.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102200.xhp#par_id3153365.10.help.text
+msgid "Sub ExampleIsArray"
+msgstr "Sub ExampleIsArray"
+
+#: 03102200.xhp#par_id3150487.11.help.text
+msgid "Dim sDatf(10) as String"
+msgstr "Dim sDatf(10) as String"
+
+#: 03102200.xhp#par_id3155414.12.help.text
+msgid "print isarray(sdatf())"
+msgstr "print isarray(sdatf())"
+
+#: 03102200.xhp#par_id3153727.13.help.text
+msgctxt "03102200.xhp#par_id3153727.13.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03080802.xhp#tit.help.text
+msgid "Oct Function [Runtime]"
+msgstr "Oct Function [Runtime]"
+
+#: 03080802.xhp#bm_id3155420.help.text
+msgid "<bookmark_value>Oct function</bookmark_value>"
+msgstr "<bookmark_value>Oct function</bookmark_value>"
+
+#: 03080802.xhp#hd_id3155420.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
+
+#: 03080802.xhp#par_id3154924.2.help.text
+msgid "Returns the octal value of a number."
+msgstr "Returns the octal value of a number."
+
+#: 03080802.xhp#hd_id3148947.3.help.text
+msgctxt "03080802.xhp#hd_id3148947.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080802.xhp#par_id3150543.4.help.text
+msgid "Oct (Number)"
+msgstr "Oct (Number)"
+
+#: 03080802.xhp#hd_id3153360.5.help.text
+msgctxt "03080802.xhp#hd_id3153360.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080802.xhp#par_id3154138.6.help.text
+msgctxt "03080802.xhp#par_id3154138.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03080802.xhp#hd_id3156422.7.help.text
+msgctxt "03080802.xhp#hd_id3156422.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080802.xhp#par_id3150768.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+msgstr "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+
+#: 03080802.xhp#hd_id3148672.9.help.text
+msgctxt "03080802.xhp#hd_id3148672.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080802.xhp#par_id3147287.10.help.text
+msgid "Sub ExampleOkt"
+msgstr "Sub ExampleOkt"
+
+#: 03080802.xhp#par_id3161831.11.help.text
+msgid "Msgbox Oct(255)"
+msgstr "Msgbox Oct(255)"
+
+#: 03080802.xhp#par_id3147318.12.help.text
+msgctxt "03080802.xhp#par_id3147318.12.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120308.xhp#tit.help.text
+msgid "RSet Statement [Runtime]"
+msgstr "RSet Statement [Runtime]"
+
+#: 03120308.xhp#bm_id3153345.help.text
+msgid "<bookmark_value>RSet statement</bookmark_value>"
+msgstr "<bookmark_value>RSet statement</bookmark_value>"
+
+#: 03120308.xhp#hd_id3153345.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
+
+#: 03120308.xhp#par_id3150503.2.help.text
+msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
+msgstr "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
+
+#: 03120308.xhp#hd_id3149234.3.help.text
+msgctxt "03120308.xhp#hd_id3149234.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120308.xhp#par_id3150669.4.help.text
+msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgstr "RSet Text As String = Text or RSet Variable1 = Variable2"
+
+#: 03120308.xhp#hd_id3156024.5.help.text
+msgctxt "03120308.xhp#hd_id3156024.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120308.xhp#par_id3148552.6.help.text
+msgid "<emph>Text:</emph> Any string variable."
+msgstr "<emph>Text:</emph> Any string variable."
+
+#: 03120308.xhp#par_id3154924.7.help.text
+msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgstr "<emph>Text</emph>: String that you want to right-align in the string variable."
+
+#: 03120308.xhp#par_id3149456.8.help.text
+msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+msgstr "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+
+#: 03120308.xhp#par_id3153381.9.help.text
+msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+msgstr "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+
+#: 03120308.xhp#par_id3154140.10.help.text
+msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
+msgstr "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
+
+#: 03120308.xhp#par_id3149202.11.help.text
+msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
+msgstr "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
+
+#: 03120308.xhp#par_id3151042.12.help.text
+msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
+msgstr "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
+
+#: 03120308.xhp#hd_id3154909.13.help.text
+msgctxt "03120308.xhp#hd_id3154909.13.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120308.xhp#par_id3154218.14.help.text
+msgctxt "03120308.xhp#par_id3154218.14.help.text"
+msgid "Sub ExampleRLSet"
+msgstr "Sub ExampleRLSet"
+
+#: 03120308.xhp#par_id3147288.15.help.text
+msgid "Dim sVar as string"
+msgstr "Dim sVar as string"
+
+#: 03120308.xhp#par_id3153367.16.help.text
+msgid "Dim sExpr as string"
+msgstr "Dim sExpr as string"
+
+#: 03120308.xhp#par_id3153952.18.help.text
+msgctxt "03120308.xhp#par_id3153952.18.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr "sVar = String(40,\"*\")"
+
+#: 03120308.xhp#par_id3154013.19.help.text
+msgctxt "03120308.xhp#par_id3154013.19.help.text"
+msgid "sExpr = \"SBX\""
+msgstr "sExpr = \"SBX\""
+
+#: 03120308.xhp#par_id3155856.20.help.text
+msgid "REM Right-align \"SBX\" in a 40-character string"
+msgstr "REM Right-align \"SBX\" in a 40-character string"
+
+#: 03120308.xhp#par_id3152577.21.help.text
+msgctxt "03120308.xhp#par_id3152577.21.help.text"
+msgid "REM Replace asterisks with spaces"
+msgstr "REM Replace asterisks with spaces"
+
+#: 03120308.xhp#par_id3149260.22.help.text
+msgctxt "03120308.xhp#par_id3149260.22.help.text"
+msgid "RSet sVar = sExpr"
+msgstr "RSet sVar = sExpr"
+
+#: 03120308.xhp#par_id3156444.23.help.text
+msgctxt "03120308.xhp#par_id3156444.23.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120308.xhp#par_id3148575.25.help.text
+msgctxt "03120308.xhp#par_id3148575.25.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr "sVar = String(5,\"*\")"
+
+#: 03120308.xhp#par_id3153140.26.help.text
+msgctxt "03120308.xhp#par_id3153140.26.help.text"
+msgid "sExpr = \"123457896\""
+msgstr "sExpr = \"123457896\""
+
+#: 03120308.xhp#par_id3153144.27.help.text
+msgctxt "03120308.xhp#par_id3153144.27.help.text"
+msgid "RSet sVar = sExpr"
+msgstr "RSet sVar = sExpr"
+
+#: 03120308.xhp#par_id3150116.28.help.text
+msgctxt "03120308.xhp#par_id3150116.28.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120308.xhp#par_id3154491.30.help.text
+msgctxt "03120308.xhp#par_id3154491.30.help.text"
+msgid "sVar = String(40,\"*\")"
+msgstr "sVar = String(40,\"*\")"
+
+#: 03120308.xhp#par_id3149412.31.help.text
+msgctxt "03120308.xhp#par_id3149412.31.help.text"
+msgid "sExpr = \"SBX\""
+msgstr "sExpr = \"SBX\""
+
+#: 03120308.xhp#par_id3145801.32.help.text
+msgid "REM Left-align \"SBX\" in a 40-character string"
+msgstr "REM Left-align \"SBX\" in a 40-character string"
+
+#: 03120308.xhp#par_id3145646.33.help.text
+msgctxt "03120308.xhp#par_id3145646.33.help.text"
+msgid "LSet sVar = sExpr"
+msgstr "LSet sVar = sExpr"
+
+#: 03120308.xhp#par_id3154511.34.help.text
+msgctxt "03120308.xhp#par_id3154511.34.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120308.xhp#par_id3153839.36.help.text
+msgctxt "03120308.xhp#par_id3153839.36.help.text"
+msgid "sVar = String(5,\"*\")"
+msgstr "sVar = String(5,\"*\")"
+
+#: 03120308.xhp#par_id3149122.37.help.text
+msgctxt "03120308.xhp#par_id3149122.37.help.text"
+msgid "sExpr = \"123456789\""
+msgstr "sExpr = \"123456789\""
+
+#: 03120308.xhp#par_id3150330.38.help.text
+msgctxt "03120308.xhp#par_id3150330.38.help.text"
+msgid "LSet sVar = sExpr"
+msgstr "LSet sVar = sExpr"
+
+#: 03120308.xhp#par_id3154480.39.help.text
+msgctxt "03120308.xhp#par_id3154480.39.help.text"
+msgid "Print \">\"; sVar; \"<\""
+msgstr "Print \">\"; sVar; \"<\""
+
+#: 03120308.xhp#par_id3148914.40.help.text
+msgctxt "03120308.xhp#par_id3148914.40.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020405.xhp#tit.help.text
+msgid "FileAttr-Function [Runtime]"
+msgstr "FileAttr-Function [Runtime]"
+
+#: 03020405.xhp#bm_id3153380.help.text
+msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr "<bookmark_value>FileAttr function</bookmark_value>"
+
+#: 03020405.xhp#hd_id3153380.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
+
+#: 03020405.xhp#par_id3154366.2.help.text
+msgid "Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle)."
+msgstr "Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle)."
+
+#: 03020405.xhp#par_id3153364.3.help.text
+msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
+msgstr "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
+
+#: 03020405.xhp#par_id3163713.4.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+
+#: 03020405.xhp#hd_id3151116.5.help.text
+msgctxt "03020405.xhp#hd_id3151116.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020405.xhp#par_id3154012.6.help.text
+msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
+
+#: 03020405.xhp#hd_id3147349.7.help.text
+msgctxt "03020405.xhp#hd_id3147349.7.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020405.xhp#par_id3146974.8.help.text
+msgctxt "03020405.xhp#par_id3146974.8.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03020405.xhp#hd_id3153728.9.help.text
+msgctxt "03020405.xhp#hd_id3153728.9.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020405.xhp#par_id3151074.10.help.text
+msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
+msgstr "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
+
+#: 03020405.xhp#par_id3144766.11.help.text
+msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
+msgstr "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
+
+#: 03020405.xhp#par_id3147396.12.help.text
+msgid "1: The FileAttr-Function indicates the access mode of the file."
+msgstr "1: The FileAttr-Function indicates the access mode of the file."
+
+#: 03020405.xhp#par_id3149959.13.help.text
+msgid "2: The FileAttr-Function returns the file access number of the operating system."
+msgstr "2: The FileAttr-Function returns the file access number of the operating system."
+
+#: 03020405.xhp#par_id3154018.14.help.text
+msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
+msgstr "If you specify a parameter attribute with a value of 1, the following return values apply:"
+
+#: 03020405.xhp#par_id3149124.15.help.text
+msgid "1 - INPUT (file open for input)"
+msgstr "1 - INPUT (file open for input)"
+
+#: 03020405.xhp#par_id3156275.16.help.text
+msgid "2 - OUTPUT (file open for output)"
+msgstr "2 - OUTPUT (file open for output)"
+
+#: 03020405.xhp#par_id3155066.17.help.text
+msgid "4 - RANDOM (file open for random access)"
+msgstr "4 - RANDOM (file open for random access)"
+
+#: 03020405.xhp#par_id3148406.18.help.text
+msgid "8 - APPEND (file open for appending)"
+msgstr "8 - APPEND (file open for appending)"
+
+#: 03020405.xhp#par_id3154757.19.help.text
+msgid "32 - BINARY (file open in binary mode)."
+msgstr "32 - BINARY (file open in binary mode)."
+
+#: 03020405.xhp#hd_id3147339.20.help.text
+msgctxt "03020405.xhp#hd_id3147339.20.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020405.xhp#par_id3155959.21.help.text
+msgid "Sub ExampleFileAttr"
+msgstr "Sub ExampleFileAttr"
+
+#: 03020405.xhp#par_id3145147.22.help.text
+msgctxt "03020405.xhp#par_id3145147.22.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020405.xhp#par_id3153966.23.help.text
+msgctxt "03020405.xhp#par_id3153966.23.help.text"
+msgid "Dim sLine As String"
+msgstr "Dim sLine As String"
+
+#: 03020405.xhp#par_id3155336.24.help.text
+msgctxt "03020405.xhp#par_id3155336.24.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020405.xhp#par_id3163807.25.help.text
+msgctxt "03020405.xhp#par_id3163807.25.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020405.xhp#par_id3154021.27.help.text
+msgctxt "03020405.xhp#par_id3154021.27.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020405.xhp#par_id3153786.28.help.text
+msgctxt "03020405.xhp#par_id3153786.28.help.text"
+msgid "Open aFile For Output As #iNumber"
+msgstr "Open aFile For Output As #iNumber"
+
+#: 03020405.xhp#par_id3155607.29.help.text
+msgctxt "03020405.xhp#par_id3155607.29.help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"This is a line of text\""
+
+#: 03020405.xhp#par_id3150361.30.help.text
+msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+
+#: 03020405.xhp#par_id3149817.31.help.text
+msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+
+#: 03020405.xhp#par_id3155115.32.help.text
+msgctxt "03020405.xhp#par_id3155115.32.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020405.xhp#par_id3147130.33.help.text
+msgctxt "03020405.xhp#par_id3147130.33.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 01030100.xhp#tit.help.text
+msgid "IDE Overview"
+msgstr "IDE Overview"
+
+#: 01030100.xhp#hd_id3147291.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+msgstr "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+
+#: 01030100.xhp#par_id3156344.3.help.text
+msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
+msgstr "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
+
+#: 01030100.xhp#par_id3151210.4.help.text
+msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
+msgstr "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
+
+#: 01030100.xhp#par_id3154686.5.help.text
+msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
+msgstr "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
+
+#: 01030100.xhp#par_id3145787.8.help.text
+msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
+msgstr "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
+
+#: 01030100.xhp#par_id3147434.6.help.text
+msgctxt "01030100.xhp#par_id3147434.6.help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+
+#: 03010201.xhp#tit.help.text
+msgid "InputBox Function [Runtime]"
+msgstr "InputBox Function [Runtime]"
+
+#: 03010201.xhp#bm_id3148932.help.text
+msgid "<bookmark_value>InputBox function</bookmark_value>"
+msgstr "<bookmark_value>InputBox function</bookmark_value>"
+
+#: 03010201.xhp#hd_id3148932.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
+
+#: 03010201.xhp#par_id3151262.2.help.text
+msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
+msgstr "Displays a prompt in a dialogue at which the user can input text. The input is assigned to a variable."
+
+#: 03010201.xhp#par_id3151100.3.help.text
+msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
+msgstr "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialogue. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialogue with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
+
+#: 03010201.xhp#hd_id3152347.4.help.text
+msgctxt "03010201.xhp#hd_id3152347.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010201.xhp#par_id3159201.5.help.text
+msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]]) "
+msgstr "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]]) "
+
+#: 03010201.xhp#hd_id3150713.6.help.text
+msgctxt "03010201.xhp#hd_id3150713.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03010201.xhp#par_id3145090.7.help.text
+msgctxt "03010201.xhp#par_id3145090.7.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03010201.xhp#hd_id3149346.8.help.text
+msgctxt "03010201.xhp#hd_id3149346.8.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010201.xhp#par_id3153311.9.help.text
+msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
+msgstr "<emph>Msg</emph>: String expression displayed as the message in the dialogue box."
+
+#: 03010201.xhp#par_id3145315.10.help.text
+msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
+msgstr "<emph>Title</emph>: String expression displayed in the title bar of the dialogue box."
+
+#: 03010201.xhp#par_id3154307.11.help.text
+msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
+msgstr "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
+
+#: 03010201.xhp#par_id3147573.12.help.text
+msgid "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
+msgstr "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialogue. The position is an absolute coordinate and does not refer to the window of the office application."
+
+#: 03010201.xhp#par_id3156024.13.help.text
+msgid "<emph>y_pos</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
+msgstr "<emph>y_pos</emph>: Integer expression that specifies the vertical position of the dialogue. The position is an absolute coordinate and does not refer to the window of the office application."
+
+#: 03010201.xhp#par_id3153897.14.help.text
+msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+msgstr "If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialogue is centred on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+
+#: 03010201.xhp#hd_id3149456.15.help.text
+msgctxt "03010201.xhp#hd_id3149456.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010201.xhp#par_id3153379.16.help.text
+msgid "Sub ExampleInputBox"
+msgstr "Sub ExampleInputBox"
+
+#: 03010201.xhp#par_id3149656.17.help.text
+msgctxt "03010201.xhp#par_id3149656.17.help.text"
+msgid "Dim sText As String"
+msgstr "Dim sText As String"
+
+#: 03010201.xhp#par_id3154367.18.help.text
+msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgstr "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+
+#: 03010201.xhp#par_id3151042.19.help.text
+msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+msgstr "MsgBox ( sText , 64, \"Confirmation of phrase\")"
+
+#: 03010201.xhp#par_id3150768.20.help.text
+msgctxt "03010201.xhp#par_id3150768.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03070400.xhp#tit.help.text
+msgid "\"/\" Operator [Runtime]"
+msgstr "\"/\" Operator [Runtime]"
+
+#: 03070400.xhp#bm_id3150669.help.text
+msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
+
+#: 03070400.xhp#hd_id3150669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
+
+#: 03070400.xhp#par_id3149670.2.help.text
+msgid "Divides two values."
+msgstr "Divides two values."
+
+#: 03070400.xhp#hd_id3148946.3.help.text
+msgctxt "03070400.xhp#hd_id3148946.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03070400.xhp#par_id3153360.4.help.text
+msgid "Result = Expression1 / Expression2 "
+msgstr "Result = Expression1 / Expression2 "
+
+#: 03070400.xhp#hd_id3150359.5.help.text
+msgctxt "03070400.xhp#hd_id3150359.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03070400.xhp#par_id3154141.6.help.text
+msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
+msgstr "<emph>Result:</emph> Any numerical value that contains the result of the division."
+
+#: 03070400.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+msgstr "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+
+#: 03070400.xhp#hd_id3154684.8.help.text
+msgctxt "03070400.xhp#hd_id3154684.8.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03070400.xhp#par_id3145786.9.help.text
+msgid "Sub ExampleDivision1"
+msgstr "Sub ExampleDivision1"
+
+#: 03070400.xhp#par_id3153768.10.help.text
+msgid "Print 5 / 5"
+msgstr "Print 5 / 5"
+
+#: 03070400.xhp#par_id3161832.11.help.text
+msgctxt "03070400.xhp#par_id3161832.11.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03070400.xhp#par_id3149484.13.help.text
+msgid "Sub ExampleDivision2"
+msgstr "Sub ExampleDivision2"
+
+#: 03070400.xhp#par_id3145365.14.help.text
+msgctxt "03070400.xhp#par_id3145365.14.help.text"
+msgid "Dim iValue1 as Integer"
+msgstr "Dim iValue1 as Integer"
+
+#: 03070400.xhp#par_id3146119.15.help.text
+msgctxt "03070400.xhp#par_id3146119.15.help.text"
+msgid "Dim iValue2 as Integer"
+msgstr "Dim iValue2 as Integer"
+
+#: 03070400.xhp#par_id3150011.16.help.text
+msgctxt "03070400.xhp#par_id3150011.16.help.text"
+msgid "iValue1 = 5"
+msgstr "iValue1 = 5"
+
+#: 03070400.xhp#par_id3153726.17.help.text
+msgctxt "03070400.xhp#par_id3153726.17.help.text"
+msgid "iValue2 = 10"
+msgstr "iValue2 = 10"
+
+#: 03070400.xhp#par_id3151117.18.help.text
+msgid "Print iValue1 / iValue2"
+msgstr "Print iValue1 / iValue2"
+
+#: 03070400.xhp#par_id3146975.19.help.text
+msgctxt "03070400.xhp#par_id3146975.19.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03060300.xhp#tit.help.text
+msgid "Imp-Operator [Runtime]"
+msgstr "Imp-Operator [Runtime]"
+
+#: 03060300.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
+msgstr "<bookmark_value>Imp operator (logical)</bookmark_value>"
+
+#: 03060300.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+
+#: 03060300.xhp#par_id3148947.2.help.text
+msgid "Performs a logical implication on two expressions."
+msgstr "Performs a logical implication on two expressions."
+
+#: 03060300.xhp#hd_id3148664.3.help.text
+msgctxt "03060300.xhp#hd_id3148664.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03060300.xhp#par_id3149656.4.help.text
+msgid "Result = Expression1 Imp Expression2"
+msgstr "Result = Expression1 Imp Expression2"
+
+#: 03060300.xhp#hd_id3151212.5.help.text
+msgctxt "03060300.xhp#hd_id3151212.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03060300.xhp#par_id3154910.6.help.text
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+msgstr "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+
+#: 03060300.xhp#par_id3156281.7.help.text
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
+msgstr "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
+
+#: 03060300.xhp#par_id3150440.8.help.text
+msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
+msgstr "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
+
+#: 03060300.xhp#par_id3163710.9.help.text
+msgid "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
+msgstr "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
+
+#: 03060300.xhp#hd_id3147318.10.help.text
+msgctxt "03060300.xhp#hd_id3147318.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03060300.xhp#par_id3155854.11.help.text
+msgid "Sub ExampleImp"
+msgstr "Sub ExampleImp"
+
+#: 03060300.xhp#par_id3145272.12.help.text
+msgctxt "03060300.xhp#par_id3145272.12.help.text"
+msgid "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+msgstr "Dim A as Variant, B as Variant, C as Variant, D as Variant"
+
+#: 03060300.xhp#par_id3159156.13.help.text
+msgctxt "03060300.xhp#par_id3159156.13.help.text"
+msgid "Dim vOut as Variant"
+msgstr "Dim vOut as Variant"
+
+#: 03060300.xhp#par_id3151116.14.help.text
+msgctxt "03060300.xhp#par_id3151116.14.help.text"
+msgid "A = 10: B = 8: C = 6: D = Null"
+msgstr "A = 10: B = 8: C = 6: D = Null"
+
+#: 03060300.xhp#par_id3145750.15.help.text
+msgid "vOut = A > B Imp B > C REM returns -1"
+msgstr "vOut = A > B Imp B > C REM returns -1"
+
+#: 03060300.xhp#par_id3156441.16.help.text
+msgid "vOut = B > A Imp B > C REM returns -1"
+msgstr "vOut = B > A Imp B > C REM returns -1"
+
+#: 03060300.xhp#par_id3152596.17.help.text
+msgid "vOut = A > B Imp B > D REM returns 0"
+msgstr "vOut = A > B Imp B > D REM returns 0"
+
+#: 03060300.xhp#par_id3154942.18.help.text
+msgid "vOut = (B > D Imp B > A) REM returns -1"
+msgstr "vOut = (B > D Imp B > A) REM returns -1"
+
+#: 03060300.xhp#par_id3154492.19.help.text
+msgid "vOut = B Imp A REM returns -1"
+msgstr "vOut = B Imp A REM returns -1"
+
+#: 03060300.xhp#par_id3147394.20.help.text
+msgctxt "03060300.xhp#par_id3147394.20.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 00000003.xhp#tit.help.text
+msgctxt "00000003.xhp#tit.help.text"
+msgid "Information"
+msgstr "Information"
+
+#: 00000003.xhp#hd_id3148550.1.help.text
+msgctxt "00000003.xhp#hd_id3148550.1.help.text"
+msgid "Information"
+msgstr "Information"
+
+#: 00000003.xhp#par_id3153381.102.help.text
+msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgstr "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+
+#: 00000003.xhp#par_id3150870.103.help.text
+msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
+msgstr "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
+
+#: 00000003.xhp#par_id3156424.2.help.text
+msgid "The color values of the 16 basic colors are as follows:"
+msgstr "The colour values of the 16 basic colours are as follows:"
+
+#: 00000003.xhp#par_id3153091.3.help.text
+msgid "<emph>Color Value</emph>"
+msgstr "<emph>Colour Value</emph>"
+
+#: 00000003.xhp#par_id3154319.4.help.text
+msgid "<emph>Color Name</emph>"
+msgstr "<emph>Colour Name</emph>"
+
+#: 00000003.xhp#par_id3151112.5.help.text
+msgctxt "00000003.xhp#par_id3151112.5.help.text"
+msgid "0"
+msgstr "0"
+
+#: 00000003.xhp#par_id3155854.6.help.text
+msgid "Black"
+msgstr "Black"
+
+#: 00000003.xhp#par_id3154942.7.help.text
+msgid "128"
+msgstr "128"
+
+#: 00000003.xhp#par_id3154731.8.help.text
+msgid "Blue"
+msgstr "Blue"
+
+#: 00000003.xhp#par_id3145645.9.help.text
+msgid "32768"
+msgstr "32768"
+
+#: 00000003.xhp#par_id3149400.10.help.text
+msgid "Green"
+msgstr "Green"
+
+#: 00000003.xhp#par_id3150753.11.help.text
+msgid "32896"
+msgstr "32896"
+
+#: 00000003.xhp#par_id3153765.12.help.text
+msgid "Cyan"
+msgstr "Cyan"
+
+#: 00000003.xhp#par_id3154756.13.help.text
+msgid "8388608"
+msgstr "8388608"
+
+#: 00000003.xhp#par_id3159266.14.help.text
+msgid "Red"
+msgstr "Red"
+
+#: 00000003.xhp#par_id3163807.15.help.text
+msgid "8388736"
+msgstr "8388736"
+
+#: 00000003.xhp#par_id3145150.16.help.text
+msgid "Magenta"
+msgstr "Magenta"
+
+#: 00000003.xhp#par_id3147002.17.help.text
+msgid "8421376"
+msgstr "8421376"
+
+#: 00000003.xhp#par_id3152778.18.help.text
+msgid "Yellow"
+msgstr "Yellow"
+
+#: 00000003.xhp#par_id3150088.19.help.text
+msgid "8421504"
+msgstr "8421504"
+
+#: 00000003.xhp#par_id3159239.20.help.text
+msgid "White"
+msgstr "White"
+
+#: 00000003.xhp#par_id3150206.21.help.text
+msgid "12632256"
+msgstr "12632256"
+
+#: 00000003.xhp#par_id3149817.22.help.text
+msgid "Gray"
+msgstr "Grey"
+
+#: 00000003.xhp#par_id3150363.23.help.text
+msgid "255"
+msgstr "255"
+
+#: 00000003.xhp#par_id3154576.24.help.text
+msgid "Light blue"
+msgstr "Light blue"
+
+#: 00000003.xhp#par_id3150367.25.help.text
+msgid "65280"
+msgstr "65280"
+
+#: 00000003.xhp#par_id3150202.26.help.text
+msgid "Light green"
+msgstr "Light green"
+
+#: 00000003.xhp#par_id3154487.27.help.text
+msgid "65535"
+msgstr "65535"
+
+#: 00000003.xhp#par_id3151332.28.help.text
+msgid "Light cyan"
+msgstr "Light cyan"
+
+#: 00000003.xhp#par_id3148702.29.help.text
+msgid "16711680"
+msgstr "16711680"
+
+#: 00000003.xhp#par_id3153067.30.help.text
+msgid "Light red"
+msgstr "Light red"
+
+#: 00000003.xhp#par_id3153912.31.help.text
+msgid "16711935"
+msgstr "16711935"
+
+#: 00000003.xhp#par_id3159097.32.help.text
+msgid "Light magenta"
+msgstr "Light magenta"
+
+#: 00000003.xhp#par_id3155266.33.help.text
+msgid "16776960"
+msgstr "16776960"
+
+#: 00000003.xhp#par_id3157978.34.help.text
+msgid "Light yellow"
+msgstr "Light yellow"
+
+#: 00000003.xhp#par_id3153286.35.help.text
+msgid "16777215"
+msgstr "16777215"
+
+#: 00000003.xhp#par_id3151302.36.help.text
+msgid "Transparent white"
+msgstr "Transparent white"
+
+#: 00000003.xhp#hd_id3152869.37.help.text
+msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id315509599.help.text
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3155095.38.help.text
+msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3149126.39.help.text
+msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3153976.40.help.text
+msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150891.41.help.text
+msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3159227.42.help.text
+msgid "<variable id=\"err6\">6 Overflow</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154649.43.help.text
+msgid "<variable id=\"err7\">7 Not enough memory</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150050.44.help.text
+msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3148900.45.help.text
+msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3153806.46.help.text
+msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146963.47.help.text
+msgid "<variable id=\"err11\">11 Division by zero</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3153013.48.help.text
+msgid "<variable id=\"err12\">12 Variable not defined</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3155593.49.help.text
+msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3151197.50.help.text
+msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154710.51.help.text
+msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3147504.52.help.text
+msgid "<variable id=\"err20\">20 Resume without error</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3145319.53.help.text
+msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146110.54.help.text
+msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3147246.55.help.text
+msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146101.56.help.text
+msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3153957.57.help.text
+msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154404.58.help.text
+msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3151338.59.help.text
+msgid "<variable id=\"err53\">53 File not found</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3147298.60.help.text
+msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3148747.61.help.text
+msgid "<variable id=\"err55\">55 File already open</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3145233.62.help.text
+msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3156399.63.help.text
+msgid "<variable id=\"err58\">58 File already exists</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3149324.64.help.text
+msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3147409.65.help.text
+msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3149146.66.help.text
+msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150456.67.help.text
+msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146883.68.help.text
+msgid "<variable id=\"err67\">67 Too many files</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146818.69.help.text
+msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3145225.70.help.text
+msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150372.71.help.text
+msgid "<variable id=\"err71\">71 Disk not ready</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3148894.72.help.text
+msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3152981.73.help.text
+msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3149355.74.help.text
+msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150477.75.help.text
+msgid "<variable id=\"err76\">76 Path not found</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154678.76.help.text
+msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3149890.77.help.text
+msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146942.78.help.text
+msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469429.help.text
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469428.help.text
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469427.help.text
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469426.help.text
+msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469425.help.text
+msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469424.help.text
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469423.help.text
+msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469422.help.text
+msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469421.help.text
+msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469420.help.text
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469419.help.text
+msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469418.help.text
+msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469417.help.text
+msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469416.help.text
+msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469415.help.text
+msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469414.help.text
+msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469413.help.text
+msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469412.help.text
+msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469411.help.text
+msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31469410.help.text
+msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150028.79.help.text
+msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3148434.80.help.text
+msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3143219.81.help.text
+msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3144744.82.help.text
+msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3147420.83.help.text
+msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3147472.84.help.text
+msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3148583.85.help.text
+msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3153329.86.help.text
+msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3148738.87.help.text
+msgid "<variable id=\"err424\">424 Object required</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3159084.88.help.text
+msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146806.89.help.text
+msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146130.90.help.text
+msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154374.91.help.text
+msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3149685.92.help.text
+msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150282.93.help.text
+msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3150142.94.help.text
+msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3152771.95.help.text
+msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3145145.96.help.text
+msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154399.97.help.text
+msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3146137.98.help.text
+msgid "<variable id=\"err451\">451 Object is not a list</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3149507.99.help.text
+msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3154566.100.help.text
+msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id3145595.101.help.text
+msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455951.help.text
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455952.help.text
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455953.help.text
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455954.help.text
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455955.help.text
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455956.help.text
+msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455957.help.text
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455958.help.text
+msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455959.help.text
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455960.help.text
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455961.help.text
+msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455962.help.text
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455963.help.text
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455964.help.text
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455965.help.text
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455966.help.text
+msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455967.help.text
+msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455968.help.text
+msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455969.help.text
+msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455970.help.text
+msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455971.help.text
+msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455972.help.text
+msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455973.help.text
+msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455974.help.text
+msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455975.help.text
+msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455976.help.text
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455977.help.text
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455978.help.text
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455979.help.text
+msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455980.help.text
+msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455981.help.text
+msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455982.help.text
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455983.help.text
+msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455984.help.text
+msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455985.help.text
+msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgstr ""
+
+#: 00000003.xhp#par_id31455986.help.text
+msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgstr ""
+
+#: 05060700.xhp#tit.help.text
+msgid "Macro"
+msgstr "Macro"
+
+#: 05060700.xhp#bm_id3153894.help.text
+msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgstr "<bookmark_value>events;linked to objects</bookmark_value>"
+
+#: 05060700.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+
+#: 05060700.xhp#par_id3153748.2.help.text
+msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
+msgstr "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialogue, or in the <emph>Assign Macro</emph> dialogue."
+
+#: 05060700.xhp#hd_id3150503.3.help.text
+msgctxt "05060700.xhp#hd_id3150503.3.help.text"
+msgid "Event"
+msgstr "Event"
+
+#: 05060700.xhp#par_id3149763.4.help.text
+msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
+
+#: 05060700.xhp#par_id3150670.23.help.text
+msgid "The following table describes the macros and the events that can by linked to objects in your document:"
+msgstr "The following table describes the macros and the events that can by linked to objects in your document:"
+
+#: 05060700.xhp#par_id3153360.24.help.text
+msgctxt "05060700.xhp#par_id3153360.24.help.text"
+msgid "Event"
+msgstr "Event"
+
+#: 05060700.xhp#par_id3154365.25.help.text
+msgid "Event trigger"
+msgstr "Event trigger"
+
+#: 05060700.xhp#par_id3159149.26.help.text
+msgid "OLE object"
+msgstr "OLE object"
+
+#: 05060700.xhp#par_id3148451.27.help.text
+msgctxt "05060700.xhp#par_id3148451.27.help.text"
+msgid "Graphics"
+msgstr "Graphics"
+
+#: 05060700.xhp#par_id3125863.28.help.text
+msgid "Frame"
+msgstr "Frame"
+
+#: 05060700.xhp#par_id3154216.29.help.text
+msgid "AutoText"
+msgstr "AutoText"
+
+#: 05060700.xhp#par_id3145785.30.help.text
+msgid "ImageMap area"
+msgstr "ImageMap area"
+
+#: 05060700.xhp#par_id3153138.31.help.text
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#: 05060700.xhp#par_id3155306.32.help.text
+msgid "Click object"
+msgstr "Click object"
+
+#: 05060700.xhp#par_id3152460.33.help.text
+msgid "Object is selected."
+msgstr "Object is selected."
+
+#: 05060700.xhp#par_id3147348.34.help.text
+msgctxt "05060700.xhp#par_id3147348.34.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3147426.35.help.text
+msgctxt "05060700.xhp#par_id3147426.35.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3153951.36.help.text
+msgctxt "05060700.xhp#par_id3153951.36.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150116.37.help.text
+msgid "Mouse over object"
+msgstr "Mouse over object"
+
+#: 05060700.xhp#par_id3145253.38.help.text
+msgid "Mouse moves over the object."
+msgstr "Mouse moves over the object."
+
+#: 05060700.xhp#par_id3144765.39.help.text
+msgctxt "05060700.xhp#par_id3144765.39.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3153418.40.help.text
+msgctxt "05060700.xhp#par_id3153418.40.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3153948.41.help.text
+msgctxt "05060700.xhp#par_id3153948.41.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3145652.42.help.text
+msgctxt "05060700.xhp#par_id3145652.42.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3155066.43.help.text
+msgctxt "05060700.xhp#par_id3155066.43.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3155446.44.help.text
+msgid "Trigger Hyperlink"
+msgstr "Trigger Hyperlink"
+
+#: 05060700.xhp#par_id3154756.45.help.text
+msgid "Hyperlink assigned to the object is clicked."
+msgstr "Hyperlink assigned to the object is clicked."
+
+#: 05060700.xhp#par_id3150042.46.help.text
+msgctxt "05060700.xhp#par_id3150042.46.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3151252.47.help.text
+msgctxt "05060700.xhp#par_id3151252.47.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3147344.48.help.text
+msgctxt "05060700.xhp#par_id3147344.48.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3146920.49.help.text
+msgctxt "05060700.xhp#par_id3146920.49.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3159333.50.help.text
+msgid "Mouse leaves object "
+msgstr "Mouse leaves object "
+
+#: 05060700.xhp#par_id3147003.51.help.text
+msgid "Mouse moves off of the object."
+msgstr "Mouse moves off of the object."
+
+#: 05060700.xhp#par_id3151278.52.help.text
+msgctxt "05060700.xhp#par_id3151278.52.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3145257.53.help.text
+msgctxt "05060700.xhp#par_id3145257.53.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3154122.54.help.text
+msgctxt "05060700.xhp#par_id3154122.54.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3156139.55.help.text
+msgctxt "05060700.xhp#par_id3156139.55.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3149036.56.help.text
+msgctxt "05060700.xhp#par_id3149036.56.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150785.57.help.text
+msgid "Graphics load successful "
+msgstr "Graphics load successful "
+
+#: 05060700.xhp#par_id3153705.58.help.text
+msgid "Graphics are loaded successfully."
+msgstr "Graphics are loaded successfully."
+
+#: 05060700.xhp#par_id3150343.59.help.text
+msgctxt "05060700.xhp#par_id3150343.59.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150202.60.help.text
+msgid "Graphics load terminated"
+msgstr "Graphics load terminated"
+
+#: 05060700.xhp#par_id3145584.61.help.text
+msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgstr "Loading of graphics is stopped by the user (for example, when downloading the page)."
+
+#: 05060700.xhp#par_id3154259.62.help.text
+msgctxt "05060700.xhp#par_id3154259.62.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3155089.63.help.text
+msgid "Graphics load faulty"
+msgstr "Graphics load faulty"
+
+#: 05060700.xhp#par_id3153307.64.help.text
+msgid "Graphics not successfully loaded, for example, if a graphic was not found."
+msgstr "Graphics not successfully loaded, for example, if a graphic was not found."
+
+#: 05060700.xhp#par_id3148840.65.help.text
+msgctxt "05060700.xhp#par_id3148840.65.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3154533.66.help.text
+msgid "Input of alpha characters "
+msgstr "Input of alpha characters "
+
+#: 05060700.xhp#par_id3155266.67.help.text
+msgid "Text is entered from the keyboard."
+msgstr "Text is entered from the keyboard."
+
+#: 05060700.xhp#par_id3144768.68.help.text
+msgctxt "05060700.xhp#par_id3144768.68.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3145659.69.help.text
+msgid "Input of non-alpha characters "
+msgstr "Input of non-alpha characters "
+
+#: 05060700.xhp#par_id3151131.70.help.text
+msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+msgstr "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+
+#: 05060700.xhp#par_id3159206.71.help.text
+msgctxt "05060700.xhp#par_id3159206.71.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150405.72.help.text
+msgid "Resize frame"
+msgstr "Resize frame"
+
+#: 05060700.xhp#par_id3153972.73.help.text
+msgid "Frame is resized with the mouse."
+msgstr "Frame is resized with the mouse."
+
+#: 05060700.xhp#par_id3152873.74.help.text
+msgctxt "05060700.xhp#par_id3152873.74.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3148900.75.help.text
+msgid "Move frame"
+msgstr "Move frame"
+
+#: 05060700.xhp#par_id3154767.76.help.text
+msgid "Frame is moved with the mouse."
+msgstr "Frame is moved with the mouse."
+
+#: 05060700.xhp#par_id3155914.77.help.text
+msgctxt "05060700.xhp#par_id3155914.77.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3153010.78.help.text
+msgid "Before inserting AutoText"
+msgstr "Before inserting AutoText"
+
+#: 05060700.xhp#par_id3147515.79.help.text
+msgid "Before a text block is inserted."
+msgstr "Before a text block is inserted."
+
+#: 05060700.xhp#par_id3151191.80.help.text
+msgctxt "05060700.xhp#par_id3151191.80.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#par_id3150956.81.help.text
+msgid "After inserting AutoText"
+msgstr "After inserting AutoText"
+
+#: 05060700.xhp#par_id3147502.82.help.text
+msgid "After a text block is inserted."
+msgstr "After a text block is inserted."
+
+#: 05060700.xhp#par_id3147555.83.help.text
+msgctxt "05060700.xhp#par_id3147555.83.help.text"
+msgid "x"
+msgstr "x"
+
+#: 05060700.xhp#hd_id3153958.5.help.text
+msgid "Macros"
+msgstr "Macros"
+
+#: 05060700.xhp#par_id3150432.6.help.text
+msgid "Choose the macro that you want to execute when the selected event occurs."
+msgstr "Choose the macro that you want to execute when the selected event occurs."
+
+#: 05060700.xhp#par_id3147296.84.help.text
+msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
+msgstr "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
+
+#: 05060700.xhp#hd_id3155587.7.help.text
+msgid "Category"
+msgstr "Category"
+
+#: 05060700.xhp#par_id3154068.8.help.text
+msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
+
+#: 05060700.xhp#hd_id3149744.9.help.text
+msgid "Macro name"
+msgstr "Macro name"
+
+#: 05060700.xhp#par_id3151391.10.help.text
+msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
+
+#: 05060700.xhp#hd_id3159260.11.help.text
+msgid "Assign"
+msgstr "Assign"
+
+#: 05060700.xhp#par_id3147406.12.help.text
+msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
+msgstr "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
+
+#: 05060700.xhp#hd_id3150533.15.help.text
+msgid "Remove"
+msgstr "Remove"
+
+#: 05060700.xhp#par_id3166456.16.help.text
+msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
+msgstr "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
+
+#: 05060700.xhp#hd_id3159126.85.help.text
+msgid "Macro selection"
+msgstr "Macro selection"
+
+#: 05060700.xhp#par_id3149149.86.help.text
+msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
+
+#: 03101110.xhp#tit.help.text
+msgid "DefCur Statement [Runtime]"
+msgstr "DefCur Statement [Runtime]"
+
+#: 03101110.xhp#bm_id9555345.help.text
+msgid "<bookmark_value>DefCur statement</bookmark_value>"
+msgstr "<bookmark_value>DefCur statement</bookmark_value>"
+
+#: 03101110.xhp#par_idN1057D.help.text
+msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
+
+#: 03101110.xhp#par_idN1058D.help.text
+msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
+msgstr "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
+
+#: 03101110.xhp#par_idN10590.help.text
+msgctxt "03101110.xhp#par_idN10590.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101110.xhp#par_idN10594.help.text
+msgctxt "03101110.xhp#par_idN10594.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101110.xhp#par_idN10597.help.text
+msgctxt "03101110.xhp#par_idN10597.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101110.xhp#par_idN1059B.help.text
+msgctxt "03101110.xhp#par_idN1059B.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+
+#: 03101110.xhp#par_idN105A2.help.text
+msgctxt "03101110.xhp#par_idN105A2.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101110.xhp#par_idN105A9.help.text
+msgctxt "03101110.xhp#par_idN105A9.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Keyword:</emph> Default variable type"
+
+#: 03101110.xhp#par_idN105B0.help.text
+msgid "<emph>DefCur:</emph> Currency"
+msgstr "<emph>DefCur:</emph> Currency"
+
+#: 03101110.xhp#par_idN105B7.help.text
+msgctxt "03101110.xhp#par_idN105B7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101110.xhp#par_idN105BB.help.text
+msgctxt "03101110.xhp#par_idN105BB.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03101110.xhp#par_idN105BE.help.text
+msgctxt "03101110.xhp#par_idN105BE.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101110.xhp#par_idN105C1.help.text
+msgctxt "03101110.xhp#par_idN105C1.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101110.xhp#par_idN105C4.help.text
+msgctxt "03101110.xhp#par_idN105C4.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101110.xhp#par_idN105C7.help.text
+msgctxt "03101110.xhp#par_idN105C7.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101110.xhp#par_idN105CA.help.text
+msgctxt "03101110.xhp#par_idN105CA.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101110.xhp#par_idN105CD.help.text
+msgctxt "03101110.xhp#par_idN105CD.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101110.xhp#par_idN105D0.help.text
+msgctxt "03101110.xhp#par_idN105D0.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101110.xhp#par_idN105D3.help.text
+msgid "DefCur c"
+msgstr "DefCur c"
+
+#: 03101110.xhp#par_idN105D6.help.text
+msgid "Sub ExampleDefCur"
+msgstr "Sub ExampleDefCur"
+
+#: 03101110.xhp#par_idN105D9.help.text
+msgid "cCur=Currency REM cCur is an implicit currency variable"
+msgstr "cCur=Currency REM cCur is an implicit currency variable"
+
+#: 03101110.xhp#par_idN105DC.help.text
+msgctxt "03101110.xhp#par_idN105DC.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03090408.xhp#tit.help.text
+msgid "Stop Statement [Runtime]"
+msgstr "Stop Statement [Runtime]"
+
+#: 03090408.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>Stop statement</bookmark_value>"
+msgstr "<bookmark_value>Stop statement</bookmark_value>"
+
+#: 03090408.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
+
+#: 03090408.xhp#par_id3154142.2.help.text
+msgid "Stops the execution of the Basic program."
+msgstr "Stops the execution of the Basic program."
+
+#: 03090408.xhp#hd_id3153126.3.help.text
+msgctxt "03090408.xhp#hd_id3153126.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090408.xhp#par_id3156023.4.help.text
+msgctxt "03090408.xhp#par_id3156023.4.help.text"
+msgid "Stop"
+msgstr "Stop"
+
+#: 03090408.xhp#hd_id3156344.5.help.text
+msgctxt "03090408.xhp#hd_id3156344.5.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090408.xhp#par_id3148552.6.help.text
+msgid "Sub ExampleStop"
+msgstr "Sub ExampleStop"
+
+#: 03090408.xhp#par_id3153897.7.help.text
+msgctxt "03090408.xhp#par_id3153897.7.help.text"
+msgid "Dim iVar As Single"
+msgstr "Dim iVar As Single"
+
+#: 03090408.xhp#par_id3153380.8.help.text
+msgctxt "03090408.xhp#par_id3153380.8.help.text"
+msgid "iVar = 36"
+msgstr "iVar = 36"
+
+#: 03090408.xhp#par_id3150400.9.help.text
+msgctxt "03090408.xhp#par_id3150400.9.help.text"
+msgid "Stop"
+msgstr "Stop"
+
+#: 03090408.xhp#par_id3148799.10.help.text
+msgctxt "03090408.xhp#par_id3148799.10.help.text"
+msgid "Msgbox Sqr(iVar)"
+msgstr "Msgbox Sqr(iVar)"
+
+#: 03090408.xhp#par_id3151043.11.help.text
+msgctxt "03090408.xhp#par_id3151043.11.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03101100.xhp#tit.help.text
+msgid "DefBool Statement [Runtime]"
+msgstr "DefBool Statement [Runtime]"
+
+#: 03101100.xhp#bm_id3145759.help.text
+msgid "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr "<bookmark_value>DefBool statement</bookmark_value>"
+
+#: 03101100.xhp#hd_id3145759.1.help.text
+msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
+
+#: 03101100.xhp#par_id3153089.2.help.text
+msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
+msgstr "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
+
+#: 03101100.xhp#hd_id3149495.3.help.text
+msgctxt "03101100.xhp#hd_id3149495.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101100.xhp#par_id3150682.4.help.text
+msgctxt "03101100.xhp#par_id3150682.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101100.xhp#hd_id3159201.5.help.text
+msgctxt "03101100.xhp#hd_id3159201.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101100.xhp#par_id3147226.6.help.text
+msgctxt "03101100.xhp#par_id3147226.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+
+#: 03101100.xhp#par_id3149178.7.help.text
+msgctxt "03101100.xhp#par_id3149178.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101100.xhp#par_id3150669.8.help.text
+msgctxt "03101100.xhp#par_id3150669.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Keyword: </emph>Default variable type"
+
+#: 03101100.xhp#par_id3149233.9.help.text
+msgid "<emph>DefBool:</emph> Boolean"
+msgstr "<emph>DefBool:</emph> Boolean"
+
+#: 03101100.xhp#hd_id3149762.10.help.text
+msgctxt "03101100.xhp#hd_id3149762.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101100.xhp#par_id3156152.12.help.text
+msgid "REM Prefix definition for variable types:"
+msgstr "REM Prefix definition for variable types:"
+
+#: 03101100.xhp#par_id3153627.13.help.text
+msgctxt "03101100.xhp#par_id3153627.13.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101100.xhp#par_id3145610.14.help.text
+msgctxt "03101100.xhp#par_id3145610.14.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101100.xhp#par_id3154760.15.help.text
+msgctxt "03101100.xhp#par_id3154760.15.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101100.xhp#par_id3148552.16.help.text
+msgctxt "03101100.xhp#par_id3148552.16.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101100.xhp#par_id3152812.17.help.text
+msgctxt "03101100.xhp#par_id3152812.17.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101100.xhp#par_id3153524.18.help.text
+msgctxt "03101100.xhp#par_id3153524.18.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101100.xhp#par_id3150541.19.help.text
+msgctxt "03101100.xhp#par_id3150541.19.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101100.xhp#par_id3153193.21.help.text
+msgid "Sub ExampleDefBool"
+msgstr "Sub ExampleDefBool"
+
+#: 03101100.xhp#par_id3151381.22.help.text
+msgid "bOK=TRUE REM bOK is an implicit Boolean variable"
+msgstr "bOK=TRUE REM bOK is an implicit Boolean variable"
+
+#: 03101100.xhp#par_id3145421.23.help.text
+msgctxt "03101100.xhp#par_id3145421.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120100.xhp#tit.help.text
+msgid "ASCII/ANSI Conversion in Strings"
+msgstr "ASCII/ANSI Conversion in Strings"
+
+#: 03120100.xhp#hd_id3147443.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
+
+#: 03120100.xhp#par_id3159201.2.help.text
+msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgstr "The following functions convert strings to and from ASCII or ANSI code."
+
+#: 03030106.xhp#tit.help.text
+msgid "Year Function [Runtime]"
+msgstr "Year Function [Runtime]"
+
+#: 03030106.xhp#bm_id3148664.help.text
+msgid "<bookmark_value>Year function</bookmark_value>"
+msgstr "<bookmark_value>Year function</bookmark_value>"
+
+#: 03030106.xhp#hd_id3148664.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
+
+#: 03030106.xhp#par_id3149655.2.help.text
+msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
+
+#: 03030106.xhp#hd_id3154125.3.help.text
+msgctxt "03030106.xhp#hd_id3154125.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030106.xhp#par_id3147229.4.help.text
+msgid "Year (Number)"
+msgstr "Year (Number)"
+
+#: 03030106.xhp#hd_id3154685.5.help.text
+msgctxt "03030106.xhp#hd_id3154685.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030106.xhp#par_id3153970.6.help.text
+msgctxt "03030106.xhp#par_id3153970.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03030106.xhp#hd_id3150440.7.help.text
+msgctxt "03030106.xhp#hd_id3150440.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030106.xhp#par_id3163712.8.help.text
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
+msgstr "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
+
+#: 03030106.xhp#par_id3152596.9.help.text
+msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
+msgstr "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
+
+#: 03030106.xhp#par_id3154319.10.help.text
+msgid "Print Year(DateSerial(1994, 12, 20))"
+msgstr "Print Year(DateSerial(1994, 12, 20))"
+
+#: 03030106.xhp#par_id3149483.11.help.text
+msgid "returns the value 1994."
+msgstr "returns the value 1994."
+
+#: 03030106.xhp#hd_id3146985.12.help.text
+msgctxt "03030106.xhp#hd_id3146985.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030106.xhp#par_id3153952.13.help.text
+msgid "Sub ExampleYear"
+msgstr "Sub ExampleYear"
+
+#: 03030106.xhp#par_id3153363.14.help.text
+msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+msgstr "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+
+#: 03030106.xhp#par_id3145274.15.help.text
+msgctxt "03030106.xhp#par_id3145274.15.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03090411.xhp#tit.help.text
+msgid "With Statement [Runtime]"
+msgstr "With Statement [Runtime]"
+
+#: 03090411.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>With statement</bookmark_value>"
+msgstr "<bookmark_value>With statement</bookmark_value>"
+
+#: 03090411.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
+
+#: 03090411.xhp#par_id3159158.2.help.text
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgstr "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+
+#: 03090411.xhp#hd_id3156153.3.help.text
+msgctxt "03090411.xhp#hd_id3156153.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090411.xhp#par_id3145609.4.help.text
+msgid "With Object Statement block End With"
+msgstr "With Object Statement block End With"
+
+#: 03090411.xhp#hd_id3154924.5.help.text
+msgctxt "03090411.xhp#hd_id3154924.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090411.xhp#par_id3147560.6.help.text
+msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+msgstr "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
+
+#: 03010200.xhp#tit.help.text
+msgid "Functions for Screen Input"
+msgstr "Functions for Screen Input"
+
+#: 03010200.xhp#hd_id3149456.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
+msgstr "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
+
+#: 03010200.xhp#par_id3150398.2.help.text
+msgid "This section describes Runtime functions used to control screen input."
+msgstr "This section describes Runtime functions used to control screen input."
+
+#: 03131900.xhp#tit.help.text
+msgid "GlobalScope [Runtime]"
+msgstr "GlobalScope [Runtime]"
+
+#: 03131900.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
+msgstr "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
+
+#: 03131900.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
+
+#: 03131900.xhp#par_id3153345.2.help.text
+msgid "Basic source code and dialogs are organized in a library system."
+msgstr "Basic source code and dialogues are organised in a library system."
+
+#: 03131900.xhp#par_id3145315.3.help.text
+msgid "The LibraryContainer contains libraries"
+msgstr "The LibraryContainer contains libraries"
+
+#: 03131900.xhp#par_id3149514.4.help.text
+msgid "Libraries can contain modules and dialogs"
+msgstr "Libraries can contain modules and dialogues"
+
+#: 03131900.xhp#hd_id3143271.5.help.text
+msgid "In Basic:"
+msgstr "In Basic:"
+
+#: 03131900.xhp#par_id3153061.6.help.text
+msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
+msgstr "The LibraryContainer is called <emph>BasicLibraries</emph>."
+
+#: 03131900.xhp#hd_id3154346.7.help.text
+msgid "In dialogs:"
+msgstr "In dialogues:"
+
+#: 03131900.xhp#par_id3148663.8.help.text
+msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
+msgstr "The LibraryContainer is called <emph>DialogLibraries</emph>."
+
+#: 03131900.xhp#par_id3150543.9.help.text
+msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
+msgstr "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
+
+#: 03131900.xhp#hd_id3148920.10.help.text
+msgctxt "03131900.xhp#hd_id3148920.10.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03131900.xhp#par_id3149203.11.help.text
+msgid "GlobalScope"
+msgstr "GlobalScope"
+
+#: 03131900.xhp#hd_id3154685.12.help.text
+msgctxt "03131900.xhp#hd_id3154685.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03131900.xhp#par_id3154124.13.help.text
+msgid "Example in the document Basic"
+msgstr "Example in the document Basic"
+
+#: 03131900.xhp#par_id3158408.14.help.text
+msgid "' calling Dialog1 in the document library Standard"
+msgstr "' calling Dialog1 in the document library Standard"
+
+#: 03131900.xhp#par_id3125865.15.help.text
+msgctxt "03131900.xhp#par_id3125865.15.help.text"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr "oDlgDesc = DialogLibraries.Standard.Dialog1"
+
+#: 03131900.xhp#par_id3154910.16.help.text
+msgid "' calling Dialog2 in the application library Library1"
+msgstr "' calling Dialog2 in the application library Library1"
+
+#: 03131900.xhp#par_id3156424.17.help.text
+msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+msgstr "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
+
+#: 03070000.xhp#tit.help.text
+msgid "Mathematical Operators"
+msgstr "Mathematical Operators"
+
+#: 03070000.xhp#hd_id3149234.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
+msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
+
+#: 03070000.xhp#par_id3145068.2.help.text
+msgid "The following mathematical operators are supported in $[officename] Basic."
+msgstr "The following mathematical operators are supported in $[officename] Basic."
+
+#: 03070000.xhp#par_id3148552.3.help.text
+msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
+msgstr "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
+
+#: 03010303.xhp#tit.help.text
+msgid "Red Function [Runtime]"
+msgstr "Red Function [Runtime]"
+
+#: 03010303.xhp#bm_id3148947.help.text
+msgid "<bookmark_value>Red function</bookmark_value>"
+msgstr "<bookmark_value>Red function</bookmark_value>"
+
+#: 03010303.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
+
+#: 03010303.xhp#par_id3149656.2.help.text
+msgid "Returns the Red component of the specified color code."
+msgstr "Returns the Red component of the specified colour code."
+
+#: 03010303.xhp#hd_id3148799.3.help.text
+msgctxt "03010303.xhp#hd_id3148799.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03010303.xhp#par_id3150448.4.help.text
+msgid "Red (ColorNumber As Long)"
+msgstr "Red (ColorNumber As Long)"
+
+#: 03010303.xhp#hd_id3151042.5.help.text
+msgctxt "03010303.xhp#hd_id3151042.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03010303.xhp#par_id3145173.6.help.text
+msgctxt "03010303.xhp#par_id3145173.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03010303.xhp#hd_id3154685.7.help.text
+msgctxt "03010303.xhp#hd_id3154685.7.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03010303.xhp#par_id3150440.8.help.text
+msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Red component."
+msgstr "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">colour code</link> for which to return the Red component."
+
+#: 03010303.xhp#hd_id3148575.9.help.text
+msgctxt "03010303.xhp#hd_id3148575.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03010303.xhp#par_id3145365.10.help.text
+msgctxt "03010303.xhp#par_id3145365.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub ExampleColour"
+
+#: 03010303.xhp#par_id3147348.11.help.text
+msgctxt "03010303.xhp#par_id3147348.11.help.text"
+msgid "Dim lVar As Long"
+msgstr "Dim lVar As Long"
+
+#: 03010303.xhp#par_id3145750.12.help.text
+msgctxt "03010303.xhp#par_id3145750.12.help.text"
+msgid "lVar = rgb(128,0,200)"
+msgstr "lVar = rgb(128,0,200)"
+
+#: 03010303.xhp#par_id3147435.13.help.text
+msgctxt "03010303.xhp#par_id3147435.13.help.text"
+msgid "msgbox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr "msgbox \"The colour \" & lVar & \" consists of:\" & Chr(13) &_"
+
+#: 03010303.xhp#par_id3155306.14.help.text
+msgctxt "03010303.xhp#par_id3155306.14.help.text"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgstr "\"red= \" & red(lVar) & Chr(13)&_"
+
+#: 03010303.xhp#par_id3149262.15.help.text
+msgctxt "03010303.xhp#par_id3149262.15.help.text"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr "\"green= \" & green(lVar) & Chr(13)&_"
+
+#: 03010303.xhp#par_id3147397.16.help.text
+msgctxt "03010303.xhp#par_id3147397.16.help.text"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colours\""
+
+#: 03010303.xhp#par_id3156286.17.help.text
+msgctxt "03010303.xhp#par_id3156286.17.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03102450.xhp#tit.help.text
+msgid "IsError Function [Runtime]"
+msgstr "IsError Function [Runtime]"
+
+#: 03102450.xhp#bm_id4954680.help.text
+msgid "<bookmark_value>IsError function</bookmark_value>"
+msgstr "<bookmark_value>IsError function</bookmark_value>"
+
+#: 03102450.xhp#par_idN1054E.help.text
+msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
+
+#: 03102450.xhp#par_idN1055E.help.text
+msgid "Tests if a variable contains an error value."
+msgstr "Tests if a variable contains an error value."
+
+#: 03102450.xhp#par_idN10561.help.text
+msgctxt "03102450.xhp#par_idN10561.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102450.xhp#par_idN10565.help.text
+msgid "IsError (Var)"
+msgstr "IsError (Var)"
+
+#: 03102450.xhp#par_idN10568.help.text
+msgctxt "03102450.xhp#par_idN10568.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03102450.xhp#par_idN1056C.help.text
+msgctxt "03102450.xhp#par_idN1056C.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03102450.xhp#par_idN1056F.help.text
+msgctxt "03102450.xhp#par_idN1056F.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102450.xhp#par_idN10573.help.text
+msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
+msgstr "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
+
+#: 03100000.xhp#tit.help.text
+msgid "Variables"
+msgstr "Variables"
+
+#: 03100000.xhp#hd_id3149669.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+
+#: 03100000.xhp#par_id3147265.2.help.text
+msgid "The following statements and functions are for working with variables. You can use these functions to declare or define variables, convert variables from one type to another, or determine the variable type."
+msgstr "The following statements and functions are for working with variables. You can use these functions to declare or define variables, convert variables from one type to another, or determine the variable type."
+
+#: 03120313.xhp#tit.help.text
+msgid "ConvertFromURL Function [Runtime]"
+msgstr "ConvertFromURL Function [Runtime]"
+
+#: 03120313.xhp#bm_id3153894.help.text
+msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
+msgstr "<bookmark_value>ConvertFromURL function</bookmark_value>"
+
+#: 03120313.xhp#hd_id3153894.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
+
+#: 03120313.xhp#par_id3147226.2.help.text
+msgid "Converts a file URL to a system file name."
+msgstr "Converts a file URL to a system file name."
+
+#: 03120313.xhp#hd_id3143267.3.help.text
+msgctxt "03120313.xhp#hd_id3143267.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120313.xhp#par_id3154142.4.help.text
+msgid "ConvertFromURL(filename)"
+msgstr "ConvertFromURL(filename)"
+
+#: 03120313.xhp#hd_id3159157.5.help.text
+msgctxt "03120313.xhp#hd_id3159157.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120313.xhp#par_id3150669.6.help.text
+msgctxt "03120313.xhp#par_id3150669.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120313.xhp#hd_id3143270.7.help.text
+msgctxt "03120313.xhp#hd_id3143270.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120313.xhp#par_id3156023.8.help.text
+msgid "<emph>Filename:</emph> A file name as a string."
+msgstr "<emph>Filename:</emph> A file name as a string."
+
+#: 03120313.xhp#hd_id3154760.9.help.text
+msgctxt "03120313.xhp#hd_id3154760.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120313.xhp#par_id3148664.10.help.text
+msgctxt "03120313.xhp#par_id3148664.10.help.text"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "systemFile$ = \"c:\\folder\\mytext.txt\""
+
+#: 03120313.xhp#par_id3150541.11.help.text
+msgctxt "03120313.xhp#par_id3150541.11.help.text"
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "url$ = ConvertToURL( systemFile$ )"
+
+#: 03120313.xhp#par_id3150792.12.help.text
+msgctxt "03120313.xhp#par_id3150792.12.help.text"
+msgid "print url$"
+msgstr "print url$"
+
+#: 03120313.xhp#par_id3154367.13.help.text
+msgctxt "03120313.xhp#par_id3154367.13.help.text"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "systemFileAgain$ = ConvertFromURL( url$ )"
+
+#: 03120313.xhp#par_id3153194.14.help.text
+msgctxt "03120313.xhp#par_id3153194.14.help.text"
+msgid "print systemFileAgain$"
+msgstr "print systemFileAgain$"
+
+#: 03020305.xhp#tit.help.text
+msgid "Seek Statement [Runtime]"
+msgstr "Seek Statement [Runtime]"
+
+#: 03020305.xhp#bm_id3159413.help.text
+msgid "<bookmark_value>Seek statement</bookmark_value>"
+msgstr "<bookmark_value>Seek statement</bookmark_value>"
+
+#: 03020305.xhp#hd_id3159413.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
+
+#: 03020305.xhp#par_id3153381.2.help.text
+msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
+msgstr "Sets the position for the next writing or reading in a file that was opened with the Open statement."
+
+#: 03020305.xhp#par_id2100589.help.text
+msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
+msgstr "For random access files, the Seek statement sets the number of the next record to be accessed."
+
+#: 03020305.xhp#par_id5444807.help.text
+msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
+msgstr "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
+
+#: 03020305.xhp#par_id3156280.5.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
+msgstr "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
+
+#: 03020305.xhp#hd_id3145785.6.help.text
+msgctxt "03020305.xhp#hd_id3145785.6.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020305.xhp#par_id3145273.7.help.text
+msgid "Seek[#FileNumber], Position (As Long)"
+msgstr "Seek[#FileNumber], Position (As Long)"
+
+#: 03020305.xhp#hd_id3154321.8.help.text
+msgctxt "03020305.xhp#hd_id3154321.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020305.xhp#par_id3153952.9.help.text
+msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+msgstr "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+
+#: 03020305.xhp#par_id3145366.10.help.text
+msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
+msgstr "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
+
+#: 03103500.xhp#tit.help.text
+msgid "Static Statement [Runtime]"
+msgstr "Static Statement [Runtime]"
+
+#: 03103500.xhp#bm_id3149798.help.text
+msgid "<bookmark_value>Static statement</bookmark_value>"
+msgstr "<bookmark_value>Static statement</bookmark_value>"
+
+#: 03103500.xhp#hd_id3149798.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
+
+#: 03103500.xhp#par_id3153311.2.help.text
+msgid "Declares a variable or an array at the procedure level within a subroutine or a function, so that the values of the variable or the array are retained after exiting the subroutine or function. Dim statement conventions are also valid."
+msgstr "Declares a variable or an array at the procedure level within a subroutine or a function, so that the values of the variable or the array are retained after exiting the subroutine or function. Dim statement conventions are also valid."
+
+#: 03103500.xhp#par_id3147264.3.help.text
+msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
+msgstr "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
+
+#: 03103500.xhp#hd_id3149657.4.help.text
+msgctxt "03103500.xhp#hd_id3149657.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103500.xhp#par_id3150400.5.help.text
+msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+msgstr "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+
+#: 03103500.xhp#hd_id3148452.6.help.text
+msgctxt "03103500.xhp#hd_id3148452.6.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103500.xhp#par_id3156214.7.help.text
+msgid "Sub ExampleStatic"
+msgstr "Sub ExampleStatic"
+
+#: 03103500.xhp#par_id1940061.help.text
+msgid "Dim iCount as Integer, iResult as Integer"
+msgstr "Dim iCount as Integer, iResult as Integer"
+
+#: 03103500.xhp#par_id878627.help.text
+msgid "For iCount = 0 to 2"
+msgstr "For iCount = 0 to 2"
+
+#: 03103500.xhp#par_id7914059.help.text
+msgid "iResult = InitVar()"
+msgstr "iResult = InitVar()"
+
+#: 03103500.xhp#par_id299691.help.text
+msgctxt "03103500.xhp#par_id299691.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03103500.xhp#par_id3150870.11.help.text
+msgid "MsgBox iResult,0,\"The answer is\""
+msgstr "MsgBox iResult,0,\"The answer is\""
+
+#: 03103500.xhp#par_id3153771.13.help.text
+msgctxt "03103500.xhp#par_id3153771.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03103500.xhp#par_id3151115.15.help.text
+msgid "REM Function for initialization of the static variable"
+msgstr "REM Function for initialisation of the static variable"
+
+#: 03103500.xhp#par_id3148618.16.help.text
+msgid "Function InitVar() As Integer"
+msgstr "Function InitVar() As Integer"
+
+#: 03103500.xhp#par_id3154217.8.help.text
+msgid "Static iInit As Integer"
+msgstr "Static iInit As Integer"
+
+#: 03103500.xhp#par_id1057161.help.text
+msgid "Const iMinimum as Integer = 40 REM minimum return value of this function"
+msgstr "Const iMinimum as Integer = 40 REM minimum return value of this function"
+
+#: 03103500.xhp#par_id580462.help.text
+msgid "if iInit = 0 then REM check if initialized"
+msgstr "if iInit = 0 then REM check if initialised"
+
+#: 03103500.xhp#par_id7382732.help.text
+msgid "iInit = iMinimum"
+msgstr "iInit = iMinimum"
+
+#: 03103500.xhp#par_id5779900.help.text
+msgid "else"
+msgstr "else"
+
+#: 03103500.xhp#par_id3151041.10.help.text
+msgid "iInit = iInit + 1"
+msgstr "iInit = iInit + 1"
+
+#: 03103500.xhp#par_id5754264.help.text
+msgctxt "03103500.xhp#par_id5754264.help.text"
+msgid "end if"
+msgstr "end if"
+
+#: 03103500.xhp#par_id6529435.help.text
+msgid "InitVar = iInit"
+msgstr "InitVar = iInit"
+
+#: 03103500.xhp#par_id3150487.18.help.text
+msgctxt "03103500.xhp#par_id3150487.18.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03070500.xhp#tit.help.text
+msgid "\"^\" Operator [Runtime]"
+msgstr "\"^\" Operator [Runtime]"
+
+#: 03070500.xhp#bm_id3145315.help.text
+msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgstr "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+
+#: 03070500.xhp#hd_id3145315.1.help.text
+msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
+
+#: 03070500.xhp#par_id3149670.2.help.text
+msgid "Raises a number to a power."
+msgstr "Raises a number to a power."
+
+#: 03070500.xhp#hd_id3147264.3.help.text
+msgctxt "03070500.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03070500.xhp#par_id3149656.4.help.text
+msgid "Result = Expression ^ Exponent"
+msgstr "Result = Expression ^ Exponent"
+
+#: 03070500.xhp#hd_id3151211.5.help.text
+msgctxt "03070500.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03070500.xhp#par_id3153192.6.help.text
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
+msgstr "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
+
+#: 03070500.xhp#par_id3150448.7.help.text
+msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
+msgstr "<emph>Expression:</emph> Numerical value that you want to raise to a power."
+
+#: 03070500.xhp#par_id3156422.8.help.text
+msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
+msgstr "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
+
+#: 03070500.xhp#hd_id3147287.9.help.text
+msgctxt "03070500.xhp#hd_id3147287.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03070500.xhp#par_id3153770.10.help.text
+msgctxt "03070500.xhp#par_id3153770.10.help.text"
+msgid "Sub Example"
+msgstr "Sub Example"
+
+#: 03070500.xhp#par_id3152886.11.help.text
+msgid "Print ( 12.345 ^ 23 )"
+msgstr "Print ( 12.345 ^ 23 )"
+
+#: 03070500.xhp#par_id3146984.12.help.text
+msgid "Print Exp ( 23 * Log( 12.345 ) ) REM Raises by forming a logarithm"
+msgstr "Print Exp ( 23 * Log( 12.345 ) ) REM Raises by forming a logarithm"
+
+#: 03070500.xhp#par_id3148618.13.help.text
+msgctxt "03070500.xhp#par_id3148618.13.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03080102.xhp#tit.help.text
+msgid "Cos Function [Runtime]"
+msgstr "Cos Function [Runtime]"
+
+#: 03080102.xhp#bm_id3154923.help.text
+msgid "<bookmark_value>Cos function</bookmark_value>"
+msgstr "<bookmark_value>Cos function</bookmark_value>"
+
+#: 03080102.xhp#hd_id3154923.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
+
+#: 03080102.xhp#par_id3159413.2.help.text
+msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+
+#: 03080102.xhp#par_id3150358.3.help.text
+msgid "Using the angle Alpha, the Cos-Function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle."
+msgstr "Using the angle Alpha, the Cos-Function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle."
+
+#: 03080102.xhp#par_id3154141.4.help.text
+msgid "Cos(Alpha) = Adjacent/Hypotenuse"
+msgstr "Cos(Alpha) = Adjacent/Hypotenuse"
+
+#: 03080102.xhp#hd_id3154125.5.help.text
+msgctxt "03080102.xhp#hd_id3154125.5.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080102.xhp#par_id3145172.6.help.text
+msgid "Cos (Number)"
+msgstr "Cos (Number)"
+
+#: 03080102.xhp#hd_id3156214.7.help.text
+msgctxt "03080102.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080102.xhp#par_id3150449.8.help.text
+msgctxt "03080102.xhp#par_id3150449.8.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080102.xhp#hd_id3153969.9.help.text
+msgctxt "03080102.xhp#hd_id3153969.9.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080102.xhp#par_id3153770.10.help.text
+msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
+msgstr "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
+
+#: 03080102.xhp#par_id3145749.11.help.text
+msgid "To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi."
+msgstr "To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi."
+
+#: 03080102.xhp#par_id3149664.12.help.text
+msgctxt "03080102.xhp#par_id3149664.12.help.text"
+msgid "degree=(radian*180)/pi"
+msgstr "degree=(radian*180)/pi"
+
+#: 03080102.xhp#par_id3146985.13.help.text
+msgctxt "03080102.xhp#par_id3146985.13.help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "radian=(degree*pi)/180"
+
+#: 03080102.xhp#par_id3152885.14.help.text
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
+msgstr "Pi is here the fixed circle constant with the rounded value 3.14159..."
+
+#: 03080102.xhp#hd_id3153951.15.help.text
+msgctxt "03080102.xhp#hd_id3153951.15.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080102.xhp#par_id3155855.16.help.text
+msgid "REM The following example allows for a right-angled triangle the input of"
+msgstr "REM The following example allows for a right-angled triangle the input of"
+
+#: 03080102.xhp#par_id3149484.17.help.text
+msgid "REM secant and angle (in degrees) and calculates the length of the hypotenuse:"
+msgstr "REM secant and angle (in degrees) and calculates the length of the hypotenuse:"
+
+#: 03080102.xhp#par_id3147428.18.help.text
+msgid "Sub ExampleCosinus"
+msgstr "Sub ExampleCosinus"
+
+#: 03080102.xhp#par_id3150010.19.help.text
+msgid "REM rounded Pi = 3.14159"
+msgstr "REM rounded Pi = 3.14159"
+
+#: 03080102.xhp#par_id3149959.20.help.text
+msgid "Dim d1 as Double, dAngle as Double"
+msgstr "Dim d1 as Double, dAngle as Double"
+
+#: 03080102.xhp#par_id3144764.21.help.text
+msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgstr "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+
+#: 03080102.xhp#par_id3154491.22.help.text
+msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgstr "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+
+#: 03080102.xhp#par_id3151074.23.help.text
+msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+msgstr "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
+
+#: 03080102.xhp#par_id3149583.24.help.text
+msgctxt "03080102.xhp#par_id3149583.24.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03102600.xhp#tit.help.text
+msgid "IsNull Function [Runtime]"
+msgstr "IsNull Function [Runtime]"
+
+#: 03102600.xhp#bm_id3155555.help.text
+msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
+msgstr "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
+
+#: 03102600.xhp#hd_id3155555.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
+
+#: 03102600.xhp#par_id3146957.2.help.text
+msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
+msgstr "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
+
+#: 03102600.xhp#hd_id3150670.3.help.text
+msgctxt "03102600.xhp#hd_id3150670.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102600.xhp#par_id3150984.4.help.text
+msgid "IsNull (Var)"
+msgstr "IsNull (Var)"
+
+#: 03102600.xhp#hd_id3149514.5.help.text
+msgctxt "03102600.xhp#hd_id3149514.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03102600.xhp#par_id3145609.6.help.text
+msgctxt "03102600.xhp#par_id3145609.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03102600.xhp#hd_id3149669.7.help.text
+msgctxt "03102600.xhp#hd_id3149669.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102600.xhp#par_id3159414.8.help.text
+msgid "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
+msgstr "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
+
+#: 03102600.xhp#par_idN1062A.help.text
+msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+msgstr "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+
+#: 03102600.xhp#hd_id3153381.9.help.text
+msgctxt "03102600.xhp#hd_id3153381.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102600.xhp#par_id3154140.10.help.text
+msgid "Sub ExampleIsNull"
+msgstr "Sub ExampleIsNull"
+
+#: 03102600.xhp#par_id3145172.11.help.text
+msgid "Dim vVar As Variant"
+msgstr "Dim vVar As Variant"
+
+#: 03102600.xhp#par_id3144760.12.help.text
+msgid "msgbox IsNull(vVar)"
+msgstr "msgbox IsNull(vVar)"
+
+#: 03102600.xhp#par_id3153970.13.help.text
+msgctxt "03102600.xhp#par_id3153970.13.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03030202.xhp#tit.help.text
+msgid "Minute Function [Runtime]"
+msgstr "Minute Function [Runtime]"
+
+#: 03030202.xhp#bm_id3155419.help.text
+msgid "<bookmark_value>Minute function</bookmark_value>"
+msgstr "<bookmark_value>Minute function</bookmark_value>"
+
+#: 03030202.xhp#hd_id3155419.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
+
+#: 03030202.xhp#par_id3156344.2.help.text
+msgid "Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function."
+msgstr "Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function."
+
+#: 03030202.xhp#hd_id3154758.3.help.text
+msgctxt "03030202.xhp#hd_id3154758.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030202.xhp#par_id3149656.4.help.text
+msgid "Minute (Number)"
+msgstr "Minute (Number)"
+
+#: 03030202.xhp#hd_id3148798.5.help.text
+msgctxt "03030202.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030202.xhp#par_id3150449.6.help.text
+msgctxt "03030202.xhp#par_id3150449.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03030202.xhp#hd_id3153193.7.help.text
+msgctxt "03030202.xhp#hd_id3153193.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030202.xhp#par_id3153969.8.help.text
+msgid " <emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+msgstr " <emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+
+#: 03030202.xhp#par_id3150869.9.help.text
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
+msgstr "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
+
+#: 03030202.xhp#par_id3149262.10.help.text
+msgid "Print Minute(TimeSerial(12,30,41))"
+msgstr "Print Minute(TimeSerial(12,30,41))"
+
+#: 03030202.xhp#par_id3148576.11.help.text
+msgid "returns the value 30."
+msgstr "returns the value 30."
+
+#: 03030202.xhp#hd_id3150010.12.help.text
+msgctxt "03030202.xhp#hd_id3150010.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030202.xhp#par_id3159154.13.help.text
+msgid "Sub ExampleMinute"
+msgstr "Sub ExampleMinute"
+
+#: 03030202.xhp#par_id3146119.14.help.text
+msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+msgstr "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+
+#: 03030202.xhp#par_id3153726.15.help.text
+msgctxt "03030202.xhp#par_id3153726.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120403.xhp#tit.help.text
+msgid "StrComp Function [Runtime]"
+msgstr "StrComp Function [Runtime]"
+
+#: 03120403.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>StrComp function</bookmark_value>"
+msgstr "<bookmark_value>StrComp function</bookmark_value>"
+
+#: 03120403.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
+
+#: 03120403.xhp#par_id3155805.2.help.text
+msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgstr "Compares two strings and returns an integer value that represents the result of the comparison."
+
+#: 03120403.xhp#hd_id3153345.3.help.text
+msgctxt "03120403.xhp#hd_id3153345.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120403.xhp#par_id3150503.4.help.text
+msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgstr "StrComp (Text1 As String, Text2 As String[, Compare])"
+
+#: 03120403.xhp#hd_id3147574.5.help.text
+msgctxt "03120403.xhp#hd_id3147574.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120403.xhp#par_id3156152.6.help.text
+msgctxt "03120403.xhp#par_id3156152.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03120403.xhp#hd_id3150984.7.help.text
+msgctxt "03120403.xhp#hd_id3150984.7.help.text"
+msgid "Parameter:"
+msgstr "Parameter:"
+
+#: 03120403.xhp#par_id3153061.8.help.text
+msgid "<emph>Text1:</emph> Any string expression"
+msgstr "<emph>Text1:</emph> Any string expression"
+
+#: 03120403.xhp#par_id3147560.9.help.text
+msgid "<emph>Text2:</emph> Any string expression"
+msgstr "<emph>Text2:</emph> Any string expression"
+
+#: 03120403.xhp#par_id3146796.10.help.text
+msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
+msgstr "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
+
+#: 03120403.xhp#hd_id3154940.13.help.text
+msgctxt "03120403.xhp#hd_id3154940.13.help.text"
+msgid "Return value"
+msgstr "Return value"
+
+#: 03120403.xhp#par_id3150358.27.help.text
+msgid "If Text1 < Text2 the function returns -1"
+msgstr "If Text1 < Text2 the function returns -1"
+
+#: 03120403.xhp#par_id3151043.28.help.text
+msgid "If Text1 = Text2 the function returns 0"
+msgstr "If Text1 = Text2 the function returns 0"
+
+#: 03120403.xhp#par_id3158410.29.help.text
+msgid "If Text1 > Text2 the function returns 1"
+msgstr "If Text1 > Text2 the function returns 1"
+
+#: 03120403.xhp#hd_id3153968.18.help.text
+msgctxt "03120403.xhp#hd_id3153968.18.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120403.xhp#par_id3151381.19.help.text
+msgid "Sub ExampleStrComp"
+msgstr "Sub ExampleStrComp"
+
+#: 03120403.xhp#par_id3154685.20.help.text
+msgctxt "03120403.xhp#par_id3154685.20.help.text"
+msgid "Dim iVar As Single"
+msgstr "Dim iVar As Single"
+
+#: 03120403.xhp#par_id3148453.21.help.text
+msgctxt "03120403.xhp#par_id3148453.21.help.text"
+msgid "Dim sVar As String"
+msgstr "Dim sVar As String"
+
+#: 03120403.xhp#par_id3153369.22.help.text
+msgctxt "03120403.xhp#par_id3153369.22.help.text"
+msgid "iVar = 123.123"
+msgstr "iVar = 123.123"
+
+#: 03120403.xhp#par_id3145786.23.help.text
+msgid "sVar = Str$(iVar)"
+msgstr "sVar = Str$(iVar)"
+
+#: 03120403.xhp#par_id3146975.24.help.text
+msgid "Msgbox strcomp(sVar , Str$(iVar),1)"
+msgstr "Msgbox strcomp(sVar , Str$(iVar),1)"
+
+#: 03120403.xhp#par_id3150487.25.help.text
+msgctxt "03120403.xhp#par_id3150487.25.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120306.xhp#tit.help.text
+msgid "Mid Function, Mid Statement [Runtime]"
+msgstr "Mid Function, Mid Statement [Runtime]"
+
+#: 03120306.xhp#bm_id3143268.help.text
+msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
+msgstr "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
+
+#: 03120306.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
+
+#: 03120306.xhp#par_id3148473.2.help.text
+msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
+msgstr "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
+
+#: 03120306.xhp#hd_id3154285.3.help.text
+msgctxt "03120306.xhp#hd_id3154285.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120306.xhp#par_id3147530.4.help.text
+msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
+msgstr "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
+
+#: 03120306.xhp#hd_id3145068.5.help.text
+msgctxt "03120306.xhp#hd_id3145068.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120306.xhp#par_id3149295.6.help.text
+msgid "String (only by Function)"
+msgstr "String (only by Function)"
+
+#: 03120306.xhp#hd_id3154347.7.help.text
+msgctxt "03120306.xhp#hd_id3154347.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120306.xhp#par_id3148664.8.help.text
+msgid "<emph>Text:</emph> Any string expression that you want to modify."
+msgstr "<emph>Text:</emph> Any string expression that you want to modify."
+
+#: 03120306.xhp#par_id3150359.9.help.text
+msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
+msgstr "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
+
+#: 03120306.xhp#par_id3148451.10.help.text
+msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
+msgstr "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
+
+#: 03120306.xhp#par_id3125864.11.help.text
+msgid "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
+msgstr "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
+
+#: 03120306.xhp#par_id3144762.12.help.text
+msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
+msgstr "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
+
+#: 03120306.xhp#par_id3150769.13.help.text
+msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
+msgstr "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
+
+#: 03120306.xhp#hd_id3149560.14.help.text
+msgctxt "03120306.xhp#hd_id3149560.14.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120306.xhp#par_id3150439.15.help.text
+msgctxt "03120306.xhp#par_id3150439.15.help.text"
+msgid "Sub ExampleUSDate"
+msgstr "Sub ExampleUSDate"
+
+#: 03120306.xhp#par_id3147349.16.help.text
+msgctxt "03120306.xhp#par_id3147349.16.help.text"
+msgid "Dim sInput As String"
+msgstr "Dim sInput As String"
+
+#: 03120306.xhp#par_id3155854.17.help.text
+msgctxt "03120306.xhp#par_id3155854.17.help.text"
+msgid "Dim sUS_date As String"
+msgstr "Dim sUS_date As String"
+
+#: 03120306.xhp#par_id3153189.18.help.text
+msgctxt "03120306.xhp#par_id3153189.18.help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+
+#: 03120306.xhp#par_id3148645.19.help.text
+msgctxt "03120306.xhp#par_id3148645.19.help.text"
+msgid "sUS_date = Mid(sInput, 6, 2)"
+msgstr "sUS_date = Mid(sInput, 6, 2)"
+
+#: 03120306.xhp#par_id3153952.20.help.text
+msgctxt "03120306.xhp#par_id3153952.20.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sUS_date = sUS_date & \"/\""
+
+#: 03120306.xhp#par_id3153364.21.help.text
+msgctxt "03120306.xhp#par_id3153364.21.help.text"
+msgid "sUS_date = sUS_date & Right(sInput, 2)"
+msgstr "sUS_date = sUS_date & Right(sInput, 2)"
+
+#: 03120306.xhp#par_id3146975.22.help.text
+msgctxt "03120306.xhp#par_id3146975.22.help.text"
+msgid "sUS_date = sUS_date & \"/\""
+msgstr "sUS_date = sUS_date & \"/\""
+
+#: 03120306.xhp#par_id3149665.23.help.text
+msgctxt "03120306.xhp#par_id3149665.23.help.text"
+msgid "sUS_date = sUS_date & Left(sInput, 4)"
+msgstr "sUS_date = sUS_date & Left(sInput, 4)"
+
+#: 03120306.xhp#par_id3150011.24.help.text
+msgctxt "03120306.xhp#par_id3150011.24.help.text"
+msgid "MsgBox sUS_date"
+msgstr "MsgBox sUS_date"
+
+#: 03120306.xhp#par_id3148618.25.help.text
+msgctxt "03120306.xhp#par_id3148618.25.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030110.xhp#tit.help.text
+msgid "DateAdd Function [Runtime]"
+msgstr "DateAdd Function [Runtime]"
+
+#: 03030110.xhp#bm_id6269417.help.text
+msgid "<bookmark_value>DateAdd function</bookmark_value>"
+msgstr "<bookmark_value>DateAdd function</bookmark_value>"
+
+#: 03030110.xhp#par_idN10548.help.text
+msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
+
+#: 03030110.xhp#par_idN10558.help.text
+msgid "Adds a date interval to a given date a number of times and returns the resulting date."
+msgstr "Adds a date interval to a given date a number of times and returns the resulting date."
+
+#: 03030110.xhp#par_idN1055B.help.text
+msgctxt "03030110.xhp#par_idN1055B.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030110.xhp#par_idN1055F.help.text
+msgid "DateAdd (Add, Count, Date)"
+msgstr "DateAdd (Add, Count, Date)"
+
+#: 03030110.xhp#par_idN1061E.help.text
+msgctxt "03030110.xhp#par_idN1061E.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030110.xhp#par_idN10622.help.text
+msgctxt "03030110.xhp#par_idN10622.help.text"
+msgid "A Variant containing a date."
+msgstr "A Variant containing a date."
+
+#: 03030110.xhp#par_idN10625.help.text
+msgctxt "03030110.xhp#par_idN10625.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030110.xhp#par_idN10629.help.text
+msgid "Add - A string expression from the following table, specifying the date interval."
+msgstr "Add - A string expression from the following table, specifying the date interval."
+
+#: 03030110.xhp#par_idN10636.help.text
+msgid "Add (string value)"
+msgstr "Add (string value)"
+
+#: 03030110.xhp#par_idN1063C.help.text
+msgctxt "03030110.xhp#par_idN1063C.help.text"
+msgid "Explanation"
+msgstr "Explanation"
+
+#: 03030110.xhp#par_idN10643.help.text
+msgid "yyyy"
+msgstr "yyyy"
+
+#: 03030110.xhp#par_idN10649.help.text
+msgid "Year"
+msgstr "Year"
+
+#: 03030110.xhp#par_idN10650.help.text
+msgid "q"
+msgstr "q"
+
+#: 03030110.xhp#par_idN10656.help.text
+msgid "Quarter"
+msgstr "Quarter"
+
+#: 03030110.xhp#par_idN1065D.help.text
+msgid "m"
+msgstr "m"
+
+#: 03030110.xhp#par_idN10663.help.text
+msgid "Month"
+msgstr "Month"
+
+#: 03030110.xhp#par_idN1066A.help.text
+msgid "y"
+msgstr "y"
+
+#: 03030110.xhp#par_idN10670.help.text
+msgid "Day of year"
+msgstr "Day of year"
+
+#: 03030110.xhp#par_idN10677.help.text
+msgid "w"
+msgstr "w"
+
+#: 03030110.xhp#par_idN1067D.help.text
+msgid "Weekday"
+msgstr "Weekday"
+
+#: 03030110.xhp#par_idN10684.help.text
+msgid "ww"
+msgstr "ww"
+
+#: 03030110.xhp#par_idN1068A.help.text
+msgid "Week of year"
+msgstr "Week of year"
+
+#: 03030110.xhp#par_idN10691.help.text
+msgid "d"
+msgstr "d"
+
+#: 03030110.xhp#par_idN10697.help.text
+msgid "Day"
+msgstr "Day"
+
+#: 03030110.xhp#par_idN1069E.help.text
+msgid "h"
+msgstr "h"
+
+#: 03030110.xhp#par_idN106A4.help.text
+msgid "Hour"
+msgstr "Hour"
+
+#: 03030110.xhp#par_idN106AB.help.text
+msgid "n"
+msgstr "n"
+
+#: 03030110.xhp#par_idN106B1.help.text
+msgid "Minute"
+msgstr "Minute"
+
+#: 03030110.xhp#par_idN106B8.help.text
+msgid "s"
+msgstr "s"
+
+#: 03030110.xhp#par_idN106BE.help.text
+msgid "Second"
+msgstr "Second"
+
+#: 03030110.xhp#par_idN106C1.help.text
+msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
+msgstr "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
+
+#: 03030110.xhp#par_idN106C4.help.text
+msgid "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
+msgstr "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
+
+#: 03030110.xhp#par_idN106C7.help.text
+msgctxt "03030110.xhp#par_idN106C7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030110.xhp#par_idN106CB.help.text
+msgid "Sub example_dateadd"
+msgstr "Sub example_dateadd"
+
+#: 03030110.xhp#par_idN106CE.help.text
+msgid "msgbox DateAdd(\"m\", 1, \"1/31/2004\") &\" - \"& DateAdd(\"m\", 1, \"1/31/2005\")"
+msgstr "msgbox DateAdd(\"m\", 1, \"1/31/2004\") &\" - \"& DateAdd(\"m\", 1, \"1/31/2005\")"
+
+#: 03030110.xhp#par_idN106D1.help.text
+msgctxt "03030110.xhp#par_idN106D1.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03030206.xhp#tit.help.text
+msgid "TimeValue Function [Runtime]"
+msgstr "TimeValue Function [Runtime]"
+
+#: 03030206.xhp#bm_id3149670.help.text
+msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgstr "<bookmark_value>TimeValue function</bookmark_value>"
+
+#: 03030206.xhp#hd_id3149670.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
+
+#: 03030206.xhp#par_id3153361.2.help.text
+msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
+msgstr "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
+
+#: 03030206.xhp#hd_id3154138.3.help.text
+msgctxt "03030206.xhp#hd_id3154138.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030206.xhp#par_id3156282.4.help.text
+msgid "TimeValue (Text As String)"
+msgstr "TimeValue (Text As String)"
+
+#: 03030206.xhp#hd_id3153969.5.help.text
+msgctxt "03030206.xhp#hd_id3153969.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030206.xhp#par_id3156424.6.help.text
+msgctxt "03030206.xhp#par_id3156424.6.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 03030206.xhp#hd_id3145172.7.help.text
+msgctxt "03030206.xhp#hd_id3145172.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030206.xhp#par_id3145786.8.help.text
+msgid "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
+msgstr "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
+
+#: 03030206.xhp#par_id3152578.9.help.text
+msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
+msgstr "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
+
+#: 03030206.xhp#par_id3163710.10.help.text
+msgid "This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999."
+msgstr "This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999."
+
+#: 03030206.xhp#par_id3151117.11.help.text
+msgid "As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them."
+msgstr "As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them."
+
+#: 03030206.xhp#par_id3147426.12.help.text
+msgid "In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time."
+msgstr "In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time."
+
+#: 03030206.xhp#hd_id3145271.13.help.text
+msgctxt "03030206.xhp#hd_id3145271.13.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030206.xhp#par_id3152597.30.help.text
+msgid "Sub ExampleTimerValue"
+msgstr "Sub ExampleTimerValue"
+
+#: 03030206.xhp#par_id3147348.31.help.text
+msgid "Dim daDT as Date"
+msgstr "Dim daDT as Date"
+
+#: 03030206.xhp#par_id3148576.32.help.text
+msgid "Dim a1, b1, c1, a2, b2, c2 as String"
+msgstr "Dim a1, b1, c1, a2, b2, c2 as String"
+
+#: 03030206.xhp#par_id3149378.33.help.text
+msgid "a1 = \"start time\""
+msgstr "a1 = \"start time\""
+
+#: 03030206.xhp#par_id3145800.34.help.text
+msgid "b1 = \"end time\""
+msgstr "b1 = \"end time\""
+
+#: 03030206.xhp#par_id3151074.35.help.text
+msgid "c1 = \"total time\""
+msgstr "c1 = \"total time\""
+
+#: 03030206.xhp#par_id3154492.37.help.text
+msgid "a2 = \"8:34\""
+msgstr "a2 = \"8:34\""
+
+#: 03030206.xhp#par_id3155602.38.help.text
+msgid "b2 = \"18:12\""
+msgstr "b2 = \"18:12\""
+
+#: 03030206.xhp#par_id3150715.39.help.text
+msgid "daDT = TimeValue(b2) - TimeValue(a2)"
+msgstr "daDT = TimeValue(b2) - TimeValue(a2)"
+
+#: 03030206.xhp#par_id3153838.40.help.text
+msgid "c2 = a1 & \": \" & a2 & chr(13)"
+msgstr "c2 = a1 & \": \" & a2 & chr(13)"
+
+#: 03030206.xhp#par_id3150749.41.help.text
+msgid "c2 = c2 & b1 & \": \" & b2 & chr(13)"
+msgstr "c2 = c2 & b1 & \": \" & b2 & chr(13)"
+
+#: 03030206.xhp#par_id3154755.42.help.text
+msgid "c2 = c2 & c1 & \": \" & trim(Str(Hour(daDT))) & \":\" & trim(Str(Minute(daDT))) & \":\" & trim(Str(Second(daDT)))"
+msgstr "c2 = c2 & c1 & \": \" & trim(Str(Hour(daDT))) & \":\" & trim(Str(Minute(daDT))) & \":\" & trim(Str(Second(daDT)))"
+
+#: 03030206.xhp#par_id3153714.43.help.text
+msgid "Msgbox c2"
+msgstr "Msgbox c2"
+
+#: 03030206.xhp#par_id3155767.44.help.text
+msgctxt "03030206.xhp#par_id3155767.44.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03104000.xhp#tit.help.text
+msgid "IsMissing function [Runtime]"
+msgstr "IsMissing function [Runtime]"
+
+#: 03104000.xhp#bm_id3153527.help.text
+msgid "<bookmark_value>IsMissing function</bookmark_value>"
+msgstr "<bookmark_value>IsMissing function</bookmark_value>"
+
+#: 03104000.xhp#hd_id3153527.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+
+#: 03104000.xhp#par_id3153825.2.help.text
+msgid "Tests if a function is called with an optional parameter."
+msgstr "Tests if a function is called with an optional parameter."
+
+#: 03104000.xhp#par_id3150669.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgstr "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+
+#: 03104000.xhp#hd_id3145611.4.help.text
+msgctxt "03104000.xhp#hd_id3145611.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03104000.xhp#par_id3154924.5.help.text
+msgid "IsMissing( ArgumentName )"
+msgstr "IsMissing( ArgumentName )"
+
+#: 03104000.xhp#hd_id3145069.6.help.text
+msgctxt "03104000.xhp#hd_id3145069.6.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03104000.xhp#par_id3149457.7.help.text
+msgid "<emph>ArgumentName:</emph> the name of an optional argument."
+msgstr "<emph>ArgumentName:</emph> the name of an optional argument."
+
+#: 03104000.xhp#par_id3150398.8.help.text
+msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
+msgstr "If the IsMissing function is called by the ArgumentName, then True is returned."
+
+#: 03104000.xhp#par_id3148798.9.help.text
+msgctxt "03104000.xhp#par_id3148798.9.help.text"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgstr "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+
+#: 03090410.xhp#tit.help.text
+msgid "Switch Function [Runtime]"
+msgstr "Switch Function [Runtime]"
+
+#: 03090410.xhp#bm_id3148554.help.text
+msgid "<bookmark_value>Switch function</bookmark_value>"
+msgstr "<bookmark_value>Switch function</bookmark_value>"
+
+#: 03090410.xhp#hd_id3148554.1.help.text
+msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
+
+#: 03090410.xhp#par_id3148522.2.help.text
+msgid "Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value that is associated with the expression that is passed by this function."
+msgstr "Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value that is associated with the expression that is passed by this function."
+
+#: 03090410.xhp#hd_id3154863.3.help.text
+msgctxt "03090410.xhp#hd_id3154863.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03090410.xhp#par_id3155934.4.help.text
+msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
+msgstr "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
+
+#: 03090410.xhp#hd_id3149119.5.help.text
+msgctxt "03090410.xhp#hd_id3149119.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03090410.xhp#par_id3153894.6.help.text
+msgid "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
+msgstr "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
+
+#: 03090410.xhp#par_id3153990.7.help.text
+msgid "<emph>Expression:</emph> The expression that you want to evaluate."
+msgstr "<emph>Expression:</emph> The expression that you want to evaluate."
+
+#: 03090410.xhp#par_id3153394.8.help.text
+msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
+msgstr "<emph>Value:</emph> The value that you want to return if the expression is True."
+
+#: 03090410.xhp#par_id3153346.9.help.text
+msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
+msgstr "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
+
+#: 03090410.xhp#hd_id3159157.10.help.text
+msgctxt "03090410.xhp#hd_id3159157.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03090410.xhp#par_id3147573.11.help.text
+msgid "Sub ExampleSwitch"
+msgstr "Sub ExampleSwitch"
+
+#: 03090410.xhp#par_id3143270.12.help.text
+msgid "Dim sGender As String"
+msgstr "Dim sGender As String"
+
+#: 03090410.xhp#par_id3149579.13.help.text
+msgid "sGender = GetGenderIndex( \"John\" )"
+msgstr "sGender = GetGenderIndex( \"John\" )"
+
+#: 03090410.xhp#par_id3153626.14.help.text
+msgid "MsgBox sGender"
+msgstr "MsgBox sGender"
+
+#: 03090410.xhp#par_id3147560.15.help.text
+msgctxt "03090410.xhp#par_id3147560.15.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03090410.xhp#par_id3154758.17.help.text
+msgid "Function GetGenderIndex (sName As String) As String"
+msgstr "Function GetGenderIndex (sName As String) As String"
+
+#: 03090410.xhp#par_id3153361.18.help.text
+msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
+msgstr "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
+
+#: 03090410.xhp#par_id3154939.19.help.text
+msgctxt "03090410.xhp#par_id3154939.19.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 03101140.xhp#tit.help.text
+msgid "DefStr Statement [Runtime]"
+msgstr "DefStr Statement [Runtime]"
+
+#: 03101140.xhp#bm_id6161381.help.text
+msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgstr "<bookmark_value>DefStr statement</bookmark_value>"
+
+#: 03101140.xhp#par_idN10577.help.text
+msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+
+#: 03101140.xhp#par_idN10587.help.text
+msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+msgstr "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+
+#: 03101140.xhp#par_idN1058A.help.text
+msgctxt "03101140.xhp#par_idN1058A.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03101140.xhp#par_idN1058E.help.text
+msgctxt "03101140.xhp#par_idN1058E.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03101140.xhp#par_idN10591.help.text
+msgctxt "03101140.xhp#par_idN10591.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03101140.xhp#par_idN10595.help.text
+msgctxt "03101140.xhp#par_idN10595.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+
+#: 03101140.xhp#par_idN1059C.help.text
+msgctxt "03101140.xhp#par_idN1059C.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03101140.xhp#par_idN105A3.help.text
+msgctxt "03101140.xhp#par_idN105A3.help.text"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "<emph>Keyword:</emph> Default variable type"
+
+#: 03101140.xhp#par_idN105AA.help.text
+msgid "<emph>DefStr:</emph> String"
+msgstr "<emph>DefStr:</emph> String"
+
+#: 03101140.xhp#par_idN105B1.help.text
+msgctxt "03101140.xhp#par_idN105B1.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03101140.xhp#par_idN105B5.help.text
+msgctxt "03101140.xhp#par_idN105B5.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03101140.xhp#par_idN105B8.help.text
+msgctxt "03101140.xhp#par_idN105B8.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03101140.xhp#par_idN105BB.help.text
+msgctxt "03101140.xhp#par_idN105BB.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03101140.xhp#par_idN105BE.help.text
+msgctxt "03101140.xhp#par_idN105BE.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03101140.xhp#par_idN105C1.help.text
+msgctxt "03101140.xhp#par_idN105C1.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03101140.xhp#par_idN105C4.help.text
+msgctxt "03101140.xhp#par_idN105C4.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03101140.xhp#par_idN105C7.help.text
+msgctxt "03101140.xhp#par_idN105C7.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03101140.xhp#par_idN105CA.help.text
+msgctxt "03101140.xhp#par_idN105CA.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03101140.xhp#par_idN105CD.help.text
+msgid "DefStr s"
+msgstr "DefStr s"
+
+#: 03101140.xhp#par_idN105D0.help.text
+msgid "Sub ExampleDefStr"
+msgstr "Sub ExampleDefStr"
+
+#: 03101140.xhp#par_idN105D3.help.text
+msgid "sStr=String REM sStr is an implicit string variable"
+msgstr "sStr=String REM sStr is an implicit string variable"
+
+#: 03101140.xhp#par_idN105D6.help.text
+msgctxt "03101140.xhp#par_idN105D6.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03130800.xhp#tit.help.text
+msgid "Environ Function [Runtime]"
+msgstr "Environ Function [Runtime]"
+
+#: 03130800.xhp#bm_id3155364.help.text
+msgid "<bookmark_value>Environ function</bookmark_value>"
+msgstr "<bookmark_value>Environ function</bookmark_value>"
+
+#: 03130800.xhp#hd_id3155364.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function [Runtime]\">Environ Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function [Runtime]\">Environ Function [Runtime]</link>"
+
+#: 03130800.xhp#par_id3145090.2.help.text
+msgid "Returns the value of an environment variable as a string. Environment variables are dependent on the type of operating system that you have."
+msgstr "Returns the value of an environment variable as a string. Environment variables are dependent on the type of operating system that you have."
+
+#: 03130800.xhp#hd_id3150670.4.help.text
+msgctxt "03130800.xhp#hd_id3150670.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03130800.xhp#par_id3159176.5.help.text
+msgid "Environ (Environment As String)"
+msgstr "Environ (Environment As String)"
+
+#: 03130800.xhp#hd_id3159157.6.help.text
+msgctxt "03130800.xhp#hd_id3159157.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03130800.xhp#par_id3148473.7.help.text
+msgctxt "03130800.xhp#par_id3148473.7.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03130800.xhp#hd_id3145609.8.help.text
+msgctxt "03130800.xhp#hd_id3145609.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03130800.xhp#par_id3159414.9.help.text
+msgid "Environment: Environment variable that you want to return the value for."
+msgstr "Environment: Environment variable that you want to return the value for."
+
+#: 03130800.xhp#hd_id3148663.10.help.text
+msgctxt "03130800.xhp#hd_id3148663.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03130800.xhp#par_id3149655.11.help.text
+msgid "Sub ExampleEnviron"
+msgstr "Sub ExampleEnviron"
+
+#: 03130800.xhp#par_id3154940.12.help.text
+msgctxt "03130800.xhp#par_id3154940.12.help.text"
+msgid "Dim sTemp As String"
+msgstr "Dim sTemp As String"
+
+#: 03130800.xhp#par_id3148920.13.help.text
+msgid "sTemp=Environ (\"TEMP\")"
+msgstr "sTemp=Environ (\"TEMP\")"
+
+#: 03130800.xhp#par_id3150869.14.help.text
+msgid "If sTemp = \"\" Then sTemp=Environ(\"TMP\")"
+msgstr "If sTemp = \"\" Then sTemp=Environ(\"TMP\")"
+
+#: 03130800.xhp#par_id3145419.15.help.text
+msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
+msgstr "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
+
+#: 03130800.xhp#par_id3154124.16.help.text
+msgctxt "03130800.xhp#par_id3154124.16.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03020204.xhp#tit.help.text
+msgid "Put Statement [Runtime]"
+msgstr "Put Statement [Runtime]"
+
+#: 03020204.xhp#bm_id3150360.help.text
+msgid "<bookmark_value>Put statement</bookmark_value>"
+msgstr "<bookmark_value>Put statement</bookmark_value>"
+
+#: 03020204.xhp#hd_id3150360.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
+
+#: 03020204.xhp#par_id3154909.2.help.text
+msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
+msgstr "Writes a record to a relative file or a sequence of bytes to a binary file."
+
+#: 03020204.xhp#par_id3156281.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
+msgstr "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
+
+#: 03020204.xhp#hd_id3125863.4.help.text
+msgctxt "03020204.xhp#hd_id3125863.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020204.xhp#par_id3155132.5.help.text
+msgid "Put [#] FileNumber As Integer, [position], Variable"
+msgstr "Put [#] FileNumber As Integer, [position], Variable"
+
+#: 03020204.xhp#hd_id3153190.6.help.text
+msgctxt "03020204.xhp#hd_id3153190.6.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020204.xhp#par_id3146120.7.help.text
+msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
+msgstr "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
+
+#: 03020204.xhp#par_id3155411.8.help.text
+msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
+msgstr "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
+
+#: 03020204.xhp#par_id3148576.9.help.text
+msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
+msgstr "For binary files (binary access), the position of the byte in the file where you want to start writing."
+
+#: 03020204.xhp#par_id3153729.10.help.text
+msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
+msgstr "<emph>Variable:</emph> Name of the variable that you want to write to the file."
+
+#: 03020204.xhp#par_id3146974.11.help.text
+msgid "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to."
+msgstr "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to."
+
+#: 03020204.xhp#par_id3155855.12.help.text
+msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
+msgstr "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
+
+#: 03020204.xhp#hd_id3154491.13.help.text
+msgctxt "03020204.xhp#hd_id3154491.13.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020204.xhp#par_id3149410.14.help.text
+msgctxt "03020204.xhp#par_id3149410.14.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr "Sub ExampleRandomAccess"
+
+#: 03020204.xhp#par_id3149959.15.help.text
+msgctxt "03020204.xhp#par_id3149959.15.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020204.xhp#par_id3154729.16.help.text
+msgid "Dim sText As Variant REM Must be a variant type"
+msgstr "Dim sText As Variant REM Must be a variant type"
+
+#: 03020204.xhp#par_id3156286.17.help.text
+msgctxt "03020204.xhp#par_id3156286.17.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020204.xhp#par_id3149400.18.help.text
+msgctxt "03020204.xhp#par_id3149400.18.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020204.xhp#par_id3149124.20.help.text
+msgctxt "03020204.xhp#par_id3149124.20.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020204.xhp#par_id3150330.21.help.text
+msgctxt "03020204.xhp#par_id3150330.21.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aFile For Random As #iNumber Len=32"
+
+#: 03020204.xhp#par_id3156278.22.help.text
+msgid "Seek #iNumber,1 REM Position to start writing"
+msgstr "Seek #iNumber,1 REM Position to start writing"
+
+#: 03020204.xhp#par_id3153711.23.help.text
+msgctxt "03020204.xhp#par_id3153711.23.help.text"
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+
+#: 03020204.xhp#par_id3155446.24.help.text
+msgctxt "03020204.xhp#par_id3155446.24.help.text"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"This is the second line of text\""
+
+#: 03020204.xhp#par_id3154255.25.help.text
+msgctxt "03020204.xhp#par_id3154255.25.help.text"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"This is the third line of text\""
+
+#: 03020204.xhp#par_id3150045.26.help.text
+msgctxt "03020204.xhp#par_id3150045.26.help.text"
+msgid "Seek #iNumber,2"
+msgstr "Seek #iNumber,2"
+
+#: 03020204.xhp#par_id3145149.27.help.text
+msgctxt "03020204.xhp#par_id3145149.27.help.text"
+msgid "Get #iNumber,,sText"
+msgstr "Get #iNumber,,sText"
+
+#: 03020204.xhp#par_id3147363.28.help.text
+msgctxt "03020204.xhp#par_id3147363.28.help.text"
+msgid "Print sText"
+msgstr "Print sText"
+
+#: 03020204.xhp#par_id3163806.29.help.text
+msgctxt "03020204.xhp#par_id3163806.29.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020204.xhp#par_id3149568.31.help.text
+msgctxt "03020204.xhp#par_id3149568.31.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020204.xhp#par_id3155607.32.help.text
+msgctxt "03020204.xhp#par_id3155607.32.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aFile For Random As #iNumber Len=32"
+
+#: 03020204.xhp#par_id3154022.33.help.text
+msgctxt "03020204.xhp#par_id3154022.33.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumber,2,sText"
+
+#: 03020204.xhp#par_id3150940.34.help.text
+msgid "Put #iNumber,,\"This is new text\""
+msgstr "Put #iNumber,,\"This is new text\""
+
+#: 03020204.xhp#par_id3146132.35.help.text
+msgctxt "03020204.xhp#par_id3146132.35.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr "Get #iNumber,1,sText"
+
+#: 03020204.xhp#par_id3154198.36.help.text
+msgctxt "03020204.xhp#par_id3154198.36.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumber,2,sText"
+
+#: 03020204.xhp#par_id3159102.37.help.text
+msgctxt "03020204.xhp#par_id3159102.37.help.text"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber,20,\"This is the text in record 20\""
+
+#: 03020204.xhp#par_id3153785.38.help.text
+msgctxt "03020204.xhp#par_id3153785.38.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr "Print Lof(#iNumber)"
+
+#: 03020204.xhp#par_id3151277.39.help.text
+msgctxt "03020204.xhp#par_id3151277.39.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020204.xhp#par_id3150786.41.help.text
+msgctxt "03020204.xhp#par_id3150786.41.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020201.xhp#tit.help.text
+msgid "Get Statement [Runtime]"
+msgstr "Get Statement [Runtime]"
+
+#: 03020201.xhp#bm_id3154927.help.text
+msgid "<bookmark_value>Get statement</bookmark_value>"
+msgstr "<bookmark_value>Get statement</bookmark_value>"
+
+#: 03020201.xhp#hd_id3154927.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
+
+#: 03020201.xhp#par_id3145069.2.help.text
+msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
+msgstr "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
+
+#: 03020201.xhp#par_id3154346.3.help.text
+msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
+msgstr "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
+
+#: 03020201.xhp#hd_id3150358.4.help.text
+msgctxt "03020201.xhp#hd_id3150358.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020201.xhp#par_id3150792.5.help.text
+msgid "Get [#] FileNumber As Integer, [Position], Variable"
+msgstr "Get [#] FileNumber As Integer, [Position], Variable"
+
+#: 03020201.xhp#hd_id3154138.6.help.text
+msgctxt "03020201.xhp#hd_id3154138.6.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020201.xhp#par_id3150448.7.help.text
+msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
+msgstr "<emph>FileNumber:</emph> Any integer expression that determines the file number."
+
+#: 03020201.xhp#par_id3154684.8.help.text
+msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
+msgstr "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
+
+#: 03020201.xhp#par_id3153768.9.help.text
+msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
+msgstr "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
+
+#: 03020201.xhp#par_id3147319.10.help.text
+msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
+msgstr "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
+
+#: 03020201.xhp#par_id3149484.11.help.text
+msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgstr "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
+
+#: 03020201.xhp#hd_id3153144.12.help.text
+msgctxt "03020201.xhp#hd_id3153144.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020201.xhp#par_id3159154.13.help.text
+msgctxt "03020201.xhp#par_id3159154.13.help.text"
+msgid "Sub ExampleRandomAccess"
+msgstr "Sub ExampleRandomAccess"
+
+#: 03020201.xhp#par_id3153188.14.help.text
+msgctxt "03020201.xhp#par_id3153188.14.help.text"
+msgid "Dim iNumber As Integer"
+msgstr "Dim iNumber As Integer"
+
+#: 03020201.xhp#par_id3155307.15.help.text
+msgid "Dim sText As Variant REM Must be a variant"
+msgstr "Dim sText As Variant REM Must be a variant"
+
+#: 03020201.xhp#par_id3152577.16.help.text
+msgctxt "03020201.xhp#par_id3152577.16.help.text"
+msgid "Dim aFile As String"
+msgstr "Dim aFile As String"
+
+#: 03020201.xhp#par_id3153726.17.help.text
+msgctxt "03020201.xhp#par_id3153726.17.help.text"
+msgid "aFile = \"c:\\data.txt\""
+msgstr "aFile = \"c:\\data.txt\""
+
+#: 03020201.xhp#par_id3154490.19.help.text
+msgctxt "03020201.xhp#par_id3154490.19.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020201.xhp#par_id3150418.20.help.text
+msgctxt "03020201.xhp#par_id3150418.20.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aFile For Random As #iNumber Len=32"
+
+#: 03020201.xhp#par_id3149411.21.help.text
+msgid "Seek #iNumber,1 REM Position at beginning"
+msgstr "Seek #iNumber,1 REM Position at beginning"
+
+#: 03020201.xhp#par_id3153158.22.help.text
+msgctxt "03020201.xhp#par_id3153158.22.help.text"
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+
+#: 03020201.xhp#par_id3148457.23.help.text
+msgctxt "03020201.xhp#par_id3148457.23.help.text"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Put #iNumber,, \"This is the second line of text\""
+
+#: 03020201.xhp#par_id3150715.24.help.text
+msgctxt "03020201.xhp#par_id3150715.24.help.text"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Put #iNumber,, \"This is the third line of text\""
+
+#: 03020201.xhp#par_id3153836.25.help.text
+msgctxt "03020201.xhp#par_id3153836.25.help.text"
+msgid "Seek #iNumber,2"
+msgstr "Seek #iNumber,2"
+
+#: 03020201.xhp#par_id3150327.26.help.text
+msgctxt "03020201.xhp#par_id3150327.26.help.text"
+msgid "Get #iNumber,,sText"
+msgstr "Get #iNumber,,sText"
+
+#: 03020201.xhp#par_id3153707.27.help.text
+msgctxt "03020201.xhp#par_id3153707.27.help.text"
+msgid "Print sText"
+msgstr "Print sText"
+
+#: 03020201.xhp#par_id3153764.28.help.text
+msgctxt "03020201.xhp#par_id3153764.28.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020201.xhp#par_id3153715.30.help.text
+msgctxt "03020201.xhp#par_id3153715.30.help.text"
+msgid "iNumber = Freefile"
+msgstr "iNumber = Freefile"
+
+#: 03020201.xhp#par_id3154256.31.help.text
+msgctxt "03020201.xhp#par_id3154256.31.help.text"
+msgid "Open aFile For Random As #iNumber Len=32"
+msgstr "Open aFile For Random As #iNumber Len=32"
+
+#: 03020201.xhp#par_id3147340.32.help.text
+msgctxt "03020201.xhp#par_id3147340.32.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumber,2,sText"
+
+#: 03020201.xhp#par_id3155938.33.help.text
+msgid "Put #iNumber,,\"This is a new text\""
+msgstr "Put #iNumber,,\"This is a new text\""
+
+#: 03020201.xhp#par_id3155959.34.help.text
+msgctxt "03020201.xhp#par_id3155959.34.help.text"
+msgid "Get #iNumber,1,sText"
+msgstr "Get #iNumber,1,sText"
+
+#: 03020201.xhp#par_id3147361.35.help.text
+msgctxt "03020201.xhp#par_id3147361.35.help.text"
+msgid "Get #iNumber,2,sText"
+msgstr "Get #iNumber,2,sText"
+
+#: 03020201.xhp#par_id3146916.36.help.text
+msgctxt "03020201.xhp#par_id3146916.36.help.text"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber,20,\"This is the text in record 20\""
+
+#: 03020201.xhp#par_id3149259.37.help.text
+msgctxt "03020201.xhp#par_id3149259.37.help.text"
+msgid "Print Lof(#iNumber)"
+msgstr "Print Lof(#iNumber)"
+
+#: 03020201.xhp#par_id3153790.38.help.text
+msgctxt "03020201.xhp#par_id3153790.38.help.text"
+msgid "Close #iNumber"
+msgstr "Close #iNumber"
+
+#: 03020201.xhp#par_id3155606.40.help.text
+msgctxt "03020201.xhp#par_id3155606.40.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03020100.xhp#tit.help.text
+msgid "Opening and Closing Files"
+msgstr "Opening and Closing Files"
+
+#: 03020100.xhp#hd_id3152924.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
+
+#: 03030108.xhp#tit.help.text
+msgid "CDateFromIso Function [Runtime]"
+msgstr "CDateFromIso Function [Runtime]"
+
+#: 03030108.xhp#bm_id3153127.help.text
+msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
+msgstr "<bookmark_value>CdateFromIso function</bookmark_value>"
+
+#: 03030108.xhp#hd_id3153127.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">CDateFromIso Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function [Runtime]\">CDateFromIso Function [Runtime]</link>"
+
+#: 03030108.xhp#par_id3148550.2.help.text
+msgid "Returns the internal date number from a string that contains a date in ISO format."
+msgstr "Returns the internal date number from a string that contains a date in ISO format."
+
+#: 03030108.xhp#hd_id3148947.3.help.text
+msgctxt "03030108.xhp#hd_id3148947.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030108.xhp#par_id3150400.4.help.text
+msgid "CDateFromIso(String)"
+msgstr "CDateFromIso(String)"
+
+#: 03030108.xhp#hd_id3154367.5.help.text
+msgctxt "03030108.xhp#hd_id3154367.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03030108.xhp#par_id3156212.6.help.text
+msgid "Internal date number"
+msgstr "Internal date number"
+
+#: 03030108.xhp#hd_id3125864.7.help.text
+msgctxt "03030108.xhp#hd_id3125864.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030108.xhp#par_id3154685.8.help.text
+msgid "<emph>String:</emph> A string that contains a date in ISO format. The year may have two or four digits."
+msgstr "<emph>String:</emph> A string that contains a date in ISO format. The year may have two or four digits."
+
+#: 03030108.xhp#hd_id3150439.9.help.text
+msgctxt "03030108.xhp#hd_id3150439.9.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030108.xhp#par_id3147318.10.help.text
+msgid "dateval = CDateFromIso(\"20021231\")"
+msgstr "dateval = CDateFromIso(\"20021231\")"
+
+#: 03030108.xhp#par_id3146921.11.help.text
+msgid "returns 12/31/2002 in the date format of your system"
+msgstr "returns 12/31/2002 in the date format of your system"
+
+#: 03030301.xhp#tit.help.text
+msgid "Date Statement [Runtime]"
+msgstr "Date Statement [Runtime]"
+
+#: 03030301.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>Date statement</bookmark_value>"
+msgstr "<bookmark_value>Date statement</bookmark_value>"
+
+#: 03030301.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
+
+#: 03030301.xhp#par_id3147291.2.help.text
+msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
+msgstr "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
+
+#: 03030301.xhp#hd_id3148686.3.help.text
+msgctxt "03030301.xhp#hd_id3148686.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03030301.xhp#par_id3146794.4.help.text
+msgid "Date ; Date = Text As String"
+msgstr "Date ; Date = Text As String"
+
+#: 03030301.xhp#hd_id3154347.5.help.text
+msgctxt "03030301.xhp#hd_id3154347.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03030301.xhp#par_id3145069.6.help.text
+msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
+msgstr "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
+
+#: 03030301.xhp#hd_id3150793.7.help.text
+msgctxt "03030301.xhp#hd_id3150793.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03030301.xhp#par_id3151212.8.help.text
+msgid "Sub ExampleDate"
+msgstr "Sub ExampleDate"
+
+#: 03030301.xhp#par_id3156424.9.help.text
+msgid "msgbox \"The date is \" & Date"
+msgstr "msgbox \"The date is \" & Date"
+
+#: 03030301.xhp#par_id3145174.10.help.text
+msgctxt "03030301.xhp#par_id3145174.10.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03131600.xhp#tit.help.text
+msgid "CreateUnoService Function [Runtime]"
+msgstr "CreateUnoService Function [Runtime]"
+
+#: 03131600.xhp#bm_id3150682.help.text
+msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
+msgstr "<bookmark_value>CreateUnoService function</bookmark_value>"
+
+#: 03131600.xhp#hd_id3150682.1.help.text
+msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
+
+#: 03131600.xhp#par_id3152924.2.help.text
+msgid "Instantiates a Uno service with the ProcessServiceManager."
+msgstr "Instantiates a Uno service with the ProcessServiceManager."
+
+#: 03131600.xhp#hd_id3152801.3.help.text
+msgctxt "03131600.xhp#hd_id3152801.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03131600.xhp#par_id3153346.4.help.text
+msgid "oService = CreateUnoService( Uno service name )"
+msgstr "oService = CreateUnoService( Uno service name )"
+
+#: 03131600.xhp#par_idN1060F.help.text
+#, fuzzy
+msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+msgstr "For a list of available services, go to: http://api.openoffice.org/docs/common/ref/com/sun/star/module-ix.html"
+
+#: 03131600.xhp#hd_id3151111.5.help.text
+msgctxt "03131600.xhp#hd_id3151111.5.help.text"
+msgid "Examples:"
+msgstr "Examples:"
+
+#: 03131600.xhp#par_id3154046.6.help.text
+msgctxt "03131600.xhp#par_id3154046.6.help.text"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+
+#: 03131600.xhp#bm_id8334604.help.text
+msgid "<bookmark_value>filepicker;API service</bookmark_value>"
+msgstr "<bookmark_value>filepicker;API service</bookmark_value>"
+
+#: 03131600.xhp#par_idN10625.help.text
+msgid "The following code uses a service to open a file open dialog:"
+msgstr "The following code uses a service to open a file open dialogue:"
+
+#: 03131600.xhp#par_idN10628.help.text
+msgctxt "03131600.xhp#par_idN10628.help.text"
+msgid "Sub Main"
+msgstr "Sub Main"
+
+#: 03131600.xhp#par_idN1062B.help.text
+msgid "fName = FileOpenDialog (\"Please select a file\")"
+msgstr "fName = FileOpenDialog (\"Please select a file\")"
+
+#: 03131600.xhp#par_idN10630.help.text
+msgid "print \"file chosen: \"+fName"
+msgstr "print \"file chosen: \"+fName"
+
+#: 03131600.xhp#par_idN10635.help.text
+msgctxt "03131600.xhp#par_idN10635.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03131600.xhp#par_idN1063A.help.text
+msgid "function FileOpenDialog(title as String) as String"
+msgstr "function FileOpenDialog(title as String) as String"
+
+#: 03131600.xhp#par_idN1063D.help.text
+msgid "filepicker = createUnoService(\"com.sun.star.ui.dialogs.FilePicker\")"
+msgstr "filepicker = createUnoService(\"com.sun.star.ui.dialogs.FilePicker\")"
+
+#: 03131600.xhp#par_idN10642.help.text
+msgid "filepicker.Title = title"
+msgstr "filepicker.Title = title"
+
+#: 03131600.xhp#par_idN10647.help.text
+msgid "filepicker.execute()"
+msgstr "filepicker.execute()"
+
+#: 03131600.xhp#par_idN1064C.help.text
+msgid "files = filepicker.getFiles()"
+msgstr "files = filepicker.getFiles()"
+
+#: 03131600.xhp#par_idN10651.help.text
+msgid "FileOpenDialog=files(0)"
+msgstr "FileOpenDialog=files(0)"
+
+#: 03131600.xhp#par_idN10656.help.text
+msgid "End function"
+msgstr "End function"
+
+#: 03120301.xhp#tit.help.text
+msgid "Format Function [Runtime]"
+msgstr "Format Function [Runtime]"
+
+#: 03120301.xhp#bm_id3153539.help.text
+msgid "<bookmark_value>Format function</bookmark_value>"
+msgstr "<bookmark_value>Format function</bookmark_value>"
+
+#: 03120301.xhp#hd_id3153539.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
+
+#: 03120301.xhp#par_id3156042.2.help.text
+msgid "Converts a number to a string, and then formats it according to the format that you specify."
+msgstr "Converts a number to a string, and then formats it according to the format that you specify."
+
+#: 03120301.xhp#hd_id3145090.4.help.text
+msgctxt "03120301.xhp#hd_id3145090.4.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120301.xhp#par_id3153527.5.help.text
+msgid "Format (Number [, Format As String])"
+msgstr "Format (Number [, Format As String])"
+
+#: 03120301.xhp#hd_id3149178.6.help.text
+msgctxt "03120301.xhp#hd_id3149178.6.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120301.xhp#par_id3148474.7.help.text
+msgctxt "03120301.xhp#par_id3148474.7.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03120301.xhp#hd_id3159176.8.help.text
+msgctxt "03120301.xhp#hd_id3159176.8.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120301.xhp#par_id3149415.9.help.text
+msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
+msgstr "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
+
+#: 03120301.xhp#par_id3147531.10.help.text
+msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
+msgstr "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
+
+#: 03120301.xhp#hd_id3147561.47.help.text
+msgid "Formatting Codes"
+msgstr "Formatting Codes"
+
+#: 03120301.xhp#par_id3147265.11.help.text
+msgid "The following list describes the codes that you can use for formatting a number:"
+msgstr "The following list describes the codes that you can use for formatting a number:"
+
+#: 03120301.xhp#par_id3153380.12.help.text
+msgid "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
+msgstr "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
+
+#: 03120301.xhp#par_id3151210.13.help.text
+msgid "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
+msgstr "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
+
+#: 03120301.xhp#par_id3151176.14.help.text
+msgid "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
+msgstr "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
+
+#: 03120301.xhp#par_id3154123.15.help.text
+msgid "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
+msgstr "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
+
+#: 03120301.xhp#par_id3148452.16.help.text
+msgid "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the number. Only the relevant digits of the number are displayed."
+msgstr "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the number. Only the relevant digits of the number are displayed."
+
+#: 03120301.xhp#par_id3159150.17.help.text
+msgid "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
+msgstr "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
+
+#: 03120301.xhp#par_id3159252.18.help.text
+msgid "If the format code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator."
+msgstr "If the format code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator."
+
+#: 03120301.xhp#par_id3153368.19.help.text
+msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
+msgstr "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
+
+#: 03120301.xhp#par_id3149481.20.help.text
+msgid "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent."
+msgstr "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent."
+
+#: 03120301.xhp#par_id3149262.21.help.text
+msgid "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
+msgstr "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
+
+#: 03120301.xhp#par_id3148617.23.help.text
+msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
+msgstr "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
+
+#: 03120301.xhp#par_id3163713.29.help.text
+msgid "The use of a period as a thousands and decimal separator is dependent on the regional setting. When you enter a number directly in Basic source code, always use a period as decimal delimiter. The actual character displayed as a decimal separator depends on the number format in your system settings."
+msgstr "The use of a period as a thousands and decimal separator is dependent on the regional setting. When you enter a number directly in Basic source code, always use a period as decimal delimiter. The actual character displayed as a decimal separator depends on the number format in your system settings."
+
+#: 03120301.xhp#par_id3152887.24.help.text
+msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
+msgstr "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
+
+#: 03120301.xhp#par_id3148576.25.help.text
+msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
+msgstr "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
+
+#: 03120301.xhp#par_id3153139.26.help.text
+msgid "\\ : The backslash displays the next character in the format code."
+msgstr "\\ : The backslash displays the next character in the format code."
+
+#: 03120301.xhp#par_id3153366.27.help.text
+msgid "Characters in the format code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\\\) in the format code."
+msgstr "Characters in the format code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\\\) in the format code."
+
+#: 03120301.xhp#par_id3155411.28.help.text
+msgid "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)."
+msgstr "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)."
+
+#: 03120301.xhp#par_id3145749.30.help.text
+msgid "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
+msgstr "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
+
+#: 03120301.xhp#par_id3150113.31.help.text
+msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
+msgstr "If you use predefined formats, the name of the format must be enclosed in quotation marks."
+
+#: 03120301.xhp#hd_id3149377.32.help.text
+msgid "Predefined format"
+msgstr "Predefined format"
+
+#: 03120301.xhp#par_id3154730.33.help.text
+msgid "<emph>General Number:</emph> Numbers are displayed as entered."
+msgstr "<emph>General Number:</emph> Numbers are displayed as entered."
+
+#: 03120301.xhp#par_id3153158.34.help.text
+msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
+msgstr "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
+
+#: 03120301.xhp#par_id3154490.35.help.text
+msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
+msgstr "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
+
+#: 03120301.xhp#par_id3153415.36.help.text
+msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
+msgstr "<emph>Standard:</emph> Displays numbers with a thousands separator."
+
+#: 03120301.xhp#par_id3150715.37.help.text
+msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
+msgstr "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
+
+#: 03120301.xhp#par_id3153836.38.help.text
+msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+msgstr "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+
+#: 03120301.xhp#par_id3153707.39.help.text
+msgid "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
+msgstr "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
+
+#: 03120301.xhp#hd_id3149019.40.help.text
+msgctxt "03120301.xhp#hd_id3149019.40.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03120301.xhp#par_id3156054.41.help.text
+msgid "Sub ExampleFormat"
+msgstr "Sub ExampleFormat"
+
+#: 03120301.xhp#par_id3148993.42.help.text
+msgid "MsgBox Format(6328.2, \"##,##0.00\")"
+msgstr "MsgBox Format(6328.2, \"##,##0.00\")"
+
+#: 03120301.xhp#par_idN107A2.help.text
+msgid "REM always use a period as decimal delimiter when you enter numbers in Basic source code."
+msgstr "REM always use a period as decimal delimiter when you enter numbers in Basic source code."
+
+#: 03120301.xhp#par_id3147339.46.help.text
+msgid "REM displays for example 6,328.20 in English locale, 6.328,20 in German locale."
+msgstr "REM displays for example 6,328.20 in English locale, 6.328,20 in German locale."
+
+#: 03120301.xhp#par_id3156382.43.help.text
+msgctxt "03120301.xhp#par_id3156382.43.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 03130500.xhp#tit.help.text
+msgid "Shell Function [Runtime]"
+msgstr "Shell Function [Runtime]"
+
+#: 03130500.xhp#bm_id3150040.help.text
+msgid "<bookmark_value>Shell function</bookmark_value>"
+msgstr "<bookmark_value>Shell function</bookmark_value>"
+
+#: 03130500.xhp#hd_id3150040.1.help.text
+msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
+
+#: 03130500.xhp#par_id3153394.2.help.text
+msgid "Starts another application and defines the respective window style, if necessary."
+msgstr "Starts another application and defines the respective window style, if necessary."
+
+#: 03130500.xhp#hd_id3153345.4.help.text
+msgctxt "03130500.xhp#hd_id3153345.4.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 03130500.xhp#par_id3147576.5.help.text
+msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync]) "
+msgstr "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync]) "
+
+#: 03130500.xhp#hd_id3149235.6.help.text
+msgctxt "03130500.xhp#hd_id3149235.6.help.text"
+msgid "Parameter"
+msgstr "Parameter"
+
+#: 03130500.xhp#hd_id3154306.23.help.text
+msgid "Pathname"
+msgstr "Pathname"
+
+#: 03130500.xhp#par_id3155419.7.help.text
+msgid "Complete path and program name of the program that you want to start."
+msgstr "Complete path and program name of the program that you want to start."
+
+#: 03130500.xhp#hd_id3150771.24.help.text
+msgid "Windowstyle"
+msgstr "Windowstyle"
+
+#: 03130500.xhp#par_id3145609.8.help.text
+msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
+msgstr "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
+
+#: 03130500.xhp#par_id3148663.25.help.text
+msgctxt "03130500.xhp#par_id3148663.25.help.text"
+msgid "0"
+msgstr "0"
+
+#: 03130500.xhp#par_id3153360.10.help.text
+msgid "The focus is on the hidden program window."
+msgstr "The focus is on the hidden program window."
+
+#: 03130500.xhp#par_id3154123.26.help.text
+msgctxt "03130500.xhp#par_id3154123.26.help.text"
+msgid "1"
+msgstr "1"
+
+#: 03130500.xhp#par_id3144760.11.help.text
+msgid "The focus is on the program window in standard size."
+msgstr "The focus is on the program window in standard size."
+
+#: 03130500.xhp#par_id3156422.27.help.text
+msgctxt "03130500.xhp#par_id3156422.27.help.text"
+msgid "2"
+msgstr "2"
+
+#: 03130500.xhp#par_id3148451.12.help.text
+msgid "The focus is on the minimized program window."
+msgstr "The focus is on the minimised program window."
+
+#: 03130500.xhp#par_id3149561.28.help.text
+msgctxt "03130500.xhp#par_id3149561.28.help.text"
+msgid "3"
+msgstr "3"
+
+#: 03130500.xhp#par_id3146921.13.help.text
+msgid "focus is on the maximized program window."
+msgstr "focus is on the maximised program window."
+
+#: 03130500.xhp#par_id3149481.29.help.text
+msgctxt "03130500.xhp#par_id3149481.29.help.text"
+msgid "4"
+msgstr "4"
+
+#: 03130500.xhp#par_id3155854.14.help.text
+msgid "Standard size program window, without focus."
+msgstr "Standard size program window, without focus."
+
+#: 03130500.xhp#par_id3145271.30.help.text
+msgctxt "03130500.xhp#par_id3145271.30.help.text"
+msgid "6"
+msgstr "6"
+
+#: 03130500.xhp#par_id3152938.15.help.text
+msgid "Minimized program window, focus remains on the active window."
+msgstr "Minimised program window, focus remains on the active window."
+
+#: 03130500.xhp#par_id3146119.31.help.text
+msgid "10"
+msgstr "10"
+
+#: 03130500.xhp#par_id3151112.16.help.text
+msgid "Full-screen display."
+msgstr "Full-screen display."
+
+#: 03130500.xhp#hd_id3150419.33.help.text
+msgid "Param"
+msgstr "Param"
+
+#: 03130500.xhp#par_id3149412.17.help.text
+msgid "Any string expression that specifies the command line that want to pass."
+msgstr "Any string expression that specifies the command line that want to pass."
+
+#: 03130500.xhp#hd_id3148456.32.help.text
+msgid "bSync"
+msgstr "bSync"
+
+#: 03130500.xhp#par_id3154096.18.help.text
+msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
+msgstr "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
+
+#: 03130500.xhp#hd_id3154270.19.help.text
+msgctxt "03130500.xhp#hd_id3154270.19.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 03130500.xhp#par_id3153948.20.help.text
+msgid "Sub ExampleShellForWin"
+msgstr "Sub ExampleShellForWin"
+
+#: 03130500.xhp#par_id3154479.21.help.text
+msgid " Shell(\"c:\\windows\\calc.exe\",2)"
+msgstr " Shell(\"c:\\windows\\calc.exe\",2)"
+
+#: 03130500.xhp#par_id3153709.22.help.text
+msgctxt "03130500.xhp#par_id3153709.22.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03104600.xhp#tit.help.text
+msgid "EqualUnoObjects Function [Runtime]"
+msgstr "EqualUnoObjects Function [Runtime]"
+
+#: 03104600.xhp#bm_id3149205.help.text
+msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+msgstr "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+
+#: 03104600.xhp#hd_id3149205.1.help.text
+msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
+
+#: 03104600.xhp#par_id3145090.2.help.text
+msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+msgstr "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+
+#: 03104600.xhp#hd_id3148538.3.help.text
+msgctxt "03104600.xhp#hd_id3148538.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03104600.xhp#par_id3150669.4.help.text
+msgid "EqualUnoObjects( oObj1, oObj2 )"
+msgstr "EqualUnoObjects( oObj1, oObj2 )"
+
+#: 03104600.xhp#hd_id3150984.5.help.text
+msgctxt "03104600.xhp#hd_id3150984.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03104600.xhp#par_id3154285.6.help.text
+msgctxt "03104600.xhp#par_id3154285.6.help.text"
+msgid "Bool"
+msgstr "Bool"
+
+#: 03104600.xhp#hd_id3145315.7.help.text
+msgctxt "03104600.xhp#hd_id3145315.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03104600.xhp#par_id3156024.8.help.text
+msgid "// Copy of objects -> same instance"
+msgstr "// Copy of objects -> same instance"
+
+#: 03104600.xhp#par_id3154923.9.help.text
+msgctxt "03104600.xhp#par_id3154923.9.help.text"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+msgstr "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
+
+#: 03104600.xhp#par_id3147559.10.help.text
+msgid "oIntro2 = oIntrospection"
+msgstr "oIntro2 = oIntrospection"
+
+#: 03104600.xhp#par_id3150541.11.help.text
+msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
+msgstr "print EqualUnoObjects( oIntrospection, oIntro2 )"
+
+#: 03104600.xhp#par_id3153525.12.help.text
+msgid "// Copy of structs as value -> new instance"
+msgstr "// Copy of structs as value -> new instance"
+
+#: 03104600.xhp#par_id3154366.13.help.text
+msgid "Dim Struct1 as new com.sun.star.beans.Property"
+msgstr "Dim Struct1 as new com.sun.star.beans.Property"
+
+#: 03104600.xhp#par_id3154348.14.help.text
+msgid "Struct2 = Struct1"
+msgstr "Struct2 = Struct1"
+
+#: 03104600.xhp#par_id3154125.15.help.text
+msgid "print EqualUnoObjects( Struct1, Struct2 )"
+msgstr "print EqualUnoObjects( Struct1, Struct2 )"
+
+#: 03102000.xhp#tit.help.text
+msgid "DefVar Statement [Runtime]"
+msgstr "DefVar Statement [Runtime]"
+
+#: 03102000.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgstr "<bookmark_value>DefVar statement</bookmark_value>"
+
+#: 03102000.xhp#hd_id3143267.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
+
+#: 03102000.xhp#par_id3153825.2.help.text
+msgctxt "03102000.xhp#par_id3153825.2.help.text"
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgstr "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+
+#: 03102000.xhp#hd_id3154143.3.help.text
+msgctxt "03102000.xhp#hd_id3154143.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102000.xhp#par_id3149514.4.help.text
+msgctxt "03102000.xhp#par_id3149514.4.help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr "Defxxx Characterrange1[, Characterrange2[,...]]"
+
+#: 03102000.xhp#hd_id3156024.5.help.text
+msgctxt "03102000.xhp#hd_id3156024.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102000.xhp#par_id3147560.6.help.text
+msgctxt "03102000.xhp#par_id3147560.6.help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+
+#: 03102000.xhp#par_id3148552.7.help.text
+msgctxt "03102000.xhp#par_id3148552.7.help.text"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr "<emph>xxx:</emph> Keyword that defines the default variable type:"
+
+#: 03102000.xhp#par_id3153524.8.help.text
+msgctxt "03102000.xhp#par_id3153524.8.help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph>Keyword: </emph>Default variable type"
+
+#: 03102000.xhp#par_id3150767.9.help.text
+msgid "<emph>DefVar:</emph> Variant"
+msgstr "<emph>DefVar:</emph> Variant"
+
+#: 03102000.xhp#hd_id3151041.10.help.text
+msgctxt "03102000.xhp#hd_id3151041.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102000.xhp#par_id3156214.11.help.text
+msgctxt "03102000.xhp#par_id3156214.11.help.text"
+msgid "REM Prefix definitions for variable types:"
+msgstr "REM Prefix definitions for variable types:"
+
+#: 03102000.xhp#par_id3145173.12.help.text
+msgctxt "03102000.xhp#par_id3145173.12.help.text"
+msgid "DefBool b"
+msgstr "DefBool b"
+
+#: 03102000.xhp#par_id3150448.13.help.text
+msgctxt "03102000.xhp#par_id3150448.13.help.text"
+msgid "DefDate t"
+msgstr "DefDate t"
+
+#: 03102000.xhp#par_id3153368.14.help.text
+msgctxt "03102000.xhp#par_id3153368.14.help.text"
+msgid "DefDbL d"
+msgstr "DefDbL d"
+
+#: 03102000.xhp#par_id3155132.15.help.text
+msgctxt "03102000.xhp#par_id3155132.15.help.text"
+msgid "DefInt i"
+msgstr "DefInt i"
+
+#: 03102000.xhp#par_id3155855.16.help.text
+msgctxt "03102000.xhp#par_id3155855.16.help.text"
+msgid "DefLng l"
+msgstr "DefLng l"
+
+#: 03102000.xhp#par_id3147426.17.help.text
+msgctxt "03102000.xhp#par_id3147426.17.help.text"
+msgid "DefObj o"
+msgstr "DefObj o"
+
+#: 03102000.xhp#par_id3151117.18.help.text
+msgctxt "03102000.xhp#par_id3151117.18.help.text"
+msgid "DefVar v"
+msgstr "DefVar v"
+
+#: 03102000.xhp#par_id3148645.20.help.text
+msgid "Sub ExampleDefVar"
+msgstr "Sub ExampleDefVar"
+
+#: 03102000.xhp#par_id3154012.21.help.text
+msgid "vDiv=99 REM vDiv is an implicit variant"
+msgstr "vDiv=99 REM vDiv is an implicit variant"
+
+#: 03102000.xhp#par_id3146121.22.help.text
+msgid "vDiv=\"Hello world\""
+msgstr "vDiv=\"Hello world\""
+
+#: 03102000.xhp#par_id3149262.23.help.text
+msgctxt "03102000.xhp#par_id3149262.23.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01030200.xhp#tit.help.text
+msgid "The Basic Editor"
+msgstr "The Basic Editor"
+
+#: 01030200.xhp#bm_id3148647.help.text
+msgid "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
+msgstr "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
+
+#: 01030200.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+
+#: 01030200.xhp#par_id3145069.3.help.text
+msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
+msgstr "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
+
+#: 01030200.xhp#par_id3154686.31.help.text
+msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+msgstr "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+
+#: 01030200.xhp#par_id3151042.32.help.text
+msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
+msgstr "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
+
+#: 01030200.xhp#par_id59816.help.text
+msgid "Insert your Basic code between the Sub Main and End Sub lines that you see when you first open the IDE. Alternatively, delete all lines and then enter your own Basic code."
+msgstr "Insert your Basic code between the Sub Main and End Sub lines that you see when you first open the IDE. Alternatively, delete all lines and then enter your own Basic code."
+
+#: 01030200.xhp#hd_id3125863.4.help.text
+msgid "Navigating in a Project"
+msgstr "Navigating in a Project"
+
+#: 01030200.xhp#hd_id3145785.6.help.text
+msgid "The Library List"
+msgstr "The Library List"
+
+#: 01030200.xhp#par_id3146120.7.help.text
+msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
+msgstr "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
+
+#: 01030200.xhp#hd_id3153190.8.help.text
+msgid "The Object Catalog"
+msgstr "The Object Catalogue"
+
+#: 01030200.xhp#hd_id3148647.15.help.text
+msgid "Saving and Loading Basic Source Code"
+msgstr "Saving and Loading Basic Source Code"
+
+#: 01030200.xhp#par_id3154320.16.help.text
+msgid "You can save Basic code in a text file for saving and importing in other programming systems."
+msgstr "You can save Basic code in a text file for saving and importing in other programming systems."
+
+#: 01030200.xhp#par_id3149959.25.help.text
+msgid "You cannot save Basic dialogs to a text file."
+msgstr "You cannot save Basic dialogues to a text file."
+
+#: 01030200.xhp#hd_id3149403.17.help.text
+msgid "Saving Source Code to a Text File"
+msgstr "Saving Source Code to a Text File"
+
+#: 01030200.xhp#par_id3150327.18.help.text
+msgid "Select the module that you want to export as text from the object catalog."
+msgstr "Select the module that you want to export as text from the object catalogue."
+
+#: 01030200.xhp#par_id3150752.19.help.text
+msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
+msgstr "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
+
+#: 01030200.xhp#par_id3154754.20.help.text
+msgid "Select a file name and click <emph>OK</emph> to save the file."
+msgstr "Select a file name and click <emph>OK</emph> to save the file."
+
+#: 01030200.xhp#hd_id3159264.21.help.text
+msgid "Loading Source Code From a Text File"
+msgstr "Loading Source Code From a Text File"
+
+#: 01030200.xhp#par_id3147343.22.help.text
+msgid "Select the module where you want to import the source code from the object catalog."
+msgstr "Select the module where you want to import the source code from the object catalogue."
+
+#: 01030200.xhp#par_id3145230.23.help.text
+msgid "Position the cursor where you want to insert the program code."
+msgstr "Position the cursor where you want to insert the program code."
+
+#: 01030200.xhp#par_id3149565.24.help.text
+msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
+msgstr "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
+
+#: 01030200.xhp#par_id3154020.33.help.text
+msgid "Select the text file containing the source code and click <emph>OK</emph>."
+msgstr "Select the text file containing the source code and click <emph>OK</emph>."
+
+#: 01030200.xhp#par_id3153198.29.help.text
+msgctxt "01030200.xhp#par_id3153198.29.help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+
+#: 03080202.xhp#tit.help.text
+msgid "Log Function [Runtime]"
+msgstr "Log Function [Runtime]"
+
+#: 03080202.xhp#bm_id3149416.help.text
+msgid "<bookmark_value>Log function</bookmark_value>"
+msgstr "<bookmark_value>Log function</bookmark_value>"
+
+#: 03080202.xhp#hd_id3149416.1.help.text
+msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
+
+#: 03080202.xhp#par_id3145066.2.help.text
+msgid "Returns the natural logarithm of a number."
+msgstr "Returns the natural logarithm of a number."
+
+#: 03080202.xhp#hd_id3159414.3.help.text
+msgctxt "03080202.xhp#hd_id3159414.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03080202.xhp#par_id3154760.4.help.text
+msgid "Log (Number)"
+msgstr "Log (Number)"
+
+#: 03080202.xhp#hd_id3149457.5.help.text
+msgctxt "03080202.xhp#hd_id3149457.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03080202.xhp#par_id3150791.6.help.text
+msgctxt "03080202.xhp#par_id3150791.6.help.text"
+msgid "Double"
+msgstr "Double"
+
+#: 03080202.xhp#hd_id3151211.7.help.text
+msgctxt "03080202.xhp#hd_id3151211.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03080202.xhp#par_id3151041.8.help.text
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
+msgstr "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
+
+#: 03080202.xhp#par_id3150869.9.help.text
+msgid "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
+msgstr "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
+
+#: 03080202.xhp#par_id3153968.10.help.text
+msgid "You can calculate logarithms to any base (n) for any number (x) by dividing the natural logarithm of x by the natural logarithm of n, as follows:"
+msgstr "You can calculate logarithms to any base (n) for any number (x) by dividing the natural logarithm of x by the natural logarithm of n, as follows:"
+
+#: 03080202.xhp#par_id3145420.11.help.text
+msgid "Log n(x) = Log(x) / Log(n)"
+msgstr "Log n(x) = Log(x) / Log(n)"
+
+#: 03080202.xhp#hd_id3155131.12.help.text
+msgctxt "03080202.xhp#hd_id3155131.12.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03080202.xhp#par_id3152463.13.help.text
+msgctxt "03080202.xhp#par_id3152463.13.help.text"
+msgid "Sub ExampleLogExp"
+msgstr "Sub ExampleLogExp"
+
+#: 03080202.xhp#par_id3145750.14.help.text
+msgid "Dim a as Double"
+msgstr "Dim a as Double"
+
+#: 03080202.xhp#par_id3151116.15.help.text
+msgid "Dim const b1=12.345e12"
+msgstr "Dim const b1=12.345e12"
+
+#: 03080202.xhp#par_id3146985.16.help.text
+msgid "Dim const b2=1.345e34"
+msgstr "Dim const b2=1.345e34"
+
+#: 03080202.xhp#par_id3148616.17.help.text
+msgid "a=Exp( Log(b1)+Log(b2) )"
+msgstr "a=Exp( Log(b1)+Log(b2) )"
+
+#: 03080202.xhp#par_id3149262.18.help.text
+msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgstr "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+
+#: 03080202.xhp#par_id3155411.19.help.text
+msgctxt "03080202.xhp#par_id3155411.19.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03102101.xhp#tit.help.text
+msgid "ReDim Statement [Runtime]"
+msgstr "ReDim Statement [Runtime]"
+
+#: 03102101.xhp#bm_id3150398.help.text
+msgid "<bookmark_value>ReDim statement</bookmark_value>"
+msgstr "<bookmark_value>ReDim statement</bookmark_value>"
+
+#: 03102101.xhp#hd_id3150398.1.help.text
+msgid "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement [Runtime]\">ReDim Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement [Runtime]\">ReDim Statement [Runtime]</link>"
+
+#: 03102101.xhp#par_id3154685.2.help.text
+msgctxt "03102101.xhp#par_id3154685.2.help.text"
+msgid "Declares a variable or an array."
+msgstr "Declares a variable or an array."
+
+#: 03102101.xhp#hd_id3154218.3.help.text
+msgctxt "03102101.xhp#hd_id3154218.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03102101.xhp#par_id3156214.4.help.text
+msgctxt "03102101.xhp#par_id3156214.4.help.text"
+msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+msgstr "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
+
+#: 03102101.xhp#par_id711996.help.text
+msgid "Optionally, you can add the <emph>Preserve</emph> keyword as a parameter to preserve the contents of the array that is redimensioned."
+msgstr "Optionally, you can add the <emph>Preserve</emph> keyword as a parameter to preserve the contents of the array that is redimensioned."
+
+#: 03102101.xhp#hd_id3148451.5.help.text
+msgctxt "03102101.xhp#hd_id3148451.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03102101.xhp#par_id3156423.6.help.text
+msgctxt "03102101.xhp#par_id3156423.6.help.text"
+msgid "<emph>VarName:</emph> Any variable or array name."
+msgstr "<emph>VarName:</emph> Any variable or array name."
+
+#: 03102101.xhp#par_id3149562.7.help.text
+msgctxt "03102101.xhp#par_id3149562.7.help.text"
+msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+msgstr "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
+
+#: 03102101.xhp#par_id3155307.8.help.text
+msgid "Start and End can be numeric expressions if ReDim is used at the procedure level."
+msgstr "Start and End can be numeric expressions if ReDim is used at the procedure level."
+
+#: 03102101.xhp#par_id3153951.9.help.text
+msgid "<emph>VarType:</emph> Keyword that declares the data type of a variable."
+msgstr "<emph>VarType:</emph> Keyword that declares the data type of a variable."
+
+#: 03102101.xhp#par_id3147317.10.help.text
+msgctxt "03102101.xhp#par_id3147317.10.help.text"
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr "<emph>Keyword:</emph> Variable type"
+
+#: 03102101.xhp#par_id3153728.11.help.text
+msgid "<emph>Bool: </emph>Boolean variable (True, False)"
+msgstr "<emph>Bool: </emph>Boolean variable (True, False)"
+
+#: 03102101.xhp#par_id3146121.12.help.text
+msgctxt "03102101.xhp#par_id3146121.12.help.text"
+msgid "<emph>Date:</emph> Date variable"
+msgstr "<emph>Date:</emph> Date variable"
+
+#: 03102101.xhp#par_id3159156.13.help.text
+msgid "<emph>Double:</emph> Double floating point variable (1.79769313486232x10E308 - 4.94065645841247x10E-324)"
+msgstr "<emph>Double:</emph> Double floating point variable (1.79769313486232x10E308 - 4.94065645841247x10E-324)"
+
+#: 03102101.xhp#par_id3148616.14.help.text
+msgctxt "03102101.xhp#par_id3148616.14.help.text"
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+
+#: 03102101.xhp#par_id3147348.15.help.text
+msgid "<emph>Long:</emph> Long integer variable (-2,147,483,648 - 2,147,483,647)"
+msgstr "<emph>Long:</emph> Long integer variable (-2,147,483,648 - 2,147,483,647)"
+
+#: 03102101.xhp#par_id3149412.16.help.text
+msgid "<emph>Object:</emph> Object variable (can only be subsequently defined by Set!)"
+msgstr "<emph>Object:</emph> Object variable (can only be subsequently defined by Set!)"
+
+#: 03102101.xhp#par_id3154729.17.help.text
+msgid "<emph>[Single]:</emph> Single floating-point variable (3.402823x10E38 - 1.401298x10E-45). If no key word is specified, a variable is defined as Single, unless a statement from DefBool to DefVar is used."
+msgstr "<emph>[Single]:</emph> Single floating-point variable (3.402823x10E38 - 1.401298x10E-45). If no key word is specified, a variable is defined as Single, unless a statement from DefBool to DefVar is used."
+
+#: 03102101.xhp#par_id3148458.18.help.text
+msgid "<emph>String:</emph> String variable containing a maximum of 64,000 ASCII characters."
+msgstr "<emph>String:</emph> String variable containing a maximum of 64,000 ASCII characters."
+
+#: 03102101.xhp#par_id3149581.19.help.text
+msgid "<emph>Variant: </emph>Variant variable type (can contain all types and is set by definition)."
+msgstr "<emph>Variant: </emph>Variant variable type (can contain all types and is set by definition)."
+
+#: 03102101.xhp#par_id3155601.20.help.text
+msgctxt "03102101.xhp#par_id3155601.20.help.text"
+msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+msgstr "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+
+#: 03102101.xhp#par_id3153415.21.help.text
+msgctxt "03102101.xhp#par_id3153415.21.help.text"
+msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+msgstr "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+
+#: 03102101.xhp#par_id3146971.22.help.text
+msgid "There are two ways to set the range of indices for arrays declared with the Dim statement:"
+msgstr "There are two ways to set the range of indices for arrays declared with the Dim statement:"
+
+#: 03102101.xhp#par_id3153950.23.help.text
+msgid "DIM text(20) As String REM 21 elements numbered from 0 to 20"
+msgstr "DIM text(20) As String REM 21 elements numbered from 0 to 20"
+
+#: 03102101.xhp#par_id3146912.24.help.text
+msgid "DIM text(5 to 25) As String REM 21 elements numbered from 5 to 25"
+msgstr "DIM text(5 to 25) As String REM 21 elements numbered from 5 to 25"
+
+#: 03102101.xhp#par_id3153709.25.help.text
+msgid "DIM text$(-15 to 5) As String REM 21 elements (0 inclusive),"
+msgstr "DIM text$(-15 to 5) As String REM 21 elements (0 inclusive),"
+
+#: 03102101.xhp#par_id3150321.26.help.text
+msgid "rem numbered from -15 to 5"
+msgstr "rem numbered from -15 to 5"
+
+#: 03102101.xhp#par_id3149018.27.help.text
+msgid "Variable fields, regardless of type, can be made dynamic if they are dimensioned by ReDim at the procedure level in subroutines or functions. Normally, you can only set the range of an array once and you cannot modify it. Within a procedure, you can declare an array using the ReDim statement with numeric expressions to define the range of the field sizes."
+msgstr "Variable fields, regardless of type, can be made dynamic if they are dimensioned by ReDim at the procedure level in subroutines or functions. Normally, you can only set the range of an array once and you cannot modify it. Within a procedure, you can declare an array using the ReDim statement with numeric expressions to define the range of the field sizes."
+
+#: 03102101.xhp#hd_id3148405.28.help.text
+msgctxt "03102101.xhp#hd_id3148405.28.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03102101.xhp#par_id3154362.29.help.text
+msgid "Sub ExampleRedim"
+msgstr "Sub ExampleRedim"
+
+#: 03102101.xhp#par_id3150042.30.help.text
+msgid "Dim iVar() As Integer, iCount As Integer"
+msgstr "Dim iVar() As Integer, iCount As Integer"
+
+#: 03102101.xhp#par_id3147339.31.help.text
+msgid "ReDim iVar(5) As integer"
+msgstr "ReDim iVar(5) As integer"
+
+#: 03102101.xhp#par_id3149106.32.help.text
+msgid "For iCount = 1 To 5"
+msgstr "For iCount = 1 To 5"
+
+#: 03102101.xhp#par_id3155174.33.help.text
+msgctxt "03102101.xhp#par_id3155174.33.help.text"
+msgid "iVar(iCount) = iCount"
+msgstr "iVar(iCount) = iCount"
+
+#: 03102101.xhp#par_id3163805.34.help.text
+msgctxt "03102101.xhp#par_id3163805.34.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03102101.xhp#par_id3149568.35.help.text
+msgid "ReDim iVar(10) As integer"
+msgstr "ReDim iVar(10) As integer"
+
+#: 03102101.xhp#par_id3147364.36.help.text
+msgid "For iCount = 1 To 10"
+msgstr "For iCount = 1 To 10"
+
+#: 03102101.xhp#par_id3155335.37.help.text
+msgctxt "03102101.xhp#par_id3155335.37.help.text"
+msgid "iVar(iCount) = iCount"
+msgstr "iVar(iCount) = iCount"
+
+#: 03102101.xhp#par_id3154662.38.help.text
+msgctxt "03102101.xhp#par_id3154662.38.help.text"
+msgid "Next iCount"
+msgstr "Next iCount"
+
+#: 03102101.xhp#par_id3149926.39.help.text
+msgctxt "03102101.xhp#par_id3149926.39.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 01020500.xhp#tit.help.text
+msgid "Libraries, Modules and Dialogs"
+msgstr "Libraries, Modules and Dialogues"
+
+#: 01020500.xhp#hd_id3147317.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
+msgstr "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
+
+#: 01020500.xhp#par_id3147427.2.help.text
+msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
+msgstr "The following describes the basic use of libraries, modules and dialogues in $[officename] Basic."
+
+#: 01020500.xhp#par_id3146120.3.help.text
+msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
+msgstr "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
+
+#: 01020500.xhp#hd_id3148575.5.help.text
+msgid "Libraries"
+msgstr "Libraries"
+
+#: 01020500.xhp#par_id3150011.6.help.text
+msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
+msgstr "Libraries serve as a tool for organising modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
+
+#: 01020500.xhp#par_id3151112.7.help.text
+msgid "A library can contain up to 16,000 modules."
+msgstr "A library can contain up to 16,000 modules."
+
+#: 01020500.xhp#hd_id3149262.8.help.text
+msgctxt "01020500.xhp#hd_id3149262.8.help.text"
+msgid "Modules"
+msgstr "Modules"
+
+#: 01020500.xhp#par_id3156441.9.help.text
+msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
+msgstr "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
+
+#: 01020500.xhp#hd_id3152577.11.help.text
+msgid "Dialog Modules"
+msgstr "Dialogue Modules"
+
+#: 01020500.xhp#par_id3149377.12.help.text
+msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
+msgstr "Dialogue modules contain dialogue definitions, including the dialogue box properties, the properties of each dialogue element and the events assigned. Since a dialogue module can only contain a single dialogue, they are often referred to as \"dialogues\"."
+
+#: main0211.xhp#tit.help.text
+msgid "Macro Toolbar"
+msgstr "Macro Toolbar"
+
+#: main0211.xhp#bm_id3150543.help.text
+msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+msgstr "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+
+#: main0211.xhp#hd_id3150543.1.help.text
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+msgstr "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+
+#: main0211.xhp#par_id3147288.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
+
+#: 03020410.xhp#tit.help.text
+msgid "Kill Statement [Runtime]"
+msgstr "Kill Statement [Runtime]"
+
+#: 03020410.xhp#bm_id3153360.help.text
+msgid "<bookmark_value>Kill statement</bookmark_value>"
+msgstr "<bookmark_value>Kill statement</bookmark_value>"
+
+#: 03020410.xhp#hd_id3153360.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
+
+#: 03020410.xhp#par_id3151211.2.help.text
+msgid "Deletes a file from a disk."
+msgstr "Deletes a file from a disk."
+
+#: 03020410.xhp#hd_id3150767.3.help.text
+msgctxt "03020410.xhp#hd_id3150767.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020410.xhp#par_id3154685.4.help.text
+msgid "Kill File As String"
+msgstr "Kill File As String"
+
+#: 03020410.xhp#hd_id3153194.5.help.text
+msgctxt "03020410.xhp#hd_id3153194.5.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020410.xhp#par_id3150440.6.help.text
+msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020410.xhp#hd_id3148645.7.help.text
+msgctxt "03020410.xhp#hd_id3148645.7.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020410.xhp#par_id3154320.8.help.text
+msgid "sub ExampleKill"
+msgstr "sub ExampleKill"
+
+#: 03020410.xhp#par_id3163710.9.help.text
+msgid "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+msgstr "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+
+#: 03020410.xhp#par_id3145749.10.help.text
+msgctxt "03020410.xhp#par_id3145749.10.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03103000.xhp#tit.help.text
+msgid "UBound Function [Runtime]"
+msgstr "UBound Function [Runtime]"
+
+#: 03103000.xhp#bm_id3148538.help.text
+msgid "<bookmark_value>UBound function</bookmark_value>"
+msgstr "<bookmark_value>UBound function</bookmark_value>"
+
+#: 03103000.xhp#hd_id3148538.1.help.text
+msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
+
+#: 03103000.xhp#par_id3147573.2.help.text
+msgid "Returns the upper boundary of an array."
+msgstr "Returns the upper boundary of an array."
+
+#: 03103000.xhp#hd_id3150984.3.help.text
+msgctxt "03103000.xhp#hd_id3150984.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03103000.xhp#par_id3149415.4.help.text
+msgid "UBound (ArrayName [, Dimension])"
+msgstr "UBound (ArrayName [, Dimension])"
+
+#: 03103000.xhp#hd_id3153897.5.help.text
+msgctxt "03103000.xhp#hd_id3153897.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03103000.xhp#par_id3149670.6.help.text
+msgctxt "03103000.xhp#par_id3149670.6.help.text"
+msgid "Integer"
+msgstr "Integer"
+
+#: 03103000.xhp#hd_id3154347.7.help.text
+msgctxt "03103000.xhp#hd_id3154347.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03103000.xhp#par_id3153381.8.help.text
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
+msgstr "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
+
+#: 03103000.xhp#par_id3148797.9.help.text
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
+msgstr "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
+
+#: 03103000.xhp#hd_id3153192.10.help.text
+msgctxt "03103000.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03103000.xhp#par_id3147229.11.help.text
+msgctxt "03103000.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleUboundLbound"
+msgstr "Sub ExampleUboundLbound"
+
+#: 03103000.xhp#par_id3150440.12.help.text
+msgctxt "03103000.xhp#par_id3150440.12.help.text"
+msgid "Dim sVar(10 to 20) As String"
+msgstr "Dim sVar(10 to 20) As String"
+
+#: 03103000.xhp#par_id3145785.13.help.text
+msgctxt "03103000.xhp#par_id3145785.13.help.text"
+msgid "print LBound(sVar())"
+msgstr "print LBound(sVar())"
+
+#: 03103000.xhp#par_id3153092.14.help.text
+msgctxt "03103000.xhp#par_id3153092.14.help.text"
+msgid "print UBound(sVar())"
+msgstr "print UBound(sVar())"
+
+#: 03103000.xhp#par_id3153727.15.help.text
+msgctxt "03103000.xhp#par_id3153727.15.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 03103000.xhp#par_id3145271.16.help.text
+msgctxt "03103000.xhp#par_id3145271.16.help.text"
+msgid "Sub ExampleUboundLbound2"
+msgstr "Sub ExampleUboundLbound2"
+
+#: 03103000.xhp#par_id3153952.17.help.text
+msgctxt "03103000.xhp#par_id3153952.17.help.text"
+msgid "Dim sVar(10 to 20,5 To 70) As String"
+msgstr "Dim sVar(10 to 20,5 To 70) As String"
+
+#: 03103000.xhp#par_id3152596.18.help.text
+msgctxt "03103000.xhp#par_id3152596.18.help.text"
+msgid "Print LBound(sVar()) REM Returns 10"
+msgstr "Print LBound(sVar()) REM Returns 10"
+
+#: 03103000.xhp#par_id3153138.19.help.text
+msgctxt "03103000.xhp#par_id3153138.19.help.text"
+msgid "Print UBound(sVar()) REM Returns 20"
+msgstr "Print UBound(sVar()) REM Returns 20"
+
+#: 03103000.xhp#par_id3149665.20.help.text
+msgctxt "03103000.xhp#par_id3149665.20.help.text"
+msgid "Print LBound(sVar(),2) REM Returns 5"
+msgstr "Print LBound(sVar(),2) REM Returns 5"
+
+#: 03103000.xhp#par_id3147214.21.help.text
+msgctxt "03103000.xhp#par_id3147214.21.help.text"
+msgid "Print UBound(sVar(),2) REM Returns 70"
+msgstr "Print UBound(sVar(),2) REM Returns 70"
+
+#: 03103000.xhp#par_id3155855.22.help.text
+msgctxt "03103000.xhp#par_id3155855.22.help.text"
+msgid "end Sub"
+msgstr "end Sub"
+
+#: 01020300.xhp#tit.help.text
+msgid "Using Procedures and Functions"
+msgstr "Using Procedures and Functions"
+
+#: 01020300.xhp#bm_id3149456.help.text
+msgid "<bookmark_value>procedures</bookmark_value><bookmark_value>functions;using</bookmark_value><bookmark_value>variables;passing to procedures and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</bookmark_value><bookmark_value>parameters;passing by reference or value</bookmark_value><bookmark_value>variables;scope</bookmark_value><bookmark_value>scope of variables</bookmark_value><bookmark_value>GLOBAL variables</bookmark_value><bookmark_value>PUBLIC variables</bookmark_value><bookmark_value>PRIVATE variables</bookmark_value><bookmark_value>functions;return value type</bookmark_value><bookmark_value>return value type of functions</bookmark_value>"
+msgstr "<bookmark_value>procedures</bookmark_value><bookmark_value>functions;using</bookmark_value><bookmark_value>variables;passing to procedures and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</bookmark_value><bookmark_value>parameters;passing by reference or value</bookmark_value><bookmark_value>variables;scope</bookmark_value><bookmark_value>scope of variables</bookmark_value><bookmark_value>GLOBAL variables</bookmark_value><bookmark_value>PUBLIC variables</bookmark_value><bookmark_value>PRIVATE variables</bookmark_value><bookmark_value>functions;return value type</bookmark_value><bookmark_value>return value type of functions</bookmark_value>"
+
+#: 01020300.xhp#hd_id3149456.1.help.text
+msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
+
+#: 01020300.xhp#par_id3150767.2.help.text
+msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
+msgstr "The following describes the basic use of procedures and functions in $[officename] Basic."
+
+#: 01020300.xhp#par_id3151215.56.help.text
+msgid "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
+msgstr "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
+
+#: 01020300.xhp#par_id314756320.help.text
+msgctxt "01020300.xhp#par_id314756320.help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr ""
+
+#: 01020300.xhp#par_id3154124.3.help.text
+msgid "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
+msgstr "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
+
+#: 01020300.xhp#par_id3153193.4.help.text
+msgid "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
+msgstr "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
+
+#: 01020300.xhp#hd_id3153770.26.help.text
+msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
+msgstr "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
+
+#: 01020300.xhp#par_id3155414.27.help.text
+msgid "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
+msgstr "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
+
+#: 01020300.xhp#par_id3163710.28.help.text
+msgid "SUB SubName(<emph>Parameter1 As Type, Parameter2 As Type,...</emph>)"
+msgstr "SUB SubName(<emph>Parameter1 As Type, Parameter2 As Type,...</emph>)"
+
+#: 01020300.xhp#par_id3151114.29.help.text
+msgctxt "01020300.xhp#par_id3151114.29.help.text"
+msgid "Program code"
+msgstr "Program code"
+
+#: 01020300.xhp#par_id3146975.30.help.text
+msgid "END SUB"
+msgstr "END SUB"
+
+#: 01020300.xhp#par_id3152577.31.help.text
+msgid "The SUB is called using the following syntax:"
+msgstr "The SUB is called using the following syntax:"
+
+#: 01020300.xhp#par_id3159154.32.help.text
+msgid "SubName(Value1, Value2,...)"
+msgstr "SubName(Value1, Value2,...)"
+
+#: 01020300.xhp#par_id3147124.33.help.text
+msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
+msgstr "The parameters passed to a SUB must fit to those specified in the SUB declaration."
+
+#: 01020300.xhp#par_id3147397.34.help.text
+msgid "The same process applies to FUNCTIONS. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:"
+msgstr "The same process applies to FUNCTIONS. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:"
+
+#: 01020300.xhp#par_id3149412.35.help.text
+msgid "FUNCTION FunctionName(Parameter1 As Type, Parameter2 As Type,...) As Type"
+msgstr "FUNCTION FunctionName(Parameter1 As Type, Parameter2 As Type,...) As Type"
+
+#: 01020300.xhp#par_id3156284.36.help.text
+msgctxt "01020300.xhp#par_id3156284.36.help.text"
+msgid "Program code"
+msgstr "Program code"
+
+#: 01020300.xhp#par_id3145799.37.help.text
+msgid "<emph>FunctionName=Result</emph>"
+msgstr "<emph>FunctionName=Result</emph>"
+
+#: 01020300.xhp#par_id3150716.38.help.text
+msgctxt "01020300.xhp#par_id3150716.38.help.text"
+msgid "End Function"
+msgstr "End Function"
+
+#: 01020300.xhp#par_id3153839.39.help.text
+msgid "The FUNCTION is called using the following syntax:"
+msgstr "The FUNCTION is called using the following syntax:"
+
+#: 01020300.xhp#par_id3146914.40.help.text
+msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
+msgstr "Variable=FunctionName(Parameter1, Parameter2,...)"
+
+#: 01020300.xhp#par_idN107B3.help.text
+msgid "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+msgstr "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+
+#: 01020300.xhp#hd_id3156276.45.help.text
+msgid "Passing Variables by Value or Reference"
+msgstr "Passing Variables by Value or Reference"
+
+#: 01020300.xhp#par_id3155765.47.help.text
+msgid "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
+msgstr "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
+
+#: 01020300.xhp#par_id3145640.53.help.text
+msgid "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
+msgstr "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
+
+#: 01020300.xhp#par_id3150042.54.help.text
+msgid "Result = Function(<emph>ByVal</emph> Parameter)"
+msgstr "Result = Function(<emph>ByVal</emph> Parameter)"
+
+#: 01020300.xhp#par_id3149258.55.help.text
+msgid "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
+msgstr "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
+
+#: 01020300.xhp#hd_id3150982.57.help.text
+msgid "Scope of Variables"
+msgstr "Scope of Variables"
+
+#: 01020300.xhp#par_id3149814.58.help.text
+msgid "A variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited."
+msgstr "A variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited."
+
+#: 01020300.xhp#hd_id3154186.59.help.text
+msgid "Declaring Variables Outside a SUB or FUNCTION"
+msgstr "Declaring Variables Outside a SUB or FUNCTION"
+
+#: 01020300.xhp#par_id3150208.111.help.text
+msgid "GLOBAL VarName As TYPENAME"
+msgstr "GLOBAL VarName As TYPENAME"
+
+#: 01020300.xhp#par_id3145258.112.help.text
+msgid "The variable is valid as long as the $[officename] session lasts."
+msgstr "The variable is valid as long as the $[officename] session lasts."
+
+#: 01020300.xhp#par_id3153198.60.help.text
+msgid "PUBLIC VarName As TYPENAME"
+msgstr "PUBLIC VarName As TYPENAME"
+
+#: 01020300.xhp#par_id3150088.61.help.text
+msgid "The variable is valid in all modules."
+msgstr "The variable is valid in all modules."
+
+#: 01020300.xhp#par_id3158212.62.help.text
+msgid "PRIVATE VarName As TYPENAME"
+msgstr "PRIVATE VarName As TYPENAME"
+
+#: 01020300.xhp#par_id3152994.63.help.text
+msgctxt "01020300.xhp#par_id3152994.63.help.text"
+msgid "The variable is only valid in this module."
+msgstr "The variable is only valid in this module."
+
+#: 01020300.xhp#par_id3150886.64.help.text
+msgid "DIM VarName As TYPENAME"
+msgstr "DIM VarName As TYPENAME"
+
+#: 01020300.xhp#par_id3150368.65.help.text
+msgctxt "01020300.xhp#par_id3150368.65.help.text"
+msgid "The variable is only valid in this module."
+msgstr "The variable is only valid in this module."
+
+#: 01020300.xhp#hd_id5097506.help.text
+msgid "Example for private variables"
+msgstr "Example for private variables"
+
+#: 01020300.xhp#par_id8738975.help.text
+msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+msgstr "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+
+#: 01020300.xhp#par_id146488.help.text
+msgid "REM ***** Module1 *****"
+msgstr "REM ***** Module1 *****"
+
+#: 01020300.xhp#par_id2042298.help.text
+msgid "Private myText As String"
+msgstr "Private myText As String"
+
+#: 01020300.xhp#par_id2969756.help.text
+msgid "Sub initMyText"
+msgstr "Sub initMyText"
+
+#: 01020300.xhp#par_id9475997.help.text
+msgid "myText = \"Hello\""
+msgstr "myText = \"Hello\""
+
+#: 01020300.xhp#par_id6933500.help.text
+msgid "print \"in module1 : \", myText"
+msgstr "print \"in module1 : \", myText"
+
+#: 01020300.xhp#par_id631733.help.text
+msgctxt "01020300.xhp#par_id631733.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 01020300.xhp#par_id8234199.help.text
+msgid "REM ***** Module2 *****"
+msgstr "REM ***** Module2 *****"
+
+#: 01020300.xhp#par_id6969512.help.text
+msgid "'Option Explicit"
+msgstr "'Option Explicit"
+
+#: 01020300.xhp#par_id1196935.help.text
+msgid "Sub demoBug"
+msgstr "Sub demoBug"
+
+#: 01020300.xhp#par_id1423993.help.text
+msgid "CompatibilityMode( true )"
+msgstr "CompatibilityMode( true )"
+
+#: 01020300.xhp#par_id6308786.help.text
+msgid "initMyText"
+msgstr "initMyText"
+
+#: 01020300.xhp#par_id4104129.help.text
+msgid "' Now returns empty string"
+msgstr "' Now returns empty string"
+
+#: 01020300.xhp#par_id7906125.help.text
+msgid "' (or rises error for Option Explicit)"
+msgstr "' (or rises error for Option Explicit)"
+
+#: 01020300.xhp#par_id8055970.help.text
+msgid "print \"Now in module2 : \", myText"
+msgstr "print \"Now in module2 : \", myText"
+
+#: 01020300.xhp#par_id2806176.help.text
+msgctxt "01020300.xhp#par_id2806176.help.text"
+msgid "End Sub"
+msgstr "End Sub"
+
+#: 01020300.xhp#hd_id3154368.66.help.text
+msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
+msgstr "Saving Variable Content after Exiting a SUB or FUNCTION"
+
+#: 01020300.xhp#par_id3156288.67.help.text
+msgid "STATIC VarName As TYPENAME"
+msgstr "STATIC VarName As TYPENAME"
+
+#: 01020300.xhp#par_id3154486.68.help.text
+msgid "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
+msgstr "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
+
+#: 01020300.xhp#hd_id3155809.41.help.text
+msgid "Specifying the Return Value Type of a FUNCTION"
+msgstr "Specifying the Return Value Type of a FUNCTION"
+
+#: 01020300.xhp#par_id3149404.42.help.text
+msgid "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
+msgstr "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
+
+#: 01020300.xhp#par_id3152899.43.help.text
+msgid "Function WordCount(WordText as String) <emph>as Integer</emph>"
+msgstr "Function WordCount(WordText as String) <emph>as Integer</emph>"
+
+#: 03020404.xhp#tit.help.text
+msgid "Dir Function [Runtime]"
+msgstr "Dir Function [Runtime]"
+
+#: 03020404.xhp#bm_id3154347.help.text
+msgid "<bookmark_value>Dir function</bookmark_value>"
+msgstr "<bookmark_value>Dir function</bookmark_value>"
+
+#: 03020404.xhp#hd_id3154347.1.help.text
+msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
+
+#: 03020404.xhp#par_id3153381.2.help.text
+msgid "Returns the name of a file, a directory, or all of the files and the directories on a drive or in a directory that match the specified search path."
+msgstr "Returns the name of a file, a directory, or all of the files and the directories on a drive or in a directory that match the specified search path."
+
+#: 03020404.xhp#hd_id3154365.3.help.text
+msgctxt "03020404.xhp#hd_id3154365.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03020404.xhp#par_id3156282.4.help.text
+msgid "Dir [(Text As String) [, Attrib As Integer]]"
+msgstr "Dir [(Text As String) [, Attrib As Integer]]"
+
+#: 03020404.xhp#hd_id3156424.5.help.text
+msgctxt "03020404.xhp#hd_id3156424.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03020404.xhp#par_id3153193.6.help.text
+msgctxt "03020404.xhp#par_id3153193.6.help.text"
+msgid "String"
+msgstr "String"
+
+#: 03020404.xhp#hd_id3153770.7.help.text
+msgctxt "03020404.xhp#hd_id3153770.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03020404.xhp#par_id3161831.8.help.text
+msgid "<emph>Text:</emph> Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr "<emph>Text:</emph> Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+
+#: 03020404.xhp#par_id3146974.9.help.text
+msgid "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
+msgstr "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
+
+#: 03020404.xhp#par_id3149666.11.help.text
+msgctxt "03020404.xhp#par_id3149666.11.help.text"
+msgid "0 : Normal files."
+msgstr "0 : Normal files."
+
+#: 03020404.xhp#par_id3147427.15.help.text
+msgctxt "03020404.xhp#par_id3147427.15.help.text"
+msgid "16 : Returns the name of the directory only."
+msgstr "16 : Returns the name of the directory only."
+
+#: 03020404.xhp#par_id3153952.16.help.text
+msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
+msgstr "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
+
+#: 03020404.xhp#par_id3159156.17.help.text
+msgid "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")."
+msgstr "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")."
+
+#: 03020404.xhp#par_id3154012.18.help.text
+msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.sxw\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
+msgstr "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.sxw\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
+
+#: 03020404.xhp#par_id3147348.19.help.text
+msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)"
+msgstr "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)"
+
+#: 03020404.xhp#hd_id3154942.20.help.text
+msgctxt "03020404.xhp#hd_id3154942.20.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03020404.xhp#par_id3147125.21.help.text
+msgid "Sub ExampleDir"
+msgstr "Sub ExampleDir"
+
+#: 03020404.xhp#par_id3148455.22.help.text
+msgid "REM Displays all files and directories"
+msgstr "REM Displays all files and directories"
+
+#: 03020404.xhp#par_id3147396.23.help.text
+msgctxt "03020404.xhp#par_id3147396.23.help.text"
+msgid "Dim sPath As String"
+msgstr "Dim sPath As String"
+
+#: 03020404.xhp#par_id3149378.24.help.text
+msgid "Dim sDir as String, sValue as String"
+msgstr "Dim sDir as String, sValue as String"
+
+#: 03020404.xhp#par_id3153416.27.help.text
+msgid "sDir=\"Directories:\""
+msgstr "sDir=\"Directories:\""
+
+#: 03020404.xhp#par_id3153838.29.help.text
+msgid "sPath = CurDir"
+msgstr "sPath = CurDir"
+
+#: 03020404.xhp#par_id3150327.30.help.text
+msgid "sValue = Dir$(sPath + getPathSeparator + \"*\",16)"
+msgstr "sValue = Dir$(sPath + getPathSeparator + \"*\",16)"
+
+#: 03020404.xhp#par_id3155064.31.help.text
+msgctxt "03020404.xhp#par_id3155064.31.help.text"
+msgid "Do"
+msgstr "Do"
+
+#: 03020404.xhp#par_id3153764.32.help.text
+msgid "If sValue <> \".\" and sValue <> \"..\" Then"
+msgstr "If sValue <> \".\" and sValue <> \"..\" Then"
+
+#: 03020404.xhp#par_id3155766.33.help.text
+msgid "if (GetAttr( sPath + getPathSeparator + sValue) AND 16) >0 then"
+msgstr "if (GetAttr( sPath + getPathSeparator + sValue) AND 16) >0 then"
+
+#: 03020404.xhp#par_id3154253.34.help.text
+msgid "REM get the directories"
+msgstr "REM get the directories"
+
+#: 03020404.xhp#par_id3159264.35.help.text
+msgid "sDir = sDir & chr(13) & sValue"
+msgstr "sDir = sDir & chr(13) & sValue"
+
+#: 03020404.xhp#par_id3145148.43.help.text
+msgctxt "03020404.xhp#par_id3145148.43.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03020404.xhp#par_idN10700.help.text
+msgctxt "03020404.xhp#par_idN10700.help.text"
+msgid "End If"
+msgstr "End If"
+
+#: 03020404.xhp#par_id3147324.44.help.text
+msgid "sValue = Dir$"
+msgstr "sValue = Dir$"
+
+#: 03020404.xhp#par_id3155335.45.help.text
+msgid "Loop Until sValue = \"\""
+msgstr "Loop Until sValue = \"\""
+
+#: 03020404.xhp#par_id3147345.46.help.text
+msgid "MsgBox sDir,0,sPath"
+msgstr "MsgBox sDir,0,sPath"
+
+#: 03020404.xhp#par_id3163808.48.help.text
+msgctxt "03020404.xhp#par_id3163808.48.help.text"
+msgid "End sub"
+msgstr "End sub"
+
+#: 03100600.xhp#tit.help.text
+msgid "CLng Function [Runtime]"
+msgstr "CLng Function [Runtime]"
+
+#: 03100600.xhp#bm_id3153311.help.text
+msgid "<bookmark_value>CLng function</bookmark_value>"
+msgstr "<bookmark_value>CLng function</bookmark_value>"
+
+#: 03100600.xhp#hd_id3153311.1.help.text
+msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
+
+#: 03100600.xhp#par_id3148686.2.help.text
+msgid "Converts any string or numeric expression to a long integer."
+msgstr "Converts any string or numeric expression to a long integer."
+
+#: 03100600.xhp#hd_id3145315.3.help.text
+msgctxt "03100600.xhp#hd_id3145315.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03100600.xhp#par_id3147573.4.help.text
+msgid "CLng (Expression)"
+msgstr "CLng (Expression)"
+
+#: 03100600.xhp#hd_id3145610.5.help.text
+msgctxt "03100600.xhp#hd_id3145610.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03100600.xhp#par_id3153897.6.help.text
+msgctxt "03100600.xhp#par_id3153897.6.help.text"
+msgid "Long"
+msgstr "Long"
+
+#: 03100600.xhp#hd_id3154760.7.help.text
+msgctxt "03100600.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03100600.xhp#par_id3159414.8.help.text
+msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+
+#: 03100600.xhp#par_id3150358.9.help.text
+msgctxt "03100600.xhp#par_id3150358.9.help.text"
+msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgstr "This function always rounds the fractional part of a number to the nearest integer."
+
+#: 03100600.xhp#hd_id3154216.10.help.text
+msgctxt "03100600.xhp#hd_id3154216.10.help.text"
+msgid "Example:"
+msgstr "Example:"
+
+#: 03100600.xhp#par_id3147229.11.help.text
+msgctxt "03100600.xhp#par_id3147229.11.help.text"
+msgid "Sub ExampleCountryConvert"
+msgstr "Sub ExampleCountryConvert"
+
+#: 03100600.xhp#par_id3156281.12.help.text
+msgctxt "03100600.xhp#par_id3156281.12.help.text"
+msgid "Msgbox CDbl(1234.5678)"
+msgstr "Msgbox CDbl(1234.5678)"
+
+#: 03100600.xhp#par_id3153969.13.help.text
+msgctxt "03100600.xhp#par_id3153969.13.help.text"
+msgid "Msgbox CInt(1234.5678)"
+msgstr "Msgbox CInt(1234.5678)"
+
+#: 03100600.xhp#par_id3154909.14.help.text
+msgctxt "03100600.xhp#par_id3154909.14.help.text"
+msgid "Msgbox CLng(1234.5678)"
+msgstr "Msgbox CLng(1234.5678)"
+
+#: 03100600.xhp#par_id3153770.15.help.text
+msgctxt "03100600.xhp#par_id3153770.15.help.text"
+msgid "end sub"
+msgstr "end sub"
+
+#: 03120105.xhp#tit.help.text
+msgid "CByte Function [Runtime]"
+msgstr "CByte Function [Runtime]"
+
+#: 03120105.xhp#bm_id3156027.help.text
+msgid "<bookmark_value>CByte function</bookmark_value>"
+msgstr "<bookmark_value>CByte function</bookmark_value>"
+
+#: 03120105.xhp#hd_id3156027.1.help.text
+msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
+
+#: 03120105.xhp#par_id3143267.2.help.text
+msgid "Converts a string or a numeric expression to the type Byte."
+msgstr "Converts a string or a numeric expression to the type Byte."
+
+#: 03120105.xhp#hd_id3149811.3.help.text
+msgctxt "03120105.xhp#hd_id3149811.3.help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#: 03120105.xhp#par_id3147573.4.help.text
+msgid "Cbyte( expression )"
+msgstr "Cbyte( expression )"
+
+#: 03120105.xhp#hd_id3145315.5.help.text
+msgctxt "03120105.xhp#hd_id3145315.5.help.text"
+msgid "Return value:"
+msgstr "Return value:"
+
+#: 03120105.xhp#par_id3148473.6.help.text
+msgid "Byte"
+msgstr "Byte"
+
+#: 03120105.xhp#hd_id3147530.7.help.text
+msgctxt "03120105.xhp#hd_id3147530.7.help.text"
+msgid "Parameters:"
+msgstr "Parameters:"
+
+#: 03120105.xhp#par_id3145068.8.help.text
+msgid "<emph>Expression:</emph> A string or a numeric expression."
+msgstr "<emph>Expression:</emph> A string or a numeric expression."
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared/01.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared/01.po
new file mode 100644
index 00000000000..628e8a1457e
--- /dev/null
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared/01.po
@@ -0,0 +1,298 @@
+#. extracted from helpcontent2/source/text/sbasic/shared/01.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fshared%2F01.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 14:30+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 06130000.xhp#tit.help.text
+msgctxt "06130000.xhp#tit.help.text"
+msgid "Macro"
+msgstr "Macro"
+
+#: 06130000.xhp#bm_id3145786.help.text
+msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
+msgstr "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
+
+#: 06130000.xhp#hd_id3145786.1.help.text
+msgctxt "06130000.xhp#hd_id3145786.1.help.text"
+msgid "Macro"
+msgstr "Macro"
+
+#: 06130000.xhp#par_id3152886.2.help.text
+msgid "<variable id=\"makro\"><ahelp hid=\".\">Opens the <emph>Macro </emph>dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
+msgstr "<variable id=\"makro\"><ahelp hid=\".\">Opens the <emph>Macro </emph>dialogue, where you can create, edit, organise, and run $[officename] Basic macros.</ahelp></variable>"
+
+#: 06130000.xhp#hd_id3154145.3.help.text
+msgid "Macro name"
+msgstr "Macro name"
+
+#: 06130000.xhp#par_id3151116.4.help.text
+msgid "<ahelp hid=\"BASCTL_EDIT_RID_MACROCHOOSER_RID_ED_MACRONAME\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_EDIT_RID_MACROCHOOSER_RID_ED_MACRONAME\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
+
+#: 06130000.xhp#hd_id3153729.7.help.text
+msgid "Macro from / Save macro in"
+msgstr "Macro from / Save macro in"
+
+#: 06130000.xhp#par_id3153190.8.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_LIBS\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBS\">Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialogue.</ahelp>"
+
+#: 06130000.xhp#hd_id3146975.11.help.text
+msgid "Run / Save"
+msgstr "Run / Save"
+
+#: 06130000.xhp#par_id3154791.12.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_RUN\">Runs or saves the current macro.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_RUN\">Runs or saves the current macro.</ahelp>"
+
+#: 06130000.xhp#hd_id3153158.15.help.text
+msgid "Assign"
+msgstr "Assign"
+
+#: 06130000.xhp#par_id3149961.16.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ASSIGN\">Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ASSIGN\">Opens the Customise dialogue, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
+
+#: 06130000.xhp#hd_id3145799.17.help.text
+msgctxt "06130000.xhp#hd_id3145799.17.help.text"
+msgid "Edit"
+msgstr "Edit"
+
+#: 06130000.xhp#par_id3147127.18.help.text
+msgid "<ahelp hid=\".\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
+msgstr "<ahelp hid=\".\">Starts the $[officename] Basic editor and opens the selected macro for editing.</ahelp>"
+
+#: 06130000.xhp#hd_id3149400.19.help.text
+msgid "New/Delete"
+msgstr "New/Delete"
+
+#: 06130000.xhp#par_id3155602.61.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_DEL\">Creates a new macro, or deletes the selected macro.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_DEL\">Creates a new macro, or deletes the selected macro.</ahelp>"
+
+#: 06130000.xhp#par_id3149124.20.help.text
+msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>. "
+msgstr "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>. "
+
+#: 06130000.xhp#par_id3150749.21.help.text
+msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
+msgstr "To delete a macro, select it, and then click <emph>Delete</emph>."
+
+#: 06130000.xhp#hd_id3153764.22.help.text
+msgid "Organizer"
+msgstr "Organiser"
+
+#: 06130000.xhp#par_id3148405.23.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_MACROCHOOSER_RID_PB_ORG\">Opens the <emph>Macro Organiser</emph> dialogue, where you can add, edit, or delete existing macro modules, dialogues, and libraries.</ahelp>"
+
+#: 06130000.xhp#hd_id3166447.29.help.text
+msgid "Module/Dialog"
+msgstr "Module/Dialogue"
+
+#: 06130000.xhp#par_id3155959.30.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogs.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_MODULES_TREE\">Lists the existing macros and dialogues.</ahelp>"
+
+#: 06130000.xhp#par_id3149922.31.help.text
+msgid "You can drag-and-drop a module or a dialog between libraries."
+msgstr "You can drag-and-drop a module or a dialogue between libraries."
+
+#: 06130000.xhp#par_id3159333.33.help.text
+msgid "To copy a dialog or a module, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you drag-and-drop."
+msgstr "To copy a dialogue or a module, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you drag-and-drop."
+
+#: 06130000.xhp#hd_id3147131.34.help.text
+msgctxt "06130000.xhp#hd_id3147131.34.help.text"
+msgid "Edit"
+msgstr "Edit"
+
+#: 06130000.xhp#par_id3149816.35.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Opens the selected macro or dialog for editing.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_EDIT\">Opens the selected macro or dialogue for editing.</ahelp>"
+
+#: 06130000.xhp#hd_id3151214.36.help.text
+msgctxt "06130000.xhp#hd_id3151214.36.help.text"
+msgid "New"
+msgstr "New"
+
+#: 06130000.xhp#par_id3154202.37.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Creates a new module.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWMOD\">Creates a new module.</ahelp>"
+
+#: 06130000.xhp#par_id3153269.40.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Creates a new dialog.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Creates a new dialogue.</ahelp>"
+
+#: 06130000.xhp#hd_id3154587.42.help.text
+msgid "Libraries tab page"
+msgstr "Libraries tab page"
+
+#: 06130000.xhp#par_id3153705.43.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Lets you manage the macro libraries.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_MODULS_RID_PB_NEWDLG\">Lets you manage the macro libraries.</ahelp>"
+
+#: 06130000.xhp#hd_id3145259.44.help.text
+msgid "Location"
+msgstr "Location"
+
+#: 06130000.xhp#par_id3153234.45.help.text
+msgid "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Select the location containing the macro libraries that you want to organize.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_LISTBOX_RID_TP_LIBS_RID_LB_BASICS\">Select the location containing the macro libraries that you want to organise.</ahelp>"
+
+#: 06130000.xhp#hd_id3148460.46.help.text
+msgid "Library"
+msgstr "Library"
+
+#: 06130000.xhp#par_id3150828.47.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the macro libraries in the chosen location.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBS_TREE\">Lists the macro libraries in the chosen location.</ahelp>"
+
+#: 06130000.xhp#hd_id3145134.48.help.text
+msgctxt "06130000.xhp#hd_id3145134.48.help.text"
+msgid "Edit"
+msgstr "Edit"
+
+#: 06130000.xhp#par_id3150518.49.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_EDIT\">Opens the $[officename] Basic editor so that you can modify the selected library.</ahelp>"
+
+#: 06130000.xhp#hd_id3150371.50.help.text
+msgctxt "06130000.xhp#hd_id3150371.50.help.text"
+msgid "Password"
+msgstr "Password"
+
+#: 06130000.xhp#par_id3166430.51.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_PASSWORD\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
+
+#: 06130000.xhp#hd_id3154372.52.help.text
+msgctxt "06130000.xhp#hd_id3154372.52.help.text"
+msgid "New"
+msgstr "New"
+
+#: 06130000.xhp#par_id3145387.53.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_NEWLIB\">Creates a new library.</ahelp>"
+
+#: 06130000.xhp#hd_id3154259.56.help.text
+msgid "Name"
+msgstr "Name"
+
+#: 06130000.xhp#par_id3156169.57.help.text
+msgid "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Enter a name for the new module, dialog, or library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_EDIT_RID_DLG_NEWLIB_RID_ED_LIBNAME\">Enter a name for the new module, dialogue, or library.</ahelp>"
+
+#: 06130000.xhp#hd_id3151183.54.help.text
+msgid "Append"
+msgstr "Append"
+
+#: 06130000.xhp#par_id3155126.55.help.text
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
+
+#: 06130100.xhp#tit.help.text
+msgctxt "06130100.xhp#tit.help.text"
+msgid "Change Password"
+msgstr "Change Password"
+
+#: 06130100.xhp#hd_id3159399.1.help.text
+msgctxt "06130100.xhp#hd_id3159399.1.help.text"
+msgid "Change Password"
+msgstr "Change Password"
+
+#: 06130100.xhp#par_id3150276.2.help.text
+msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
+msgstr "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
+
+#: 06130100.xhp#hd_id3154285.3.help.text
+msgid "Old password"
+msgstr "Old password"
+
+#: 06130100.xhp#hd_id3153665.4.help.text
+msgctxt "06130100.xhp#hd_id3153665.4.help.text"
+msgid "Password"
+msgstr "Password"
+
+#: 06130100.xhp#par_id3155628.5.help.text
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
+
+#: 06130100.xhp#hd_id3153126.6.help.text
+msgid "New password"
+msgstr "New password"
+
+#: 06130100.xhp#hd_id3153628.7.help.text
+msgctxt "06130100.xhp#hd_id3153628.7.help.text"
+msgid "Password"
+msgstr "Password"
+
+#: 06130100.xhp#par_id3159413.8.help.text
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+
+#: 06130100.xhp#hd_id3148947.9.help.text
+msgid "Confirm"
+msgstr "Confirm"
+
+#: 06130100.xhp#par_id3149457.10.help.text
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
+msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
+
+#: 06130500.xhp#tit.help.text
+msgctxt "06130500.xhp#tit.help.text"
+msgid "Append libraries"
+msgstr "Append libraries"
+
+#: 06130500.xhp#bm_id3150502.help.text
+msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
+msgstr "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
+
+#: 06130500.xhp#hd_id3150502.1.help.text
+msgctxt "06130500.xhp#hd_id3150502.1.help.text"
+msgid "Append libraries"
+msgstr "Append libraries"
+
+#: 06130500.xhp#par_id3154840.2.help.text
+msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
+
+#: 06130500.xhp#hd_id3149119.3.help.text
+msgid "File name:"
+msgstr "File name:"
+
+#: 06130500.xhp#par_id3147102.4.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
+msgstr "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
+
+#: 06130500.xhp#hd_id3147291.5.help.text
+msgid "Options"
+msgstr "Options"
+
+#: 06130500.xhp#hd_id3147226.7.help.text
+msgid "Insert as reference (read-only)"
+msgstr "Insert as reference (read-only)"
+
+#: 06130500.xhp#par_id3155892.8.help.text
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+
+#: 06130500.xhp#hd_id3145071.9.help.text
+msgid "Replace existing libraries"
+msgstr "Replace existing libraries"
+
+#: 06130500.xhp#par_id3149812.10.help.text
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
+msgstr "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared/02.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared/02.po
new file mode 100644
index 00000000000..a328cf8008d
--- /dev/null
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared/02.po
@@ -0,0 +1,863 @@
+#. extracted from helpcontent2/source/text/sbasic/shared/02.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fsbasic%2Fshared%2F02.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:54+0200\n"
+"PO-Revision-Date: 2011-04-05 14:31+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 11080000.xhp#tit.help.text
+msgctxt "11080000.xhp#tit.help.text"
+msgid "Enable Watch"
+msgstr "Enable Watch"
+
+#: 11080000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
+
+#: 11080000.xhp#par_id3093440.2.help.text
+msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
+
+#: 11080000.xhp#par_id3147399.6.help.text
+msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
+msgstr "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
+
+#: 11080000.xhp#par_id3155892.help.text
+msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
+
+#: 11080000.xhp#par_id3150276.3.help.text
+msgctxt "11080000.xhp#par_id3150276.3.help.text"
+msgid "Enable Watch"
+msgstr "Enable Watch"
+
+#: 11080000.xhp#par_id3159158.4.help.text
+msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
+msgstr "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
+
+#: 11010000.xhp#tit.help.text
+msgid "Library"
+msgstr "Library"
+
+#: 11010000.xhp#hd_id3151100.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
+
+#: 11010000.xhp#par_id3154136.2.help.text
+msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
+msgstr "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
+
+#: 11010000.xhp#par_id3149095.help.text
+msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
+msgstr "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
+
+#: 11010000.xhp#par_id3147654.3.help.text
+msgid "Library List Box"
+msgstr "Library List Box"
+
+#: 11040000.xhp#tit.help.text
+msgctxt "11040000.xhp#tit.help.text"
+msgid "Stop"
+msgstr "Stop"
+
+#: 11040000.xhp#bm_id3154863.help.text
+msgid "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
+msgstr "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
+
+#: 11040000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
+
+#: 11040000.xhp#par_id3147226.2.help.text
+msgid "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> You can also press Shift+Ctrl+Q.</defaultinline></switchinline>"
+msgstr "<ahelp hid=\".uno:BasicStop\">Stops running the current macro.</ahelp><switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline> You can also press Shift+Ctrl+Q.</defaultinline></switchinline>"
+
+#: 11040000.xhp#par_id3146797.help.text
+#, fuzzy
+msgid "<image id=\"img_id3148538\" src=\"cmd/sc_basicstop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148538\">Icon</alt></image>"
+msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
+
+#: 11040000.xhp#par_id3150986.3.help.text
+msgctxt "11040000.xhp#par_id3150986.3.help.text"
+msgid "Stop"
+msgstr "Stop"
+
+#: 11020000.xhp#tit.help.text
+msgctxt "11020000.xhp#tit.help.text"
+msgid "Compile"
+msgstr "Compile"
+
+#: 11020000.xhp#hd_id3148983.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
+
+#: 11020000.xhp#par_id3159201.2.help.text
+msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
+msgstr "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
+
+#: 11020000.xhp#par_id3156426.help.text
+msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
+
+#: 11020000.xhp#par_id3149399.3.help.text
+msgctxt "11020000.xhp#par_id3149399.3.help.text"
+msgid "Compile"
+msgstr "Compile"
+
+#: 11150000.xhp#tit.help.text
+msgctxt "11150000.xhp#tit.help.text"
+msgid "Save Source As"
+msgstr "Save Source As"
+
+#: 11150000.xhp#hd_id3149497.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
+
+#: 11150000.xhp#par_id3147261.3.help.text
+msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
+
+#: 11150000.xhp#par_id3145071.help.text
+msgid "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
+
+#: 11150000.xhp#par_id3151110.2.help.text
+msgctxt "11150000.xhp#par_id3151110.2.help.text"
+msgid "Save Source As"
+msgstr "Save Source As"
+
+#: 11070000.xhp#tit.help.text
+msgctxt "11070000.xhp#tit.help.text"
+msgid "Breakpoint"
+msgstr "Breakpoint"
+
+#: 11070000.xhp#hd_id3154863.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
+
+#: 11070000.xhp#par_id3155364.2.help.text
+msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+
+#: 11070000.xhp#par_id3149346.4.help.text
+msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
+msgstr "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
+
+#: 11070000.xhp#par_id3156346.help.text
+msgid "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
+
+#: 11070000.xhp#par_id3149416.3.help.text
+msgctxt "11070000.xhp#par_id3149416.3.help.text"
+msgid "Breakpoint"
+msgstr "Breakpoint"
+
+#: 11170000.xhp#tit.help.text
+msgctxt "11170000.xhp#tit.help.text"
+msgid "Manage Breakpoints"
+msgstr "Manage Breakpoints"
+
+#: 11170000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+
+#: 11170000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
+msgstr "<ahelp hid=\".\">Calls a dialogue to manage breakpoints.</ahelp>"
+
+#: 11170000.xhp#par_id3143267.help.text
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+
+#: 11170000.xhp#par_id3145383.3.help.text
+msgctxt "11170000.xhp#par_id3145383.3.help.text"
+msgid "Manage Breakpoints"
+msgstr "Manage Breakpoints"
+
+#: 11170000.xhp#par_id3154897.4.help.text
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialogue\"><emph>Manage Breakpoints</emph> dialogue</link>"
+
+#: 11100000.xhp#tit.help.text
+msgctxt "11100000.xhp#tit.help.text"
+msgid "Macros"
+msgstr "Macros"
+
+#: 11100000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
+
+#: 11100000.xhp#par_id3147399.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialogue.</ahelp>"
+
+#: 11100000.xhp#par_id3148538.help.text
+msgid "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt_id3153662\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_choosemacro.png\" id=\"img_id3153662\"><alt id=\"alt_id3153662\">Icon</alt></image>"
+
+#: 11100000.xhp#par_id3153542.3.help.text
+msgctxt "11100000.xhp#par_id3153542.3.help.text"
+msgid "Macros"
+msgstr "Macros"
+
+#: 11180000.xhp#tit.help.text
+msgctxt "11180000.xhp#tit.help.text"
+msgid "Import Dialog"
+msgstr "Import Dialog"
+
+#: 11180000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
+
+#: 11180000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr "<ahelp hid=\".\">Calls an \"Open\" dialogue to import a BASIC dialogue file.</ahelp>"
+
+#: 11180000.xhp#par_id0929200903505211.help.text
+msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported."
+msgstr "If the imported dialogue has a name that already exists in the library, you see a message box where you can decide to rename the imported dialogue. In this case the dialogue will be renamed to the next free \"automatic\" name like when creating a new dialogue. Or you can replace the existing dialogue by the imported dialogue. If you click Cancel the dialogue is not imported."
+
+#: 11180000.xhp#par_id0929200903505360.help.text
+msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
+msgstr "Dialogues can contain localisation data. When importing a dialogue, a mismatch of the dialogues' localisation status can occur."
+
+#: 11180000.xhp#par_id0929200903505320.help.text
+msgid "If the library contains additional languages compared to the imported dialog, or if the imported dialog is not localized at all, then the additional languages will silently be added to the imported dialog using the strings of the dialog's default locale."
+msgstr "If the library contains additional languages compared to the imported dialogue, or if the imported dialogue is not localised at all, then the additional languages will silently be added to the imported dialogue using the strings of the dialogue's default locale."
+
+#: 11180000.xhp#par_id0929200903505383.help.text
+msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons."
+msgstr "If the imported dialogue contains additional languages compared to the library, or if the library is not localised at all, then you see a message box with Add, Omit, and Cancel buttons."
+
+#: 11180000.xhp#par_id0929200903505340.help.text
+msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
+msgstr "Add: The additional languages from the imported dialogue will be added to the already existing dialogue. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
+
+#: 11180000.xhp#par_id0929200903505367.help.text
+msgid "Omit: The library's language settings will stay unchanged. The imported dialog's resources for the omitted languages are not copied into the library, but they remain in the imported dialog's source files."
+msgstr "Omit: The library's language settings will stay unchanged. The imported dialogue's resources for the omitted languages are not copied into the library, but they remain in the imported dialogue's source files."
+
+#: 11180000.xhp#par_id3143267.help.text
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+
+#: 11180000.xhp#par_id3145383.3.help.text
+msgctxt "11180000.xhp#par_id3145383.3.help.text"
+msgid "Import Dialog"
+msgstr "Import Dialog"
+
+#: 11190000.xhp#tit.help.text
+msgctxt "11190000.xhp#tit.help.text"
+msgid "Export Dialog"
+msgstr "Export Dialog"
+
+#: 11190000.xhp#hd_id3156183.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+
+#: 11190000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">In the dialogue editor, this command calls a \"Save as\" dialogue to export the current BASIC dialogue.</ahelp>"
+
+#: 11190000.xhp#par_id3143267.help.text
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+
+#: 11190000.xhp#par_id3145383.3.help.text
+msgctxt "11190000.xhp#par_id3145383.3.help.text"
+msgid "Export Dialog"
+msgstr "Export Dialog"
+
+#: 11060000.xhp#tit.help.text
+msgctxt "11060000.xhp#tit.help.text"
+msgid "Procedure Step"
+msgstr "Procedure Step"
+
+#: 11060000.xhp#hd_id3148520.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
+
+#: 11060000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+
+#: 11060000.xhp#par_id3153394.4.help.text
+msgctxt "11060000.xhp#par_id3153394.4.help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+
+#: 11060000.xhp#par_id3147576.help.text
+msgid "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
+
+#: 11060000.xhp#par_id3154307.3.help.text
+msgctxt "11060000.xhp#par_id3154307.3.help.text"
+msgid "Procedure Step"
+msgstr "Procedure Step"
+
+#: 11060000.xhp#par_id3153562.6.help.text
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
+
+#: 20000000.xhp#tit.help.text
+msgctxt "20000000.xhp#tit.help.text"
+msgid "Insert Controls"
+msgstr "Insert Controls"
+
+#: 20000000.xhp#bm_id3150402.help.text
+msgid "<bookmark_value>controls; in dialog editor</bookmark_value><bookmark_value>push button control in dialog editor</bookmark_value><bookmark_value>icon control</bookmark_value><bookmark_value>buttons; controls</bookmark_value><bookmark_value>image control</bookmark_value><bookmark_value>check box control</bookmark_value><bookmark_value>radio button control</bookmark_value><bookmark_value>option button control</bookmark_value><bookmark_value>fixed text control</bookmark_value><bookmark_value>label field control</bookmark_value><bookmark_value>editing; controls</bookmark_value><bookmark_value>text boxes; controls</bookmark_value><bookmark_value>list boxes; controls</bookmark_value><bookmark_value>combo box control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>horizontal scrollbar control</bookmark_value><bookmark_value>vertical scrollbar control</bookmark_value><bookmark_value>group box control</bookmark_value><bookmark_value>progress bar control</bookmark_value><bookmark_value>fixed line control</bookmark_value><bookmark_value>horizontal line control</bookmark_value><bookmark_value>line control</bookmark_value><bookmark_value>vertical line control</bookmark_value><bookmark_value>date field control</bookmark_value><bookmark_value>time field control</bookmark_value><bookmark_value>numerical field control</bookmark_value><bookmark_value>currency field control</bookmark_value><bookmark_value>formatted field control</bookmark_value><bookmark_value>pattern field control</bookmark_value><bookmark_value>masked field control</bookmark_value><bookmark_value>file selection control</bookmark_value><bookmark_value>selection options for controls</bookmark_value><bookmark_value>test mode control</bookmark_value>"
+msgstr "<bookmark_value>controls; in dialogue editor</bookmark_value><bookmark_value>push button control in dialogue editor</bookmark_value><bookmark_value>icon control</bookmark_value><bookmark_value>buttons; controls</bookmark_value><bookmark_value>image control</bookmark_value><bookmark_value>check box control</bookmark_value><bookmark_value>radio button control</bookmark_value><bookmark_value>option button control</bookmark_value><bookmark_value>fixed text control</bookmark_value><bookmark_value>label field control</bookmark_value><bookmark_value>editing; controls</bookmark_value><bookmark_value>text boxes; controls</bookmark_value><bookmark_value>list boxes; controls</bookmark_value><bookmark_value>combo box control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>horizontal scrollbar control</bookmark_value><bookmark_value>vertical scrollbar control</bookmark_value><bookmark_value>group box control</bookmark_value><bookmark_value>progress bar control</bookmark_value><bookmark_value>fixed line control</bookmark_value><bookmark_value>horizontal line control</bookmark_value><bookmark_value>line control</bookmark_value><bookmark_value>vertical line control</bookmark_value><bookmark_value>date field control</bookmark_value><bookmark_value>time field control</bookmark_value><bookmark_value>numerical field control</bookmark_value><bookmark_value>currency field control</bookmark_value><bookmark_value>formatted field control</bookmark_value><bookmark_value>pattern field control</bookmark_value><bookmark_value>masked field control</bookmark_value><bookmark_value>file selection control</bookmark_value><bookmark_value>selection options for controls</bookmark_value><bookmark_value>test mode control</bookmark_value>"
+
+#: 20000000.xhp#hd_id3150402.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
+msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
+
+#: 20000000.xhp#par_id3147000.2.help.text
+msgid "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
+msgstr "<ahelp hid=\".uno:ChooseControls\">Opens the <emph>Toolbox</emph> bar.</ahelp>"
+
+#: 20000000.xhp#par_id3147226.help.text
+msgid "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_choosecontrols.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3153749.3.help.text
+msgctxt "20000000.xhp#par_id3153749.3.help.text"
+msgid "Insert Controls"
+msgstr "Insert Controls"
+
+#: 20000000.xhp#par_id3157958.5.help.text
+msgid "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">properties dialog</link>."
+msgstr "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialogue\">properties dialogue</link>."
+
+#: 20000000.xhp#par_id3148538.6.help.text
+msgid "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
+msgstr "In edit mode, you can also right-click a control and choose the cut, copy, and paste command."
+
+#: 20000000.xhp#hd_id3148473.7.help.text
+msgid "Button"
+msgstr "Button"
+
+#: 20000000.xhp#par_id3153824.help.text
+msgid "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
+msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_insertpushbutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3147530.8.help.text
+msgid "<ahelp hid=\".uno:InsertPushbutton\">Adds a command button.</ahelp> You can use a command button to execute a command for a defined event, such as a mouse click."
+msgstr "<ahelp hid=\".uno:InsertPushbutton\">Adds a command button.</ahelp> You can use a command button to execute a command for a defined event, such as a mouse click."
+
+#: 20000000.xhp#par_id3154923.9.help.text
+msgid "If you want, you can add text or a graphic to the button."
+msgstr "If you want, you can add text or a graphic to the button."
+
+#: 20000000.xhp#hd_id3148550.10.help.text
+msgid "Image Control"
+msgstr "Image Control"
+
+#: 20000000.xhp#par_id3154138.help.text
+msgid "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">Icon</alt></image>"
+msgstr "<image id=\"img_id3144760\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144760\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3151042.11.help.text
+msgid "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertImageControl\">Adds a control that displays a graphic.</ahelp>"
+
+#: 20000000.xhp#hd_id3150447.12.help.text
+msgid "Check Box"
+msgstr "Tick Box"
+
+#: 20000000.xhp#par_id3155131.help.text
+msgid "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150439\" src=\"cmd/sc_checkbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3147317.13.help.text
+msgid "<ahelp hid=\".uno:Checkbox\">Adds a check box that you can use to turn a function on or off.</ahelp>"
+msgstr "<ahelp hid=\".uno:Checkbox\">Adds a check box that you can use to turn a function on or off.</ahelp>"
+
+#: 20000000.xhp#hd_id3150486.14.help.text
+msgid "Option Button"
+msgstr "Option Button"
+
+#: 20000000.xhp#par_id3155856.help.text
+msgid "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146921\" src=\"cmd/sc_radiobutton.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146921\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3153575.15.help.text
+msgid "<ahelp hid=\".uno:Radiobutton\">Adds a button that allows a user to select from a number of options.</ahelp> Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame."
+msgstr "<ahelp hid=\".uno:Radiobutton\">Adds a button that allows a user to select from a number of options.</ahelp> Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame."
+
+#: 20000000.xhp#hd_id3154729.16.help.text
+msgid "Label Field"
+msgstr "Label Field"
+
+#: 20000000.xhp#par_id3149300.help.text
+msgid "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153415\" src=\"cmd/sc_insertfixedtext.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3153415\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3156181.17.help.text
+msgid "<ahelp hid=\".uno:InsertFixedText\">Adds a field for displaying text labels.</ahelp> These labels are only for displaying predefined text, and not for entering text."
+msgstr "<ahelp hid=\".uno:InsertFixedText\">Adds a field for displaying text labels.</ahelp> These labels are only for displaying predefined text, and not for entering text."
+
+#: 20000000.xhp#hd_id3149123.18.help.text
+msgid "Text Box"
+msgstr "Text Box"
+
+#: 20000000.xhp#par_id3153766.help.text
+msgid "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148996\" src=\"cmd/sc_edit.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3148996\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3153712.19.help.text
+msgid "<ahelp hid=\".uno:InsertEdit\">Adds an input box where you can enter and edit text.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertEdit\">Adds an input box where you can enter and edit text.</ahelp>"
+
+#: 20000000.xhp#hd_id3154253.20.help.text
+msgid "List Box"
+msgstr "List Box"
+
+#: 20000000.xhp#par_id3155959.help.text
+msgid "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_listbox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3155176.21.help.text
+msgid "<ahelp hid=\".uno:InsertListbox\">Adds a box where you can click an entry on a list.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertListbox\">Adds a box where you can click an entry on a list.</ahelp>"
+
+#: 20000000.xhp#hd_id3150644.22.help.text
+msgid "Combo Box"
+msgstr "Combo Box"
+
+#: 20000000.xhp#par_id3148418.help.text
+msgid "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153200\" src=\"cmd/sc_combobox.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153200\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3154199.23.help.text
+msgid "<ahelp hid=\".uno:Combobox\">Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list.</ahelp> If you want, you can make the entries in the combo box \"read only\"."
+msgstr "<ahelp hid=\".uno:Combobox\">Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list.</ahelp> If you want, you can make the entries in the combo box \"read only\"."
+
+#: 20000000.xhp#hd_id3154585.24.help.text
+msgid "Horizontal Scrollbar"
+msgstr "Horizontal Scrollbar"
+
+#: 20000000.xhp#par_id3153781.help.text
+msgid "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149530\" src=\"cmd/sc_hscrollbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149530\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3153232.25.help.text
+msgid "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:HScrollbar\">Adds a horizontal scrollbar to the dialogue.</ahelp>"
+
+#: 20000000.xhp#hd_id3154119.26.help.text
+msgid "Vertical Scrollbar"
+msgstr "Vertical Scrollbar"
+
+#: 20000000.xhp#par_id3150515.help.text
+msgid "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150203\" src=\"cmd/sc_vscrollbar.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150203\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3155376.27.help.text
+msgid "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:VScrollbar\">Adds a vertical scrollbar to the dialogue.</ahelp>"
+
+#: 20000000.xhp#hd_id3150313.28.help.text
+msgid "Group Box"
+msgstr "Group Box"
+
+#: 20000000.xhp#par_id3151184.help.text
+msgid "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151335\" src=\"cmd/sc_groupbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151335\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3159622.29.help.text
+msgid "<ahelp hid=\".uno:Groupbox\">Adds a frame that you can use to visually group similar controls, such as option buttons.</ahelp>"
+msgstr "<ahelp hid=\".uno:Groupbox\">Adds a frame that you can use to visually group similar controls, such as option buttons.</ahelp>"
+
+#: 20000000.xhp#par_id3148820.30.help.text
+msgid "To define two different groups of option buttons, ensure that the tab index of the group frame is between the tab indices of the two groups."
+msgstr "To define two different groups of option buttons, ensure that the tab index of the group frame is between the tab indices of the two groups."
+
+#: 20000000.xhp#hd_id3149330.31.help.text
+msgid "Progress Bar"
+msgstr "Progress Bar"
+
+#: 20000000.xhp#par_id3159093.help.text
+msgid "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150318\" src=\"cmd/sc_progressbar.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150318\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3157979.32.help.text
+msgid "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:ProgressBar\">Adds a progress bar to the dialogue.</ahelp>"
+
+#: 20000000.xhp#hd_id3145654.33.help.text
+msgid "Horizontal Line"
+msgstr "Horizontal Line"
+
+#: 20000000.xhp#par_id3150888.help.text
+msgid "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152872\" src=\"cmd/sc_hfixedline.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id3152872\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3151000.34.help.text
+msgid "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:HFixedLine\">Adds a horizontal line to the dialogue.</ahelp>"
+
+#: 20000000.xhp#hd_id3155095.35.help.text
+msgid "Vertical Line"
+msgstr "Vertical Line"
+
+#: 20000000.xhp#par_id3154913.help.text
+msgid "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153249\" src=\"cmd/sc_vfixedline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153249\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3159203.36.help.text
+msgid "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:VFixedLine\">Adds a vertical line to the dialogue.</ahelp>"
+
+#: 20000000.xhp#hd_id3154540.37.help.text
+msgid "Date Field"
+msgstr "Date Field"
+
+#: 20000000.xhp#par_id3148901.help.text
+msgid "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151010\" src=\"cmd/sc_adddatefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151010\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3154214.38.help.text
+msgid "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddDateField\">Adds a date field.</ahelp>"
+
+#: 20000000.xhp#par_id3150046.39.help.text
+msgid "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date."
+msgstr "If you assign the \"dropdown\" property to the date field, a user can drop down a calendar to select a date."
+
+#: 20000000.xhp#hd_id3151126.40.help.text
+msgid "Time Field"
+msgstr "Time Field"
+
+#: 20000000.xhp#par_id3154338.help.text
+msgid "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147077\" src=\"cmd/sc_timefield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147077\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3151191.41.help.text
+msgid "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
+msgstr "<ahelp hid=\"SID_INSERT_TIMEFIELD\">Adds a time field.</ahelp>"
+
+#: 20000000.xhp#hd_id3154733.42.help.text
+msgid "Numeric Field"
+msgstr "Numeric Field"
+
+#: 20000000.xhp#par_id3146107.help.text
+msgid "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147499\" src=\"cmd/sc_insertnumericfield.png\" width=\"0.0874inch\" height=\"0.0874inch\"><alt id=\"alt_id3147499\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3147244.43.help.text
+msgid "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertNumericField\">Adds a numeric field.</ahelp>"
+
+#: 20000000.xhp#hd_id3149870.44.help.text
+msgid "Currency Field"
+msgstr "Currency Field"
+
+#: 20000000.xhp#par_id3153958.help.text
+msgid "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150435\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150435\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3154064.45.help.text
+msgid "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCurrencyField\">Adds a currency field.</ahelp>"
+
+#: 20000000.xhp#hd_id3150117.46.help.text
+msgid "Formatted Field"
+msgstr "Formatted Field"
+
+#: 20000000.xhp#par_id3153162.help.text
+msgid "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152807\" src=\"cmd/sc_formattedfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3146320.47.help.text
+msgid "<ahelp hid=\".uno:InsertFormattedField\">Adds a text box where you can define the formatting for text that is inputted or outputted as well as any limiting values.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertFormattedField\">Adds a text box where you can define the formatting for text that is inputted or outputted as well as any limiting values.</ahelp>"
+
+#: 20000000.xhp#hd_id3156160.48.help.text
+msgid "Pattern Field"
+msgstr "Pattern Field"
+
+#: 20000000.xhp#par_id3150379.help.text
+msgid "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150032\" src=\"cmd/sc_insertpatternfield.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150032\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3147382.49.help.text
+msgid "<ahelp hid=\".uno:InsertPatternField\">Adds a masked field.</ahelp> A masked field consists of an input mask and a literal mask. The input mask determines which user data can be entered. The literal mask determines the state of the masked field when the form is loaded."
+msgstr "<ahelp hid=\".uno:InsertPatternField\">Adds a masked field.</ahelp> A masked field consists of an input mask and a literal mask. The input mask determines which user data can be entered. The literal mask determines the state of the masked field when the form is loaded."
+
+#: 20000000.xhp#hd_id3146815.50.help.text
+msgid "File Selection"
+msgstr "File Selection"
+
+#: 20000000.xhp#par_id3149194.help.text
+msgid "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149101\" src=\"cmd/sc_filecontrol.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149101\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3145632.51.help.text
+msgid "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialog.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertFileControl\">Adds a button that opens a file selection dialogue.</ahelp>"
+
+#: 20000000.xhp#hd_id3155912.52.help.text
+msgid "Select"
+msgstr "Select"
+
+#: 20000000.xhp#par_id3154903.help.text
+msgid "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150653\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150653\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3148465.53.help.text
+msgid "<ahelp hid=\".\">Activates or deactivates the Selection mode. In this mode, you can select the controls in a dialog so that you can edit them.</ahelp>"
+msgstr "<ahelp hid=\".\">Activates or deactivates the Selection mode. In this mode, you can select the controls in a dialogue so that you can edit them.</ahelp>"
+
+#: 20000000.xhp#hd_id3154055.54.help.text
+msgid "Properties"
+msgstr "Properties"
+
+#: 20000000.xhp#par_id3148725.help.text
+msgid "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146874\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3151105.55.help.text
+msgid "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialog where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">properties</link> of the selected control.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialogue where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">properties</link> of the selected control.</ahelp>"
+
+#: 20000000.xhp#hd_id3153746.56.help.text
+msgid "Activate Test Mode"
+msgstr "Activate Test Mode"
+
+#: 20000000.xhp#par_id3147417.help.text
+msgid "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148883\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148883\">Icon</alt></image>"
+
+#: 20000000.xhp#par_id3150699.57.help.text
+msgid "<ahelp hid=\".uno:TestMode\">Starts test mode. Click the dialog closer icon to end test mode.</ahelp>"
+msgstr "<ahelp hid=\".uno:TestMode\">Starts test mode. Click the dialogue closer icon to end test mode.</ahelp>"
+
+#: 20000000.xhp#hd_id2954191.help.text
+msgid "Manage Language"
+msgstr "Manage Language"
+
+#: 20000000.xhp#par_id2320017.help.text
+msgid "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2856837\">Manage Language icon</alt></image>"
+msgstr "<image id=\"img_id2856837\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2856837\">Manage Language icon</alt></image>"
+
+#: 20000000.xhp#par_id1261940.help.text
+msgid "<ahelp hid=\".uno:ManageLanguage\">Opens a <link href=\"text/sbasic/guide/translation.xhp\">dialog</link> to enable or manage multiple sets of dialog resources for multiple languages.</ahelp>"
+msgstr "<ahelp hid=\".uno:ManageLanguage\">Opens a <link href=\"text/sbasic/guide/translation.xhp\">dialogue</link> to enable or manage multiple sets of dialogue resources for multiple languages.</ahelp>"
+
+#: 20000000.xhp#hd_id11902.help.text
+msgid "Tree Control"
+msgstr "Tree Control"
+
+#: 20000000.xhp#par_id7511520.help.text
+msgid "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Manage Language icon</alt></image>"
+msgstr "<image id=\"Graphic2\" src=\"cmd/sc_inserttreecontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Manage Language icon</alt></image>"
+
+#: 20000000.xhp#par_id9961851.help.text
+msgid "<ahelp hid=\".\">Adds a tree control that can show a hierarchical list. You can populate the list by your program, using API calls (XtreeControl).</ahelp>"
+msgstr "<ahelp hid=\".\">Adds a tree control that can show a hierarchical list. You can populate the list by your program, using API calls (XtreeControl).</ahelp>"
+
+#: 11050000.xhp#tit.help.text
+msgctxt "11050000.xhp#tit.help.text"
+msgid "Single Step"
+msgstr "Single Step"
+
+#: 11050000.xhp#hd_id3155934.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
+
+#: 11050000.xhp#par_id3146117.2.help.text
+msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
+
+#: 11050000.xhp#par_id3152801.4.help.text
+msgctxt "11050000.xhp#par_id3152801.4.help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+
+#: 11050000.xhp#par_id3157958.help.text
+msgid "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
+
+#: 11050000.xhp#par_id3147573.3.help.text
+msgctxt "11050000.xhp#par_id3147573.3.help.text"
+msgid "Single Step"
+msgstr "Single Step"
+
+#: 11050000.xhp#par_id3149235.6.help.text
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
+
+#: 11090000.xhp#tit.help.text
+msgctxt "11090000.xhp#tit.help.text"
+msgid "Object Catalog"
+msgstr "Object Catalog"
+
+#: 11090000.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
+
+#: 11090000.xhp#par_id3151384.2.help.text
+msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> dialog, where you can view Basic objects.</ahelp>"
+msgstr "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> dialogue, where you can view Basic objects.</ahelp>"
+
+#: 11090000.xhp#par_id3147576.15.help.text
+msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Click the name of a module or dialog and then click the <emph>Show</emph> icon to load and display that module or dialog."
+msgstr "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Click the name of a module or dialogue and then click the <emph>Show</emph> icon to load and display that module or dialogue."
+
+#: 11090000.xhp#par_id3148538.help.text
+msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
+
+#: 11090000.xhp#par_id3154515.3.help.text
+msgctxt "11090000.xhp#par_id3154515.3.help.text"
+msgid "Object Catalog"
+msgstr "Object Catalog"
+
+#: 11090000.xhp#hd_id3155388.4.help.text
+msgctxt "11090000.xhp#hd_id3155388.4.help.text"
+msgid "Show"
+msgstr "Show"
+
+#: 11090000.xhp#par_id3155630.5.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Display the source text or dialog of a selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Display the source text or dialogue of a selected object.</ahelp>"
+
+#: 11090000.xhp#par_id3153126.help.text
+msgid "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icon</alt></image>"
+
+#: 11090000.xhp#par_id3147560.6.help.text
+msgctxt "11090000.xhp#par_id3147560.6.help.text"
+msgid "Show"
+msgstr "Show"
+
+#: 11090000.xhp#hd_id3146794.13.help.text
+msgid "Window Area"
+msgstr "Window Area"
+
+#: 11090000.xhp#par_id3149655.14.help.text
+msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double-click its name or select the name and click the <emph>Show</emph> icon.</ahelp>"
+msgstr "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogues. To display the contents of an item in the window, double-click its name or select the name and click the <emph>Show</emph> icon.</ahelp>"
+
+#: 11120000.xhp#tit.help.text
+msgctxt "11120000.xhp#tit.help.text"
+msgid "Find Parentheses"
+msgstr "Find Parentheses"
+
+#: 11120000.xhp#hd_id3149497.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Find Parentheses</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Find Parentheses</link>"
+
+#: 11120000.xhp#par_id3155150.2.help.text
+msgid "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">Highlights the text that is enclosed by two corresponding brackets. Place the text cursor in front of an opening or closing bracket, and then click this icon.</ahelp>"
+msgstr "<ahelp hid=\".uno:MatchGroup\" visibility=\"visible\">Highlights the text that is enclosed by two corresponding brackets. Place the text cursor in front of an opening or closing bracket, and then click this icon.</ahelp>"
+
+#: 11120000.xhp#par_id3149182.help.text
+msgid "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_id3155892\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_matchgroup.png\" id=\"img_id3155892\"><alt id=\"alt_id3155892\">Icon</alt></image>"
+
+#: 11120000.xhp#par_id3147276.3.help.text
+msgctxt "11120000.xhp#par_id3147276.3.help.text"
+msgid "Find Parentheses"
+msgstr "Find Parentheses"
+
+#: 11110000.xhp#tit.help.text
+msgctxt "11110000.xhp#tit.help.text"
+msgid "Modules"
+msgstr "Modules"
+
+#: 11110000.xhp#hd_id3148520.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
+
+#: 11110000.xhp#par_id3156414.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialogue.</ahelp>"
+
+#: 11110000.xhp#par_id3157958.help.text
+msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+
+#: 11110000.xhp#par_id3145383.3.help.text
+msgctxt "11110000.xhp#par_id3145383.3.help.text"
+msgid "Modules"
+msgstr "Modules"
+
+#: 11160000.xhp#tit.help.text
+msgctxt "11160000.xhp#tit.help.text"
+msgid "Step Out"
+msgstr "Step Out"
+
+#: 11160000.xhp#hd_id3148983.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
+
+#: 11160000.xhp#par_id3157898.2.help.text
+msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
+msgstr "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
+
+#: 11160000.xhp#par_id3156410.help.text
+msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
+
+#: 11160000.xhp#par_id3158421.3.help.text
+msgctxt "11160000.xhp#par_id3158421.3.help.text"
+msgid "Step Out"
+msgstr "Step Out"
+
+#: 11030000.xhp#tit.help.text
+msgctxt "11030000.xhp#tit.help.text"
+msgid "Run"
+msgstr "Run"
+
+#: 11030000.xhp#hd_id3153255.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
+
+#: 11030000.xhp#par_id3159201.2.help.text
+msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
+msgstr "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
+
+#: 11030000.xhp#par_id3156410.help.text
+msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
+
+#: 11030000.xhp#par_id3154750.3.help.text
+msgctxt "11030000.xhp#par_id3154750.3.help.text"
+msgid "Run"
+msgstr "Run"
+
+#: 11140000.xhp#tit.help.text
+msgid "Insert Source Text"
+msgstr "Insert Source Text"
+
+#: 11140000.xhp#hd_id3154044.1.help.text
+msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
+
+#: 11140000.xhp#par_id3150702.2.help.text
+msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
+msgstr "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
+
+#: 11140000.xhp#par_id3150445.3.help.text
+msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
+msgstr "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
+
+#: 11140000.xhp#par_id3145136.help.text
+msgid "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+
+#: 11140000.xhp#par_id3145346.4.help.text
+msgid "Insert source text"
+msgstr "Insert source text"
diff --git a/source/en-ZA/helpcontent2/source/text/scalc.po b/source/en-ZA/helpcontent2/source/text/scalc.po
new file mode 100644
index 00000000000..688635402ad
--- /dev/null
+++ b/source/en-ZA/helpcontent2/source/text/scalc.po
@@ -0,0 +1,762 @@
+#. extracted from helpcontent2/source/text/scalc.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 15:23+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: main0112.xhp#tit.help.text
+msgid "Data"
+msgstr "Data"
+
+#: main0112.xhp#hd_id3153254.1.help.text
+msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
+msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
+
+#: main0112.xhp#par_id3147264.2.help.text
+msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
+msgstr ""
+
+#: main0112.xhp#hd_id3150400.3.help.text
+msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
+msgstr "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
+
+#: main0112.xhp#hd_id3125863.4.help.text
+msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
+msgstr "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
+
+#: main0112.xhp#hd_id3153726.5.help.text
+msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
+msgstr "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
+
+#: main0112.xhp#hd_id3153142.6.help.text
+msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
+msgstr "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
+
+#: main0112.xhp#hd_id3151073.10.help.text
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
+
+#: main0112.xhp#hd_id3145254.7.help.text
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
+msgstr "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
+
+#: main0112.xhp#hd_id1387066.help.text
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+
+#: main0112.xhp#hd_id3150717.8.help.text
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+
+#: main0112.xhp#hd_id3154754.9.help.text
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+
+#: main0101.xhp#tit.help.text
+msgid "File"
+msgstr "File"
+
+#: main0101.xhp#hd_id3156023.1.help.text
+msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+
+#: main0101.xhp#par_id3151112.2.help.text
+msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgstr "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+
+#: main0101.xhp#hd_id3154684.4.help.text
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+
+#: main0101.xhp#hd_id3147434.5.help.text
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+
+#: main0101.xhp#hd_id3147396.11.help.text
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+
+#: main0101.xhp#hd_id3149400.7.help.text
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+
+#: main0101.xhp#hd_id3155445.9.help.text
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+
+#: main0101.xhp#hd_id3147339.10.help.text
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
+
+#: main0206.xhp#tit.help.text
+msgid "Formula Bar"
+msgstr "Formula Bar"
+
+#: main0206.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+
+#: main0206.xhp#par_id3150400.2.help.text
+msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulae.</ahelp>"
+
+#: main0104.xhp#tit.help.text
+msgid "Insert"
+msgstr "Insert"
+
+#: main0104.xhp#hd_id3157909.1.help.text
+msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
+
+#: main0104.xhp#par_id3153896.2.help.text
+msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements, such as cells, rows, sheets and cell names into the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements, such as cells, rows, sheets and cell names into the current sheet.</ahelp>"
+
+#: main0104.xhp#hd_id3150769.3.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
+
+#: main0104.xhp#hd_id3149260.4.help.text
+msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
+
+#: main0104.xhp#hd_id3153726.7.help.text
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+
+#: main0104.xhp#hd_id3156285.13.help.text
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+
+#: main0104.xhp#hd_id3154492.5.help.text
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</link>"
+
+#: main0104.xhp#hd_id3154511.12.help.text
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+
+#: main0104.xhp#hd_id3145640.6.help.text
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
+
+#: main0104.xhp#hd_id3146918.11.help.text
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
+
+#: main0104.xhp#par_id0302200904002496.help.text
+msgid "Inserts a chart."
+msgstr "Inserts a chart."
+
+#: main0104.xhp#hd_id3147003.10.help.text
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
+
+#: main0214.xhp#tit.help.text
+msgid "Picture Bar"
+msgstr "Picture Bar"
+
+#: main0214.xhp#hd_id3153088.1.help.text
+msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Picture Bar\">Picture Bar</link>"
+msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"Picture Bar\">Picture Bar</link>"
+
+#: main0214.xhp#par_id3153896.2.help.text
+msgid "<ahelp hid=\".\">The <emph>Picture</emph> bar is displayed when you insert or select a picture in a sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">The <emph>Picture</emph> bar is displayed when you insert or select a picture in a sheet.</ahelp>"
+
+#: main0203.xhp#tit.help.text
+msgid "Drawing Object Properties Bar"
+msgstr "Drawing Object Properties Bar"
+
+#: main0203.xhp#hd_id3154346.1.help.text
+msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
+msgstr "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
+
+#: main0203.xhp#par_id3149656.2.help.text
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
+
+#: main0203.xhp#hd_id3145748.3.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+
+#: main0203.xhp#hd_id3151073.4.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+
+#: main0203.xhp#hd_id3153417.5.help.text
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Colour</link>"
+
+#: main0203.xhp#hd_id3147338.6.help.text
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Colour\">Background Color</link>"
+
+#: main0210.xhp#tit.help.text
+msgid "Page Preview Bar"
+msgstr "Page Preview Bar"
+
+#: main0210.xhp#hd_id3156023.1.help.text
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
+
+#: main0210.xhp#par_id3148663.2.help.text
+msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
+
+#: main0210.xhp#hd_id3147393.3.help.text
+msgid "Full Screen"
+msgstr ""
+
+#: main0210.xhp#par_id460828.help.text
+msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
+msgstr ""
+
+#: main0210.xhp#hd_id3147394.3.help.text
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
+msgstr ""
+
+#: main0210.xhp#hd_id3147494.3.help.text
+msgid "Margins"
+msgstr ""
+
+#: main0210.xhp#par_id460929.help.text
+msgid "Shows or hides margins of the page. Margins can be dragged by the mouse, and also can be set on <emph>Page</emph> tab of <emph>Page Style</emph> dialog."
+msgstr ""
+
+#: main0210.xhp#hd_id3245494.3.help.text
+msgid "Scaling Factor"
+msgstr ""
+
+#: main0210.xhp#par_id460939.help.text
+msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on <emph>Sheet</emph> tab of <emph>Page Style</emph> dialog, too."
+msgstr ""
+
+#: main0210.xhp#hd_id3147395.3.help.text
+msgid "Close Preview"
+msgstr ""
+
+#: main0210.xhp#par_id460829.help.text
+msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
+msgstr ""
+
+#: main0000.xhp#tit.help.text
+msgctxt "main0000.xhp#tit.help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Welcome to the $[officename] Calc Help"
+
+#: main0000.xhp#hd_id3147338.1.help.text
+msgctxt "main0000.xhp#hd_id3147338.1.help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Welcome to the $[officename] Calc Help"
+
+#: main0000.xhp#hd_id3153965.3.help.text
+msgid "How to Work With $[officename] Calc"
+msgstr "How to Work With $[officename] Calc"
+
+#: main0000.xhp#par_id3147004.5.help.text
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
+
+#: main0000.xhp#hd_id3154659.6.help.text
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgstr "$[officename] Calc Menus, Toolbars, and Keys"
+
+#: main0000.xhp#hd_id3150883.4.help.text
+msgid "Help about the Help"
+msgstr "Help about the Help"
+
+#: main0103.xhp#tit.help.text
+msgid "View"
+msgstr "View"
+
+#: main0103.xhp#hd_id3151112.1.help.text
+msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+
+#: main0103.xhp#par_id3149456.2.help.text
+msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+msgstr "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+
+#: main0103.xhp#par_idN105AB.help.text
+msgid "Normal"
+msgstr "Normal"
+
+#: main0103.xhp#par_idN105AF.help.text
+msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+
+#: main0103.xhp#hd_id3125863.3.help.text
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+
+#: main0100.xhp#tit.help.text
+msgid "Menus"
+msgstr "Menus"
+
+#: main0100.xhp#hd_id3156023.1.help.text
+msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+
+#: main0100.xhp#par_id3154760.2.help.text
+msgid "The following menu commands are available for spreadsheets."
+msgstr "The following menu commands are available for spreadsheets."
+
+#: main0205.xhp#tit.help.text
+msgid "Text Formatting Bar"
+msgstr "Text Formatting Bar"
+
+#: main0205.xhp#hd_id3156330.1.help.text
+msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
+
+#: main0205.xhp#par_id3151112.2.help.text
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
+
+#: main0205.xhp#hd_id3148575.7.help.text
+msgctxt "main0205.xhp#hd_id3148575.7.help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Colour</link>"
+
+#: main0205.xhp#hd_id3154944.8.help.text
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
+
+#: main0205.xhp#hd_id3146969.9.help.text
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
+
+#: main0205.xhp#hd_id3153711.10.help.text
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
+
+#: main0205.xhp#hd_id3147345.11.help.text
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
+
+#: main0205.xhp#hd_id3155337.12.help.text
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
+
+#: main0205.xhp#hd_id3147001.13.help.text
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
+
+#: main0205.xhp#hd_id3155115.14.help.text
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
+
+#: main0205.xhp#hd_id3150202.15.help.text
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
+
+#: main0205.xhp#hd_id3155531.16.help.text
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
+
+#: main0205.xhp#hd_id3145387.17.help.text
+msgctxt "main0205.xhp#hd_id3145387.17.help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+
+#: main0205.xhp#hd_id3153067.18.help.text
+msgctxt "main0205.xhp#hd_id3153067.18.help.text"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+
+#: main0200.xhp#tit.help.text
+msgid "Toolbars"
+msgstr "Toolbars"
+
+#: main0200.xhp#hd_id3154758.1.help.text
+msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+
+#: main0200.xhp#par_id3148798.2.help.text
+msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgstr "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+
+#: main0503.xhp#tit.help.text
+msgid "$[officename] Calc Features"
+msgstr "$[officename] Calc Features"
+
+#: main0503.xhp#hd_id3154758.1.help.text
+msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
+
+#: main0503.xhp#par_id3149457.2.help.text
+msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
+msgstr "$[officename] Calc is a spreadsheet application that you can use to calculate, analyse, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
+
+#: main0503.xhp#hd_id3148797.4.help.text
+msgid "Calculations"
+msgstr "Calculations"
+
+#: main0503.xhp#par_id3145172.5.help.text
+msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
+msgstr "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulae to perform complex calculations on your data."
+
+#: main0503.xhp#par_id3145271.6.help.text
+msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
+msgstr "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulae."
+
+#: main0503.xhp#hd_id3152596.13.help.text
+msgid "What-If Calculations"
+msgstr "What-If Calculations"
+
+#: main0503.xhp#par_id3156444.14.help.text
+msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
+msgstr "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
+
+#: main0503.xhp#hd_id3148576.7.help.text
+msgid "Database Functions"
+msgstr "Database Functions"
+
+#: main0503.xhp#par_id3154011.8.help.text
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr "Use spreadsheets to arrange, store, and filter your data."
+
+#: main0503.xhp#par_id3154942.25.help.text
+msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
+msgstr "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
+
+#: main0503.xhp#hd_id3145800.9.help.text
+msgid "Arranging Data"
+msgstr "Arranging Data"
+
+#: main0503.xhp#par_id3154490.10.help.text
+msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
+msgstr "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
+
+#: main0503.xhp#hd_id3155601.16.help.text
+msgid "Dynamic Charts"
+msgstr "Dynamic Charts"
+
+#: main0503.xhp#par_id3149121.17.help.text
+msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
+msgstr "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
+
+#: main0503.xhp#hd_id3153707.18.help.text
+msgid "Opening and Saving Microsoft Files"
+msgstr "Opening and Saving Microsoft Files"
+
+#: main0503.xhp#par_id3157867.19.help.text
+msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
+msgstr "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
+
+#: main0105.xhp#tit.help.text
+msgid "Format"
+msgstr "Format"
+
+#: main0105.xhp#hd_id3149669.1.help.text
+msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
+msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
+
+#: main0105.xhp#par_id3145171.2.help.text
+msgid "<ahelp hid=\".uno:FormatMenu\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
+msgstr "<ahelp hid=\".uno:FormatMenu\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
+
+#: main0105.xhp#hd_id3154732.4.help.text
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
+
+#: main0105.xhp#hd_id3155087.9.help.text
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
+
+#: main0105.xhp#hd_id3145748.12.help.text
+msgctxt "main0105.xhp#hd_id3145748.12.help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+
+#: main0105.xhp#hd_id3154485.13.help.text
+msgctxt "main0105.xhp#hd_id3154485.13.help.text"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+
+#: main0105.xhp#hd_id3157980.11.help.text
+msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
+
+#: main0105.xhp#hd_id3159206.14.help.text
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
+
+#: main0105.xhp#hd_id3154703.17.help.text
+msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
+msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
+
+#: main0105.xhp#hd_id3147005.16.help.text
+msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
+msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
+
+#: main0102.xhp#tit.help.text
+msgid "Edit"
+msgstr "Edit"
+
+#: main0102.xhp#hd_id3156023.1.help.text
+msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+
+#: main0102.xhp#par_id3154758.2.help.text
+msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+msgstr "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+
+#: main0102.xhp#hd_id3146119.3.help.text
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+
+#: main0102.xhp#hd_id3153728.12.help.text
+msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
+msgstr "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
+
+#: main0102.xhp#hd_id3154492.4.help.text
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+
+#: main0102.xhp#hd_id3150715.5.help.text
+msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+
+#: main0102.xhp#hd_id3149018.6.help.text
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
+
+#: main0102.xhp#hd_id3156384.7.help.text
+msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
+msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
+
+#: main0102.xhp#hd_id3146919.10.help.text
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+
+#: main0102.xhp#hd_id3148488.11.help.text
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+
+#: main0208.xhp#tit.help.text
+msgid "Status Bar"
+msgstr "Status Bar"
+
+#: main0208.xhp#hd_id3151385.1.help.text
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
+
+#: main0208.xhp#par_id3149669.2.help.text
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
+msgstr "The <emph>Status Bar</emph> displays information about the current sheet."
+
+#: main0208.xhp#hd_id0821200911024321.help.text
+msgid "Digital Signature"
+msgstr "Digital Signature"
+
+#: main0208.xhp#par_id0821200911024344.help.text
+msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+msgstr "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+
+#: main0106.xhp#tit.help.text
+msgid "Tools"
+msgstr "Tools"
+
+#: main0106.xhp#hd_id3150769.1.help.text
+msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+
+#: main0106.xhp#par_id3150440.2.help.text
+msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
+msgstr "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
+
+#: main0106.xhp#par_id3152576.10.help.text
+msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
+msgstr "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
+
+#: main0106.xhp#hd_id3149122.12.help.text
+msgctxt "main0106.xhp#hd_id3149122.12.help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+
+#: main0106.xhp#hd_id3155768.6.help.text
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
+
+#: main0106.xhp#hd_id3154015.9.help.text
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+
+#: main0106.xhp#hd_id3150086.8.help.text
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+
+#: main0218.xhp#tit.help.text
+msgid "Tools Bar"
+msgstr "Tools Bar"
+
+#: main0218.xhp#hd_id3143268.1.help.text
+msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+
+#: main0218.xhp#par_id3151112.2.help.text
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
+
+#: main0218.xhp#par_idN10610.help.text
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
+
+#: main0218.xhp#hd_id3154730.6.help.text
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
+
+#: main0218.xhp#par_idN10690.help.text
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
+
+#: main0218.xhp#par_idN106A8.help.text
+msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
+msgstr "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
+
+#: main0218.xhp#par_idN106C0.help.text
+msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
+msgstr "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
+
+#: main0218.xhp#par_idN106D8.help.text
+msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
+
+#: main0218.xhp#par_idN106F0.help.text
+msgctxt "main0218.xhp#par_idN106F0.help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+
+#: main0202.xhp#tit.help.text
+msgid "Formatting Bar"
+msgstr "Formatting Bar"
+
+#: main0202.xhp#hd_id3150448.1.help.text
+msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+
+#: main0202.xhp#par_id3153897.2.help.text
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>Formatting</emph> bar contains basic commands for applying manually formatting.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>Formatting</emph> bar contains basic commands for applying manually formatting.</ahelp>"
+
+#: main0202.xhp#hd_id3153160.8.help.text
+msgctxt "main0202.xhp#hd_id3153160.8.help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Colour</link>"
+
+#: main0202.xhp#hd_id3150715.9.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
+
+#: main0202.xhp#hd_id3155064.10.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Align Center Horizontally</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Align Center Horizontally</link>"
+
+#: main0202.xhp#hd_id3150042.11.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
+
+#: main0202.xhp#hd_id3154703.12.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
+
+#: main0202.xhp#hd_id3152986.13.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
+
+#: main0202.xhp#hd_id3153306.14.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Align Center Vertically</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Align Center Vertically</link>"
+
+#: main0202.xhp#hd_id3151240.15.help.text
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
+
+#: main0202.xhp#par_idN10843.help.text
+msgid "Number Format : Date"
+msgstr "Number Format : Date"
+
+#: main0202.xhp#par_idN10847.help.text
+msgid "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
+
+#: main0202.xhp#par_idN1085E.help.text
+msgid "Number Format: Exponential"
+msgstr "Number Format: Exponential"
+
+#: main0202.xhp#par_idN10862.help.text
+msgid "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
+
+#: main0202.xhp#par_idN10871.help.text
+msgid "Additional icons"
+msgstr "Additional icons"
+
+#: main0202.xhp#par_idN10875.help.text
+msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
+msgstr "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
+
+#: main0202.xhp#par_idN1088E.help.text
+msgid "Left-To-Right"
+msgstr "Left-To-Right"
+
+#: main0202.xhp#par_idN1089C.help.text
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+
+#: main0202.xhp#par_idN108BA.help.text
+msgid "<ahelp hid=\".uno:ParaLeftToRight\">The text is entered from left to right.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaLeftToRight\">The text is entered from left to right.</ahelp>"
+
+#: main0202.xhp#par_idN108D1.help.text
+msgid "Right-To-Left"
+msgstr "Right-To-Left"
+
+#: main0202.xhp#par_idN108DF.help.text
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+
+#: main0202.xhp#par_idN108FD.help.text
+msgid "<ahelp hid=\".uno:ParaRightToLeft\">The text formatted in a complex text layout language is entered from right to left.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaRightToLeft\">The text formatted in a complex text layout language is entered from right to left.</ahelp>"
+
+#: main0202.xhp#par_id192266.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
+
+#: main0202.xhp#par_id1998962.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
+
+#: main0202.xhp#par_id2376476.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Horizontally centers the contents of the cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Horizontally centres the contents of the cell.</ahelp>"
+
+#: main0202.xhp#par_id349131.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
+
+#: main0107.xhp#tit.help.text
+msgid "Window"
+msgstr "Window"
+
+#: main0107.xhp#hd_id3154758.1.help.text
+msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
+msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
+
+#: main0107.xhp#par_id3150398.2.help.text
+msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
+msgstr "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/00.po b/source/en-ZA/helpcontent2/source/text/scalc/00.po
new file mode 100644
index 00000000000..fcd8c692e3d
--- /dev/null
+++ b/source/en-ZA/helpcontent2/source/text/scalc/00.po
@@ -0,0 +1,839 @@
+#. extracted from helpcontent2/source/text/scalc/00.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F00.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-05 15:23+0200\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 00000407.xhp#tit.help.text
+msgctxt "00000407.xhp#tit.help.text"
+msgid "Window Menu"
+msgstr "Window Menu"
+
+#: 00000407.xhp#hd_id3155628.1.help.text
+msgctxt "00000407.xhp#hd_id3155628.1.help.text"
+msgid "Window Menu"
+msgstr "Window Menu"
+
+#: 00000407.xhp#par_id3147335.2.help.text
+msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+msgstr "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+
+#: 00000407.xhp#par_id3153663.3.help.text
+msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+msgstr "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+
+#: 00000402.xhp#tit.help.text
+msgctxt "00000402.xhp#tit.help.text"
+msgid "Edit Menu"
+msgstr "Edit Menu"
+
+#: 00000402.xhp#hd_id3147303.1.help.text
+msgctxt "00000402.xhp#hd_id3147303.1.help.text"
+msgid "Edit Menu"
+msgstr "Edit Menu"
+
+#: 00000402.xhp#par_id3155555.2.help.text
+msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+msgstr "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+
+#: 00000402.xhp#par_id3159233.3.help.text
+msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
+msgstr "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
+
+#: 00000402.xhp#par_id3150443.4.help.text
+msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+msgstr "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+
+#: 00000402.xhp#par_id3143267.5.help.text
+msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+msgstr "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+
+#: 00000402.xhp#par_id3153880.6.help.text
+msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+msgstr "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+
+#: 00000402.xhp#par_id3151245.7.help.text
+msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+msgstr "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+
+#: 00000402.xhp#par_id3145068.8.help.text
+msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+msgstr "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+
+#: 00000402.xhp#par_id3150400.9.help.text
+msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgstr "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+
+#: 00000402.xhp#par_id3154910.10.help.text
+msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+msgstr "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+
+#: 00000402.xhp#par_id3154123.11.help.text
+msgid "Choose <emph>Edit - Delete Contents</emph>"
+msgstr "Choose <emph>Edit - Delete Contents</emph>"
+
+#: 00000402.xhp#par_id3145785.20.help.text
+msgid "Backspace"
+msgstr ""
+
+#: 00000402.xhp#par_id3150011.12.help.text
+msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
+msgstr "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
+
+#: 00000402.xhp#par_id3153951.13.help.text
+msgid "Choose <emph>Edit – Sheet - Delete</emph>"
+msgstr "Choose <emph>Edit – Sheet - Delete</emph>"
+
+#: 00000402.xhp#par_id3155306.18.help.text
+msgctxt "00000402.xhp#par_id3155306.18.help.text"
+msgid "Open context menu for a sheet tab"
+msgstr "Open context menu for a sheet tab"
+
+#: 00000402.xhp#par_id3146119.14.help.text
+msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+msgstr "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+
+#: 00000402.xhp#par_id3148645.19.help.text
+msgctxt "00000402.xhp#par_id3148645.19.help.text"
+msgid "Open context menu for a sheet tab"
+msgstr "Open context menu for a sheet tab"
+
+#: 00000402.xhp#par_id3153093.15.help.text
+msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+msgstr "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+
+#: 00000402.xhp#par_id3153191.16.help.text
+msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
+msgstr "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
+
+#: 00000402.xhp#par_id3145645.17.help.text
+msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
+msgstr "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
+
+#: 00000403.xhp#tit.help.text
+msgctxt "00000403.xhp#tit.help.text"
+msgid "View Menu"
+msgstr "View Menu"
+
+#: 00000403.xhp#hd_id3145673.1.help.text
+msgctxt "00000403.xhp#hd_id3145673.1.help.text"
+msgid "View Menu"
+msgstr "View Menu"
+
+#: 00000403.xhp#par_id3150275.2.help.text
+msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
+msgstr "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
+
+#: 00000403.xhp#par_id3154514.3.help.text
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+msgstr "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+
+#: 00000403.xhp#par_id3148947.4.help.text
+msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
+msgstr "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
+
+#: 00000403.xhp#par_id3148663.5.help.text
+msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
+msgstr "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
+
+#: 00000404.xhp#tit.help.text
+msgctxt "00000404.xhp#tit.help.text"
+msgid "Insert Menu"
+msgstr "Insert Menu"
+
+#: 00000404.xhp#hd_id3149346.1.help.text
+msgctxt "00000404.xhp#hd_id3149346.1.help.text"
+msgid "Insert Menu"
+msgstr "Insert Menu"
+
+#: 00000404.xhp#par_id3149095.36.help.text
+msgid "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
+msgstr "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
+
+#: 00000404.xhp#par_id3149398.2.help.text
+msgid "<variable id=\"eimaumze\">Choose <emph>Insert - Manual Break - Row Break</emph></variable>"
+msgstr "<variable id=\"eimaumze\">Choose <emph>Insert - Manual Break - Row Break</emph></variable>"
+
+#: 00000404.xhp#par_id3150084.3.help.text
+msgid "<variable id=\"eimaumsp\">Choose <emph>Insert - Manual Break - Column Break</emph></variable>"
+msgstr "<variable id=\"eimaumsp\">Choose <emph>Insert - Manual Break - Column Break</emph></variable>"
+
+#: 00000404.xhp#par_id3149784.4.help.text
+msgid "Choose <emph>Insert - Cells</emph>"
+msgstr "Choose <emph>Insert - Cells</emph>"
+
+#: 00000404.xhp#par_id3154514.5.help.text
+msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
+msgstr "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
+
+#: 00000404.xhp#par_id3149656.help.text
+msgid "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154365\" src=\"cmd/sc_inscellsctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154365\">Icon</alt></image>"
+
+#: 00000404.xhp#par_id3151041.6.help.text
+msgid "Insert Cells"
+msgstr "Insert Cells"
+
+#: 00000404.xhp#par_id3145273.help.text
+msgid "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145364\" src=\"cmd/sc_insertcellsdown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
+
+#: 00000404.xhp#par_id3146985.7.help.text
+msgid "Insert Cells Down"
+msgstr "Insert Cells Down"
+
+#: 00000404.xhp#par_id3144766.help.text
+msgid "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154942\" src=\"cmd/sc_insertcellsright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154942\">Icon</alt></image>"
+
+#: 00000404.xhp#par_id3145646.8.help.text
+msgid "Insert Cells Right"
+msgstr "Insert Cells Right"
+
+#: 00000404.xhp#par_id3153838.help.text
+msgid "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153710\" src=\"cmd/sc_insertrows.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153710\">Icon</alt></image>"
+
+#: 00000404.xhp#par_id3150324.9.help.text
+msgid "Insert Rows"
+msgstr "Insert Rows"
+
+#: 00000404.xhp#par_id3147363.help.text
+msgid "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145232\" src=\"cmd/sc_insertcolumns.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
+
+#: 00000404.xhp#par_id3155334.10.help.text
+msgid "Insert Columns"
+msgstr "Insert Columns"
+
+#: 00000404.xhp#par_id3148485.11.help.text
+msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
+msgstr "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
+
+#: 00000404.xhp#par_id3153200.12.help.text
+msgid "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
+msgstr "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
+
+#: 00000404.xhp#par_id3149033.13.help.text
+msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
+msgstr "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
+
+#: 00000404.xhp#par_idN1082F.help.text
+msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
+msgstr "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
+
+#: 00000404.xhp#par_id3155115.14.help.text
+msgid "Choose <emph>Insert - Function</emph>"
+msgstr "Choose <emph>Insert - Function</emph>"
+
+#: 00000404.xhp#par_id3152582.34.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+
+#: 00000404.xhp#par_id3153269.15.help.text
+msgid "On <emph>Formula Bar</emph>, click"
+msgstr "On <emph>Formula Bar</emph>, click"
+
+#: 00000404.xhp#par_id3150515.help.text
+msgid "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150884\" src=\"sw/imglst/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150884\">Icon</alt></image>"
+
+#: 00000404.xhp#par_id3154370.16.help.text
+msgid "Function Wizard"
+msgstr "Function Wizard"
+
+#: 00000404.xhp#par_id3156288.17.help.text
+msgid "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
+msgstr "<variable id=\"eikada\"><emph>Insert - Function</emph> - Category <emph>Database</emph></variable>"
+
+#: 00000404.xhp#par_id3155809.18.help.text
+msgid "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
+msgstr "<variable id=\"eikadaze\"><emph>Insert - Function</emph> - Category <emph>Date&Time</emph></variable>"
+
+#: 00000404.xhp#par_id3151334.19.help.text
+msgid "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
+msgstr "<variable id=\"eikafi\"><emph>Insert - Function</emph> - Category <emph>Financial</emph></variable>"
+
+#: 00000404.xhp#par_id3159222.20.help.text
+msgid "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
+msgstr "<variable id=\"eikain\"><emph>Insert - Function</emph> - Category <emph>Information</emph></variable>"
+
+#: 00000404.xhp#par_id3159173.21.help.text
+msgid "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
+msgstr "<variable id=\"eikalo\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
+
+#: 00000404.xhp#par_id3153914.22.help.text
+msgid "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
+msgstr "<variable id=\"eikama\"><emph>Insert - Function</emph> - Category <emph>Mathematical</emph></variable>"
+
+#: 00000404.xhp#par_id3150109.23.help.text
+msgid "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
+msgstr "<variable id=\"eikamatrix\"><emph>Insert - Function</emph> - Category <emph>Array</emph></variable>"
+
+#: 00000404.xhp#par_id3157978.24.help.text
+msgid "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
+msgstr "<variable id=\"eikasta\"><emph>Insert - Function</emph> - Category <emph>Statistical</emph></variable>"
+
+#: 00000404.xhp#par_id3156016.25.help.text
+msgid "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
+msgstr "<variable id=\"eikatext\"><emph>Insert - Function</emph> - Category <emph>Text</emph></variable>"
+
+#: 00000404.xhp#par_id3147075.26.help.text
+msgid "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
+msgstr "<variable id=\"efefft\"><emph>Insert - Function</emph> - Category <emph>Spreadsheet</emph></variable>"
+
+#: 00000404.xhp#par_id3154618.27.help.text
+msgid "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+msgstr "<variable id=\"addin\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+
+#: 00000404.xhp#par_id3154059.38.help.text
+msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+msgstr "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
+
+#: 00000404.xhp#par_id3155383.33.help.text
+msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
+msgstr "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
+
+#: 00000404.xhp#par_id3153250.28.help.text
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
+msgstr "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
+
+#: 00000404.xhp#par_id3146776.37.help.text
+msgid "<variable id=\"eiextdata\">Choose <emph>Insert - Link to External data</emph></variable>"
+msgstr "<variable id=\"eiextdata\">Choose <emph>Insert - Link to External data</emph></variable>"
+
+#: 00000404.xhp#par_id3143222.29.help.text
+msgid "Choose <emph>Insert - Names - Define</emph>"
+msgstr "Choose <emph>Insert - Names - Define</emph>"
+
+#: 00000404.xhp#par_id3149385.35.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
+
+#: 00000404.xhp#par_id3145214.30.help.text
+msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
+msgstr "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
+
+#: 00000404.xhp#par_id3153558.31.help.text
+msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
+msgstr "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
+
+#: 00000404.xhp#par_id3153483.32.help.text
+msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
+msgstr "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
+
+#: 00000004.xhp#tit.help.text
+msgid "To access this function..."
+msgstr "To access this function..."
+
+#: 00000004.xhp#hd_id3155535.1.help.text
+msgid "<variable id=\"wie\">To access this function... </variable>"
+msgstr "<variable id=\"wie\">To access this function... </variable>"
+
+#: 00000004.xhp#par_idN1056E.help.text
+msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+msgstr "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+
+#: 00000004.xhp#par_idN105AF.help.text
+msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>"
+msgstr "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>"
+
+#: 00000004.xhp#par_id9751884.help.text
+msgid "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
+msgstr "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
+
+#: 00000406.xhp#tit.help.text
+msgctxt "00000406.xhp#tit.help.text"
+msgid "Tools Menu"
+msgstr "Tools Menu"
+
+#: 00000406.xhp#hd_id3147264.1.help.text
+msgctxt "00000406.xhp#hd_id3147264.1.help.text"
+msgid "Tools Menu"
+msgstr "Tools Menu"
+
+#: 00000406.xhp#par_id3150541.2.help.text
+msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
+msgstr "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
+
+#: 00000406.xhp#par_id3153194.3.help.text
+msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
+msgstr "Choose <emph>Tools - Detective - Trace Precedents</emph>"
+
+#: 00000406.xhp#par_id3150447.29.help.text
+msgid "Shift+F7"
+msgstr "Shift+F7"
+
+#: 00000406.xhp#par_id3154123.33.help.text
+msgid "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
+msgstr "<variable id=\"silbentrennungc\">Menu <emph>Tools - Language - Hyphenation</emph></variable>"
+
+#: 00000406.xhp#par_id3145785.4.help.text
+msgid "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
+msgstr "<variable id=\"exdvore\">Choose <emph>Tools - Detective - Remove Precedents</emph></variable>"
+
+#: 00000406.xhp#par_id3155411.5.help.text
+msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
+msgstr "Choose <emph>Tools - Detective - Trace Dependents</emph>"
+
+#: 00000406.xhp#par_id3153363.30.help.text
+msgid "Shift+F5"
+msgstr "Shift+F5"
+
+#: 00000406.xhp#par_id3146984.6.help.text
+msgid "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
+msgstr "<variable id=\"exdszne\">Choose <emph>Tools - Detective - Remove Dependents</emph></variable>"
+
+#: 00000406.xhp#par_id3154014.7.help.text
+msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
+msgstr "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Traces</emph></variable>"
+
+#: 00000406.xhp#par_id3153188.8.help.text
+msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
+msgstr "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</emph></variable>"
+
+#: 00000406.xhp#par_id3149410.9.help.text
+msgid "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
+msgstr "<variable id=\"fuellmodus\">Choose <emph>Tools - Detective - Fill Mode</emph></variable>"
+
+#: 00000406.xhp#par_id3156284.10.help.text
+msgid "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
+msgstr "<variable id=\"dateneinkreisen\">Choose <emph>Tools - Detective - Mark Invalid Data</emph></variable>"
+
+#: 00000406.xhp#par_id3153159.11.help.text
+msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
+msgstr "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph></variable>"
+
+#: 00000406.xhp#par_id3147397.32.help.text
+msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
+msgstr "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
+
+#: 00000406.xhp#par_id3154018.12.help.text
+msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
+msgstr "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
+
+#: 00000406.xhp#par_id3269142.help.text
+msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
+msgstr "<variable id=\"solver\">Choose Tools - Solver</variable>"
+
+#: 00000406.xhp#par_id8554338.help.text
+msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
+msgstr "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
+
+#: 00000406.xhp#par_id3156277.13.help.text
+msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
+msgstr "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
+
+#: 00000406.xhp#par_id3145640.14.help.text
+msgid "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
+msgstr "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
+
+#: 00000406.xhp#par_id3149020.15.help.text
+msgid "<variable id=\"exdst\">Choose <emph>Tools - Protect Document - Sheet</emph></variable>"
+msgstr "<variable id=\"exdst\">Choose <emph>Tools - Protect Document - Sheet</emph></variable>"
+
+#: 00000406.xhp#par_id3154256.16.help.text
+msgid "<variable id=\"exdsd\">Choose <emph>Tools - Protect Document - Document</emph></variable>"
+msgstr "<variable id=\"exdsd\">Choose <emph>Tools - Protect Document - Document</emph></variable>"
+
+#: 00000406.xhp#par_id3147363.17.help.text
+msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
+msgstr "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
+
+#: 00000406.xhp#par_id3146919.18.help.text
+msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
+msgstr "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
+
+#: 00000406.xhp#par_id3149257.31.help.text
+msgid "F9"
+msgstr "F9"
+
+#: 00000406.xhp#par_id3150941.19.help.text
+msgid "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
+msgstr "<variable id=\"exatmb\">Choose <emph>Tools - Cell Contents - AutoCalculate</emph></variable>"
+
+#: 00000406.xhp#par_id3151276.20.help.text
+msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
+msgstr "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
+
+#: 00000405.xhp#tit.help.text
+msgctxt "00000405.xhp#tit.help.text"
+msgid "Format Menu"
+msgstr "Format Menu"
+
+#: 00000405.xhp#hd_id3150769.1.help.text
+msgctxt "00000405.xhp#hd_id3150769.1.help.text"
+msgid "Format Menu"
+msgstr "Format Menu"
+
+#: 00000405.xhp#par_id3154685.2.help.text
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+msgstr "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+
+#: 00000405.xhp#par_id3153194.3.help.text
+msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
+msgstr "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
+
+#: 00000405.xhp#par_id3155854.4.help.text
+msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+msgstr "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+
+#: 00000405.xhp#par_id3150012.5.help.text
+msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
+msgstr "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
+
+#: 00000405.xhp#par_id3148645.6.help.text
+msgid "Choose <emph>Format - Row - Hide</emph>"
+msgstr "Choose <emph>Format - Row - Hide</emph>"
+
+#: 00000405.xhp#par_id3153728.7.help.text
+msgid "Choose <emph>Format - Column - Hide</emph>"
+msgstr "Choose <emph>Format - Column - Hide</emph>"
+
+#: 00000405.xhp#par_id3151114.8.help.text
+msgid "Choose <emph>Format - Sheet - Hide</emph>"
+msgstr "Choose <emph>Format - Sheet - Hide</emph>"
+
+#: 00000405.xhp#par_id3148576.9.help.text
+msgid "Choose <emph>Format - Row - Show</emph>"
+msgstr "Choose <emph>Format - Row - Show</emph>"
+
+#: 00000405.xhp#par_id3156286.10.help.text
+msgid "Choose <emph>Format - Column - Show</emph>"
+msgstr "Choose <emph>Format - Column - Show</emph>"
+
+#: 00000405.xhp#par_id3145645.11.help.text
+msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
+msgstr "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
+
+#: 00000405.xhp#par_id3145252.12.help.text
+msgid "Choose <emph>Format - Column - Optimal Width</emph>"
+msgstr "Choose <emph>Format - Column - Optimal Width</emph>"
+
+#: 00000405.xhp#par_id3146971.36.help.text
+msgid "Double-click right column separator in column headers"
+msgstr "Double-click right column separator in column headers"
+
+#: 00000405.xhp#par_id3147362.15.help.text
+msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
+msgstr "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
+
+#: 00000405.xhp#par_id3163805.16.help.text
+msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
+msgstr "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
+
+#: 00000405.xhp#par_id3155333.17.help.text
+msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
+msgstr "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
+
+#: 00000405.xhp#par_idN1077A.help.text
+msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
+msgstr "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
+
+#: 00000405.xhp#par_id3155508.25.help.text
+msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
+msgstr "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
+
+#: 00000405.xhp#par_id3150883.26.help.text
+msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
+msgstr "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
+
+#: 00000405.xhp#par_id3156448.27.help.text
+msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
+msgstr "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
+
+#: 00000405.xhp#par_id3156290.35.help.text
+msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
+msgstr "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
+
+#: 00000405.xhp#par_id3155812.28.help.text
+msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
+msgstr "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
+
+#: 00000405.xhp#par_id3153307.29.help.text
+msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
+msgstr "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
+
+#: 00000405.xhp#par_id3153916.31.help.text
+msgid "Choose <emph>Format - AutoFormat</emph>"
+msgstr "Choose <emph>Format - AutoFormat</emph>"
+
+#: 00000405.xhp#par_id3154532.32.help.text
+msgid "On the Tools bar, click"
+msgstr "On the Tools bar, click"
+
+#: 00000405.xhp#par_id3149332.help.text
+msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
+
+#: 00000405.xhp#par_id3154060.33.help.text
+msgid "AutoFormat"
+msgstr "AutoFormat"
+
+#: 00000405.xhp#par_id3154618.34.help.text
+msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
+msgstr "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
+
+#: 00000412.xhp#tit.help.text
+msgctxt "00000412.xhp#tit.help.text"
+msgid "Data Menu"
+msgstr "Data Menu"
+
+#: 00000412.xhp#hd_id3145136.1.help.text
+msgctxt "00000412.xhp#hd_id3145136.1.help.text"
+msgid "Data Menu"
+msgstr "Data Menu"
+
+#: 00000412.xhp#par_id8366954.help.text
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+msgstr "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+
+#: 00000412.xhp#par_id3147399.3.help.text
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+msgstr "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+
+#: 00000412.xhp#par_id3145345.4.help.text
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+msgstr "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+
+#: 00000412.xhp#par_id3150443.5.help.text
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+msgstr "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+
+#: 00000412.xhp#par_id3148491.6.help.text
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+msgstr "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+
+#: 00000412.xhp#par_id3154516.7.help.text
+msgid "On Standard bar, click"
+msgstr "On Standard bar, click"
+
+#: 00000412.xhp#par_id3148663.help.text
+msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
+
+#: 00000412.xhp#par_id3150767.8.help.text
+msgid "Sort Ascending"
+msgstr "Sort Ascending"
+
+#: 00000412.xhp#par_id3153969.help.text
+msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
+msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
+
+#: 00000412.xhp#par_id3145364.9.help.text
+msgid "Sort Descending"
+msgstr "Sort Descending"
+
+#: 00000412.xhp#par_id3146984.10.help.text
+#, fuzzy
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
+msgstr "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+
+#: 00000412.xhp#par_id3155308.11.help.text
+msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+msgstr "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+
+#: 00000412.xhp#par_id3148646.12.help.text
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
+msgstr "Choose <emph>Data - Filter - AutoFilter</emph>"
+
+#: 00000412.xhp#par_id3151113.13.help.text
+msgid "On Tools bar or Table Data bar, click"
+msgstr "On Tools bar or Table Data bar, click"
+
+#: 00000412.xhp#par_id3145799.help.text
+msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
+
+#: 00000412.xhp#par_id3149401.14.help.text
+msgid "AutoFilter"
+msgstr "AutoFilter"
+
+#: 00000412.xhp#par_id3156278.17.help.text
+msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
+msgstr "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
+
+#: 00000412.xhp#par_id3153764.18.help.text
+msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
+msgstr "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
+
+#: 00000412.xhp#par_id3155444.19.help.text
+msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgstr "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+
+#: 00000412.xhp#par_id3156382.20.help.text
+msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
+msgstr "Choose <emph>Data - Filter - Remove Filter</emph>"
+
+#: 00000412.xhp#par_id3155961.48.help.text
+msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+msgstr "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+
+#: 00000412.xhp#par_id3148485.help.text
+msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
+
+#: 00000412.xhp#par_id3149207.49.help.text
+msgid "Remove Filter/Sort"
+msgstr "Remove Filter/Sort"
+
+#: 00000412.xhp#par_id3152778.21.help.text
+msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
+msgstr "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
+
+#: 00000412.xhp#par_id3166424.22.help.text
+msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+msgstr "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+
+#: 00000412.xhp#par_id3154574.23.help.text
+msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id3151277.24.help.text
+#, fuzzy
+msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
+msgstr "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+
+#: 00000412.xhp#par_id3145133.25.help.text
+msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+msgstr "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+
+#: 00000412.xhp#par_id3152992.26.help.text
+msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id3150367.27.help.text
+#, fuzzy
+msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
+msgstr "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+
+#: 00000412.xhp#par_id3154486.28.help.text
+#, fuzzy
+msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
+msgstr "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+
+#: 00000412.xhp#par_id3146978.29.help.text
+msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
+msgstr "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
+
+#: 00000412.xhp#par_id3155809.30.help.text
+msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
+msgstr "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
+
+#: 00000412.xhp#par_id3148701.31.help.text
+msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
+msgstr "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
+
+#: 00000412.xhp#par_id3153815.32.help.text
+msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
+msgstr "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
+
+#: 00000412.xhp#par_id3159223.33.help.text
+msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+msgstr "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+
+#: 00000412.xhp#par_id3146870.34.help.text
+msgid "Choose <emph>Data - Group and Outline - Group</emph>"
+msgstr "Choose <emph>Data - Group and Outline - Group</emph>"
+
+#: 00000412.xhp#par_id3144507.51.help.text
+msgid "F12"
+msgstr "F12"
+
+#: 00000412.xhp#par_id3144772.35.help.text
+msgctxt "00000412.xhp#par_id3144772.35.help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "On <emph>Tools</emph> bar, click"
+
+#: 00000412.xhp#par_id3149438.help.text
+msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
+
+#: 00000412.xhp#par_id3150214.36.help.text
+msgid "Group"
+msgstr "Group"
+
+#: 00000412.xhp#par_id3146781.37.help.text
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgstr "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+
+#: 00000412.xhp#par_id3150892.52.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+
+#: 00000412.xhp#par_id3155097.38.help.text
+msgctxt "00000412.xhp#par_id3155097.38.help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "On <emph>Tools</emph> bar, click"
+
+#: 00000412.xhp#par_id3150048.help.text
+msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
+
+#: 00000412.xhp#par_id3153555.39.help.text
+msgid "Ungroup"
+msgstr "Ungroup"
+
+#: 00000412.xhp#par_id3153008.40.help.text
+msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
+msgstr "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
+
+#: 00000412.xhp#par_id3154709.41.help.text
+msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
+msgstr "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
+
+#: 00000412.xhp#par_id1774346.help.text
+#, fuzzy
+msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
+msgstr "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+
+#: 00000412.xhp#par_id3155759.42.help.text
+#, fuzzy
+msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
+msgstr "<variable id=\"dndtpt\">Choose <emph>Data - DataPilot</emph></variable>"
+
+#: 00000412.xhp#par_id3154625.43.help.text
+#, fuzzy
+msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
+msgstr "<variable id=\"dndtpt\">Choose <emph>Data - DataPilot</emph></variable>"
+
+#: 00000412.xhp#par_id3147558.53.help.text
+msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
+msgstr ""
+
+#: 00000412.xhp#par_id3153297.50.help.text
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
+msgstr ""
+
+#: 00000412.xhp#par_id3145118.54.help.text
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
+msgstr ""
+
+#: 00000412.xhp#par_id3153294.44.help.text
+#, fuzzy
+msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
+msgstr "<variable id=\"dndtpt\">Choose <emph>Data - DataPilot</emph></variable>"
+
+#: 00000412.xhp#par_id3151344.45.help.text
+#, fuzzy
+msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
+msgstr "<variable id=\"dndtpt\">Choose <emph>Data - DataPilot</emph></variable>"
+
+#: 00000412.xhp#par_id3150397.46.help.text
+msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
+msgstr "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
+
+#: 00000412.xhp#par_idN10B8F.help.text
+msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
+msgstr "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/01.po b/source/en-ZA/helpcontent2/source/text/scalc/01.po
new file mode 100644
index 00000000000..65023a4610b
--- /dev/null
+++ b/source/en-ZA/helpcontent2/source/text/scalc/01.po
@@ -0,0 +1,28693 @@
+#. extracted from helpcontent2/source/text/scalc/01.oo
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F01.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"PO-Revision-Date: 2012-07-04 17:27+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: en_ZA\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.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 04020000.xhp#tit.help.text
+msgid "Insert Cells"
+msgstr "Insert Cells"
+
+#: 04020000.xhp#bm_id3156023.help.text
+msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
+
+#: 04020000.xhp#hd_id3156023.1.help.text
+msgid " Insert Cells"
+msgstr " Insert Cells"
+
+#: 04020000.xhp#par_id3150542.2.help.text
+msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
+msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialogue, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
+
+#: 04020000.xhp#hd_id3153768.3.help.text
+msgctxt "04020000.xhp#hd_id3153768.3.help.text"
+msgid "Selection"
+msgstr "Selection"
+
+#: 04020000.xhp#par_id3149262.4.help.text
+msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
+msgstr "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
+
+#: 04020000.xhp#hd_id3146120.5.help.text
+msgid "Shift cells down"
+msgstr "Shift cells down"
+
+#: 04020000.xhp#par_id3152596.6.help.text
+msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
+msgstr "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
+
+#: 04020000.xhp#hd_id3147434.7.help.text
+msgid "Shift cells right"
+msgstr "Shift cells right"
+
+#: 04020000.xhp#par_id3144764.8.help.text
+msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
+msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
+
+#: 04020000.xhp#hd_id3153877.9.help.text
+msgid "Entire row"
+msgstr "Entire row"
+
+#: 04020000.xhp#par_id3155417.10.help.text
+msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
+msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
+
+#: 04020000.xhp#hd_id3146971.11.help.text
+msgid "Entire column"
+msgstr "Entire column"
+
+#: 04020000.xhp#par_id3155068.12.help.text
+msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
+msgstr "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
+
+#: 05080000.xhp#tit.help.text
+msgid "Print Ranges"
+msgstr "Print Ranges"
+
+#: 05080000.xhp#hd_id3154013.1.help.text
+msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+
+#: 05080000.xhp#par_id3155855.2.help.text
+msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
+msgstr "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
+
+#: 05080000.xhp#par_id3146119.4.help.text
+msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
+msgstr "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
+
+#: 05080000.xhp#hd_id3154729.3.help.text
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
+
+#: 05120000.xhp#tit.help.text
+msgctxt "05120000.xhp#tit.help.text"
+msgid "Conditional Formatting"
+msgstr "Conditional Formatting"
+
+#: 05120000.xhp#hd_id3155132.1.help.text
+msgctxt "05120000.xhp#hd_id3155132.1.help.text"
+msgid "Conditional Formatting"
+msgstr "Conditional Formatting"
+
+#: 05120000.xhp#par_id3163710.2.help.text
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulas. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
+msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulae. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
+
+#: 05120000.xhp#par_id2414014.help.text
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
+
+#: 05120000.xhp#bm_id3153189.help.text
+msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
+msgstr "<bookmark_value>conditional formatting; conditions</bookmark_value>"
+
+#: 05120000.xhp#hd_id3153189.18.help.text
+msgid "Condition 1/2/3"
+msgstr "Condition 1/2/3"
+
+#: 05120000.xhp#par_id3149413.4.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialog, click <emph>OK</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialogue, click <emph>OK</emph>."
+
+#: 05120000.xhp#hd_id3147394.5.help.text
+msgid "Cell Value / Formula"
+msgstr "Cell Value / Formula"
+
+#: 05120000.xhp#par_id3155602.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
+
+#: 05120000.xhp#hd_id3153709.7.help.text
+msgid "Cell Value Condition"
+msgstr "Cell Value Condition"
+
+#: 05120000.xhp#par_id3153764.8.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
+
+#: 05120000.xhp#hd_id3156384.9.help.text
+msgid "Cell Style"
+msgstr "Cell Style"
+
+#: 05120000.xhp#par_id3145228.10.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
+
+#: 05120000.xhp#hd_id0509200913175331.help.text
+msgid "New Style"
+msgstr "New Style"
+
+#: 05120000.xhp#par_id0509200913175368.help.text
+msgid "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialog. Define a new style there and click OK.</ahelp>"
+msgstr "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialogue. Define a new style there and click OK.</ahelp>"
+
+#: 05120000.xhp#hd_id3146316.11.help.text
+msgid "Parameter field"
+msgstr "Parameter field"
+
+#: 05120000.xhp#par_id3155114.12.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulas containing relative references."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulae containing relative references."
+
+#: 05120000.xhp#par_id3145257.13.help.text
+msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
+msgstr "Once the parameters have been defined, the condition is complete. It may appear as:"
+
+#: 05120000.xhp#par_id3150784.14.help.text
+msgid "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
+msgstr "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
+
+#: 05120000.xhp#par_id3150365.15.help.text
+msgid "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
+msgstr "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
+
+#: 05120000.xhp#par_id3152992.16.help.text
+msgid "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
+msgstr "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
+
+#: 05120000.xhp#par_idN107E1.help.text
+msgid " <embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/> "
+msgstr " <embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/> "
+
+#: 04060109.xhp#tit.help.text
+msgctxt "04060109.xhp#tit.help.text"
+msgid "Spreadsheet Functions"
+msgstr "Spreadsheet Functions"
+
+#: 04060109.xhp#bm_id3148522.help.text
+msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
+
+#: 04060109.xhp#hd_id3148522.1.help.text
+msgctxt "04060109.xhp#hd_id3148522.1.help.text"
+msgid "Spreadsheet Functions"
+msgstr "Spreadsheet Functions"
+
+#: 04060109.xhp#par_id3144508.2.help.text
+msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
+msgstr "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
+
+#: 04060109.xhp#bm_id3146968.help.text
+msgid "<bookmark_value>ADDRESS function</bookmark_value>"
+msgstr "<bookmark_value>ADDRESS function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3146968.3.help.text
+msgctxt "04060109.xhp#hd_id3146968.3.help.text"
+msgid "ADDRESS"
+msgstr "ADDRESS"
+
+#: 04060109.xhp#par_id3155762.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
+msgstr "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
+
+#: 04060109.xhp#par_id1027200802301348.help.text
+msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
+msgstr "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
+
+#: 04060109.xhp#par_id1027200802301445.help.text
+msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
+msgstr "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
+
+#: 04060109.xhp#par_id102720080230153.help.text
+msgid "In INDIRECT, the parameter is appended as the second parameter."
+msgstr "In INDIRECT, the parameter is appended as the second parameter."
+
+#: 04060109.xhp#par_id102720080230151.help.text
+msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used. "
+msgstr "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used. "
+
+#: 04060109.xhp#par_id1027200802301556.help.text
+msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
+msgstr "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
+
+#: 04060109.xhp#par_id1027200802301521.help.text
+msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
+msgstr "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
+
+#: 04060109.xhp#par_id1027200802301650.help.text
+msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
+msgstr "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
+
+#: 04060109.xhp#par_id102720080230162.help.text
+msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
+msgstr "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
+
+#: 04060109.xhp#par_id1027200802301756.help.text
+msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
+msgstr "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
+
+#: 04060109.xhp#hd_id3151196.5.help.text
+msgctxt "04060109.xhp#hd_id3151196.5.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3154707.6.help.text
+msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
+msgstr "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
+
+#: 04060109.xhp#par_id3147505.7.help.text
+msgid " <emph>Row</emph> represents the row number for the cell reference"
+msgstr " <emph>Row</emph> represents the row number for the cell reference"
+
+#: 04060109.xhp#par_id3145323.8.help.text
+msgid " <emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
+msgstr " <emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
+
+#: 04060109.xhp#par_id3153074.9.help.text
+msgid " <emph>Abs</emph> determines the type of reference:"
+msgstr " <emph>Abs</emph> determines the type of reference:"
+
+#: 04060109.xhp#par_id3153298.10.help.text
+msgid "1: absolute ($A$1)"
+msgstr "1: absolute ($A$1)"
+
+#: 04060109.xhp#par_id3150431.11.help.text
+msgid "2: row reference type is absolute; column reference is relative (A$1)"
+msgstr "2: row reference type is absolute; column reference is relative (A$1)"
+
+#: 04060109.xhp#par_id3146096.12.help.text
+msgid "3: row (relative); column (absolute) ($A1)"
+msgstr "3: row (relative); column (absolute) ($A1)"
+
+#: 04060109.xhp#par_id3153334.13.help.text
+msgid "4: relative (A1)"
+msgstr "4: relative (A1)"
+
+#: 04060109.xhp#par_id1027200802465915.help.text
+msgctxt "04060109.xhp#par_id1027200802465915.help.text"
+msgid " <emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr " <emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+
+#: 04060109.xhp#par_id3153962.14.help.text
+msgid " <emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
+msgstr " <emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
+
+#: 04060109.xhp#hd_id3147299.15.help.text
+msgid "Example:"
+msgstr "Example:"
+
+#: 04060109.xhp#par_id3148744.16.help.text
+msgid " <item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
+msgstr " <item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
+
+#: 04060109.xhp#par_id3159260.17.help.text
+msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
+msgstr "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
+
+#: 04060109.xhp#bm_id3150372.help.text
+msgid "<bookmark_value>AREAS function</bookmark_value>"
+msgstr "<bookmark_value>AREAS function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3150372.19.help.text
+msgid "AREAS"
+msgstr "AREAS"
+
+#: 04060109.xhp#par_id3150036.20.help.text
+msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
+msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
+
+#: 04060109.xhp#par_id061020090307073.help.text
+msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
+msgstr "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
+
+#: 04060109.xhp#hd_id3145222.21.help.text
+msgctxt "04060109.xhp#hd_id3145222.21.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3155907.22.help.text
+msgid "AREAS(Reference)"
+msgstr "AREAS(Reference)"
+
+#: 04060109.xhp#par_id3153118.23.help.text
+msgid "Reference represents the reference to a cell or cell range."
+msgstr "Reference represents the reference to a cell or cell range."
+
+#: 04060109.xhp#hd_id3148891.24.help.text
+msgctxt "04060109.xhp#hd_id3148891.24.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3149946.25.help.text
+msgid " <item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
+msgstr " <item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
+
+#: 04060109.xhp#par_id3146820.26.help.text
+msgid " <item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
+msgstr " <item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
+
+#: 04060109.xhp#bm_id3148727.help.text
+msgid "<bookmark_value>DDE function</bookmark_value>"
+msgstr "<bookmark_value>DDE function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3148727.28.help.text
+msgid "DDE"
+msgstr "DDE"
+
+#: 04060109.xhp#par_id3149434.29.help.text
+msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
+msgstr "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
+
+#: 04060109.xhp#hd_id3150700.30.help.text
+msgctxt "04060109.xhp#hd_id3150700.30.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3148886.31.help.text
+msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
+msgstr "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
+
+#: 04060109.xhp#par_id3154842.32.help.text
+msgid " <emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
+msgstr " <emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
+
+#: 04060109.xhp#par_id3153034.33.help.text
+msgid " <emph>File</emph> is the complete file name, including path specification."
+msgstr " <emph>File</emph> is the complete file name, including path specification."
+
+#: 04060109.xhp#par_id3147472.34.help.text
+msgid " <emph>Range</emph> is the area containing the data to be evaluated."
+msgstr " <emph>Range</emph> is the area containing the data to be evaluated."
+
+#: 04060109.xhp#par_id3152773.184.help.text
+msgid " <emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
+msgstr " <emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
+
+#: 04060109.xhp#par_id3154383.185.help.text
+msgid " <emph>Mode</emph> "
+msgstr " <emph>Mode</emph> "
+
+#: 04060109.xhp#par_id3145146.186.help.text
+msgid " <emph>Effect</emph> "
+msgstr " <emph>Effect</emph> "
+
+#: 04060109.xhp#par_id3154558.187.help.text
+msgctxt "04060109.xhp#par_id3154558.187.help.text"
+msgid "0 or missing"
+msgstr "0 or missing"
+
+#: 04060109.xhp#par_id3145596.188.help.text
+msgid "Number format from the \"Default\" cell style"
+msgstr "Number format from the \"Default\" cell style"
+
+#: 04060109.xhp#par_id3152785.189.help.text
+msgctxt "04060109.xhp#par_id3152785.189.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060109.xhp#par_id3154380.190.help.text
+msgid "Data are always interpreted in the standard format for US English"
+msgstr "Data are always interpreted in the standard format for US English"
+
+#: 04060109.xhp#par_id3150279.191.help.text
+msgctxt "04060109.xhp#par_id3150279.191.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060109.xhp#par_id3153775.192.help.text
+msgid "Data are retrieved as text; no conversion to numbers"
+msgstr "Data are retrieved as text; no conversion to numbers"
+
+#: 04060109.xhp#hd_id3149546.35.help.text
+msgctxt "04060109.xhp#hd_id3149546.35.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3148734.36.help.text
+msgid " <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
+msgstr " <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
+
+#: 04060109.xhp#par_id3153081.37.help.text
+msgid " <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
+msgstr " <item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
+
+#: 04060109.xhp#bm_id3153114.help.text
+msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
+msgstr "<bookmark_value>ERRORTYPE function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3153114.38.help.text
+msgid "ERRORTYPE"
+msgstr "ERRORTYPE"
+
+#: 04060109.xhp#par_id3148568.39.help.text
+msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
+msgstr "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
+
+#: 04060109.xhp#par_id3149877.40.help.text
+msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
+msgstr "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
+
+#: 04060109.xhp#hd_id3154327.41.help.text
+msgctxt "04060109.xhp#hd_id3154327.41.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3151322.42.help.text
+msgid "ERRORTYPE(Reference)"
+msgstr "ERRORTYPE(Reference)"
+
+#: 04060109.xhp#par_id3150132.43.help.text
+msgid " <emph>Reference</emph> contains the address of the cell in which the error occurs."
+msgstr " <emph>Reference</emph> contains the address of the cell in which the error occurs."
+
+#: 04060109.xhp#hd_id3145248.44.help.text
+msgctxt "04060109.xhp#hd_id3145248.44.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3146904.45.help.text
+msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
+msgstr "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
+
+#: 04060109.xhp#bm_id3151221.help.text
+msgid "<bookmark_value>INDEX function</bookmark_value>"
+msgstr "<bookmark_value>INDEX function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3151221.47.help.text
+msgid "INDEX"
+msgstr "INDEX"
+
+#: 04060109.xhp#par_id3150268.48.help.text
+msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
+
+#: 04060109.xhp#hd_id3156063.49.help.text
+msgctxt "04060109.xhp#hd_id3156063.49.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3149007.50.help.text
+msgid "INDEX(Reference; Row; Column; Range)"
+msgstr "INDEX(Reference; Row; Column; Range)"
+
+#: 04060109.xhp#par_id3153260.51.help.text
+msgid " <emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
+msgstr " <emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
+
+#: 04060109.xhp#par_id3145302.52.help.text
+msgid " <emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
+msgstr " <emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
+
+#: 04060109.xhp#par_id3154628.53.help.text
+msgid " <emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
+msgstr " <emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
+
+#: 04060109.xhp#par_id3155514.54.help.text
+msgid " <emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
+msgstr " <emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
+
+#: 04060109.xhp#hd_id3145264.55.help.text
+msgctxt "04060109.xhp#hd_id3145264.55.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3159112.56.help.text
+msgid " <item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
+msgstr " <item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
+
+#: 04060109.xhp#par_id3150691.57.help.text
+msgid " <item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgstr " <item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+
+#: 04060109.xhp#par_id4109012.help.text
+msgid " <item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
+msgstr " <item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
+
+#: 04060109.xhp#par_id9272133.help.text
+msgid " <item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
+msgstr " <item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
+
+#: 04060109.xhp#par_id3158419.58.help.text
+#, fuzzy
+msgid " <item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr " <item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Set</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+
+#: 04060109.xhp#par_id3148595.59.help.text
+msgid " <item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
+msgstr " <item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
+
+#: 04060109.xhp#par_id9960020.help.text
+msgid " <item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
+msgstr " <item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
+
+#: 04060109.xhp#bm_id3153181.help.text
+msgid "<bookmark_value>INDIRECT function</bookmark_value>"
+msgstr "<bookmark_value>INDIRECT function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3153181.62.help.text
+msgid "INDIRECT"
+msgstr "INDIRECT"
+
+#: 04060109.xhp#par_id3147169.63.help.text
+msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
+msgstr "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
+
+#: 04060109.xhp#hd_id3153717.64.help.text
+msgctxt "04060109.xhp#hd_id3153717.64.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3149824.65.help.text
+msgid "INDIRECT(Ref; A1)"
+msgstr "INDIRECT(Ref; A1)"
+
+#: 04060109.xhp#par_id3154317.66.help.text
+msgid " <emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
+msgstr " <emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
+
+#: 04060109.xhp#par_id1027200802470312.help.text
+msgctxt "04060109.xhp#par_id1027200802470312.help.text"
+msgid " <emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr " <emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+
+#: 04060109.xhp#par_idN10CAE.help.text
+msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
+msgstr "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
+
+#: 04060109.xhp#hd_id3150389.67.help.text
+msgctxt "04060109.xhp#hd_id3150389.67.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3150608.68.help.text
+msgid " <item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
+msgstr " <item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
+
+#: 04060109.xhp#par_id3083286.181.help.text
+msgid " <item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
+msgstr " <item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
+
+#: 04060109.xhp#bm_id3154818.help.text
+msgid "<bookmark_value>COLUMN function</bookmark_value>"
+msgstr "<bookmark_value>COLUMN function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3154818.70.help.text
+msgid "COLUMN"
+msgstr "COLUMN"
+
+#: 04060109.xhp#par_id3149711.193.help.text
+msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
+msgstr "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
+
+#: 04060109.xhp#hd_id3149283.72.help.text
+msgctxt "04060109.xhp#hd_id3149283.72.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3149447.73.help.text
+msgid "COLUMN(Reference)"
+msgstr "COLUMN(Reference)"
+
+#: 04060109.xhp#par_id3156310.74.help.text
+msgid " <emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
+msgstr " <emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
+
+#: 04060109.xhp#par_id3155837.194.help.text
+msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+
+#: 04060109.xhp#hd_id3152932.75.help.text
+msgctxt "04060109.xhp#hd_id3152932.75.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3147571.76.help.text
+msgid " <item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
+msgstr " <item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
+
+#: 04060109.xhp#par_id3147079.77.help.text
+msgid " <item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
+msgstr " <item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
+
+#: 04060109.xhp#par_id3146861.195.help.text
+msgid " <item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
+msgstr " <item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
+
+#: 04060109.xhp#par_id3156320.196.help.text
+msgid " <item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
+msgstr " <item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
+
+#: 04060109.xhp#par_id3150872.197.help.text
+msgid " <item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
+msgstr " <item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
+
+#: 04060109.xhp#par_id3153277.198.help.text
+msgid " <item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
+msgstr " <item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
+
+#: 04060109.xhp#bm_id3154643.help.text
+msgid "<bookmark_value>COLUMNS function</bookmark_value>"
+msgstr "<bookmark_value>COLUMNS function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3154643.79.help.text
+msgid "COLUMNS"
+msgstr "COLUMNS"
+
+#: 04060109.xhp#par_id3151182.80.help.text
+msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+
+#: 04060109.xhp#hd_id3149141.81.help.text
+msgctxt "04060109.xhp#hd_id3149141.81.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3154047.82.help.text
+msgid "COLUMNS(Array)"
+msgstr "COLUMNS(Array)"
+
+#: 04060109.xhp#par_id3154745.83.help.text
+msgid " <emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
+msgstr " <emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
+
+#: 04060109.xhp#hd_id3153622.84.help.text
+msgctxt "04060109.xhp#hd_id3153622.84.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3149577.200.help.text
+msgid " <item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+msgstr " <item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+
+#: 04060109.xhp#par_id3145649.85.help.text
+msgid " <item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
+msgstr " <item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
+
+#: 04060109.xhp#par_id3155846.201.help.text
+msgid " <item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
+msgstr " <item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
+
+#: 04060109.xhp#bm_id3153152.help.text
+msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3153152.87.help.text
+msgid "VLOOKUP"
+msgstr "VLOOKUP"
+
+#: 04060109.xhp#par_id3149984.88.help.text
+msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+
+#: 04060109.xhp#hd_id3146898.89.help.text
+msgctxt "04060109.xhp#hd_id3146898.89.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3150156.90.help.text
+msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
+msgstr "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
+
+#: 04060109.xhp#par_id3149289.91.help.text
+msgid " <emph>SearchCriterion</emph> is the value searched for in the first column of the array."
+msgstr " <emph>SearchCriterion</emph> is the value searched for in the first column of the array."
+
+#: 04060109.xhp#par_id3153884.92.help.text
+msgid " <emph>Array</emph> is the reference, which is to comprise at least two columns."
+msgstr " <emph>Array</emph> is the reference, which is to comprise at least two columns."
+
+#: 04060109.xhp#par_id3156005.93.help.text
+msgid " <emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
+msgstr " <emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
+
+#: 04060109.xhp#par_id3151208.94.help.text
+msgid " <emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
+msgstr " <emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
+
+#: 04060109.xhp#hd_id3147487.95.help.text
+msgctxt "04060109.xhp#hd_id3147487.95.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3154129.96.help.text
+msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
+msgstr "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighbouring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
+
+#: 04060109.xhp#par_id3145663.97.help.text
+msgid "Enter the following formula in B1:"
+msgstr "Enter the following formula in B1:"
+
+#: 04060109.xhp#par_id3151172.98.help.text
+msgid " <item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item> "
+msgstr " <item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item> "
+
+#: 04060109.xhp#par_id3149200.99.help.text
+msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
+msgstr "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
+
+#: 04060109.xhp#bm_id3153905.help.text
+msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
+msgstr "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3153905.215.help.text
+msgctxt "04060109.xhp#hd_id3153905.215.help.text"
+msgid "SHEET"
+msgstr "SHEET"
+
+#: 04060109.xhp#par_id3150309.216.help.text
+msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
+
+#: 04060109.xhp#hd_id3148564.217.help.text
+msgctxt "04060109.xhp#hd_id3148564.217.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3153095.218.help.text
+msgid "SHEET(Reference)"
+msgstr "SHEET(Reference)"
+
+#: 04060109.xhp#par_id3154588.219.help.text
+msgid " <emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
+msgstr " <emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
+
+#: 04060109.xhp#hd_id3155399.220.help.text
+msgctxt "04060109.xhp#hd_id3155399.220.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3146988.221.help.text
+msgid " <item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
+msgstr " <item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
+
+#: 04060109.xhp#bm_id3148829.help.text
+msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
+msgstr "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3148829.222.help.text
+msgid "SHEETS"
+msgstr "SHEETS"
+
+#: 04060109.xhp#par_id3148820.223.help.text
+msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
+msgstr "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
+
+#: 04060109.xhp#hd_id3154220.224.help.text
+msgctxt "04060109.xhp#hd_id3154220.224.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3150777.225.help.text
+msgid "SHEETS(Reference)"
+msgstr "SHEETS(Reference)"
+
+#: 04060109.xhp#par_id3153060.226.help.text
+msgid " <emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
+msgstr " <emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
+
+#: 04060109.xhp#hd_id3149766.227.help.text
+msgctxt "04060109.xhp#hd_id3149766.227.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3150507.228.help.text
+msgid " <item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
+msgstr " <item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
+
+#: 04060109.xhp#bm_id3158407.help.text
+msgid "<bookmark_value>MATCH function</bookmark_value>"
+msgstr "<bookmark_value>MATCH function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3158407.101.help.text
+msgid "MATCH"
+msgstr "MATCH"
+
+#: 04060109.xhp#par_id3154896.102.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
+msgstr "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
+
+#: 04060109.xhp#hd_id3153834.103.help.text
+msgctxt "04060109.xhp#hd_id3153834.103.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3159152.104.help.text
+msgid "MATCH(SearchCriterion; LookupArray; Type)"
+msgstr "MATCH(SearchCriterion; LookupArray; Type)"
+
+#: 04060109.xhp#par_id3149336.105.help.text
+msgid " <emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
+msgstr " <emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
+
+#: 04060109.xhp#par_id3159167.106.help.text
+msgid " <emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
+msgstr " <emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
+
+#: 04060109.xhp#par_id3147239.107.help.text
+msgid " <emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
+msgstr " <emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
+
+#: 04060109.xhp#par_id3154265.231.help.text
+msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
+msgstr "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
+
+#: 04060109.xhp#par_id3147528.232.help.text
+msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
+msgstr "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
+
+#: 04060109.xhp#hd_id3155119.108.help.text
+msgctxt "04060109.xhp#hd_id3155119.108.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3155343.109.help.text
+msgid " <item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
+msgstr " <item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
+
+#: 04060109.xhp#bm_id3158430.help.text
+msgid "<bookmark_value>OFFSET function</bookmark_value>"
+msgstr "<bookmark_value>OFFSET function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3158430.111.help.text
+msgid "OFFSET"
+msgstr "OFFSET"
+
+#: 04060109.xhp#par_id3149167.112.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
+
+#: 04060109.xhp#hd_id3146952.113.help.text
+msgctxt "04060109.xhp#hd_id3146952.113.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3159194.114.help.text
+msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
+msgstr "OFFSET(Reference; Rows; Columns; Height; Width)"
+
+#: 04060109.xhp#par_id3152360.115.help.text
+msgid " <emph>Reference</emph> is the reference from which the function searches for the new reference."
+msgstr " <emph>Reference</emph> is the reference from which the function searches for the new reference."
+
+#: 04060109.xhp#par_id3156032.116.help.text
+msgid " <emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
+msgstr " <emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
+
+#: 04060109.xhp#par_id3166458.117.help.text
+msgid " <emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
+msgstr " <emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
+
+#: 04060109.xhp#par_id3150708.118.help.text
+msgid " <emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
+msgstr " <emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
+
+#: 04060109.xhp#par_id3147278.119.help.text
+msgid " <emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
+msgstr " <emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
+
+#: 04060109.xhp#par_id8662373.help.text
+msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
+msgstr "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
+
+#: 04060109.xhp#par_id9051484.help.text
+msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
+msgstr "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
+
+#: 04060109.xhp#par_idN1104B.help.text
+msgctxt "04060109.xhp#par_idN1104B.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+
+#: 04060109.xhp#hd_id3155586.120.help.text
+msgctxt "04060109.xhp#hd_id3155586.120.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3149744.121.help.text
+msgid " <item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
+msgstr " <item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
+
+#: 04060109.xhp#par_id7439802.help.text
+msgid " <item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
+msgstr " <item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
+
+#: 04060109.xhp#par_id3009430.help.text
+msgid " <item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
+msgstr " <item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
+
+#: 04060109.xhp#par_id2629169.help.text
+msgid " <item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
+msgstr " <item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
+
+#: 04060109.xhp#par_id6668599.help.text
+msgid " <item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
+msgstr " <item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
+
+#: 04060109.xhp#par_id3153739.122.help.text
+msgid " <item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
+msgstr " <item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
+
+#: 04060109.xhp#bm_id3159273.help.text
+msgid "<bookmark_value>LOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>LOOKUP function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3159273.123.help.text
+msgid "LOOKUP"
+msgstr "LOOKUP"
+
+#: 04060109.xhp#par_id3153389.124.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
+
+#: 04060109.xhp#par_id4484084.help.text
+msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
+msgstr "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
+
+#: 04060109.xhp#hd_id3152947.125.help.text
+msgctxt "04060109.xhp#hd_id3152947.125.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3154104.126.help.text
+msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
+msgstr "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
+
+#: 04060109.xhp#par_id3150646.127.help.text
+msgid " <emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
+msgstr " <emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
+
+#: 04060109.xhp#par_id3154854.128.help.text
+msgid " <emph>SearchVector</emph> is the single-row or single-column area to be searched."
+msgstr " <emph>SearchVector</emph> is the single-row or single-column area to be searched."
+
+#: 04060109.xhp#par_id3149925.129.help.text
+msgid " <emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
+msgstr " <emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
+
+#: 04060109.xhp#hd_id3148624.130.help.text
+msgctxt "04060109.xhp#hd_id3148624.130.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3149809.131.help.text
+msgid " <item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
+msgstr " <item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
+
+#: 04060109.xhp#bm_id3149425.help.text
+msgid "<bookmark_value>STYLE function</bookmark_value>"
+msgstr "<bookmark_value>STYLE function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3149425.133.help.text
+msgid "STYLE"
+msgstr "STYLE"
+
+#: 04060109.xhp#par_id3150826.134.help.text
+msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a colour to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+
+#: 04060109.xhp#hd_id3145373.135.help.text
+msgctxt "04060109.xhp#hd_id3145373.135.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3149302.136.help.text
+msgid "STYLE(\"Style\"; Time; \"Style2\")"
+msgstr "STYLE(\"Style\"; Time; \"Style2\")"
+
+#: 04060109.xhp#par_id3150596.137.help.text
+msgid " <emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
+msgstr " <emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
+
+#: 04060109.xhp#par_id3156149.138.help.text
+msgid " <emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
+msgstr " <emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
+
+#: 04060109.xhp#par_id3149520.139.help.text
+msgid " <emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
+msgstr " <emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
+
+#: 04060109.xhp#par_idN111CA.help.text
+msgctxt "04060109.xhp#par_idN111CA.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+
+#: 04060109.xhp#hd_id3159254.140.help.text
+msgctxt "04060109.xhp#hd_id3159254.140.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3151374.141.help.text
+msgid " <item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
+msgstr " <item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
+
+#: 04060109.xhp#par_id8056886.help.text
+msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example "
+msgstr "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example "
+
+#: 04060109.xhp#par_id3668935.help.text
+msgid " <item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item> "
+msgstr " <item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item> "
+
+#: 04060109.xhp#par_id3042085.help.text
+msgid "See also CURRENT() for another example."
+msgstr "See also CURRENT() for another example."
+
+#: 04060109.xhp#bm_id3150430.help.text
+msgid "<bookmark_value>CHOOSE function</bookmark_value>"
+msgstr "<bookmark_value>CHOOSE function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3150430.142.help.text
+msgid "CHOOSE"
+msgstr "CHOOSE"
+
+#: 04060109.xhp#par_id3143270.143.help.text
+msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
+
+#: 04060109.xhp#hd_id3153533.144.help.text
+msgctxt "04060109.xhp#hd_id3153533.144.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3155425.145.help.text
+msgid "CHOOSE(Index; Value1; ...; Value30)"
+msgstr "CHOOSE(Index; Value1; ...; Value30)"
+
+#: 04060109.xhp#par_id3144755.146.help.text
+msgid " <emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
+msgstr " <emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
+
+#: 04060109.xhp#par_id3149939.147.help.text
+msgid " <emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
+msgstr " <emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
+
+#: 04060109.xhp#hd_id3151253.148.help.text
+msgctxt "04060109.xhp#hd_id3151253.148.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3150625.149.help.text
+msgid " <item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
+msgstr " <item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
+
+#: 04060109.xhp#bm_id3151001.help.text
+msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
+msgstr "<bookmark_value>HLOOKUP function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3151001.151.help.text
+msgid "HLOOKUP"
+msgstr "HLOOKUP"
+
+#: 04060109.xhp#par_id3148688.152.help.text
+msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
+msgstr "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
+
+#: 04060109.xhp#hd_id3154661.153.help.text
+msgctxt "04060109.xhp#hd_id3154661.153.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3146070.154.help.text
+msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
+msgstr "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
+
+#: 04060109.xhp#par_id3148672.155.help.text
+msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+msgstr "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+
+#: 04060109.xhp#bm_id3147321.help.text
+msgid "<bookmark_value>ROW function</bookmark_value>"
+msgstr "<bookmark_value>ROW function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3147321.157.help.text
+msgctxt "04060109.xhp#hd_id3147321.157.help.text"
+msgid "ROW"
+msgstr "ROW"
+
+#: 04060109.xhp#par_id3154564.203.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
+msgstr "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
+
+#: 04060109.xhp#hd_id3158439.159.help.text
+msgctxt "04060109.xhp#hd_id3158439.159.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3154916.160.help.text
+msgid "ROW(Reference)"
+msgstr "ROW(Reference)"
+
+#: 04060109.xhp#par_id3156336.161.help.text
+msgid " <emph>Reference</emph> is a cell, an area, or the name of an area."
+msgstr " <emph>Reference</emph> is a cell, an area, or the name of an area."
+
+#: 04060109.xhp#par_id3151109.204.help.text
+msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+
+#: 04060109.xhp#hd_id3155609.162.help.text
+msgctxt "04060109.xhp#hd_id3155609.162.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3154830.205.help.text
+msgid " <item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
+msgstr " <item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
+
+#: 04060109.xhp#par_id3147094.206.help.text
+msgid " <item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
+msgstr " <item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
+
+#: 04060109.xhp#par_id3153701.207.help.text
+msgid " <item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
+msgstr " <item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
+
+#: 04060109.xhp#par_id3150996.208.help.text
+msgid " <item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
+msgstr " <item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
+
+#: 04060109.xhp#par_id3153671.209.help.text
+msgid " <item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
+msgstr " <item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
+
+#: 04060109.xhp#par_id3153790.210.help.text
+msgid " <item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
+msgstr " <item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
+
+#: 04060109.xhp#bm_id3145772.help.text
+msgid "<bookmark_value>ROWS function</bookmark_value>"
+msgstr "<bookmark_value>ROWS function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3145772.166.help.text
+msgid "ROWS"
+msgstr "ROWS"
+
+#: 04060109.xhp#par_id3148971.167.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
+
+#: 04060109.xhp#hd_id3156051.168.help.text
+msgctxt "04060109.xhp#hd_id3156051.168.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id3154357.169.help.text
+msgid "ROWS(Array)"
+msgstr "ROWS(Array)"
+
+#: 04060109.xhp#par_id3155942.170.help.text
+msgid " <emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
+msgstr " <emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
+
+#: 04060109.xhp#hd_id3155869.171.help.text
+msgctxt "04060109.xhp#hd_id3155869.171.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_id3154725.212.help.text
+msgid " <item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+msgstr " <item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+
+#: 04060109.xhp#par_id3150102.172.help.text
+msgid " <item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+msgstr " <item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+
+#: 04060109.xhp#par_id3155143.213.help.text
+msgid " <item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
+msgstr " <item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
+
+#: 04060109.xhp#bm_id9959410.help.text
+msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
+msgstr "<bookmark_value>HYPERLINK function</bookmark_value>"
+
+#: 04060109.xhp#par_idN11798.help.text
+msgid "HYPERLINK"
+msgstr "HYPERLINK"
+
+#: 04060109.xhp#par_idN117F1.help.text
+msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
+
+#: 04060109.xhp#par_idN11800.help.text
+msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgstr "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
+
+#: 04060109.xhp#par_idN11803.help.text
+msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
+msgstr "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
+
+#: 04060109.xhp#par_idN1180A.help.text
+msgctxt "04060109.xhp#par_idN1180A.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_idN1180E.help.text
+msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
+msgstr "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
+
+#: 04060109.xhp#par_idN11811.help.text
+msgid " <emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+msgstr " <emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+
+#: 04060109.xhp#par_id0907200912224576.help.text
+msgid "The number 0 is returned for empty cells and matrix elements."
+msgstr "The number 0 is returned for empty cells and matrix elements."
+
+#: 04060109.xhp#par_idN11823.help.text
+msgctxt "04060109.xhp#par_idN11823.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060109.xhp#par_idN11827.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr " <item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+
+#: 04060109.xhp#par_idN1182A.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr " <item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+
+#: 04060109.xhp#par_id0907200912224534.help.text
+msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgstr "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+
+#: 04060109.xhp#par_idN1182D.help.text
+msgid " <item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr " <item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+
+#: 04060109.xhp#par_idN11830.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr " <item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+
+#: 04060109.xhp#par_id8859523.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr " <item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+
+#: 04060109.xhp#par_id2958769.help.text
+msgid " <item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr " <item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
+
+#: 04060109.xhp#bm_id7682424.help.text
+msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+msgstr "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3747062.help.text
+msgid "GETPIVOTDATA"
+msgstr "GETPIVOTDATA"
+
+#: 04060109.xhp#par_id3593859.help.text
+msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp#hd_id9741508.help.text
+msgctxt "04060109.xhp#hd_id9741508.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060109.xhp#par_id909451.help.text
+msgid "Two different syntax definitions can be used:"
+msgstr "Two different syntax definitions can be used:"
+
+#: 04060109.xhp#par_id1665089.help.text
+msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
+msgstr ""
+
+#: 04060109.xhp#par_id4997100.help.text
+msgid "GETPIVOTDATA(pivot table; Constraints)"
+msgstr ""
+
+#: 04060109.xhp#par_id1672109.help.text
+msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
+msgstr "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
+
+#: 04060109.xhp#hd_id9464094.help.text
+msgid "First Syntax"
+msgstr "First Syntax"
+
+#: 04060109.xhp#par_id9302346.help.text
+msgid " <emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
+msgstr ""
+
+#: 04060109.xhp#par_id8296151.help.text
+msgid " <emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
+msgstr ""
+
+#: 04060109.xhp#par_id4809411.help.text
+msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
+msgstr ""
+
+#: 04060109.xhp#par_id6454969.help.text
+msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
+msgstr ""
+
+#: 04060109.xhp#par_id79042.help.text
+msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
+msgstr ""
+
+#: 04060109.xhp#par_id7928708.help.text
+msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
+msgstr ""
+
+#: 04060109.xhp#par_id3864253.help.text
+msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
+msgstr ""
+
+#: 04060109.xhp#hd_id3144016.help.text
+msgid "Second Syntax"
+msgstr "Second Syntax"
+
+#: 04060109.xhp#par_id9937131.help.text
+msgid " <emph>pivot table</emph> has the same meaning as in the first syntax."
+msgstr ""
+
+#: 04060109.xhp#par_id5616626.help.text
+msgid " <emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
+msgstr " <emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
+
+#: 04060109.xhp#par_id4076357.help.text
+msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
+msgstr ""
+
+#: 04060109.xhp#par_id8231757.help.text
+msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
+msgstr ""
+
+#: 04060109.xhp#par_id3168736.help.text
+msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
+msgstr "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
+
+#: 12040201.xhp#tit.help.text
+msgctxt "12040201.xhp#tit.help.text"
+msgid "More"
+msgstr "More"
+
+#: 12040201.xhp#hd_id3148492.1.help.text
+msgctxt "12040201.xhp#hd_id3148492.1.help.text"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+
+#: 12040201.xhp#par_id3159400.2.help.text
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
+
+#: 12040201.xhp#hd_id3150791.3.help.text
+msgctxt "12040201.xhp#hd_id3150791.3.help.text"
+msgid "Options"
+msgstr "Options"
+
+#: 12040201.xhp#hd_id3154138.5.help.text
+msgctxt "12040201.xhp#hd_id3154138.5.help.text"
+msgid "Case sensitive"
+msgstr "Case sensitive"
+
+#: 12040201.xhp#par_id3147228.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
+
+#: 12040201.xhp#hd_id3154908.7.help.text
+msgid "Range contains column labels"
+msgstr "Range contains column labels"
+
+#: 12040201.xhp#par_id3153768.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
+
+#: 12040201.xhp#hd_id3155306.9.help.text
+msgctxt "12040201.xhp#hd_id3155306.9.help.text"
+msgid "Copy results to"
+msgstr "Copy results to"
+
+#: 12040201.xhp#par_id3154319.10.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
+
+#: 12040201.xhp#hd_id3145272.11.help.text
+msgid "Regular expression"
+msgstr "Regular expression"
+
+#: 12040201.xhp#par_id3152576.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
+
+#: 12040201.xhp#par_id3149377.33.help.text
+msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
+msgstr "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
+
+#: 12040201.xhp#hd_id3149958.34.help.text
+msgid "No duplication"
+msgstr "No duplication"
+
+#: 12040201.xhp#par_id3153876.35.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+
+#: 12040201.xhp#hd_id3154018.40.help.text
+msgid "Keep filter criteria"
+msgstr "Keep filter criteria"
+
+#: 12040201.xhp#par_id3149123.41.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
+
+#: 12040201.xhp#hd_id3149018.36.help.text
+msgid "Data range"
+msgstr "Data range"
+
+#: 12040201.xhp#par_id3150042.37.help.text
+msgid "Displays the cell range or the name of the cell range that you want to filter."
+msgstr "Displays the cell range or the name of the cell range that you want to filter."
+
+#: 02190000.xhp#tit.help.text
+msgid "Delete Manual Breaks"
+msgstr "Delete Manual Breaks"
+
+#: 02190000.xhp#hd_id3150541.1.help.text
+msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
+
+#: 02190000.xhp#par_id3154365.2.help.text
+msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
+msgstr "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
+
+#: 06990000.xhp#tit.help.text
+msgid "Cell Contents"
+msgstr "Cell Contents"
+
+#: 06990000.xhp#hd_id3153087.1.help.text
+msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
+msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
+
+#: 06990000.xhp#par_id3145674.2.help.text
+msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
+msgstr "Opens a submenu with commands to calculate tables and activate AutoInput."
+
+#: 04060000.xhp#tit.help.text
+msgid "Function Wizard"
+msgstr "Function Wizard"
+
+#: 04060000.xhp#bm_id3147426.help.text
+msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
+msgstr "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
+
+#: 04060000.xhp#hd_id3147426.1.help.text
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+
+#: 04060000.xhp#par_id3145271.2.help.text
+msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
+msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulae.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
+
+#: 04060000.xhp#par_id8007446.help.text
+msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
+msgstr "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
+
+#: 04060000.xhp#par_id3159153.60.help.text
+msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
+msgstr "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulae, and <emph>Structure</emph> is used to check the formula build."
+
+#: 04060000.xhp#hd_id3154490.3.help.text
+msgid "Functions Tab"
+msgstr "Functions Tab"
+
+#: 04060000.xhp#par_id3149378.5.help.text
+msgctxt "04060000.xhp#par_id3149378.5.help.text"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+
+#: 04060000.xhp#hd_id3154730.36.help.text
+msgid "Category"
+msgstr "Category"
+
+#: 04060000.xhp#par_id3153417.37.help.text
+msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
+msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
+
+#: 04060000.xhp#hd_id3150749.6.help.text
+msgctxt "04060000.xhp#hd_id3150749.6.help.text"
+msgid "Function"
+msgstr "Function"
+
+#: 04060000.xhp#par_id3155445.7.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
+
+#: 04060000.xhp#hd_id3159264.8.help.text
+msgid "Array"
+msgstr "Array"
+
+#: 04060000.xhp#par_id3149566.9.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulae operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
+
+#: 04060000.xhp#par_id3155959.61.help.text
+msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
+msgstr "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulae in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
+
+#: 04060000.xhp#par_id3152993.40.help.text
+msgid "The maximum size of an array range is 128 by 128 cells."
+msgstr "The maximum size of an array range is 128 by 128 cells."
+
+#: 04060000.xhp#hd_id3150367.41.help.text
+msgid "Argument Input Fields"
+msgstr "Argument Input Fields"
+
+#: 04060000.xhp#par_id3145587.15.help.text
+msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
+msgstr "When you double-click a function, the argument input field(s) appear on the right side of the dialogue. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialogue. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
+
+#: 04060000.xhp#hd_id3149408.18.help.text
+msgid "Function Result"
+msgstr "Function Result"
+
+#: 04060000.xhp#par_id3155809.19.help.text
+msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
+msgstr "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
+
+#: 04060000.xhp#par_id3148700.23.help.text
+msgid "The required arguments are indicated by names in bold print."
+msgstr "The required arguments are indicated by names in bold print."
+
+#: 04060000.xhp#hd_id3153064.22.help.text
+msgid "f(x) (depending on the selected function)"
+msgstr "f(x) (depending on the selected function)"
+
+#: 04060000.xhp#par_id3157980.24.help.text
+msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
+
+#: 04060000.xhp#hd_id3145076.25.help.text
+msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
+msgstr "Argument/Parameter/Cell Reference (depending on the selected function)"
+
+#: 04060000.xhp#par_id3159097.26.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
+
+#: 04060000.xhp#hd_id3154957.51.help.text
+msgctxt "04060000.xhp#hd_id3154957.51.help.text"
+msgid "Result"
+msgstr "Result"
+
+#: 04060000.xhp#par_id3150211.52.help.text
+msgid "Displays the calculation result or an error message."
+msgstr "Displays the calculation result or an error message."
+
+#: 04060000.xhp#hd_id3151304.43.help.text
+msgid "Formula"
+msgstr "Formula"
+
+#: 04060000.xhp#par_id3149898.44.help.text
+msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
+
+#: 04060000.xhp#hd_id3153249.45.help.text
+msgid "Back"
+msgstr "Back"
+
+#: 04060000.xhp#par_id3152869.53.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+
+#: 04060000.xhp#par_id3146966.56.help.text
+msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
+msgstr "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
+
+#: 04060000.xhp#hd_id3155762.54.help.text
+msgid "Next"
+msgstr "Next"
+
+#: 04060000.xhp#par_id3149316.55.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+
+#: 04060000.xhp#par_id3159262.57.help.text
+msgid "Double-click a function in the selection window to transfer it to the formula window."
+msgstr "Double-click a function in the selection window to transfer it to the formula window."
+
+#: 04060000.xhp#hd_id3148745.58.help.text
+msgid "Cancel"
+msgstr "Cancel"
+
+#: 04060000.xhp#par_id3147402.59.help.text
+msgid "Closes the dialog without implementing the formula."
+msgstr "Closes the dialogue without implementing the formula."
+
+#: 04060000.xhp#hd_id3150534.32.help.text
+msgid "OK"
+msgstr "OK"
+
+#: 04060000.xhp#par_id3153029.33.help.text
+msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
+msgstr "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
+
+#: 04060000.xhp#par_id3156400.34.help.text
+msgctxt "04060000.xhp#par_id3156400.34.help.text"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+
+#: 04060000.xhp#hd_id3147610.47.help.text
+msgid "Structure tab"
+msgstr "Structure tab"
+
+#: 04060000.xhp#par_id3153122.48.help.text
+msgid "On this page, you can view the structure of the function."
+msgstr "On this page, you can view the structure of the function."
+
+#: 04060000.xhp#par_id3149350.4.help.text
+msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
+msgstr "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
+
+#: 04060000.xhp#hd_id3149014.49.help.text
+msgid "Structure"
+msgstr "Structure"
+
+#: 04060000.xhp#par_id3150481.50.help.text
+msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
+msgstr "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
+
+#: 04060000.xhp#par_id3148886.63.help.text
+msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
+msgstr "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
+
+#: 04060118.xhp#tit.help.text
+msgctxt "04060118.xhp#tit.help.text"
+msgid "Financial Functions Part Three"
+msgstr "Financial Functions Part Three"
+
+#: 04060118.xhp#hd_id3146780.1.help.text
+msgctxt "04060118.xhp#hd_id3146780.1.help.text"
+msgid "Financial Functions Part Three"
+msgstr "Financial Functions Part Three"
+
+#: 04060118.xhp#bm_id3145112.help.text
+msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
+msgstr "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
+
+#: 04060118.xhp#hd_id3145112.71.help.text
+msgid "ODDFPRICE"
+msgstr "ODDFPRICE"
+
+#: 04060118.xhp#par_id3147250.72.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
+
+#: 04060118.xhp#hd_id3153074.73.help.text
+msgctxt "04060118.xhp#hd_id3153074.73.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3146098.74.help.text
+msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3153337.75.help.text
+msgctxt "04060118.xhp#par_id3153337.75.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3149051.76.help.text
+msgctxt "04060118.xhp#par_id3149051.76.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3147297.77.help.text
+msgctxt "04060118.xhp#par_id3147297.77.help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Issue</emph> is the date of issue of the security."
+
+#: 04060118.xhp#par_id3150393.78.help.text
+msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
+msgstr "<emph>FirstCoupon</emph> is the first interest date of the security."
+
+#: 04060118.xhp#par_id3147402.79.help.text
+msgctxt "04060118.xhp#par_id3147402.79.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Rate</emph> is the annual rate of interest."
+
+#: 04060118.xhp#par_id3151387.80.help.text
+msgctxt "04060118.xhp#par_id3151387.80.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Yield</emph> is the annual yield of the security."
+
+#: 04060118.xhp#par_id3153023.81.help.text
+msgctxt "04060118.xhp#par_id3153023.81.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+
+#: 04060118.xhp#par_id3150539.82.help.text
+msgctxt "04060118.xhp#par_id3150539.82.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#bm_id3157871.help.text
+msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
+msgstr "<bookmark_value>ODDFYIELD function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3157871.87.help.text
+msgid "ODDFYIELD"
+msgstr "ODDFYIELD"
+
+#: 04060118.xhp#par_id3147414.88.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
+
+#: 04060118.xhp#hd_id3150651.89.help.text
+msgctxt "04060118.xhp#hd_id3150651.89.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3152982.90.help.text
+msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3157906.91.help.text
+msgctxt "04060118.xhp#par_id3157906.91.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3150026.92.help.text
+msgctxt "04060118.xhp#par_id3150026.92.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3149012.93.help.text
+msgctxt "04060118.xhp#par_id3149012.93.help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Issue</emph> is the date of issue of the security."
+
+#: 04060118.xhp#par_id3148725.94.help.text
+msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
+msgstr "<emph>FirstCoupon</emph> is the first interest period of the security."
+
+#: 04060118.xhp#par_id3150465.95.help.text
+msgctxt "04060118.xhp#par_id3150465.95.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Rate</emph> is the annual rate of interest."
+
+#: 04060118.xhp#par_id3146940.96.help.text
+msgctxt "04060118.xhp#par_id3146940.96.help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "<emph>Price</emph> is the price of the security."
+
+#: 04060118.xhp#par_id3149893.97.help.text
+msgctxt "04060118.xhp#par_id3149893.97.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+
+#: 04060118.xhp#par_id3148888.98.help.text
+msgctxt "04060118.xhp#par_id3148888.98.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#bm_id3153933.help.text
+msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
+msgstr "<bookmark_value>ODDLPRICE function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3153933.103.help.text
+msgid "ODDLPRICE"
+msgstr "ODDLPRICE"
+
+#: 04060118.xhp#par_id3145145.104.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
+
+#: 04060118.xhp#hd_id3152784.105.help.text
+msgctxt "04060118.xhp#hd_id3152784.105.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3155262.106.help.text
+msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3149689.107.help.text
+msgctxt "04060118.xhp#par_id3149689.107.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3148753.108.help.text
+msgctxt "04060118.xhp#par_id3148753.108.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3150861.109.help.text
+msgctxt "04060118.xhp#par_id3150861.109.help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "<emph>LastInterest</emph> is the last interest date of the security."
+
+#: 04060118.xhp#par_id3155831.110.help.text
+msgctxt "04060118.xhp#par_id3155831.110.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Rate</emph> is the annual rate of interest."
+
+#: 04060118.xhp#par_id3153328.111.help.text
+msgctxt "04060118.xhp#par_id3153328.111.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Yield</emph> is the annual yield of the security."
+
+#: 04060118.xhp#par_id3149186.112.help.text
+msgctxt "04060118.xhp#par_id3149186.112.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+
+#: 04060118.xhp#par_id3149726.113.help.text
+msgctxt "04060118.xhp#par_id3149726.113.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#hd_id3153111.114.help.text
+msgctxt "04060118.xhp#hd_id3153111.114.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3152999.115.help.text
+msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+
+#: 04060118.xhp#par_id3148567.116.help.text
+msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
+msgstr "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
+
+#: 04060118.xhp#par_id3150332.117.help.text
+msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+msgstr "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+
+#: 04060118.xhp#bm_id3153564.help.text
+msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
+msgstr "<bookmark_value>ODDLYIELD function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3153564.118.help.text
+msgid "ODDLYIELD"
+msgstr "ODDLYIELD"
+
+#: 04060118.xhp#par_id3158002.119.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
+
+#: 04060118.xhp#hd_id3147366.120.help.text
+msgctxt "04060118.xhp#hd_id3147366.120.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3150018.121.help.text
+msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3159132.122.help.text
+msgctxt "04060118.xhp#par_id3159132.122.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3150134.123.help.text
+msgctxt "04060118.xhp#par_id3150134.123.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3145245.124.help.text
+msgctxt "04060118.xhp#par_id3145245.124.help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "<emph>LastInterest</emph> is the last interest date of the security."
+
+#: 04060118.xhp#par_id3151014.125.help.text
+msgctxt "04060118.xhp#par_id3151014.125.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Rate</emph> is the annual rate of interest."
+
+#: 04060118.xhp#par_id3149003.126.help.text
+msgctxt "04060118.xhp#par_id3149003.126.help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "<emph>Price</emph> is the price of the security."
+
+#: 04060118.xhp#par_id3148880.127.help.text
+msgctxt "04060118.xhp#par_id3148880.127.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+
+#: 04060118.xhp#par_id3155622.128.help.text
+msgctxt "04060118.xhp#par_id3155622.128.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#hd_id3145303.129.help.text
+msgctxt "04060118.xhp#hd_id3145303.129.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3145350.130.help.text
+msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgstr "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+
+#: 04060118.xhp#par_id3157990.131.help.text
+msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
+msgstr "The yield of the security, that has an irregular last interest date, is calculated as follows:"
+
+#: 04060118.xhp#par_id3150572.132.help.text
+msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+msgstr "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+
+#: 04060118.xhp#bm_id3148768.help.text
+msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
+msgstr "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3148768.222.help.text
+msgid "VDB"
+msgstr "VDB"
+
+#: 04060118.xhp#par_id3154636.223.help.text
+msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
+
+#: 04060118.xhp#hd_id3155519.224.help.text
+msgctxt "04060118.xhp#hd_id3155519.224.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3149025.225.help.text
+msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
+msgstr "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
+
+#: 04060118.xhp#par_id3150692.226.help.text
+msgid "<emph>Cost</emph> is the initial value of an asset."
+msgstr "<emph>Cost</emph> is the initial value of an asset."
+
+#: 04060118.xhp#par_id3155369.227.help.text
+msgctxt "04060118.xhp#par_id3155369.227.help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+
+#: 04060118.xhp#par_id3154954.228.help.text
+msgid "<emph>Life</emph> is the depreciation duration of the asset."
+msgstr "<emph>Life</emph> is the depreciation duration of the asset."
+
+#: 04060118.xhp#par_id3152817.229.help.text
+msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
+msgstr "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
+
+#: 04060118.xhp#par_id3153221.230.help.text
+msgid "<emph>End</emph> is the end of the depreciation."
+msgstr "<emph>End</emph> is the end of the depreciation."
+
+#: 04060118.xhp#par_id3147536.231.help.text
+msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
+msgstr "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
+
+#: 04060118.xhp#par_id3154865.232.help.text
+msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
+msgstr "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
+
+#: 04060118.xhp#par_idN10A0D.help.text
+msgctxt "04060118.xhp#par_idN10A0D.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp#hd_id3148429.233.help.text
+msgctxt "04060118.xhp#hd_id3148429.233.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3153927.234.help.text
+msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
+msgstr "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
+
+#: 04060118.xhp#par_id3155991.235.help.text
+msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
+msgstr "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
+
+#: 04060118.xhp#bm_id3147485.help.text
+msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
+msgstr "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3147485.193.help.text
+msgid "XIRR"
+msgstr "XIRR"
+
+#: 04060118.xhp#par_id3145614.194.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+
+#: 04060118.xhp#par_idN10E62.help.text
+msgid "If the payments take place at regular intervals, use the IRR function."
+msgstr "If the payments take place at regular intervals, use the IRR function."
+
+#: 04060118.xhp#hd_id3146149.195.help.text
+msgctxt "04060118.xhp#hd_id3146149.195.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3149826.196.help.text
+msgid "XIRR(Values; Dates; Guess)"
+msgstr "XIRR(Values; Dates; Guess)"
+
+#: 04060118.xhp#par_id3163821.197.help.text
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
+msgstr "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
+
+#: 04060118.xhp#par_id3149708.198.help.text
+msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
+msgstr "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
+
+#: 04060118.xhp#hd_id3145085.199.help.text
+msgctxt "04060118.xhp#hd_id3145085.199.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3149273.200.help.text
+msgid "Calculation of the internal rate of return for the following five payments:"
+msgstr "Calculation of the internal rate of return for the following five payments:"
+
+#: 04060118.xhp#par_id3155838.305.help.text
+msgctxt "04060118.xhp#par_id3155838.305.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060118.xhp#par_id3152934.306.help.text
+msgctxt "04060118.xhp#par_id3152934.306.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060118.xhp#par_id3154638.307.help.text
+msgctxt "04060118.xhp#par_id3154638.307.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060118.xhp#par_id3147083.308.help.text
+msgctxt "04060118.xhp#par_id3147083.308.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060118.xhp#par_id3151187.309.help.text
+msgid "2001-01-01"
+msgstr "2001-01-01"
+
+#: 04060118.xhp#par_id3145212.201.help.text
+msgid "-<item type=\"input\">10000</item>"
+msgstr "-<item type=\"input\">10000</item>"
+
+#: 04060118.xhp#par_id3146856.202.help.text
+msgid "<item type=\"input\">Received</item>"
+msgstr "<item type=\"input\">Received</item>"
+
+#: 04060118.xhp#par_id3153277.310.help.text
+msgctxt "04060118.xhp#par_id3153277.310.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060118.xhp#par_id3154052.203.help.text
+msgid "2001-01-02"
+msgstr "2001-01-02"
+
+#: 04060118.xhp#par_id3151297.204.help.text
+msgid "<item type=\"input\">2000</item>"
+msgstr "<item type=\"input\">2000</item>"
+
+#: 04060118.xhp#par_id3149985.205.help.text
+msgid "<item type=\"input\">Deposited</item>"
+msgstr "<item type=\"input\">Deposited</item>"
+
+#: 04060118.xhp#par_id3154744.311.help.text
+msgctxt "04060118.xhp#par_id3154744.311.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060118.xhp#par_id3153151.206.help.text
+msgid "2001-03-15"
+msgstr "2001-03-15"
+
+#: 04060118.xhp#par_id3145657.207.help.text
+msgid "2500"
+msgstr "2500"
+
+#: 04060118.xhp#par_id3155101.312.help.text
+msgctxt "04060118.xhp#par_id3155101.312.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060118.xhp#par_id3146894.208.help.text
+msgid "2001-05-12"
+msgstr "2001-05-12"
+
+#: 04060118.xhp#par_id3143231.209.help.text
+msgid "5000"
+msgstr "5000"
+
+#: 04060118.xhp#par_id3156012.313.help.text
+msgctxt "04060118.xhp#par_id3156012.313.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060118.xhp#par_id3149758.210.help.text
+msgid "2001-08-10"
+msgstr "2001-08-10"
+
+#: 04060118.xhp#par_id3147495.211.help.text
+msgid "1000"
+msgstr "1000"
+
+#: 04060118.xhp#par_id3152793.212.help.text
+msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
+msgstr "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
+
+#: 04060118.xhp#bm_id3149198.help.text
+msgid "<bookmark_value>XNPV function</bookmark_value>"
+msgstr "<bookmark_value>XNPV function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3149198.213.help.text
+msgid "XNPV"
+msgstr "XNPV"
+
+#: 04060118.xhp#par_id3153904.214.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+
+#: 04060118.xhp#par_idN11138.help.text
+msgid "If the payments take place at regular intervals, use the NPV function."
+msgstr "If the payments take place at regular intervals, use the NPV function."
+
+#: 04060118.xhp#hd_id3155323.215.help.text
+msgctxt "04060118.xhp#hd_id3155323.215.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3150117.216.help.text
+msgid "XNPV(Rate; Values; Dates)"
+msgstr "XNPV(Rate; Values; Dates)"
+
+#: 04060118.xhp#par_id3153100.217.help.text
+msgid "<emph>Rate</emph> is the internal rate of return for the payments."
+msgstr "<emph>Rate</emph> is the internal rate of return for the payments."
+
+#: 04060118.xhp#par_id3155395.218.help.text
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
+msgstr "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
+
+#: 04060118.xhp#hd_id3148832.219.help.text
+msgctxt "04060118.xhp#hd_id3148832.219.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3150525.220.help.text
+msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
+msgstr "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
+
+#: 04060118.xhp#par_id3149910.221.help.text
+msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
+msgstr "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
+
+#: 04060118.xhp#bm_id3148822.help.text
+msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
+msgstr "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3148822.237.help.text
+msgid "RRI"
+msgstr "RRI"
+
+#: 04060118.xhp#par_id3154293.238.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
+
+#: 04060118.xhp#hd_id3148444.239.help.text
+msgctxt "04060118.xhp#hd_id3148444.239.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3148804.240.help.text
+msgid "RRI(P; PV; FV)"
+msgstr "RRI(P; PV; FV)"
+
+#: 04060118.xhp#par_id3154901.241.help.text
+msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
+msgstr "<emph>P</emph> is the number of periods needed for calculating the interest rate."
+
+#: 04060118.xhp#par_id3159149.242.help.text
+msgctxt "04060118.xhp#par_id3159149.242.help.text"
+msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+msgstr "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+
+#: 04060118.xhp#par_id3149771.243.help.text
+msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
+msgstr "<emph>FV</emph> determines what is desired as the cash value of the deposit."
+
+#: 04060118.xhp#hd_id3148941.244.help.text
+msgctxt "04060118.xhp#hd_id3148941.244.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3154212.245.help.text
+msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
+msgstr "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
+
+#: 04060118.xhp#par_id3150775.246.help.text
+msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+msgstr "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+
+#: 04060118.xhp#par_id3145413.247.help.text
+msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
+msgstr "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
+
+#: 04060118.xhp#bm_id3154267.help.text
+msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
+msgstr "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3154267.249.help.text
+msgid "RATE"
+msgstr "RATE"
+
+#: 04060118.xhp#par_id3151052.250.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
+
+#: 04060118.xhp#hd_id3154272.251.help.text
+msgctxt "04060118.xhp#hd_id3154272.251.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3158423.252.help.text
+msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
+msgstr "RATE(NPer; Pmt; PV; FV; Type; Guess)"
+
+#: 04060118.xhp#par_id3148910.253.help.text
+msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
+msgstr "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
+
+#: 04060118.xhp#par_id3148925.254.help.text
+msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
+msgstr "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
+
+#: 04060118.xhp#par_id3149160.255.help.text
+msgid "<emph>PV</emph> is the cash value in the sequence of payments."
+msgstr "<emph>PV</emph> is the cash value in the sequence of payments."
+
+#: 04060118.xhp#par_id3166456.256.help.text
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
+msgstr "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
+
+#: 04060118.xhp#par_id3153243.257.help.text
+msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
+msgstr "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
+
+#: 04060118.xhp#par_id3146949.258.help.text
+msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
+msgstr "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
+
+#: 04060118.xhp#par_idN10E2A.help.text
+msgctxt "04060118.xhp#par_idN10E2A.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp#hd_id3149791.259.help.text
+msgctxt "04060118.xhp#hd_id3149791.259.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3150706.260.help.text
+msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
+msgstr "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
+
+#: 04060118.xhp#par_id3155586.261.help.text
+msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
+msgstr "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
+
+#: 04060118.xhp#bm_id3149106.help.text
+msgid "<bookmark_value>INTRATE function</bookmark_value>"
+msgstr "<bookmark_value>INTRATE function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3149106.60.help.text
+msgid "INTRATE"
+msgstr "INTRATE"
+
+#: 04060118.xhp#par_id3149918.61.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
+
+#: 04060118.xhp#hd_id3149974.62.help.text
+msgctxt "04060118.xhp#hd_id3149974.62.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3149800.63.help.text
+msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
+msgstr "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
+
+#: 04060118.xhp#par_id3148618.64.help.text
+msgctxt "04060118.xhp#par_id3148618.64.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3148988.65.help.text
+msgid "<emph>Maturity</emph> is the date on which the security is sold."
+msgstr "<emph>Maturity</emph> is the date on which the security is sold."
+
+#: 04060118.xhp#par_id3154604.66.help.text
+msgid "<emph>Investment</emph> is the purchase price."
+msgstr "<emph>Investment</emph> is the purchase price."
+
+#: 04060118.xhp#par_id3154337.67.help.text
+msgid "<emph>Redemption</emph> is the selling price."
+msgstr "<emph>Redemption</emph> is the selling price."
+
+#: 04060118.xhp#hd_id3145380.68.help.text
+msgctxt "04060118.xhp#hd_id3145380.68.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3149426.69.help.text
+msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
+msgstr "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
+
+#: 04060118.xhp#par_id3151125.70.help.text
+msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+msgstr "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+
+#: 04060118.xhp#bm_id3148654.help.text
+msgid "<bookmark_value>COUPNCD function</bookmark_value>"
+msgstr "<bookmark_value>COUPNCD function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3148654.163.help.text
+msgid "COUPNCD"
+msgstr "COUPNCD"
+
+#: 04060118.xhp#par_id3149927.164.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
+
+#: 04060118.xhp#hd_id3153317.165.help.text
+msgctxt "04060118.xhp#hd_id3153317.165.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3150423.166.help.text
+msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPNCD(Settlement; Maturity; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3150628.167.help.text
+msgctxt "04060118.xhp#par_id3150628.167.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3153536.168.help.text
+msgctxt "04060118.xhp#par_id3153536.168.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3145313.169.help.text
+msgctxt "04060118.xhp#par_id3145313.169.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#hd_id3155424.170.help.text
+msgctxt "04060118.xhp#hd_id3155424.170.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3154794.171.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
+msgstr "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
+
+#: 04060118.xhp#par_id3159251.172.help.text
+msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+msgstr "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+
+#: 04060118.xhp#bm_id3143281.help.text
+msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
+msgstr "<bookmark_value>COUPDAYS function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3143281.143.help.text
+msgid "COUPDAYS"
+msgstr "COUPDAYS"
+
+#: 04060118.xhp#par_id3149488.144.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
+
+#: 04060118.xhp#hd_id3148685.145.help.text
+msgctxt "04060118.xhp#hd_id3148685.145.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3149585.146.help.text
+msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3152767.147.help.text
+msgctxt "04060118.xhp#par_id3152767.147.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3151250.148.help.text
+msgctxt "04060118.xhp#par_id3151250.148.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3146126.149.help.text
+msgctxt "04060118.xhp#par_id3146126.149.help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#hd_id3153705.150.help.text
+msgctxt "04060118.xhp#hd_id3153705.150.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3147530.151.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
+msgstr "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
+
+#: 04060118.xhp#par_id3156338.152.help.text
+msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
+msgstr "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
+
+#: 04060118.xhp#bm_id3154832.help.text
+msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
+msgstr "<bookmark_value>COUPDAYSNC function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3154832.153.help.text
+msgid "COUPDAYSNC"
+msgstr "COUPDAYSNC"
+
+#: 04060118.xhp#par_id3147100.154.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
+
+#: 04060118.xhp#hd_id3151312.155.help.text
+msgctxt "04060118.xhp#hd_id3151312.155.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3155121.156.help.text
+msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3158440.157.help.text
+msgctxt "04060118.xhp#par_id3158440.157.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3146075.158.help.text
+msgctxt "04060118.xhp#par_id3146075.158.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3154620.159.help.text
+msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#hd_id3155604.160.help.text
+msgctxt "04060118.xhp#hd_id3155604.160.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3148671.161.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
+msgstr "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
+
+#: 04060118.xhp#par_id3156158.162.help.text
+msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
+msgstr "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
+
+#: 04060118.xhp#bm_id3150408.help.text
+msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
+msgstr "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
+
+#: 04060118.xhp#hd_id3150408.133.help.text
+msgid "COUPDAYBS"
+msgstr "COUPDAYBS"
+
+#: 04060118.xhp#par_id3146795.134.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
+
+#: 04060118.xhp#hd_id3156142.135.help.text
+msgctxt "04060118.xhp#hd_id3156142.135.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3159083.136.help.text
+msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3146907.137.help.text
+msgctxt "04060118.xhp#par_id3146907.137.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3159390.138.help.text
+msgctxt "04060118.xhp#par_id3159390.138.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3154414.139.help.text
+msgctxt "04060118.xhp#par_id3154414.139.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#hd_id3153880.140.help.text
+msgctxt "04060118.xhp#hd_id3153880.140.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3150592.141.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
+msgstr "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
+
+#: 04060118.xhp#par_id3151103.142.help.text
+msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
+msgstr "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
+
+#: 04060118.xhp#bm_id3152957.help.text
+msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
+msgstr "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
+
+#: 04060118.xhp#hd_id3152957.183.help.text
+msgid "COUPPCD"
+msgstr "COUPPCD"
+
+#: 04060118.xhp#par_id3153678.184.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
+
+#: 04060118.xhp#hd_id3156269.185.help.text
+msgctxt "04060118.xhp#hd_id3156269.185.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3153790.186.help.text
+msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPPCD(Settlement; Maturity; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3150989.187.help.text
+msgctxt "04060118.xhp#par_id3150989.187.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3154667.188.help.text
+msgctxt "04060118.xhp#par_id3154667.188.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3154569.189.help.text
+msgctxt "04060118.xhp#par_id3154569.189.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#hd_id3150826.190.help.text
+msgctxt "04060118.xhp#hd_id3150826.190.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3148968.191.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
+msgstr "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
+
+#: 04060118.xhp#par_id3149992.192.help.text
+msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+msgstr "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+
+#: 04060118.xhp#bm_id3150673.help.text
+msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
+msgstr "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
+
+#: 04060118.xhp#hd_id3150673.173.help.text
+msgid "COUPNUM"
+msgstr "COUPNUM"
+
+#: 04060118.xhp#par_id3154350.174.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
+
+#: 04060118.xhp#hd_id3148400.175.help.text
+msgctxt "04060118.xhp#hd_id3148400.175.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3153200.176.help.text
+msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
+msgstr "COUPNUM(Settlement; Maturity; Frequency; Basis)"
+
+#: 04060118.xhp#par_id3159406.177.help.text
+msgctxt "04060118.xhp#par_id3159406.177.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060118.xhp#par_id3155864.178.help.text
+msgctxt "04060118.xhp#par_id3155864.178.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060118.xhp#par_id3154720.179.help.text
+msgctxt "04060118.xhp#par_id3154720.179.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+
+#: 04060118.xhp#hd_id3149319.180.help.text
+msgctxt "04060118.xhp#hd_id3149319.180.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3152460.181.help.text
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
+msgstr "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
+
+#: 04060118.xhp#par_id3150640.182.help.text
+msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+msgstr "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+
+#: 04060118.xhp#bm_id3149339.help.text
+msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
+msgstr "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
+
+#: 04060118.xhp#hd_id3149339.263.help.text
+msgid "IPMT"
+msgstr "IPMT"
+
+#: 04060118.xhp#par_id3154522.264.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
+
+#: 04060118.xhp#hd_id3153266.265.help.text
+msgctxt "04060118.xhp#hd_id3153266.265.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3151283.266.help.text
+msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr "IPMT(Rate; Period; NPer; PV; FV; Type)"
+
+#: 04060118.xhp#par_id3147313.267.help.text
+msgctxt "04060118.xhp#par_id3147313.267.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 04060118.xhp#par_id3145158.268.help.text
+msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+
+#: 04060118.xhp#par_id3147577.269.help.text
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+
+#: 04060118.xhp#par_id3156211.270.help.text
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr "<emph>PV</emph> is the present cash value in sequence of payments."
+
+#: 04060118.xhp#par_id3151213.271.help.text
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+
+#: 04060118.xhp#par_id3154195.272.help.text
+msgid "<emph>Type</emph> is the due date for the periodic payments."
+msgstr "<emph>Type</emph> is the due date for the periodic payments."
+
+#: 04060118.xhp#hd_id3150102.273.help.text
+msgctxt "04060118.xhp#hd_id3150102.273.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3149438.274.help.text
+msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
+msgstr "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
+
+#: 04060118.xhp#par_id3150496.275.help.text
+msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+
+#: 04060118.xhp#bm_id3151205.help.text
+msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
+msgstr "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3151205.277.help.text
+msgid "FV"
+msgstr "FV"
+
+#: 04060118.xhp#par_id3154140.278.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
+
+#: 04060118.xhp#hd_id3155178.279.help.text
+msgctxt "04060118.xhp#hd_id3155178.279.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3145215.280.help.text
+msgid "FV(Rate; NPer; Pmt; PV; Type)"
+msgstr "FV(Rate; NPer; Pmt; PV; Type)"
+
+#: 04060118.xhp#par_id3155136.281.help.text
+msgctxt "04060118.xhp#par_id3155136.281.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 04060118.xhp#par_id3156029.282.help.text
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "<emph>NPer</emph> is the total number of periods (payment period)."
+
+#: 04060118.xhp#par_id3151322.283.help.text
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr "<emph>Pmt</emph> is the annuity paid regularly per period."
+
+#: 04060118.xhp#par_id3145256.284.help.text
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+
+#: 04060118.xhp#par_id3150999.285.help.text
+msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+
+#: 04060118.xhp#par_idN114D8.help.text
+msgctxt "04060118.xhp#par_idN114D8.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp#hd_id3146800.286.help.text
+msgctxt "04060118.xhp#hd_id3146800.286.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3146813.287.help.text
+msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
+msgstr "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
+
+#: 04060118.xhp#par_id3149302.288.help.text
+msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+
+#: 04060118.xhp#bm_id3155912.help.text
+msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
+msgstr "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
+
+#: 04060118.xhp#hd_id3155912.51.help.text
+msgid "FVSCHEDULE"
+msgstr "FVSCHEDULE"
+
+#: 04060118.xhp#par_id3163726.52.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
+
+#: 04060118.xhp#hd_id3149571.53.help.text
+msgctxt "04060118.xhp#hd_id3149571.53.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3148891.54.help.text
+msgid "FVSCHEDULE(Principal; Schedule)"
+msgstr "FVSCHEDULE(Principal; Schedule)"
+
+#: 04060118.xhp#par_id3148904.55.help.text
+msgid "<emph>Principal</emph> is the starting capital."
+msgstr "<emph>Principal</emph> is the starting capital."
+
+#: 04060118.xhp#par_id3148562.56.help.text
+msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
+msgstr "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
+
+#: 04060118.xhp#hd_id3147288.57.help.text
+msgctxt "04060118.xhp#hd_id3147288.57.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3148638.58.help.text
+msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
+msgstr "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
+
+#: 04060118.xhp#par_id3156358.59.help.text
+msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+msgstr "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+
+#: 04060118.xhp#bm_id3156435.help.text
+msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
+msgstr "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
+
+#: 04060118.xhp#hd_id3156435.290.help.text
+msgid "NPER"
+msgstr "NPER"
+
+#: 04060118.xhp#par_id3152363.291.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
+
+#: 04060118.xhp#hd_id3147216.292.help.text
+msgctxt "04060118.xhp#hd_id3147216.292.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060118.xhp#par_id3155934.293.help.text
+msgid "NPER(Rate; Pmt; PV; FV; Type)"
+msgstr "NPER(Rate; Pmt; PV; FV; Type)"
+
+#: 04060118.xhp#par_id3155946.294.help.text
+msgctxt "04060118.xhp#par_id3155946.294.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 04060118.xhp#par_id3149042.295.help.text
+msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
+msgstr "<emph>Pmt</emph> is the constant annuity paid in each period."
+
+#: 04060118.xhp#par_id3153134.296.help.text
+msgctxt "04060118.xhp#par_id3153134.296.help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+
+#: 04060118.xhp#par_id3154398.297.help.text
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
+msgstr "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
+
+#: 04060118.xhp#par_id3145127.298.help.text
+msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
+msgstr "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
+
+#: 04060118.xhp#par_idN1166C.help.text
+msgctxt "04060118.xhp#par_idN1166C.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060118.xhp#hd_id3155795.299.help.text
+msgctxt "04060118.xhp#hd_id3155795.299.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060118.xhp#par_id3147378.300.help.text
+msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
+msgstr "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
+
+#: 04060118.xhp#par_id3156171.301.help.text
+msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
+msgstr "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
+
+#: 04060118.xhp#par_id3150309.314.help.text
+msgctxt "04060118.xhp#par_id3150309.314.help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+
+#: 04060118.xhp#par_id3153163.315.help.text
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
+
+#: 04060184.xhp#tit.help.text
+msgid "Statistical Functions Part Four"
+msgstr "Statistical Functions Part Four"
+
+#: 04060184.xhp#hd_id3153415.1.help.text
+msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
+msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
+
+#: 04060184.xhp#bm_id3154511.help.text
+msgid "<bookmark_value>MAX function</bookmark_value>"
+msgstr "<bookmark_value>MAX function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3154511.2.help.text
+msgctxt "04060184.xhp#hd_id3154511.2.help.text"
+msgid "MAX"
+msgstr "MAX"
+
+#: 04060184.xhp#par_id3153709.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
+
+#: 04060184.xhp#par_id9282509.help.text
+msgctxt "04060184.xhp#par_id9282509.help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+
+#: 04060184.xhp#hd_id3154256.4.help.text
+msgctxt "04060184.xhp#hd_id3154256.4.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3147340.5.help.text
+msgid "MAX(Number1; Number2; ...Number30)"
+msgstr "MAX(Number1; Number2; ...Number30)"
+
+#: 04060184.xhp#par_id3149568.6.help.text
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges. "
+msgstr "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges. "
+
+#: 04060184.xhp#hd_id3153963.7.help.text
+msgctxt "04060184.xhp#hd_id3153963.7.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3147343.8.help.text
+msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
+
+#: 04060184.xhp#par_id3148485.9.help.text
+msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
+
+#: 04060184.xhp#bm_id3166426.help.text
+msgid "<bookmark_value>MAXA function</bookmark_value>"
+msgstr "<bookmark_value>MAXA function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3166426.139.help.text
+msgid "MAXA"
+msgstr "MAXA"
+
+#: 04060184.xhp#par_id3150363.140.help.text
+msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
+
+#: 04060184.xhp#par_id7689443.help.text
+msgctxt "04060184.xhp#par_id7689443.help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+
+#: 04060184.xhp#hd_id3150516.141.help.text
+msgctxt "04060184.xhp#hd_id3150516.141.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3166431.142.help.text
+msgid "MAXA(Value1; Value2; ... Value30)"
+msgstr "MAXA(Value1; Value2; ... Value30)"
+
+#: 04060184.xhp#par_id3150202.143.help.text
+msgctxt "04060184.xhp#par_id3150202.143.help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+
+#: 04060184.xhp#hd_id3156290.144.help.text
+msgctxt "04060184.xhp#hd_id3156290.144.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3156446.145.help.text
+msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
+
+#: 04060184.xhp#par_id3149404.146.help.text
+msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+msgstr "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+
+#: 04060184.xhp#bm_id3153820.help.text
+msgid "<bookmark_value>MEDIAN function</bookmark_value>"
+msgstr "<bookmark_value>MEDIAN function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153820.11.help.text
+msgid "MEDIAN"
+msgstr "MEDIAN"
+
+#: 04060184.xhp#par_id3151241.12.help.text
+msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
+
+#: 04060184.xhp#hd_id3148871.13.help.text
+msgctxt "04060184.xhp#hd_id3148871.13.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3155264.14.help.text
+msgid "MEDIAN(Number1; Number2; ...Number30)"
+msgstr "MEDIAN(Number1; Number2; ...Number30)"
+
+#: 04060184.xhp#par_id3150109.15.help.text
+msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
+msgstr "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
+
+#: 04060184.xhp#hd_id3144506.16.help.text
+msgctxt "04060184.xhp#hd_id3144506.16.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3145078.17.help.text
+msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
+msgstr "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
+
+#: 04060184.xhp#par_id3149126.165.help.text
+msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
+msgstr "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
+
+#: 04060184.xhp#bm_id3154541.help.text
+msgid "<bookmark_value>MIN function</bookmark_value>"
+msgstr "<bookmark_value>MIN function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3154541.19.help.text
+msgctxt "04060184.xhp#hd_id3154541.19.help.text"
+msgid "MIN"
+msgstr "MIN"
+
+#: 04060184.xhp#par_id3143222.20.help.text
+msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
+
+#: 04060184.xhp#par_id2301400.help.text
+msgctxt "04060184.xhp#par_id2301400.help.text"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+
+#: 04060184.xhp#hd_id3154651.21.help.text
+msgctxt "04060184.xhp#hd_id3154651.21.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3146964.22.help.text
+msgid "MIN(Number1; Number2; ...Number30)"
+msgstr "MIN(Number1; Number2; ...Number30)"
+
+#: 04060184.xhp#par_id3153486.23.help.text
+msgctxt "04060184.xhp#par_id3153486.23.help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+
+#: 04060184.xhp#hd_id3155523.24.help.text
+msgctxt "04060184.xhp#hd_id3155523.24.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3154734.25.help.text
+msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgstr "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+
+#: 04060184.xhp#bm_id3147504.help.text
+msgid "<bookmark_value>MINA function</bookmark_value>"
+msgstr "<bookmark_value>MINA function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3147504.148.help.text
+msgid "MINA"
+msgstr "MINA"
+
+#: 04060184.xhp#par_id3147249.149.help.text
+msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
+
+#: 04060184.xhp#par_id4294564.help.text
+msgctxt "04060184.xhp#par_id4294564.help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+
+#: 04060184.xhp#hd_id3150435.150.help.text
+msgctxt "04060184.xhp#hd_id3150435.150.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3153336.151.help.text
+msgid "MINA(Value1; Value2; ... Value30)"
+msgstr "MINA(Value1; Value2; ... Value30)"
+
+#: 04060184.xhp#par_id3146098.152.help.text
+msgctxt "04060184.xhp#par_id3146098.152.help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+
+#: 04060184.xhp#hd_id3148743.153.help.text
+msgctxt "04060184.xhp#hd_id3148743.153.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3147401.154.help.text
+msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+msgstr "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+
+#: 04060184.xhp#par_id3147295.155.help.text
+msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
+msgstr "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
+
+#: 04060184.xhp#bm_id3166465.help.text
+msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
+msgstr "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
+
+#: 04060184.xhp#hd_id3166465.27.help.text
+msgid "AVEDEV"
+msgstr "AVEDEV"
+
+#: 04060184.xhp#par_id3150373.28.help.text
+msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
+msgstr "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
+
+#: 04060184.xhp#hd_id3150038.29.help.text
+msgctxt "04060184.xhp#hd_id3150038.29.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3145636.30.help.text
+msgid "AVEDEV(Number1; Number2; ...Number30)"
+msgstr "AVEDEV(Number1; Number2; ...Number30)"
+
+#: 04060184.xhp#par_id3157871.31.help.text
+msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
+msgstr "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
+
+#: 04060184.xhp#hd_id3149725.32.help.text
+msgctxt "04060184.xhp#hd_id3149725.32.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3153122.33.help.text
+msgid " <item type=\"input\">=AVEDEV(A1:A50)</item> "
+msgstr " <item type=\"input\">=AVEDEV(A1:A50)</item> "
+
+#: 04060184.xhp#bm_id3145824.help.text
+msgid "<bookmark_value>AVERAGE function</bookmark_value>"
+msgstr "<bookmark_value>AVERAGE function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3145824.35.help.text
+msgctxt "04060184.xhp#hd_id3145824.35.help.text"
+msgid "AVERAGE"
+msgstr "AVERAGE"
+
+#: 04060184.xhp#par_id3150482.36.help.text
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
+
+#: 04060184.xhp#hd_id3146943.37.help.text
+msgctxt "04060184.xhp#hd_id3146943.37.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3154679.38.help.text
+msgid "AVERAGE(Number1; Number2; ...Number30)"
+msgstr "AVERAGE(Number1; Number2; ...Number30)"
+
+#: 04060184.xhp#par_id3150741.39.help.text
+msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+msgstr "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+
+#: 04060184.xhp#hd_id3153039.40.help.text
+msgctxt "04060184.xhp#hd_id3153039.40.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3151232.41.help.text
+msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+msgstr "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+
+#: 04060184.xhp#bm_id3148754.help.text
+msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
+msgstr "<bookmark_value>AVERAGEA function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3148754.157.help.text
+msgid "AVERAGEA"
+msgstr "AVERAGEA"
+
+#: 04060184.xhp#par_id3145138.158.help.text
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
+
+#: 04060184.xhp#hd_id3153326.159.help.text
+msgctxt "04060184.xhp#hd_id3153326.159.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3149734.160.help.text
+msgid "AVERAGEA(Value1; Value2; ... Value30)"
+msgstr "AVERAGEA(Value1; Value2; ... Value30)"
+
+#: 04060184.xhp#par_id3155260.161.help.text
+msgctxt "04060184.xhp#par_id3155260.161.help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+
+#: 04060184.xhp#hd_id3149504.162.help.text
+msgctxt "04060184.xhp#hd_id3149504.162.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3150864.163.help.text
+msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgstr "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+
+#: 04060184.xhp#bm_id3153933.help.text
+msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153933.43.help.text
+msgid "MODE"
+msgstr "MODE"
+
+#: 04060184.xhp#par_id3153085.44.help.text
+msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
+msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
+
+#: 04060184.xhp#hd_id3153003.45.help.text
+msgctxt "04060184.xhp#hd_id3153003.45.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3155950.46.help.text
+msgid "MODE(Number1; Number2; ...Number30)"
+msgstr "MODE(Number1; Number2; ...Number30)"
+
+#: 04060184.xhp#par_id3150337.47.help.text
+msgctxt "04060184.xhp#par_id3150337.47.help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+
+#: 04060184.xhp#hd_id3153571.48.help.text
+msgctxt "04060184.xhp#hd_id3153571.48.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3153733.49.help.text
+msgid "<item type=\"input\">=MODE(A1:A50)</item>"
+msgstr "<item type=\"input\">=MODE(A1:A50)</item>"
+
+#: 04060184.xhp#bm_id3149879.help.text
+msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+msgstr "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+
+#: 04060184.xhp#hd_id3149879.51.help.text
+msgid "NEGBINOMDIST"
+msgstr "NEGBINOMDIST"
+
+#: 04060184.xhp#par_id3155437.52.help.text
+msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+
+#: 04060184.xhp#hd_id3145351.53.help.text
+msgctxt "04060184.xhp#hd_id3145351.53.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3150935.54.help.text
+msgid "NEGBINOMDIST(X; R; SP)"
+msgstr "NEGBINOMDIST(X; R; SP)"
+
+#: 04060184.xhp#par_id3153044.55.help.text
+msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgstr "<emph>X</emph> represents the value returned for unsuccessful tests."
+
+#: 04060184.xhp#par_id3151018.56.help.text
+msgid "<emph>R</emph> represents the value returned for successful tests."
+msgstr "<emph>R</emph> represents the value returned for successful tests."
+
+#: 04060184.xhp#par_id3148878.57.help.text
+msgid "<emph>SP</emph> is the probability of the success of an attempt."
+msgstr "<emph>SP</emph> is the probability of the success of an attempt."
+
+#: 04060184.xhp#hd_id3149539.58.help.text
+msgctxt "04060184.xhp#hd_id3149539.58.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3148770.59.help.text
+msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+msgstr "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+
+#: 04060184.xhp#bm_id3155516.help.text
+msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+msgstr "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+
+#: 04060184.xhp#hd_id3155516.61.help.text
+msgid "NORMINV"
+msgstr "NORMINV"
+
+#: 04060184.xhp#par_id3154634.62.help.text
+msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+
+#: 04060184.xhp#hd_id3153227.63.help.text
+msgctxt "04060184.xhp#hd_id3153227.63.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3147534.64.help.text
+msgid "NORMINV(Number; Mean; StDev)"
+msgstr "NORMINV(Number; Mean; StDev)"
+
+#: 04060184.xhp#par_id3154950.65.help.text
+msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+msgstr "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+
+#: 04060184.xhp#par_id3150690.66.help.text
+msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
+msgstr "<emph>Mean</emph> represents the mean value in the normal distribution."
+
+#: 04060184.xhp#par_id3148594.67.help.text
+msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+msgstr "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+
+#: 04060184.xhp#hd_id3155822.68.help.text
+msgctxt "04060184.xhp#hd_id3155822.68.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3153921.69.help.text
+msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
+msgstr "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
+
+#: 04060184.xhp#bm_id3153722.help.text
+msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgstr "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153722.71.help.text
+msgid "NORMDIST"
+msgstr "NORMDIST"
+
+#: 04060184.xhp#par_id3150386.72.help.text
+msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
+
+#: 04060184.xhp#hd_id3083282.73.help.text
+msgctxt "04060184.xhp#hd_id3083282.73.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3150613.74.help.text
+msgid "NORMDIST(Number; Mean; StDev; C)"
+msgstr "NORMDIST(Number; Mean; StDev; C)"
+
+#: 04060184.xhp#par_id3149820.75.help.text
+msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
+msgstr "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
+
+#: 04060184.xhp#par_id3146063.76.help.text
+msgid "<emph>Mean</emph> is the mean value of the distribution."
+msgstr "<emph>Mean</emph> is the mean value of the distribution."
+
+#: 04060184.xhp#par_id3156295.77.help.text
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr "<emph>StDev</emph> is the standard deviation of the distribution."
+
+#: 04060184.xhp#par_id3145080.78.help.text
+msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
+msgstr "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
+
+#: 04060184.xhp#hd_id3152972.79.help.text
+msgctxt "04060184.xhp#hd_id3152972.79.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3149283.80.help.text
+msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+msgstr "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+
+#: 04060184.xhp#par_id3149448.81.help.text
+msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+msgstr "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+
+#: 04060184.xhp#bm_id3152934.help.text
+msgid "<bookmark_value>PEARSON function</bookmark_value>"
+msgstr "<bookmark_value>PEARSON function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3152934.83.help.text
+msgid "PEARSON"
+msgstr "PEARSON"
+
+#: 04060184.xhp#par_id3153216.84.help.text
+msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
+
+#: 04060184.xhp#hd_id3147081.85.help.text
+msgctxt "04060184.xhp#hd_id3147081.85.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3156133.86.help.text
+msgid "PEARSON(Data1; Data2)"
+msgstr "PEARSON(Data1; Data2)"
+
+#: 04060184.xhp#par_id3151272.87.help.text
+msgid "<emph>Data1</emph> represents the array of the first data set."
+msgstr "<emph>Data1</emph> represents the array of the first data set."
+
+#: 04060184.xhp#par_id3153279.88.help.text
+msgid "<emph>Data2</emph> represents the array of the second data set."
+msgstr "<emph>Data2</emph> represents the array of the second data set."
+
+#: 04060184.xhp#hd_id3147567.89.help.text
+msgctxt "04060184.xhp#hd_id3147567.89.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3151187.90.help.text
+msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
+msgstr "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
+
+#: 04060184.xhp#bm_id3152806.help.text
+msgid "<bookmark_value>PHI function</bookmark_value>"
+msgstr "<bookmark_value>PHI function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3152806.92.help.text
+msgid "PHI"
+msgstr "PHI"
+
+#: 04060184.xhp#par_id3150254.93.help.text
+msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
+
+#: 04060184.xhp#hd_id3154748.94.help.text
+msgctxt "04060184.xhp#hd_id3154748.94.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3149976.95.help.text
+msgid "PHI(Number)"
+msgstr "PHI(Number)"
+
+#: 04060184.xhp#par_id3156108.96.help.text
+msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
+msgstr "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
+
+#: 04060184.xhp#hd_id3153621.97.help.text
+msgctxt "04060184.xhp#hd_id3153621.97.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3155849.98.help.text
+msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgstr "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+
+#: 04060184.xhp#par_id3143236.99.help.text
+msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgstr "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+
+#: 04060184.xhp#par_id3149286.100.help.text
+msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgstr "<item type=\"input\">=PHI(0)</item> = 0.4"
+
+#: 04060184.xhp#bm_id3153985.help.text
+msgid "<bookmark_value>POISSON function</bookmark_value>"
+msgstr "<bookmark_value>POISSON function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153985.102.help.text
+msgid "POISSON"
+msgstr "POISSON"
+
+#: 04060184.xhp#par_id3154298.103.help.text
+msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+
+#: 04060184.xhp#hd_id3159183.104.help.text
+msgctxt "04060184.xhp#hd_id3159183.104.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3146093.105.help.text
+msgid "POISSON(Number; Mean; C)"
+msgstr "POISSON(Number; Mean; C)"
+
+#: 04060184.xhp#par_id3147253.106.help.text
+msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+msgstr "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+
+#: 04060184.xhp#par_id3151177.107.help.text
+msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+msgstr "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+
+#: 04060184.xhp#par_id3149200.108.help.text
+msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
+msgstr "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
+
+#: 04060184.xhp#hd_id3159347.109.help.text
+msgctxt "04060184.xhp#hd_id3159347.109.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3150113.110.help.text
+msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+msgstr "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+
+#: 04060184.xhp#bm_id3153100.help.text
+msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
+msgstr "<bookmark_value>PERCENTILE function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3153100.112.help.text
+msgid "PERCENTILE"
+msgstr "PERCENTILE"
+
+#: 04060184.xhp#par_id3154940.113.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
+msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
+
+#: 04060184.xhp#hd_id3150531.114.help.text
+msgctxt "04060184.xhp#hd_id3150531.114.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3148813.115.help.text
+msgid "PERCENTILE(Data; Alpha)"
+msgstr "PERCENTILE(Data; Alpha)"
+
+#: 04060184.xhp#par_id3153054.116.help.text
+msgid "<emph>Data</emph> represents the array of data."
+msgstr "<emph>Data</emph> represents the array of data."
+
+#: 04060184.xhp#par_id3154212.117.help.text
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgstr "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+
+#: 04060184.xhp#hd_id3154290.118.help.text
+msgctxt "04060184.xhp#hd_id3154290.118.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3159147.119.help.text
+msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
+msgstr "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
+
+#: 04060184.xhp#bm_id3148807.help.text
+msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
+msgstr "<bookmark_value>PERCENTRANK function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3148807.121.help.text
+msgid "PERCENTRANK"
+msgstr "PERCENTRANK"
+
+#: 04060184.xhp#par_id3153573.122.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
+
+#: 04060184.xhp#hd_id3147512.123.help.text
+msgctxt "04060184.xhp#hd_id3147512.123.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3147238.124.help.text
+msgid "PERCENTRANK(Data; Value)"
+msgstr "PERCENTRANK(Data; Value)"
+
+#: 04060184.xhp#par_id3154266.125.help.text
+msgctxt "04060184.xhp#par_id3154266.125.help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "<emph>Data</emph> represents the array of data in the sample."
+
+#: 04060184.xhp#par_id3148475.126.help.text
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgstr "<emph>Value</emph> represents the value whose percentile rank must be determined."
+
+#: 04060184.xhp#hd_id3155364.127.help.text
+msgctxt "04060184.xhp#hd_id3155364.127.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3149163.128.help.text
+msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
+msgstr "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
+
+#: 04060184.xhp#bm_id3166442.help.text
+msgid "<bookmark_value>QUARTILE function</bookmark_value>"
+msgstr "<bookmark_value>QUARTILE function</bookmark_value>"
+
+#: 04060184.xhp#hd_id3166442.130.help.text
+msgid "QUARTILE"
+msgstr "QUARTILE"
+
+#: 04060184.xhp#par_id3146958.131.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
+
+#: 04060184.xhp#hd_id3152942.132.help.text
+msgctxt "04060184.xhp#hd_id3152942.132.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060184.xhp#par_id3153684.133.help.text
+msgid "QUARTILE(Data; Type)"
+msgstr "QUARTILE(Data; Type)"
+
+#: 04060184.xhp#par_id3153387.134.help.text
+msgctxt "04060184.xhp#par_id3153387.134.help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "<emph>Data</emph> represents the array of data in the sample."
+
+#: 04060184.xhp#par_id3155589.135.help.text
+msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
+msgstr "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
+
+#: 04060184.xhp#hd_id3149103.136.help.text
+msgctxt "04060184.xhp#hd_id3149103.136.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060184.xhp#par_id3159276.137.help.text
+msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
+msgstr "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
+
+#: 04060182.xhp#tit.help.text
+msgid "Statistical Functions Part Two"
+msgstr "Statistical Functions Part Two"
+
+#: 04060182.xhp#hd_id3154372.1.help.text
+msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
+msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
+
+#: 04060182.xhp#bm_id3145388.help.text
+msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
+msgstr "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
+
+#: 04060182.xhp#hd_id3145388.2.help.text
+msgid "FINV"
+msgstr "FINV"
+
+#: 04060182.xhp#par_id3155089.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
+msgstr "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
+
+#: 04060182.xhp#hd_id3153816.4.help.text
+msgctxt "04060182.xhp#hd_id3153816.4.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3153068.5.help.text
+msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
+
+#: 04060182.xhp#par_id3146866.6.help.text
+msgid " <emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+msgstr " <emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+
+#: 04060182.xhp#par_id3153914.7.help.text
+msgid " <emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+msgstr " <emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+
+#: 04060182.xhp#par_id3148607.8.help.text
+msgid " <emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+msgstr " <emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+
+#: 04060182.xhp#hd_id3156021.9.help.text
+msgctxt "04060182.xhp#hd_id3156021.9.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3145073.10.help.text
+msgid " <item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+msgstr " <item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+
+#: 04060182.xhp#bm_id3150888.help.text
+msgid "<bookmark_value>FISHER function</bookmark_value>"
+msgstr "<bookmark_value>FISHER function</bookmark_value>"
+
+#: 04060182.xhp#hd_id3150888.12.help.text
+msgid "FISHER"
+msgstr "FISHER"
+
+#: 04060182.xhp#par_id3155384.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+
+#: 04060182.xhp#hd_id3149898.14.help.text
+msgctxt "04060182.xhp#hd_id3149898.14.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3143220.15.help.text
+msgid "FISHER(Number)"
+msgstr "FISHER(Number)"
+
+#: 04060182.xhp#par_id3159228.16.help.text
+msgid " <emph>Number</emph> is the value to be transformed."
+msgstr " <emph>Number</emph> is the value to be transformed."
+
+#: 04060182.xhp#hd_id3154763.17.help.text
+msgctxt "04060182.xhp#hd_id3154763.17.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3149383.18.help.text
+msgid " <item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+msgstr " <item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+
+#: 04060182.xhp#bm_id3155758.help.text
+msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
+msgstr "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
+
+#: 04060182.xhp#hd_id3155758.20.help.text
+msgid "FISHERINV"
+msgstr "FISHERINV"
+
+#: 04060182.xhp#par_id3154734.21.help.text
+msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+
+#: 04060182.xhp#hd_id3155755.22.help.text
+msgctxt "04060182.xhp#hd_id3155755.22.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3146108.23.help.text
+msgid "FISHERINV(Number)"
+msgstr "FISHERINV(Number)"
+
+#: 04060182.xhp#par_id3145115.24.help.text
+msgid " <emph>Number</emph> is the value that is to undergo reverse-transformation."
+msgstr " <emph>Number</emph> is the value that is to undergo reverse-transformation."
+
+#: 04060182.xhp#hd_id3155744.25.help.text
+msgctxt "04060182.xhp#hd_id3155744.25.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3150432.26.help.text
+msgid " <item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+msgstr " <item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+
+#: 04060182.xhp#bm_id3151390.help.text
+msgid "<bookmark_value>FTEST function</bookmark_value>"
+msgstr "<bookmark_value>FTEST function</bookmark_value>"
+
+#: 04060182.xhp#hd_id3151390.28.help.text
+msgid "FTEST"
+msgstr "FTEST"
+
+#: 04060182.xhp#par_id3150534.29.help.text
+msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
+
+#: 04060182.xhp#hd_id3166466.30.help.text
+msgctxt "04060182.xhp#hd_id3166466.30.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3153024.31.help.text
+msgid "FTEST(Data1; Data2)"
+msgstr "FTEST(Data1; Data2)"
+
+#: 04060182.xhp#par_id3150032.32.help.text
+msgid " <emph>Data1</emph> is the first record array."
+msgstr " <emph>Data1</emph> is the first record array."
+
+#: 04060182.xhp#par_id3153018.33.help.text
+msgid " <emph>Data2</emph> is the second record array."
+msgstr " <emph>Data2</emph> is the second record array."
+
+#: 04060182.xhp#hd_id3153123.34.help.text
+msgctxt "04060182.xhp#hd_id3153123.34.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3159126.35.help.text
+msgid " <item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
+msgstr " <item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
+
+#: 04060182.xhp#bm_id3150372.help.text
+msgid "<bookmark_value>FDIST function</bookmark_value>"
+msgstr "<bookmark_value>FDIST function</bookmark_value>"
+
+#: 04060182.xhp#hd_id3150372.37.help.text
+msgid "FDIST"
+msgstr "FDIST"
+
+#: 04060182.xhp#par_id3152981.38.help.text
+msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
+
+#: 04060182.xhp#hd_id3150484.39.help.text
+msgctxt "04060182.xhp#hd_id3150484.39.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3145826.40.help.text
+msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
+msgstr "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
+
+#: 04060182.xhp#par_id3150461.41.help.text
+msgid " <emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr " <emph>Number</emph> is the value for which the F distribution is to be calculated."
+
+#: 04060182.xhp#par_id3150029.42.help.text
+msgid " <emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr " <emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+
+#: 04060182.xhp#par_id3146877.43.help.text
+msgid " <emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr " <emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+
+#: 04060182.xhp#hd_id3147423.44.help.text
+msgctxt "04060182.xhp#hd_id3147423.44.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3150696.45.help.text
+msgid " <item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+msgstr " <item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+
+#: 04060182.xhp#bm_id0119200903223192.help.text
+msgid "<bookmark_value>GAMMA function</bookmark_value>"
+msgstr "<bookmark_value>GAMMA function</bookmark_value>"
+
+#: 04060182.xhp#hd_id0119200903205393.help.text
+msgid "GAMMA"
+msgstr "GAMMA"
+
+#: 04060182.xhp#par_id0119200903205379.help.text
+msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
+msgstr "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
+
+#: 04060182.xhp#hd_id0119200903271613.help.text
+msgctxt "04060182.xhp#hd_id0119200903271613.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id0119200903271614.help.text
+msgid " <emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+msgstr " <emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+
+#: 04060182.xhp#bm_id3154841.help.text
+msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
+msgstr "<bookmark_value>GAMMAINV function</bookmark_value>"
+
+#: 04060182.xhp#hd_id3154841.47.help.text
+msgid "GAMMAINV"
+msgstr "GAMMAINV"
+
+#: 04060182.xhp#par_id3153932.48.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
+
+#: 04060182.xhp#hd_id3149949.49.help.text
+msgctxt "04060182.xhp#hd_id3149949.49.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3155828.50.help.text
+msgid "GAMMAINV(Number; Alpha; Beta)"
+msgstr "GAMMAINV(Number; Alpha; Beta)"
+
+#: 04060182.xhp#par_id3145138.51.help.text
+msgid " <emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+msgstr " <emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+
+#: 04060182.xhp#par_id3152785.52.help.text
+msgctxt "04060182.xhp#par_id3152785.52.help.text"
+msgid " <emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr " <emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+
+#: 04060182.xhp#par_id3154561.53.help.text
+msgid " <emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr " <emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+
+#: 04060182.xhp#hd_id3148734.54.help.text
+msgctxt "04060182.xhp#hd_id3148734.54.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3153331.55.help.text
+msgid " <item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+msgstr " <item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+
+#: 04060182.xhp#bm_id3154806.help.text
+msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+msgstr "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+
+#: 04060182.xhp#hd_id3154806.57.help.text
+msgid "GAMMALN"
+msgstr "GAMMALN"
+
+#: 04060182.xhp#par_id3148572.58.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
+
+#: 04060182.xhp#hd_id3152999.59.help.text
+msgctxt "04060182.xhp#hd_id3152999.59.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3153112.60.help.text
+msgid "GAMMALN(Number)"
+msgstr "GAMMALN(Number)"
+
+#: 04060182.xhp#par_id3154502.61.help.text
+msgid " <emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
+msgstr " <emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
+
+#: 04060182.xhp#hd_id3153568.62.help.text
+msgctxt "04060182.xhp#hd_id3153568.62.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3153730.63.help.text
+msgid " <item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgstr " <item type=\"input\">=GAMMALN(2)</item> yields 0."
+
+#: 04060182.xhp#bm_id3150132.help.text
+msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
+msgstr "<bookmark_value>GAMMADIST function</bookmark_value>"
+
+#: 04060182.xhp#hd_id3150132.65.help.text
+msgid "GAMMADIST"
+msgstr "GAMMADIST"
+
+#: 04060182.xhp#par_id3155931.66.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+
+#: 04060182.xhp#par_id0119200903333675.help.text
+msgid "The inverse function is GAMMAINV."
+msgstr "The inverse function is GAMMAINV."
+
+#: 04060182.xhp#hd_id3147373.67.help.text
+msgctxt "04060182.xhp#hd_id3147373.67.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3155436.68.help.text
+msgid "GAMMADIST(Number; Alpha; Beta; C)"
+msgstr "GAMMADIST(Number; Alpha; Beta; C)"
+
+#: 04060182.xhp#par_id3150571.69.help.text
+msgid " <emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+msgstr " <emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+
+#: 04060182.xhp#par_id3145295.70.help.text
+msgctxt "04060182.xhp#par_id3145295.70.help.text"
+msgid " <emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr " <emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+
+#: 04060182.xhp#par_id3151015.71.help.text
+msgid " <emph>Beta</emph> is the parameter Beta of the Gamma distribution"
+msgstr " <emph>Beta</emph> is the parameter Beta of the Gamma distribution"
+
+#: 04060182.xhp#par_id3157972.72.help.text
+msgid " <emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
+msgstr " <emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
+
+#: 04060182.xhp#hd_id3149535.73.help.text
+msgctxt "04060182.xhp#hd_id3149535.73.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3145354.74.help.text
+msgid " <item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgstr " <item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+
+#: 04060182.xhp#bm_id3150272.help.text
+msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
+msgstr "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
+
+#: 04060182.xhp#hd_id3150272.76.help.text
+msgid "GAUSS"
+msgstr "GAUSS"
+
+#: 04060182.xhp#par_id3149030.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
+
+#: 04060182.xhp#par_id2059694.help.text
+msgctxt "04060182.xhp#par_id2059694.help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr "It is GAUSS(x)=NORMSDIST(x)-0.5"
+
+#: 04060182.xhp#hd_id3153551.78.help.text
+msgctxt "04060182.xhp#hd_id3153551.78.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3155368.79.help.text
+msgid "GAUSS(Number)"
+msgstr "GAUSS(Number)"
+
+#: 04060182.xhp#par_id3153228.80.help.text
+msgid " <emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
+msgstr " <emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
+
+#: 04060182.xhp#hd_id3150691.81.help.text
+msgctxt "04060182.xhp#hd_id3150691.81.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3154867.82.help.text
+msgid " <item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgstr " <item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+
+#: 04060182.xhp#par_id3148594.83.help.text
+msgid " <item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgstr " <item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+
+#: 04060182.xhp#bm_id3148425.help.text
+msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
+msgstr "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
+
+#: 04060182.xhp#hd_id3148425.85.help.text
+msgid "GEOMEAN"
+msgstr "GEOMEAN"
+
+#: 04060182.xhp#par_id3156257.86.help.text
+msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
+
+#: 04060182.xhp#hd_id3147167.87.help.text
+msgctxt "04060182.xhp#hd_id3147167.87.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3153720.88.help.text
+msgid "GEOMEAN(Number1; Number2; ...Number30)"
+msgstr "GEOMEAN(Number1; Number2; ...Number30)"
+
+#: 04060182.xhp#par_id3152585.89.help.text
+msgid " <emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
+msgstr " <emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
+
+#: 04060182.xhp#hd_id3146146.90.help.text
+msgctxt "04060182.xhp#hd_id3146146.90.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3149819.92.help.text
+msgid " <item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
+msgstr " <item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
+
+#: 04060182.xhp#bm_id3152966.help.text
+msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
+msgstr "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
+
+#: 04060182.xhp#hd_id3152966.94.help.text
+msgid "TRIMMEAN"
+msgstr "TRIMMEAN"
+
+#: 04060182.xhp#par_id3149716.95.help.text
+msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
+
+#: 04060182.xhp#hd_id3149281.96.help.text
+msgctxt "04060182.xhp#hd_id3149281.96.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3154821.97.help.text
+msgid "TRIMMEAN(Data; Alpha)"
+msgstr "TRIMMEAN(Data; Alpha)"
+
+#: 04060182.xhp#par_id3155834.98.help.text
+msgid " <emph>Data</emph> is the array of data in the sample."
+msgstr " <emph>Data</emph> is the array of data in the sample."
+
+#: 04060182.xhp#par_id3156304.99.help.text
+msgid " <emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
+msgstr " <emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
+
+#: 04060182.xhp#hd_id3151180.100.help.text
+msgctxt "04060182.xhp#hd_id3151180.100.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3156130.101.help.text
+msgid " <item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
+msgstr " <item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
+
+#: 04060182.xhp#bm_id3153216.help.text
+msgid "<bookmark_value>ZTEST function</bookmark_value>"
+msgstr "<bookmark_value>ZTEST function</bookmark_value>"
+
+#: 04060182.xhp#hd_id3153216.103.help.text
+msgid "ZTEST"
+msgstr "ZTEST"
+
+#: 04060182.xhp#par_id3150758.104.help.text
+msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
+
+#: 04060182.xhp#hd_id3150872.105.help.text
+msgctxt "04060182.xhp#hd_id3150872.105.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3153274.106.help.text
+msgid "ZTEST(Data; mu; Sigma)"
+msgstr "ZTEST(Data; mu; Sigma)"
+
+#: 04060182.xhp#par_id3156109.107.help.text
+msgid " <emph>Data</emph> is the given sample, drawn from a normally distributed population."
+msgstr " <emph>Data</emph> is the given sample, drawn from a normally distributed population."
+
+#: 04060182.xhp#par_id3149977.108.help.text
+msgid " <emph>mu</emph> is the known mean of the population."
+msgstr " <emph>mu</emph> is the known mean of the population."
+
+#: 04060182.xhp#par_id3154740.109.help.text
+msgid " <emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+msgstr " <emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+
+#: 04060182.xhp#par_id0305200911372999.help.text
+msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
+msgstr ""
+
+#: 04060182.xhp#bm_id3153623.help.text
+msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
+msgstr "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
+
+#: 04060182.xhp#hd_id3153623.113.help.text
+msgid "HARMEAN"
+msgstr "HARMEAN"
+
+#: 04060182.xhp#par_id3155102.114.help.text
+msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
+
+#: 04060182.xhp#hd_id3146900.115.help.text
+msgctxt "04060182.xhp#hd_id3146900.115.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3149287.116.help.text
+msgid "HARMEAN(Number1; Number2; ...Number30)"
+msgstr "HARMEAN(Number1; Number2; ...Number30)"
+
+#: 04060182.xhp#par_id3154303.117.help.text
+msgid " <emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
+msgstr " <emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
+
+#: 04060182.xhp#hd_id3159179.118.help.text
+msgctxt "04060182.xhp#hd_id3159179.118.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3146093.120.help.text
+msgid " <item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
+msgstr " <item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
+
+#: 04060182.xhp#bm_id3152801.help.text
+msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+msgstr "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+
+#: 04060182.xhp#hd_id3152801.122.help.text
+msgid "HYPGEOMDIST"
+msgstr "HYPGEOMDIST"
+
+#: 04060182.xhp#par_id3159341.123.help.text
+msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
+
+#: 04060182.xhp#hd_id3154697.124.help.text
+msgctxt "04060182.xhp#hd_id3154697.124.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id3155388.125.help.text
+msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
+msgstr "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
+
+#: 04060182.xhp#par_id3154933.126.help.text
+msgid " <emph>X</emph> is the number of results achieved in the random sample."
+msgstr " <emph>X</emph> is the number of results achieved in the random sample."
+
+#: 04060182.xhp#par_id3153106.127.help.text
+msgid " <emph>NSample</emph> is the size of the random sample."
+msgstr " <emph>NSample</emph> is the size of the random sample."
+
+#: 04060182.xhp#par_id3146992.128.help.text
+msgid " <emph>Successes</emph> is the number of possible results in the total population."
+msgstr " <emph>Successes</emph> is the number of possible results in the total population."
+
+#: 04060182.xhp#par_id3148826.129.help.text
+msgid " <emph>NPopulation </emph>is the size of the total population."
+msgstr " <emph>NPopulation </emph>is the size of the total population."
+
+#: 04060182.xhp#hd_id3150529.130.help.text
+msgctxt "04060182.xhp#hd_id3150529.130.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060182.xhp#par_id3154904.131.help.text
+msgid " <item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
+msgstr " <item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
+
+#: func_timevalue.xhp#tit.help.text
+msgid "TIMEVALUE "
+msgstr "TIMEVALUE "
+
+#: func_timevalue.xhp#bm_id3146755.help.text
+msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
+msgstr "<bookmark_value>TIMEVALUE function</bookmark_value>"
+
+#: func_timevalue.xhp#hd_id3146755.160.help.text
+msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
+msgstr "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
+
+#: func_timevalue.xhp#par_id3148502.161.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
+
+#: func_timevalue.xhp#par_id3150794.162.help.text
+msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
+msgstr "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
+
+#: func_timevalue.xhp#par_id011920090347118.help.text
+msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
+msgstr "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
+
+#: func_timevalue.xhp#hd_id3150810.163.help.text
+msgctxt "func_timevalue.xhp#hd_id3150810.163.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_timevalue.xhp#par_id3150823.164.help.text
+msgid "TIMEVALUE(\"Text\")"
+msgstr "TIMEVALUE(\"Text\")"
+
+#: func_timevalue.xhp#par_id3152556.165.help.text
+msgid " <emph>Text</emph> is a valid time expression and must be entered in quotation marks."
+msgstr " <emph>Text</emph> is a valid time expression and must be entered in quotation marks."
+
+#: func_timevalue.xhp#hd_id3146815.166.help.text
+msgctxt "func_timevalue.xhp#hd_id3146815.166.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_timevalue.xhp#par_id3146829.167.help.text
+msgid " <item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
+msgstr " <item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
+
+#: func_timevalue.xhp#par_id3153632.168.help.text
+msgid " <item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
+msgstr " <item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
+
+#: 05050000.xhp#tit.help.text
+msgctxt "05050000.xhp#tit.help.text"
+msgid "Sheet"
+msgstr "Sheet"
+
+#: 05050000.xhp#bm_id1245460.help.text
+msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
+
+#: 05050000.xhp#hd_id3155923.1.help.text
+msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
+
+#: 05050000.xhp#par_id3154758.2.help.text
+msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+msgstr "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+
+#: 05050000.xhp#hd_id3156280.3.help.text
+msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+
+#: 05050000.xhp#hd_id3145787.4.help.text
+msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+
+#: 05050000.xhp#par_id3150542.5.help.text
+msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
+msgstr "If a sheet has been hidden, the Show Sheet dialogue opens, which allows you to select a sheet to be shown again."
+
+#: 05050000.xhp#par_idN10656.help.text
+msgid "Right-To-Left"
+msgstr "Right-To-Left"
+
+#: 05050000.xhp#par_idN1065A.help.text
+msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
+msgstr "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
+
+#: func_weeknum.xhp#tit.help.text
+msgid "WEEKNUM"
+msgstr "WEEKNUM"
+
+#: func_weeknum.xhp#bm_id3159161.help.text
+msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr "<bookmark_value>WEEKNUM function</bookmark_value>"
+
+#: func_weeknum.xhp#hd_id3159161.54.help.text
+msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgstr "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+
+#: func_weeknum.xhp#par_id3149770.55.help.text
+msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
+
+#: func_weeknum.xhp#par_idN105E4.help.text
+msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
+msgstr "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
+
+#: func_weeknum.xhp#hd_id3153055.56.help.text
+msgctxt "func_weeknum.xhp#hd_id3153055.56.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_weeknum.xhp#par_id3147236.57.help.text
+msgid "WEEKNUM(Number; Mode)"
+msgstr "WEEKNUM(Number; Mode)"
+
+#: func_weeknum.xhp#par_id3147511.58.help.text
+msgid "<emph>Number</emph> is the internal date number."
+msgstr "<emph>Number</emph> is the internal date number."
+
+#: func_weeknum.xhp#par_id3154269.59.help.text
+msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
+msgstr "<emph>Mode</emph> sets the start of the week and the calculation type."
+
+#: func_weeknum.xhp#par_id3148930.60.help.text
+msgid "1 = Sunday"
+msgstr "1 = Sunday"
+
+#: func_weeknum.xhp#par_id3154280.61.help.text
+msgid "2 = Monday"
+msgstr "2 = Monday"
+
+#: func_weeknum.xhp#hd_id3146948.62.help.text
+msgctxt "func_weeknum.xhp#hd_id3146948.62.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_weeknum.xhp#par_id3150704.65.help.text
+msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
+msgstr "=WEEKNUM(\"1995-01-01\";1) returns 1"
+
+#: func_weeknum.xhp#par_id3149792.64.help.text
+msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
+msgstr "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
+
+#: 06080000.xhp#tit.help.text
+msgid "Recalculate"
+msgstr "Recalculate"
+
+#: 06080000.xhp#bm_id3157909.help.text
+msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
+msgstr "<bookmark_value>recalculating;all formulae in sheets</bookmark_value><bookmark_value>formulae; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
+
+#: 06080000.xhp#hd_id3157909.1.help.text
+msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+
+#: 06080000.xhp#par_id3154758.2.help.text
+msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
+msgstr "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulae. If AutoCalculate is enabled, the Recalculate command applies only to formulae like RAND or NOW.</ahelp>"
+
+#: 06080000.xhp#par_id315475899.help.text
+msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
+msgstr "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulae in the document."
+
+#: 06080000.xhp#par_id3150793.5.help.text
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgstr "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+
+#: 06080000.xhp#par_id315475855.help.text
+msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
+msgstr "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulae, including the Add-In functions."
+
+#: format_graphic.xhp#tit.help.text
+msgid "Graphic"
+msgstr "Graphic"
+
+#: format_graphic.xhp#par_idN10548.help.text
+msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
+msgstr "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
+
+#: format_graphic.xhp#par_idN10558.help.text
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
+msgstr "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
+
+#: format_graphic.xhp#par_id1650440.help.text
+msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
+
+#: format_graphic.xhp#par_id363475.help.text
+msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
+msgstr "Sets the layout and anchoring properties for text in the selected drawing or text object."
+
+#: format_graphic.xhp#par_id9746696.help.text
+msgid "Points"
+msgstr "Points"
+
+#: format_graphic.xhp#par_id2480544.help.text
+msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
+msgstr "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
+
+#: 04060199.xhp#tit.help.text
+msgctxt "04060199.xhp#tit.help.text"
+msgid "Operators in $[officename] Calc"
+msgstr "Operators in $[officename] Calc"
+
+#: 04060199.xhp#bm_id3156445.help.text
+msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
+msgstr "<bookmark_value>formulae; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
+
+#: 04060199.xhp#hd_id3156445.1.help.text
+msgctxt "04060199.xhp#hd_id3156445.1.help.text"
+msgid "Operators in $[officename] Calc"
+msgstr "Operators in $[officename] Calc"
+
+#: 04060199.xhp#par_id3155812.2.help.text
+msgid "You can use the following operators in $[officename] Calc:"
+msgstr "You can use the following operators in $[officename] Calc:"
+
+#: 04060199.xhp#hd_id3153066.3.help.text
+msgid "Arithmetical Operators"
+msgstr "Arithmetical Operators"
+
+#: 04060199.xhp#par_id3148601.4.help.text
+msgid "These operators return numerical results."
+msgstr "These operators return numerical results."
+
+#: 04060199.xhp#par_id3144768.5.help.text
+msgctxt "04060199.xhp#par_id3144768.5.help.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: 04060199.xhp#par_id3157982.6.help.text
+msgctxt "04060199.xhp#par_id3157982.6.help.text"
+msgid "Name"
+msgstr "Name"
+
+#: 04060199.xhp#par_id3159096.7.help.text
+msgctxt "04060199.xhp#par_id3159096.7.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060199.xhp#par_id3149126.8.help.text
+msgid "+ (Plus)"
+msgstr "+ (Plus)"
+
+#: 04060199.xhp#par_id3150892.9.help.text
+msgid "Addition"
+msgstr "Addition"
+
+#: 04060199.xhp#par_id3153247.10.help.text
+msgid "1+1"
+msgstr "1+1"
+
+#: 04060199.xhp#par_id3159204.11.help.text
+msgctxt "04060199.xhp#par_id3159204.11.help.text"
+msgid "- (Minus)"
+msgstr "- (Minus)"
+
+#: 04060199.xhp#par_id3145362.12.help.text
+msgid "Subtraction"
+msgstr "Subtraction"
+
+#: 04060199.xhp#par_id3153554.13.help.text
+msgid "2-1"
+msgstr "2-1"
+
+#: 04060199.xhp#par_id3153808.14.help.text
+msgctxt "04060199.xhp#par_id3153808.14.help.text"
+msgid "- (Minus)"
+msgstr "- (Minus)"
+
+#: 04060199.xhp#par_id3151193.15.help.text
+msgid "Negation"
+msgstr "Negation"
+
+#: 04060199.xhp#par_id3154712.16.help.text
+msgctxt "04060199.xhp#par_id3154712.16.help.text"
+msgid "-5"
+msgstr "-5"
+
+#: 04060199.xhp#par_id3149873.17.help.text
+msgid "* (asterisk)"
+msgstr "* (asterisk)"
+
+#: 04060199.xhp#par_id3147504.18.help.text
+msgid "Multiplication"
+msgstr "Multiplication"
+
+#: 04060199.xhp#par_id3149055.19.help.text
+msgid "2*2"
+msgstr "2*2"
+
+#: 04060199.xhp#par_id3151341.20.help.text
+msgid "/ (Slash)"
+msgstr "/ (Slash)"
+
+#: 04060199.xhp#par_id3159260.21.help.text
+msgid "Division"
+msgstr "Division"
+
+#: 04060199.xhp#par_id3153027.22.help.text
+msgid "9/3"
+msgstr "9/3"
+
+#: 04060199.xhp#par_id3156396.23.help.text
+msgid "% (Percent)"
+msgstr "% (Percent)"
+
+#: 04060199.xhp#par_id3150372.24.help.text
+msgid "Percent"
+msgstr "Percent"
+
+#: 04060199.xhp#par_id3145632.25.help.text
+msgid "15%"
+msgstr "15%"
+
+#: 04060199.xhp#par_id3149722.26.help.text
+msgid "^ (Caret)"
+msgstr "^ (Caret)"
+
+#: 04060199.xhp#par_id3159127.27.help.text
+msgid "Exponentiation"
+msgstr "Exponentiation"
+
+#: 04060199.xhp#par_id3157873.28.help.text
+msgid "3^2"
+msgstr "3^2"
+
+#: 04060199.xhp#hd_id3152981.29.help.text
+msgid "Comparative operators"
+msgstr "Comparative operators"
+
+#: 04060199.xhp#par_id3157902.30.help.text
+msgid "These operators return either true or false."
+msgstr "These operators return either true or false."
+
+#: 04060199.xhp#par_id3149889.31.help.text
+msgctxt "04060199.xhp#par_id3149889.31.help.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: 04060199.xhp#par_id3150743.32.help.text
+msgctxt "04060199.xhp#par_id3150743.32.help.text"
+msgid "Name"
+msgstr "Name"
+
+#: 04060199.xhp#par_id3146877.33.help.text
+msgctxt "04060199.xhp#par_id3146877.33.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060199.xhp#par_id3148888.34.help.text
+msgid "= (equal sign)"
+msgstr "= (equal sign)"
+
+#: 04060199.xhp#par_id3154845.35.help.text
+msgid "Equal"
+msgstr "Equal"
+
+#: 04060199.xhp#par_id3154546.36.help.text
+msgid "A1=B1"
+msgstr "A1=B1"
+
+#: 04060199.xhp#par_id3154807.37.help.text
+msgid "> (Greater than)"
+msgstr "> (Greater than)"
+
+#: 04060199.xhp#par_id3148580.38.help.text
+msgid "Greater than"
+msgstr "Greater than"
+
+#: 04060199.xhp#par_id3145138.39.help.text
+msgid "A1>B1"
+msgstr "A1>B1"
+
+#: 04060199.xhp#par_id3149507.40.help.text
+msgid "< (Less than)"
+msgstr "< (Less than)"
+
+#: 04060199.xhp#par_id3150145.41.help.text
+msgid "Less than"
+msgstr "Less than"
+
+#: 04060199.xhp#par_id3150901.42.help.text
+msgid "A1<B1"
+msgstr "A1<B1"
+
+#: 04060199.xhp#par_id3153078.43.help.text
+msgid ">= (Greater than or equal to)"
+msgstr ">= (Greater than or equal to)"
+
+#: 04060199.xhp#par_id3150866.44.help.text
+msgid "Greater than or equal to"
+msgstr "Greater than or equal to"
+
+#: 04060199.xhp#par_id3153111.45.help.text
+msgid "A1>=B1"
+msgstr "A1>=B1"
+
+#: 04060199.xhp#par_id3153004.46.help.text
+msgid "<= (Less than or equal to)"
+msgstr "<= (Less than or equal to)"
+
+#: 04060199.xhp#par_id3150335.47.help.text
+msgid "Less than or equal to"
+msgstr "Less than or equal to"
+
+#: 04060199.xhp#par_id3148760.48.help.text
+msgid "A1<=B1"
+msgstr "A1<=B1"
+
+#: 04060199.xhp#par_id3157994.49.help.text
+msgid "<> (Inequality)"
+msgstr "<> (Inequality)"
+
+#: 04060199.xhp#par_id3150019.50.help.text
+msgid "Inequality"
+msgstr "Inequality"
+
+#: 04060199.xhp#par_id3149878.51.help.text
+msgid "A1<>B1"
+msgstr "A1<>B1"
+
+#: 04060199.xhp#hd_id3145241.52.help.text
+msgid "Text operators"
+msgstr "Text operators"
+
+#: 04060199.xhp#par_id3155438.53.help.text
+msgid "The operator combines separate texts into one text."
+msgstr "The operator combines separate texts into one text."
+
+#: 04060199.xhp#par_id3150566.54.help.text
+msgctxt "04060199.xhp#par_id3150566.54.help.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: 04060199.xhp#par_id3153048.55.help.text
+msgctxt "04060199.xhp#par_id3153048.55.help.text"
+msgid "Name"
+msgstr "Name"
+
+#: 04060199.xhp#par_id3149001.56.help.text
+msgctxt "04060199.xhp#par_id3149001.56.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060199.xhp#par_id3148769.57.help.text
+msgid "& (And)"
+msgstr "& (And)"
+
+#: 04060199.xhp#bm_id3157975.help.text
+msgid "<bookmark_value>text concatenation AND</bookmark_value>"
+msgstr "<bookmark_value>text concatenation AND</bookmark_value>"
+
+#: 04060199.xhp#par_id3157975.58.help.text
+msgid "text concatenation AND"
+msgstr "text concatenation AND"
+
+#: 04060199.xhp#par_id3157993.59.help.text
+msgid "\"Sun\" & \"day\" is \"Sunday\""
+msgstr "\"Sun\" & \"day\" is \"Sunday\""
+
+#: 04060199.xhp#hd_id3153550.60.help.text
+msgid "Reference operators"
+msgstr "Reference operators"
+
+#: 04060199.xhp#par_id3149024.61.help.text
+msgid "These operators return a cell range of zero, one or more cells."
+msgstr "These operators return a cell range of zero, one or more cells."
+
+#: 04060199.xhp#par_id2324900.help.text
+msgid "Range has the highest precedence, then intersection, and then finally union."
+msgstr "Range has the highest precedence, then intersection, and then finally union."
+
+#: 04060199.xhp#par_id3158416.62.help.text
+msgctxt "04060199.xhp#par_id3158416.62.help.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: 04060199.xhp#par_id3152822.63.help.text
+msgctxt "04060199.xhp#par_id3152822.63.help.text"
+msgid "Name"
+msgstr "Name"
+
+#: 04060199.xhp#par_id3154949.64.help.text
+msgctxt "04060199.xhp#par_id3154949.64.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060199.xhp#par_id3156257.65.help.text
+msgid ": (Colon)"
+msgstr ": (Colon)"
+
+#: 04060199.xhp#par_id3153924.66.help.text
+msgctxt "04060199.xhp#par_id3153924.66.help.text"
+msgid "Range"
+msgstr "Range"
+
+#: 04060199.xhp#par_id3148432.67.help.text
+msgid "A1:C108"
+msgstr "A1:C108"
+
+#: 04060199.xhp#par_id3152592.68.help.text
+msgid "! (Exclamation point)"
+msgstr "! (Exclamation point)"
+
+#: 04060199.xhp#bm_id3150606.help.text
+msgid "<bookmark_value>intersection operator</bookmark_value>"
+msgstr "<bookmark_value>intersection operator</bookmark_value>"
+
+#: 04060199.xhp#par_id3150606.69.help.text
+msgid "Intersection"
+msgstr "Intersection"
+
+#: 04060199.xhp#par_id3083445.70.help.text
+msgid "SUM(A1:B6!B5:C12)"
+msgstr "SUM(A1:B6!B5:C12)"
+
+#: 04060199.xhp#par_id3150385.71.help.text
+msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
+msgstr "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
+
+#: 04060199.xhp#par_id4003723.help.text
+msgid "~ (Tilde)"
+msgstr "~ (Tilde)"
+
+#: 04060199.xhp#par_id838953.help.text
+msgid "Concatenation or union"
+msgstr "Concatenation or union"
+
+#: 04060199.xhp#par_id2511978.help.text
+msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
+msgstr "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
+
+#: 04060199.xhp#par_id181890.help.text
+msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
+msgstr "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
+
+#: 12030000.xhp#tit.help.text
+msgctxt "12030000.xhp#tit.help.text"
+msgid "Sort"
+msgstr "Sort"
+
+#: 12030000.xhp#hd_id3150275.1.help.text
+msgctxt "12030000.xhp#hd_id3150275.1.help.text"
+msgid "Sort"
+msgstr "Sort"
+
+#: 12030000.xhp#par_id3155922.2.help.text
+msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
+msgstr "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognises and selects database ranges."
+
+#: 12030000.xhp#par_id3147428.4.help.text
+msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
+msgstr "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
+
+#: 05030400.xhp#tit.help.text
+msgctxt "05030400.xhp#tit.help.text"
+msgid "Show"
+msgstr "Show"
+
+#: 05030400.xhp#bm_id3147264.help.text
+msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
+
+#: 05030400.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
+
+#: 05030400.xhp#par_id3150447.2.help.text
+msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
+
+#: 05030400.xhp#par_id3155131.3.help.text
+msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
+msgstr "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
+
+#: 05030400.xhp#par_id3145748.4.help.text
+msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
+msgstr "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
+
+#: 05100200.xhp#tit.help.text
+msgctxt "05100200.xhp#tit.help.text"
+msgid "Split Cells"
+msgstr ""
+
+#: 05100200.xhp#hd_id3154654.help.text
+msgctxt "05100200.xhp#hd_id3154654.help.text"
+msgid "Split Cells"
+msgstr ""
+
+#: 05100200.xhp#par_id3083451.help.text
+msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
+msgstr ""
+
+#: 05100200.xhp#par_id3154023.help.text
+msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
+msgstr ""
+
+#: 04060106.xhp#tit.help.text
+msgctxt "04060106.xhp#tit.help.text"
+msgid "Mathematical Functions"
+msgstr "Mathematical Functions"
+
+#: 04060106.xhp#bm_id3147124.help.text
+msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
+msgstr "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
+
+#: 04060106.xhp#hd_id3147124.1.help.text
+msgctxt "04060106.xhp#hd_id3147124.1.help.text"
+msgid "Mathematical Functions"
+msgstr "Mathematical Functions"
+
+#: 04060106.xhp#par_id3154943.2.help.text
+msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
+msgstr "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
+
+#: 04060106.xhp#bm_id3146944.help.text
+msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
+msgstr "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
+
+#: 04060106.xhp#hd_id3146944.33.help.text
+msgid "ABS"
+msgstr "ABS"
+
+#: 04060106.xhp#par_id3154546.34.help.text
+msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3154843.35.help.text
+msgctxt "04060106.xhp#hd_id3154843.35.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3147475.36.help.text
+msgid "ABS(Number)"
+msgstr "ABS(Number)"
+
+#: 04060106.xhp#par_id3148438.37.help.text
+msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
+msgstr "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
+
+#: 04060106.xhp#hd_id3155823.38.help.text
+msgctxt "04060106.xhp#hd_id3155823.38.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3152787.39.help.text
+msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
+msgstr "<item type=\"input\">=ABS(-56)</item> returns 56."
+
+#: 04060106.xhp#par_id3148752.40.help.text
+msgid "<item type=\"input\">=ABS(12)</item> returns 12."
+msgstr "<item type=\"input\">=ABS(12)</item> returns 12."
+
+#: 04060106.xhp#par_id320139.help.text
+msgid "<item type=\"input\">=ABS(0)</item> returns 0."
+msgstr "<item type=\"input\">=ABS(0)</item> returns 0."
+
+#: 04060106.xhp#bm_id3150896.help.text
+msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
+msgstr "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
+
+#: 04060106.xhp#hd_id3150896.42.help.text
+msgid "COUNTBLANK"
+msgstr "COUNTBLANK"
+
+#: 04060106.xhp#par_id3155260.43.help.text
+msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
+
+#: 04060106.xhp#hd_id3145144.44.help.text
+msgctxt "04060106.xhp#hd_id3145144.44.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3153931.45.help.text
+msgid "COUNTBLANK(Range)"
+msgstr "COUNTBLANK(Range)"
+
+#: 04060106.xhp#par_id3149512.46.help.text
+msgid " Returns the number of empty cells in the cell range <emph>Range</emph>."
+msgstr " Returns the number of empty cells in the cell range <emph>Range</emph>."
+
+#: 04060106.xhp#hd_id3146139.47.help.text
+msgctxt "04060106.xhp#hd_id3146139.47.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3148586.48.help.text
+msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
+msgstr "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
+
+#: 04060106.xhp#bm_id3153114.help.text
+msgid "<bookmark_value>ACOS function</bookmark_value>"
+msgstr "<bookmark_value>ACOS function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3153114.50.help.text
+msgid "ACOS"
+msgstr "ACOS"
+
+#: 04060106.xhp#par_id3145163.51.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3153565.52.help.text
+msgctxt "04060106.xhp#hd_id3153565.52.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3150020.53.help.text
+msgid "ACOS(Number)"
+msgstr "ACOS(Number)"
+
+#: 04060106.xhp#par_id3159134.54.help.text
+msgid " This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
+msgstr " This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
+
+#: 04060106.xhp#par_id679647.help.text
+msgctxt "04060106.xhp#par_id679647.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "To return the angle in degrees, use the DEGREES function."
+
+#: 04060106.xhp#hd_id3149882.55.help.text
+msgctxt "04060106.xhp#hd_id3149882.55.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3150128.56.help.text
+msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
+msgstr "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
+
+#: 04060106.xhp#par_id8792382.help.text
+msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
+msgstr "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
+
+#: 04060106.xhp#bm_id3145355.help.text
+msgid "<bookmark_value>ACOSH function</bookmark_value>"
+msgstr "<bookmark_value>ACOSH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145355.60.help.text
+msgid "ACOSH"
+msgstr "ACOSH"
+
+#: 04060106.xhp#par_id3157993.61.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3145295.62.help.text
+msgctxt "04060106.xhp#hd_id3145295.62.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3151017.63.help.text
+msgid "ACOSH(Number)"
+msgstr "ACOSH(Number)"
+
+#: 04060106.xhp#par_id3149000.64.help.text
+msgid " This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number. "
+msgstr " This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number. "
+
+#: 04060106.xhp#par_id6393932.help.text
+msgid " Number must be greater than or equal to 1."
+msgstr " Number must be greater than or equal to 1."
+
+#: 04060106.xhp#hd_id3150566.65.help.text
+msgctxt "04060106.xhp#hd_id3150566.65.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3145629.66.help.text
+msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
+msgstr "<item type=\"input\">=ACOSH(1)</item> returns 0."
+
+#: 04060106.xhp#par_id951567.help.text
+msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+msgstr "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+
+#: 04060106.xhp#bm_id3149027.help.text
+msgid "<bookmark_value>ACOT function</bookmark_value>"
+msgstr "<bookmark_value>ACOT function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3149027.70.help.text
+msgid "ACOT"
+msgstr "ACOT"
+
+#: 04060106.xhp#par_id3155818.71.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
+
+#: 04060106.xhp#hd_id3153225.72.help.text
+msgctxt "04060106.xhp#hd_id3153225.72.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3158419.73.help.text
+msgid "ACOT(Number)"
+msgstr "ACOT(Number)"
+
+#: 04060106.xhp#par_id3154948.74.help.text
+msgid " This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
+msgstr " This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
+
+#: 04060106.xhp#par_id5834528.help.text
+msgctxt "04060106.xhp#par_id5834528.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "To return the angle in degrees, use the DEGREES function."
+
+#: 04060106.xhp#hd_id3147538.75.help.text
+msgctxt "04060106.xhp#hd_id3147538.75.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3155375.76.help.text
+msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
+
+#: 04060106.xhp#par_id8589434.help.text
+msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1. "
+msgstr "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1. "
+
+#: 04060106.xhp#bm_id3148426.help.text
+msgid "<bookmark_value>ACOTH function</bookmark_value>"
+msgstr "<bookmark_value>ACOTH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3148426.80.help.text
+msgid "ACOTH"
+msgstr "ACOTH"
+
+#: 04060106.xhp#par_id3147478.81.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
+
+#: 04060106.xhp#hd_id3152585.82.help.text
+msgctxt "04060106.xhp#hd_id3152585.82.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3147172.83.help.text
+msgid "ACOTH(Number)"
+msgstr "ACOTH(Number)"
+
+#: 04060106.xhp#par_id3146155.84.help.text
+msgid " This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
+msgstr " This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
+
+#: 04060106.xhp#par_id5818659.help.text
+msgid "An error results if Number is between -1 and 1 inclusive."
+msgstr "An error results if Number is between -1 and 1 inclusive."
+
+#: 04060106.xhp#hd_id3083452.85.help.text
+msgctxt "04060106.xhp#hd_id3083452.85.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3150608.86.help.text
+msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
+msgstr "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
+
+#: 04060106.xhp#bm_id3145084.help.text
+msgid "<bookmark_value>ASIN function</bookmark_value>"
+msgstr "<bookmark_value>ASIN function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145084.90.help.text
+msgid "ASIN"
+msgstr "ASIN"
+
+#: 04060106.xhp#par_id3156296.91.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3149716.92.help.text
+msgctxt "04060106.xhp#hd_id3149716.92.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3156305.93.help.text
+msgid "ASIN(Number)"
+msgstr "ASIN(Number)"
+
+#: 04060106.xhp#par_id3150964.94.help.text
+msgid " This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
+msgstr " This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
+
+#: 04060106.xhp#par_id203863.help.text
+msgctxt "04060106.xhp#par_id203863.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "To return the angle in degrees, use the DEGREES function."
+
+#: 04060106.xhp#hd_id3149448.95.help.text
+msgctxt "04060106.xhp#hd_id3149448.95.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3156100.96.help.text
+msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
+msgstr "<item type=\"input\">=ASIN(0)</item> returns 0."
+
+#: 04060106.xhp#par_id6853846.help.text
+msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians). "
+msgstr "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians). "
+
+#: 04060106.xhp#par_id8772240.help.text
+msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
+msgstr "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
+
+#: 04060106.xhp#bm_id3151266.help.text
+msgid "<bookmark_value>ASINH function</bookmark_value>"
+msgstr "<bookmark_value>ASINH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3151266.100.help.text
+msgid "ASINH"
+msgstr "ASINH"
+
+#: 04060106.xhp#par_id3147077.101.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3150763.102.help.text
+msgctxt "04060106.xhp#hd_id3150763.102.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3150882.103.help.text
+msgid "ASINH(Number)"
+msgstr "ASINH(Number)"
+
+#: 04060106.xhp#par_id3147621.104.help.text
+msgid " This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number. "
+msgstr " This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number. "
+
+#: 04060106.xhp#hd_id3153212.105.help.text
+msgctxt "04060106.xhp#hd_id3153212.105.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3156120.106.help.text
+msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
+msgstr "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
+
+#: 04060106.xhp#par_id4808496.help.text
+msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+msgstr "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+
+#: 04060106.xhp#bm_id3155996.help.text
+msgid "<bookmark_value>ATAN function</bookmark_value>"
+msgstr "<bookmark_value>ATAN function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3155996.110.help.text
+msgid "ATAN"
+msgstr "ATAN"
+
+#: 04060106.xhp#par_id3149985.111.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3151294.112.help.text
+msgctxt "04060106.xhp#hd_id3151294.112.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3150261.113.help.text
+msgid "ATAN(Number)"
+msgstr "ATAN(Number)"
+
+#: 04060106.xhp#par_id3147267.114.help.text
+msgid " This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
+msgstr " This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
+
+#: 04060106.xhp#par_id6293527.help.text
+msgctxt "04060106.xhp#par_id6293527.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "To return the angle in degrees, use the DEGREES function."
+
+#: 04060106.xhp#hd_id3154054.115.help.text
+msgctxt "04060106.xhp#hd_id3154054.115.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3143229.116.help.text
+msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
+
+#: 04060106.xhp#par_id8746299.help.text
+msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+
+#: 04060106.xhp#bm_id3153983.help.text
+msgid "<bookmark_value>ATAN2 function</bookmark_value>"
+msgstr "<bookmark_value>ATAN2 function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3153983.120.help.text
+msgid "ATAN2"
+msgstr "ATAN2"
+
+#: 04060106.xhp#par_id3154297.121.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
+
+#: 04060106.xhp#hd_id3149758.122.help.text
+msgctxt "04060106.xhp#hd_id3149758.122.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3156013.123.help.text
+msgid "ATAN2(NumberX; NumberY)"
+msgstr "ATAN2(NumberX; NumberY)"
+
+#: 04060106.xhp#par_id3151168.124.help.text
+msgid "<emph>NumberX</emph> is the value of the x coordinate."
+msgstr "<emph>NumberX</emph> is the value of the x coordinate."
+
+#: 04060106.xhp#par_id3152798.125.help.text
+msgid "<emph>NumberY</emph> is the value of the y coordinate."
+msgstr "<emph>NumberY</emph> is the value of the y coordinate."
+
+#: 04060106.xhp#par_id5036164.help.text
+msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
+msgstr "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
+
+#: 04060106.xhp#par_id3001800.help.text
+msgctxt "04060106.xhp#par_id3001800.help.text"
+msgid "To return the angle in degrees, use the DEGREES function."
+msgstr "To return the angle in degrees, use the DEGREES function."
+
+#: 04060106.xhp#hd_id3145663.126.help.text
+msgctxt "04060106.xhp#hd_id3145663.126.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3154692.127.help.text
+msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
+
+#: 04060106.xhp#par_id1477095.help.text
+msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
+
+#: 04060106.xhp#bm_id3155398.help.text
+msgid "<bookmark_value>ATANH function</bookmark_value>"
+msgstr "<bookmark_value>ATANH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3155398.130.help.text
+msgid "ATANH"
+msgstr "ATANH"
+
+#: 04060106.xhp#par_id3148829.131.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3146997.132.help.text
+msgctxt "04060106.xhp#hd_id3146997.132.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3149912.133.help.text
+msgid "ATANH(Number)"
+msgstr "ATANH(Number)"
+
+#: 04060106.xhp#par_id3150521.134.help.text
+msgid " This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number. "
+msgstr " This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number. "
+
+#: 04060106.xhp#par_id9357280.help.text
+msgid " Number must obey the condition -1 < number < 1."
+msgstr " Number must obey the condition -1 < number < 1."
+
+#: 04060106.xhp#hd_id3148450.135.help.text
+msgctxt "04060106.xhp#hd_id3148450.135.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3145419.136.help.text
+msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
+msgstr "<item type=\"input\">=ATANH(0)</item> returns 0."
+
+#: 04060106.xhp#bm_id3153062.help.text
+msgid "<bookmark_value>COS function</bookmark_value>"
+msgstr "<bookmark_value>COS function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3153062.149.help.text
+msgid "COS"
+msgstr "COS"
+
+#: 04060106.xhp#par_id3148803.150.help.text
+msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
+
+#: 04060106.xhp#hd_id3150779.151.help.text
+msgctxt "04060106.xhp#hd_id3150779.151.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3154213.152.help.text
+msgid "COS(Number)"
+msgstr "COS(Number)"
+
+#: 04060106.xhp#par_id3154285.153.help.text
+msgid " Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
+msgstr " Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
+
+#: 04060106.xhp#par_id831019.help.text
+msgid "To return the cosine of an angle in degrees, use the RADIANS function."
+msgstr "To return the cosine of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id3153579.154.help.text
+msgctxt "04060106.xhp#hd_id3153579.154.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: 04060106.xhp#par_id3147240.155.help.text
+msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
+msgstr "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
+
+#: 04060106.xhp#par_id3147516.156.help.text
+msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+msgstr "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+
+#: 04060106.xhp#bm_id3154277.help.text
+msgid "<bookmark_value>COSH function</bookmark_value>"
+msgstr "<bookmark_value>COSH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3154277.159.help.text
+msgid "COSH"
+msgstr "COSH"
+
+#: 04060106.xhp#par_id3146946.160.help.text
+msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3149792.161.help.text
+msgctxt "04060106.xhp#hd_id3149792.161.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3166440.162.help.text
+msgid "COSH(Number)"
+msgstr "COSH(Number)"
+
+#: 04060106.xhp#par_id3150710.163.help.text
+msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
+msgstr "Returns the hyperbolic cosine of <emph>Number</emph>."
+
+#: 04060106.xhp#hd_id3153234.164.help.text
+msgctxt "04060106.xhp#hd_id3153234.164.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3154099.165.help.text
+msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
+msgstr "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
+
+#: 04060106.xhp#bm_id3152888.help.text
+msgid "<bookmark_value>COT function</bookmark_value>"
+msgstr "<bookmark_value>COT function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152888.169.help.text
+msgid "COT"
+msgstr "COT"
+
+#: 04060106.xhp#par_id3153679.170.help.text
+msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
+
+#: 04060106.xhp#hd_id3152943.171.help.text
+msgctxt "04060106.xhp#hd_id3152943.171.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3154856.172.help.text
+msgid "COT(Number)"
+msgstr "COT(Number)"
+
+#: 04060106.xhp#par_id3149969.173.help.text
+msgid " Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
+msgstr " Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
+
+#: 04060106.xhp#par_id3444624.help.text
+msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
+msgstr "To return the cotangent of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#par_id6814477.help.text
+msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+msgstr "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+
+#: 04060106.xhp#hd_id3149800.174.help.text
+msgid "Examples:"
+msgstr "Examples:"
+
+#: 04060106.xhp#par_id3148616.175.help.text
+msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+msgstr "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+
+#: 04060106.xhp#par_id3148986.176.help.text
+msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+msgstr "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+
+#: 04060106.xhp#bm_id3154337.help.text
+msgid "<bookmark_value>COTH function</bookmark_value>"
+msgstr "<bookmark_value>COTH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3154337.178.help.text
+msgid "COTH"
+msgstr "COTH"
+
+#: 04060106.xhp#par_id3149419.179.help.text
+msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
+
+#: 04060106.xhp#hd_id3149242.180.help.text
+msgctxt "04060106.xhp#hd_id3149242.180.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3143280.181.help.text
+msgid "COTH(Number)"
+msgstr "COTH(Number)"
+
+#: 04060106.xhp#par_id3154799.182.help.text
+msgid " Returns the hyperbolic cotangent of <emph>Number</emph>."
+msgstr " Returns the hyperbolic cotangent of <emph>Number</emph>."
+
+#: 04060106.xhp#hd_id3155422.183.help.text
+msgctxt "04060106.xhp#hd_id3155422.183.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3144754.184.help.text
+msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
+msgstr "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
+
+#: 04060106.xhp#bm_id6110552.help.text
+#, fuzzy
+msgid "<bookmark_value>CSC function</bookmark_value>"
+msgstr "<bookmark_value>ASC function</bookmark_value>"
+
+#: 04060106.xhp#hd_id9523234.149.help.text
+msgid "CSC"
+msgstr ""
+
+#: 04060106.xhp#par_id4896433.150.help.text
+msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id3534032.151.help.text
+msgctxt "04060106.xhp#hd_id3534032.151.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id4571344.152.help.text
+#, fuzzy
+msgid "CSC(Number)"
+msgstr "COSH(Number)"
+
+#: 04060106.xhp#par_id9859164.153.help.text
+msgid " Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#: 04060106.xhp#par_id3428494.help.text
+#, fuzzy
+msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
+msgstr "To return the cosine of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id2577161.154.help.text
+msgctxt "04060106.xhp#hd_id2577161.154.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: 04060106.xhp#par_id3736803.155.help.text
+msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
+msgstr ""
+
+#: 04060106.xhp#par_id6016818.156.help.text
+msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id9288877.help.text
+#, fuzzy
+msgid "<bookmark_value>CSCH function</bookmark_value>"
+msgstr "<bookmark_value>ASC function</bookmark_value>"
+
+#: 04060106.xhp#hd_id4325650.159.help.text
+msgid "CSCH"
+msgstr ""
+
+#: 04060106.xhp#par_id579916.160.help.text
+msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id5336768.161.help.text
+msgctxt "04060106.xhp#hd_id5336768.161.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3108851.162.help.text
+#, fuzzy
+msgid "CSCH(Number)"
+msgstr "COSH(Number)"
+
+#: 04060106.xhp#par_id1394188.163.help.text
+#, fuzzy
+msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
+msgstr "Returns the hyperbolic cosine of <emph>Number</emph>."
+
+#: 04060106.xhp#hd_id6037477.164.help.text
+msgctxt "04060106.xhp#hd_id6037477.164.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id5426085.165.help.text
+msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
+msgstr ""
+
+#: 04060106.xhp#bm_id3145314.help.text
+msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
+msgstr "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145314.188.help.text
+msgid "DEGREES"
+msgstr "DEGREES"
+
+#: 04060106.xhp#par_id3149939.189.help.text
+msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
+
+#: 04060106.xhp#hd_id3150623.190.help.text
+msgctxt "04060106.xhp#hd_id3150623.190.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3145600.191.help.text
+msgid "DEGREES(Number)"
+msgstr "DEGREES(Number)"
+
+#: 04060106.xhp#par_id3149484.192.help.text
+msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
+msgstr "<emph>Number</emph> is the angle in radians to be converted to degrees."
+
+#: 04060106.xhp#hd_id3669545.help.text
+msgctxt "04060106.xhp#hd_id3669545.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3459578.help.text
+msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+msgstr "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+
+#: 04060106.xhp#bm_id3148698.help.text
+msgid "<bookmark_value>EXP function</bookmark_value>"
+msgstr "<bookmark_value>EXP function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3148698.198.help.text
+msgid "EXP"
+msgstr "EXP"
+
+#: 04060106.xhp#par_id3150592.199.help.text
+msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+
+#: 04060106.xhp#hd_id3150351.200.help.text
+msgctxt "04060106.xhp#hd_id3150351.200.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3146786.201.help.text
+msgid "EXP(Number)"
+msgstr "EXP(Number)"
+
+#: 04060106.xhp#par_id3155608.202.help.text
+msgid "<emph>Number</emph> is the power to which e is to be raised."
+msgstr "<emph>Number</emph> is the power to which e is to be raised."
+
+#: 04060106.xhp#hd_id3154418.203.help.text
+msgctxt "04060106.xhp#hd_id3154418.203.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3156340.204.help.text
+msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
+msgstr "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
+
+#: 04060106.xhp#bm_id3145781.help.text
+msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
+msgstr "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145781.208.help.text
+msgid "FACT"
+msgstr "FACT"
+
+#: 04060106.xhp#par_id3151109.209.help.text
+msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3146902.210.help.text
+msgctxt "04060106.xhp#hd_id3146902.210.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3154661.211.help.text
+msgid "FACT(Number)"
+msgstr "FACT(Number)"
+
+#: 04060106.xhp#par_id3152952.212.help.text
+msgid " Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
+msgstr " Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
+
+#: 04060106.xhp#par_id3834650.help.text
+msgid "=FACT(0) returns 1 by definition. "
+msgstr "=FACT(0) returns 1 by definition. "
+
+#: 04060106.xhp#par_id8429517.help.text
+msgid "The factorial of a negative number returns the \"invalid argument\" error."
+msgstr "The factorial of a negative number returns the \"invalid argument\" error."
+
+#: 04060106.xhp#hd_id3154569.213.help.text
+msgctxt "04060106.xhp#hd_id3154569.213.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3154476.216.help.text
+msgid "<item type=\"input\">=FACT(3)</item> returns 6."
+msgstr "<item type=\"input\">=FACT(3)</item> returns 6."
+
+#: 04060106.xhp#par_id3147525.214.help.text
+msgid "<item type=\"input\">=FACT(0)</item> returns 1."
+msgstr "<item type=\"input\">=FACT(0)</item> returns 1."
+
+#: 04060106.xhp#bm_id3159084.help.text
+msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
+msgstr "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
+
+#: 04060106.xhp#hd_id3159084.218.help.text
+msgid "INT"
+msgstr "INT"
+
+#: 04060106.xhp#par_id3158441.219.help.text
+msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
+
+#: 04060106.xhp#hd_id3146132.220.help.text
+msgctxt "04060106.xhp#hd_id3146132.220.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3156146.221.help.text
+msgid "INT(Number)"
+msgstr "INT(Number)"
+
+#: 04060106.xhp#par_id3154117.222.help.text
+msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
+msgstr "Returns <emph>Number</emph> rounded down to the nearest integer."
+
+#: 04060106.xhp#par_id153508.help.text
+msgid "Negative numbers round down to the integer below."
+msgstr "Negative numbers round down to the integer below."
+
+#: 04060106.xhp#hd_id3155118.223.help.text
+msgctxt "04060106.xhp#hd_id3155118.223.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3156267.224.help.text
+msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
+msgstr "<item type=\"input\">=INT(5.7)</item> returns 5."
+
+#: 04060106.xhp#par_id3147323.225.help.text
+msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
+msgstr "<item type=\"input\">=INT(-1.3)</item> returns -2."
+
+#: 04060106.xhp#bm_id3150938.help.text
+msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
+msgstr "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
+
+#: 04060106.xhp#hd_id3150938.227.help.text
+msgid "EVEN"
+msgstr "EVEN"
+
+#: 04060106.xhp#par_id3149988.228.help.text
+msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
+
+#: 04060106.xhp#hd_id3148401.229.help.text
+msgctxt "04060106.xhp#hd_id3148401.229.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3150830.230.help.text
+msgid "EVEN(Number)"
+msgstr "EVEN(Number)"
+
+#: 04060106.xhp#par_id3153350.231.help.text
+msgid " Returns <emph>Number</emph> rounded to the next even integer up, away from zero. "
+msgstr " Returns <emph>Number</emph> rounded to the next even integer up, away from zero. "
+
+#: 04060106.xhp#hd_id3155508.232.help.text
+msgctxt "04060106.xhp#hd_id3155508.232.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: 04060106.xhp#par_id3154361.233.help.text
+msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+msgstr "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+
+#: 04060106.xhp#par_id8477736.help.text
+msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
+msgstr "<item type=\"input\">=EVEN(2)</item> returns 2."
+
+#: 04060106.xhp#par_id159611.help.text
+msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
+msgstr "<item type=\"input\">=EVEN(0)</item> returns 0."
+
+#: 04060106.xhp#par_id6097598.help.text
+msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+msgstr "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+
+#: 04060106.xhp#bm_id3147356.help.text
+msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
+msgstr "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
+
+#: 04060106.xhp#hd_id3147356.237.help.text
+msgid "GCD"
+msgstr "GCD"
+
+#: 04060106.xhp#par_id3152465.238.help.text
+msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
+
+#: 04060106.xhp#par_id2769249.help.text
+msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
+msgstr "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
+
+#: 04060106.xhp#hd_id3150643.239.help.text
+msgctxt "04060106.xhp#hd_id3150643.239.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3154524.240.help.text
+msgid "GCD(Integer1; Integer2; ...; Integer30)"
+msgstr "GCD(Integer1; Integer2; ...; Integer30)"
+
+#: 04060106.xhp#par_id3149340.241.help.text
+msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
+msgstr "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
+
+#: 04060106.xhp#hd_id3147317.242.help.text
+msgctxt "04060106.xhp#hd_id3147317.242.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3151285.243.help.text
+msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
+msgstr "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
+
+#: 04060106.xhp#par_id1604663.help.text
+msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
+msgstr "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
+
+#: 04060106.xhp#bm_id3151221.help.text
+msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
+msgstr "<bookmark_value>GCD_ADD function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3151221.677.help.text
+msgid "GCD_ADD"
+msgstr "GCD_ADD"
+
+#: 04060106.xhp#par_id3153257.678.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
+
+#: 04060106.xhp#hd_id3147548.679.help.text
+msgctxt "04060106.xhp#hd_id3147548.679.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3156205.680.help.text
+msgid "GCD_ADD(Number(s))"
+msgstr "GCD_ADD(Number(s))"
+
+#: 04060106.xhp#par_id3145150.681.help.text
+msgctxt "04060106.xhp#par_id3145150.681.help.text"
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Number(s)</emph> is a list of up to 30 numbers."
+
+#: 04060106.xhp#hd_id3150239.682.help.text
+msgctxt "04060106.xhp#hd_id3150239.682.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3159192.683.help.text
+msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
+msgstr "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
+
+#: 04060106.xhp#bm_id3156048.help.text
+msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
+msgstr "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
+
+#: 04060106.xhp#hd_id3156048.245.help.text
+msgid "ISEVEN"
+msgstr "ISEVEN"
+
+#: 04060106.xhp#par_id3149169.246.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
+
+#: 04060106.xhp#hd_id3146928.247.help.text
+msgctxt "04060106.xhp#hd_id3146928.247.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3151203.248.help.text
+msgid "ISEVEN(Value)"
+msgstr "ISEVEN(Value)"
+
+#: 04060106.xhp#par_id3150491.249.help.text
+msgctxt "04060106.xhp#par_id3150491.249.help.text"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "<emph>Value</emph> is the value to be checked."
+
+#: 04060106.xhp#par_id3445844.help.text
+msgctxt "04060106.xhp#par_id3445844.help.text"
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+
+#: 04060106.xhp#hd_id3154136.250.help.text
+msgctxt "04060106.xhp#hd_id3154136.250.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3163813.251.help.text
+msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
+
+#: 04060106.xhp#par_id8378856.help.text
+msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
+
+#: 04060106.xhp#par_id7154759.help.text
+msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+
+#: 04060106.xhp#par_id1912289.help.text
+msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+
+#: 04060106.xhp#par_id5627307.help.text
+msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+
+#: 04060106.xhp#bm_id3156034.help.text
+msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
+msgstr "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
+
+#: 04060106.xhp#hd_id3156034.255.help.text
+msgid "ISODD"
+msgstr "ISODD"
+
+#: 04060106.xhp#par_id3155910.256.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
+
+#: 04060106.xhp#hd_id3151006.257.help.text
+msgctxt "04060106.xhp#hd_id3151006.257.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3151375.258.help.text
+msgid "ISODD(value)"
+msgstr "ISODD(value)"
+
+#: 04060106.xhp#par_id3155139.259.help.text
+msgctxt "04060106.xhp#par_id3155139.259.help.text"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "<emph>Value</emph> is the value to be checked."
+
+#: 04060106.xhp#par_id9027680.help.text
+msgctxt "04060106.xhp#par_id9027680.help.text"
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgstr "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+
+#: 04060106.xhp#hd_id3163723.260.help.text
+msgctxt "04060106.xhp#hd_id3163723.260.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3155345.261.help.text
+msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(33)</item> returns TRUE"
+
+#: 04060106.xhp#par_id9392986.help.text
+msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+msgstr "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+
+#: 04060106.xhp#par_id5971251.help.text
+msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+
+#: 04060106.xhp#par_id4136478.help.text
+msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+msgstr "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+
+#: 04060106.xhp#bm_id3145213.help.text
+msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
+msgstr "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145213.265.help.text
+msgid "LCM"
+msgstr "LCM"
+
+#: 04060106.xhp#par_id3146814.266.help.text
+msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
+
+#: 04060106.xhp#hd_id3148632.267.help.text
+msgctxt "04060106.xhp#hd_id3148632.267.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3147279.268.help.text
+msgid "LCM(Integer1; Integer2; ...; Integer30)"
+msgstr "LCM(Integer1; Integer2; ...; Integer30)"
+
+#: 04060106.xhp#par_id3156348.269.help.text
+msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
+msgstr "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
+
+#: 04060106.xhp#hd_id3156431.270.help.text
+msgctxt "04060106.xhp#hd_id3156431.270.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3154914.271.help.text
+msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
+msgstr "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
+
+#: 04060106.xhp#bm_id3154230.help.text
+msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>LCM_ADD function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3154230.684.help.text
+msgid "LCM_ADD"
+msgstr "LCM_ADD"
+
+#: 04060106.xhp#par_id3149036.685.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
+
+#: 04060106.xhp#hd_id3153132.686.help.text
+msgctxt "04060106.xhp#hd_id3153132.686.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3154395.687.help.text
+msgid "LCM_ADD(Number(s))"
+msgstr "LCM_ADD(Number(s))"
+
+#: 04060106.xhp#par_id3147377.688.help.text
+msgctxt "04060106.xhp#par_id3147377.688.help.text"
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Number(s)</emph> is a list of up to 30 numbers."
+
+#: 04060106.xhp#hd_id3145122.689.help.text
+msgctxt "04060106.xhp#hd_id3145122.689.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3145135.690.help.text
+msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+msgstr "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+
+#: 04060106.xhp#bm_id3155802.help.text
+msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
+msgstr "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
+
+#: 04060106.xhp#hd_id3155802.273.help.text
+msgid "COMBIN"
+msgstr "COMBIN"
+
+#: 04060106.xhp#par_id3156172.274.help.text
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
+
+#: 04060106.xhp#hd_id3156193.275.help.text
+msgctxt "04060106.xhp#hd_id3156193.275.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3150223.276.help.text
+msgid "COMBIN(Count1; Count2)"
+msgstr "COMBIN(Count1; Count2)"
+
+#: 04060106.xhp#par_id3150313.277.help.text
+msgctxt "04060106.xhp#par_id3150313.277.help.text"
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "<emph>Count1</emph> is the number of items in the set."
+
+#: 04060106.xhp#par_id3153830.278.help.text
+msgctxt "04060106.xhp#par_id3153830.278.help.text"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "<emph>Count2</emph> is the number of items to choose from the set."
+
+#: 04060106.xhp#par_id6807458.help.text
+msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
+msgstr "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
+
+#: 04060106.xhp#par_id7414471.help.text
+msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+msgstr "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+
+#: 04060106.xhp#hd_id3153171.279.help.text
+msgctxt "04060106.xhp#hd_id3153171.279.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3153517.280.help.text
+msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
+msgstr "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
+
+#: 04060106.xhp#bm_id3150284.help.text
+msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
+msgstr "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
+
+#: 04060106.xhp#hd_id3150284.282.help.text
+msgid "COMBINA"
+msgstr "COMBINA"
+
+#: 04060106.xhp#par_id3157894.283.help.text
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
+
+#: 04060106.xhp#hd_id3145752.284.help.text
+msgctxt "04060106.xhp#hd_id3145752.284.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3145765.285.help.text
+msgid "COMBINA(Count1; Count2)"
+msgstr "COMBINA(Count1; Count2)"
+
+#: 04060106.xhp#par_id3153372.286.help.text
+msgctxt "04060106.xhp#par_id3153372.286.help.text"
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "<emph>Count1</emph> is the number of items in the set."
+
+#: 04060106.xhp#par_id3155544.287.help.text
+msgctxt "04060106.xhp#par_id3155544.287.help.text"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "<emph>Count2</emph> is the number of items to choose from the set."
+
+#: 04060106.xhp#par_id1997131.help.text
+msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
+msgstr "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
+
+#: 04060106.xhp#par_id2052064.help.text
+msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+msgstr "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+
+#: 04060106.xhp#hd_id3154584.288.help.text
+msgctxt "04060106.xhp#hd_id3154584.288.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3152904.289.help.text
+msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
+msgstr "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
+
+#: 04060106.xhp#bm_id3156086.help.text
+msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
+msgstr "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
+
+#: 04060106.xhp#hd_id3156086.291.help.text
+msgid "TRUNC"
+msgstr "TRUNC"
+
+#: 04060106.xhp#par_id3157866.292.help.text
+msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
+
+#: 04060106.xhp#hd_id3148499.293.help.text
+msgctxt "04060106.xhp#hd_id3148499.293.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3148511.294.help.text
+msgid "TRUNC(Number; Count)"
+msgstr "TRUNC(Number; Count)"
+
+#: 04060106.xhp#par_id3150796.295.help.text
+msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
+msgstr "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
+
+#: 04060106.xhp#par_id3150816.296.help.text
+msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
+msgstr "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
+
+#: 04060106.xhp#par_id3148548.557.help.text
+msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
+msgstr "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
+
+#: 04060106.xhp#hd_id3152555.297.help.text
+msgctxt "04060106.xhp#hd_id3152555.297.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3152569.298.help.text
+msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
+msgstr "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
+
+#: 04060106.xhp#par_id7050080.help.text
+msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
+msgstr "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
+
+#: 04060106.xhp#bm_id3153601.help.text
+msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
+msgstr "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
+
+#: 04060106.xhp#hd_id3153601.301.help.text
+msgid "LN"
+msgstr "LN"
+
+#: 04060106.xhp#par_id3154974.302.help.text
+msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+
+#: 04060106.xhp#hd_id3154993.303.help.text
+msgctxt "04060106.xhp#hd_id3154993.303.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3155284.304.help.text
+msgid "LN(Number)"
+msgstr "LN(Number)"
+
+#: 04060106.xhp#par_id3155297.305.help.text
+msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
+msgstr "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
+
+#: 04060106.xhp#hd_id3153852.306.help.text
+msgctxt "04060106.xhp#hd_id3153852.306.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3153866.307.help.text
+msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+msgstr "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+
+#: 04060106.xhp#par_id5747245.help.text
+msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+msgstr "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+
+#: 04060106.xhp#bm_id3109813.help.text
+msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
+msgstr "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
+
+#: 04060106.xhp#hd_id3109813.311.help.text
+msgid "LOG"
+msgstr "LOG"
+
+#: 04060106.xhp#par_id3109841.312.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
+
+#: 04060106.xhp#hd_id3144719.313.help.text
+msgctxt "04060106.xhp#hd_id3144719.313.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3144732.314.help.text
+msgid "LOG(Number; Base)"
+msgstr "LOG(Number; Base)"
+
+#: 04060106.xhp#par_id3144746.315.help.text
+msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
+msgstr "<emph>Number</emph> is the value whose logarithm is to be calculated."
+
+#: 04060106.xhp#par_id3152840.316.help.text
+msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
+msgstr "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
+
+#: 04060106.xhp#hd_id3152860.317.help.text
+msgctxt "04060106.xhp#hd_id3152860.317.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3154429.318.help.text
+msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
+msgstr "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
+
+#: 04060106.xhp#par_id5577562.help.text
+msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+msgstr "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+
+#: 04060106.xhp#bm_id3154187.help.text
+msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
+msgstr "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
+
+#: 04060106.xhp#hd_id3154187.322.help.text
+msgid "LOG10"
+msgstr "LOG10"
+
+#: 04060106.xhp#par_id3155476.323.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3155494.324.help.text
+msgctxt "04060106.xhp#hd_id3155494.324.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3159294.325.help.text
+msgid "LOG10(Number)"
+msgstr "LOG10(Number)"
+
+#: 04060106.xhp#par_id3159308.326.help.text
+msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
+msgstr "Returns the logarithm to base 10 of <emph>Number</emph>."
+
+#: 04060106.xhp#hd_id3159328.327.help.text
+msgctxt "04060106.xhp#hd_id3159328.327.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3157916.328.help.text
+msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
+msgstr "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
+
+#: 04060106.xhp#bm_id3152518.help.text
+msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgstr "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152518.332.help.text
+msgid "CEILING"
+msgstr "CEILING"
+
+#: 04060106.xhp#par_id3153422.558.help.text
+msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
+
+#: 04060106.xhp#hd_id3153440.334.help.text
+msgctxt "04060106.xhp#hd_id3153440.334.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3153454.335.help.text
+msgid "CEILING(Number; Significance; Mode)"
+msgstr "CEILING(Number; Significance; Mode)"
+
+#: 04060106.xhp#par_id3153467.336.help.text
+msgid "<emph>Number</emph> is the number that is to be rounded up."
+msgstr "<emph>Number</emph> is the number that is to be rounded up."
+
+#: 04060106.xhp#par_id3155000.337.help.text
+msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
+msgstr "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
+
+#: 04060106.xhp#par_id3155020.559.help.text
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+
+#: 04060106.xhp#par_id3163792.629.help.text
+msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+
+#: 04060106.xhp#hd_id3145697.338.help.text
+msgctxt "04060106.xhp#hd_id3145697.338.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3145710.339.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
+msgstr "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
+
+#: 04060106.xhp#par_id3145725.340.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
+msgstr "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
+
+#: 04060106.xhp#par_id3145740.341.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
+msgstr "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
+
+#: 04060106.xhp#bm_id3157762.help.text
+msgid "<bookmark_value>PI function</bookmark_value>"
+msgstr "<bookmark_value>PI function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3157762.343.help.text
+msgid "PI"
+msgstr "PI"
+
+#: 04060106.xhp#par_id3157790.344.help.text
+msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
+
+#: 04060106.xhp#hd_id3157809.345.help.text
+msgctxt "04060106.xhp#hd_id3157809.345.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3157822.346.help.text
+msgid "PI()"
+msgstr "PI()"
+
+#: 04060106.xhp#hd_id3157836.347.help.text
+msgctxt "04060106.xhp#hd_id3157836.347.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3152370.348.help.text
+msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
+msgstr "<item type=\"input\">=PI()</item> returns 3.14159265358979."
+
+#: 04060106.xhp#bm_id3152418.help.text
+msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+msgstr "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152418.635.help.text
+msgid "MULTINOMIAL"
+msgstr "MULTINOMIAL"
+
+#: 04060106.xhp#par_id3152454.636.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
+
+#: 04060106.xhp#hd_id3155646.637.help.text
+msgctxt "04060106.xhp#hd_id3155646.637.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3155660.638.help.text
+msgid "MULTINOMIAL(Number(s))"
+msgstr "MULTINOMIAL(Number(s))"
+
+#: 04060106.xhp#par_id3155673.639.help.text
+msgctxt "04060106.xhp#par_id3155673.639.help.text"
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "<emph>Number(s)</emph> is a list of up to 30 numbers."
+
+#: 04060106.xhp#hd_id3155687.640.help.text
+msgctxt "04060106.xhp#hd_id3155687.640.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3155701.641.help.text
+msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
+msgstr "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
+
+#: 04060106.xhp#bm_id3155717.help.text
+msgid "<bookmark_value>POWER function</bookmark_value>"
+msgstr "<bookmark_value>POWER function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3155717.350.help.text
+msgid "POWER"
+msgstr "POWER"
+
+#: 04060106.xhp#par_id3159495.351.help.text
+msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
+
+#: 04060106.xhp#hd_id3159513.352.help.text
+msgctxt "04060106.xhp#hd_id3159513.352.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3159526.353.help.text
+msgid "POWER(Base; Exponent)"
+msgstr "POWER(Base; Exponent)"
+
+#: 04060106.xhp#par_id3159540.354.help.text
+msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+msgstr "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+
+#: 04060106.xhp#par_id5081637.help.text
+msgid "The same result may be achieved by using the exponentiation operator ^:"
+msgstr "The same result may be achieved by using the exponentiation operator ^:"
+
+#: 04060106.xhp#par_id9759514.help.text
+msgid "<item type=\"literal\">Base^Exponent</item>"
+msgstr "<item type=\"literal\">Base^Exponent</item>"
+
+#: 04060106.xhp#hd_id3159580.356.help.text
+msgctxt "04060106.xhp#hd_id3159580.356.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3159594.357.help.text
+msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
+msgstr "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
+
+#: 04060106.xhp#par_id1614429.help.text
+msgid "=4^3 also returns 4 to the power of 3."
+msgstr "=4^3 also returns 4 to the power of 3."
+
+#: 04060106.xhp#bm_id3152651.help.text
+msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
+msgstr "<bookmark_value>SERIESSUM function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152651.642.help.text
+msgid "SERIESSUM"
+msgstr "SERIESSUM"
+
+#: 04060106.xhp#par_id3152688.643.help.text
+msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
+msgstr "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
+
+#: 04060106.xhp#par_id3152708.644.help.text
+msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
+msgstr "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
+
+#: 04060106.xhp#hd_id3152724.645.help.text
+msgctxt "04060106.xhp#hd_id3152724.645.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_idN11BD9.help.text
+msgid "SERIESSUM(X; N; M; Coefficients)"
+msgstr "SERIESSUM(X; N; M; Coefficients)"
+
+#: 04060106.xhp#par_id3152737.646.help.text
+msgid "<emph>X</emph> is the input value for the power series."
+msgstr "<emph>X</emph> is the input value for the power series."
+
+#: 04060106.xhp#par_id3144344.647.help.text
+msgid "<emph>N</emph> is the initial power"
+msgstr "<emph>N</emph> is the initial power"
+
+#: 04060106.xhp#par_id3144357.648.help.text
+msgid "<emph>M</emph> is the increment to increase N"
+msgstr "<emph>M</emph> is the increment to increase N"
+
+#: 04060106.xhp#par_id3144370.649.help.text
+msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
+msgstr "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
+
+#: 04060106.xhp#bm_id3144386.help.text
+msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
+msgstr "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
+
+#: 04060106.xhp#hd_id3144386.361.help.text
+msgctxt "04060106.xhp#hd_id3144386.361.help.text"
+msgid "PRODUCT"
+msgstr "PRODUCT"
+
+#: 04060106.xhp#par_id3144414.362.help.text
+msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
+
+#: 04060106.xhp#hd_id3144433.363.help.text
+msgctxt "04060106.xhp#hd_id3144433.363.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3144446.364.help.text
+msgid "PRODUCT(Number1; Number2; ...; Number30)"
+msgstr "PRODUCT(Number1; Number2; ...; Number30)"
+
+#: 04060106.xhp#par_id3144460.365.help.text
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
+msgstr "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
+
+#: 04060106.xhp#par_id1589098.help.text
+msgid "PRODUCT returns number1 * number2 * number3 * ..."
+msgstr "PRODUCT returns number1 * number2 * number3 * ..."
+
+#: 04060106.xhp#hd_id3144480.366.help.text
+msgctxt "04060106.xhp#hd_id3144480.366.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3144494.367.help.text
+msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
+msgstr "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
+
+#: 04060106.xhp#bm_id3160340.help.text
+msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
+msgstr "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
+
+#: 04060106.xhp#hd_id3160340.369.help.text
+msgid "SUMSQ"
+msgstr "SUMSQ"
+
+#: 04060106.xhp#par_id3160368.370.help.text
+msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
+
+#: 04060106.xhp#hd_id3160388.371.help.text
+msgctxt "04060106.xhp#hd_id3160388.371.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3160402.372.help.text
+msgid "SUMSQ(Number1; Number2; ...; Number30)"
+msgstr "SUMSQ(Number1; Number2; ...; Number30)"
+
+#: 04060106.xhp#par_id3160415.373.help.text
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
+msgstr "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
+
+#: 04060106.xhp#hd_id3160436.374.help.text
+msgctxt "04060106.xhp#hd_id3160436.374.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3160449.375.help.text
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
+msgstr "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
+
+#: 04060106.xhp#bm_id3158247.help.text
+msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
+msgstr "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
+
+#: 04060106.xhp#hd_id3158247.387.help.text
+msgid "MOD"
+msgstr "MOD"
+
+#: 04060106.xhp#par_id3158276.388.help.text
+msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
+
+#: 04060106.xhp#hd_id3158294.389.help.text
+msgctxt "04060106.xhp#hd_id3158294.389.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3158308.390.help.text
+msgid "MOD(Dividend; Divisor)"
+msgstr "MOD(Dividend; Divisor)"
+
+#: 04060106.xhp#par_id3158321.391.help.text
+msgid " For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
+msgstr " For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
+
+#: 04060106.xhp#par_id3158341.392.help.text
+msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
+msgstr "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
+
+#: 04060106.xhp#hd_id3158361.393.help.text
+msgctxt "04060106.xhp#hd_id3158361.393.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3158374.394.help.text
+msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
+msgstr "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
+
+#: 04060106.xhp#par_id1278420.help.text
+msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+msgstr "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+
+#: 04060106.xhp#bm_id3144592.help.text
+msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
+msgstr "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
+
+#: 04060106.xhp#hd_id3144592.652.help.text
+msgid "QUOTIENT"
+msgstr "QUOTIENT"
+
+#: 04060106.xhp#par_id3144627.653.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
+
+#: 04060106.xhp#hd_id3144646.654.help.text
+msgctxt "04060106.xhp#hd_id3144646.654.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3144659.655.help.text
+msgid "QUOTIENT(Numerator; Denominator)"
+msgstr "QUOTIENT(Numerator; Denominator)"
+
+#: 04060106.xhp#par_id9038972.help.text
+msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
+msgstr "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
+
+#: 04060106.xhp#par_id7985168.help.text
+msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
+msgstr "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
+
+#: 04060106.xhp#hd_id3144674.656.help.text
+msgctxt "04060106.xhp#hd_id3144674.656.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3144687.657.help.text
+msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+msgstr "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+
+#: 04060106.xhp#bm_id3144702.help.text
+msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
+msgstr "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
+
+#: 04060106.xhp#hd_id3144702.377.help.text
+msgid "RADIANS"
+msgstr "RADIANS"
+
+#: 04060106.xhp#par_id3158025.378.help.text
+msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+
+#: 04060106.xhp#hd_id3158042.379.help.text
+msgctxt "04060106.xhp#hd_id3158042.379.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3158055.380.help.text
+msgid "RADIANS(Number)"
+msgstr "RADIANS(Number)"
+
+#: 04060106.xhp#par_id3158069.381.help.text
+msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
+msgstr "<emph>Number</emph> is the angle in degrees to be converted to radians."
+
+#: 04060106.xhp#hd_id876186.help.text
+msgctxt "04060106.xhp#hd_id876186.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3939634.help.text
+msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
+msgstr "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
+
+#: 04060106.xhp#bm_id3158121.help.text
+msgid "<bookmark_value>ROUND function</bookmark_value>"
+msgstr "<bookmark_value>ROUND function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3158121.398.help.text
+msgid "ROUND"
+msgstr "ROUND"
+
+#: 04060106.xhp#par_id3158150.399.help.text
+msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
+
+#: 04060106.xhp#hd_id3158169.400.help.text
+msgctxt "04060106.xhp#hd_id3158169.400.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3158182.401.help.text
+msgid "ROUND(Number; Count)"
+msgstr "ROUND(Number; Count)"
+
+#: 04060106.xhp#par_id3158196.402.help.text
+msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
+msgstr "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
+
+#: 04060106.xhp#par_id599688.help.text
+msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgstr "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+
+#: 04060106.xhp#hd_id3145863.404.help.text
+msgctxt "04060106.xhp#hd_id3145863.404.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3145876.405.help.text
+msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
+msgstr "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
+
+#: 04060106.xhp#par_id3145899.406.help.text
+msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
+msgstr "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
+
+#: 04060106.xhp#par_id1371501.help.text
+msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+msgstr "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+
+#: 04060106.xhp#par_id4661702.help.text
+msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3. "
+msgstr "<item type=\"input\">=ROUND(2.5)</item> returns 3. "
+
+#: 04060106.xhp#par_id7868892.help.text
+msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+msgstr "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+
+#: 04060106.xhp#bm_id3145991.help.text
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
+msgstr "<bookmark_value>ROUNDDOWN function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3145991.24.help.text
+msgid "ROUNDDOWN"
+msgstr "ROUNDDOWN"
+
+#: 04060106.xhp#par_id3146020.25.help.text
+msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
+
+#: 04060106.xhp#hd_id3146037.26.help.text
+msgctxt "04060106.xhp#hd_id3146037.26.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3146051.27.help.text
+msgid "ROUNDDOWN(Number; Count)"
+msgstr "ROUNDDOWN(Number; Count)"
+
+#: 04060106.xhp#par_id3146064.28.help.text
+msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
+msgstr "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
+
+#: 04060106.xhp#par_id2188787.help.text
+msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+msgstr "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+
+#: 04060106.xhp#hd_id3163164.30.help.text
+msgctxt "04060106.xhp#hd_id3163164.30.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3163178.31.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
+msgstr "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
+
+#: 04060106.xhp#par_id5833307.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
+msgstr "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
+
+#: 04060106.xhp#par_id7726676.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
+msgstr "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
+
+#: 04060106.xhp#par_id3729361.help.text
+msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
+msgstr "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
+
+#: 04060106.xhp#bm_id3163268.help.text
+msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
+msgstr "<bookmark_value>ROUNDUP function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3163268.140.help.text
+msgid "ROUNDUP"
+msgstr "ROUNDUP"
+
+#: 04060106.xhp#par_id3163297.141.help.text
+msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
+
+#: 04060106.xhp#hd_id3163315.142.help.text
+msgctxt "04060106.xhp#hd_id3163315.142.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3163328.143.help.text
+msgid "ROUNDUP(Number; Count)"
+msgstr "ROUNDUP(Number; Count)"
+
+#: 04060106.xhp#par_id3163342.144.help.text
+msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
+msgstr "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
+
+#: 04060106.xhp#par_id9573961.help.text
+msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgstr "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+
+#: 04060106.xhp#hd_id3163381.146.help.text
+msgctxt "04060106.xhp#hd_id3163381.146.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3144786.147.help.text
+msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
+msgstr "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
+
+#: 04060106.xhp#par_id7700430.help.text
+msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+msgstr "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+
+#: 04060106.xhp#par_id1180455.help.text
+msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+msgstr "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+
+#: 04060106.xhp#par_id3405560.help.text
+msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+msgstr "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+
+#: 04060106.xhp#par_id3409527.help.text
+msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgstr "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+
+#: 04060106.xhp#bm_id5256537.help.text
+#, fuzzy
+msgid "<bookmark_value>SEC function</bookmark_value>"
+msgstr "<bookmark_value>SKEW function</bookmark_value>"
+
+#: 04060106.xhp#hd_id5187204.149.help.text
+msgid "SEC"
+msgstr ""
+
+#: 04060106.xhp#par_id9954962.150.help.text
+msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id422243.151.help.text
+msgctxt "04060106.xhp#hd_id422243.151.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id2055913.152.help.text
+#, fuzzy
+msgid "SEC(Number)"
+msgstr "SIN(Number)"
+
+#: 04060106.xhp#par_id9568170.153.help.text
+msgid " Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
+msgstr ""
+
+#: 04060106.xhp#par_id9047465.help.text
+#, fuzzy
+msgid "To return the secant of an angle in degrees, use the RADIANS function."
+msgstr "To return the sine of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id9878918.154.help.text
+msgctxt "04060106.xhp#hd_id9878918.154.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: 04060106.xhp#par_id6935513.155.help.text
+msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
+msgstr ""
+
+#: 04060106.xhp#par_id3954287.156.help.text
+msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
+msgstr ""
+
+#: 04060106.xhp#bm_id840005.help.text
+#, fuzzy
+msgid "<bookmark_value>SECH function</bookmark_value>"
+msgstr "<bookmark_value>SEARCH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id8661934.159.help.text
+msgid "SECH"
+msgstr ""
+
+#: 04060106.xhp#par_id408174.160.help.text
+msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
+msgstr ""
+
+#: 04060106.xhp#hd_id875988.161.help.text
+msgctxt "04060106.xhp#hd_id875988.161.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id4985391.162.help.text
+#, fuzzy
+msgid "SECH(Number)"
+msgstr "SINH(Number)"
+
+#: 04060106.xhp#par_id1952124.163.help.text
+#, fuzzy
+msgid "Returns the hyperbolic secant of <emph>Number</emph>."
+msgstr "Returns the hyperbolic sine of <emph>Number</emph>."
+
+#: 04060106.xhp#hd_id9838764.164.help.text
+msgctxt "04060106.xhp#hd_id9838764.164.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id1187764.165.help.text
+msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
+msgstr ""
+
+#: 04060106.xhp#bm_id3144877.help.text
+msgid "<bookmark_value>SIN function</bookmark_value>"
+msgstr "<bookmark_value>SIN function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3144877.408.help.text
+msgid "SIN"
+msgstr "SIN"
+
+#: 04060106.xhp#par_id3144906.409.help.text
+msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
+
+#: 04060106.xhp#hd_id3144923.410.help.text
+msgctxt "04060106.xhp#hd_id3144923.410.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3144937.411.help.text
+msgid "SIN(Number)"
+msgstr "SIN(Number)"
+
+#: 04060106.xhp#par_id3144950.412.help.text
+msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+msgstr "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+
+#: 04060106.xhp#par_id8079470.help.text
+msgid "To return the sine of an angle in degrees, use the RADIANS function."
+msgstr "To return the sine of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id3144969.413.help.text
+msgctxt "04060106.xhp#hd_id3144969.413.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3144983.414.help.text
+msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
+msgstr "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
+
+#: 04060106.xhp#par_id3916440.help.text
+msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgstr "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+
+#: 04060106.xhp#bm_id3163397.help.text
+msgid "<bookmark_value>SINH function</bookmark_value>"
+msgstr "<bookmark_value>SINH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3163397.418.help.text
+msgid "SINH"
+msgstr "SINH"
+
+#: 04060106.xhp#par_id3163426.419.help.text
+msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3163444.420.help.text
+msgctxt "04060106.xhp#hd_id3163444.420.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3163457.421.help.text
+msgid "SINH(Number)"
+msgstr "SINH(Number)"
+
+#: 04060106.xhp#par_id3163471.422.help.text
+msgid "Returns the hyperbolic sine of <emph>Number</emph>."
+msgstr "Returns the hyperbolic sine of <emph>Number</emph>."
+
+#: 04060106.xhp#hd_id3163491.423.help.text
+msgctxt "04060106.xhp#hd_id3163491.423.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3163504.424.help.text
+msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
+msgstr "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
+
+#: 04060106.xhp#bm_id3163596.help.text
+msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+msgstr "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+
+#: 04060106.xhp#hd_id3163596.428.help.text
+msgctxt "04060106.xhp#hd_id3163596.428.help.text"
+msgid "SUM"
+msgstr "SUM"
+
+#: 04060106.xhp#par_id3163625.429.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
+
+#: 04060106.xhp#hd_id3163643.430.help.text
+msgctxt "04060106.xhp#hd_id3163643.430.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3163656.431.help.text
+msgid "SUM(Number1; Number2; ...; Number30)"
+msgstr "SUM(Number1; Number2; ...; Number30)"
+
+#: 04060106.xhp#par_id3163671.432.help.text
+msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
+msgstr "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
+
+#: 04060106.xhp#hd_id3163690.433.help.text
+msgctxt "04060106.xhp#hd_id3163690.433.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3163704.434.help.text
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
+msgstr "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
+
+#: 04060106.xhp#par_id3151740.556.help.text
+msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
+msgstr "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
+
+#: 04060106.xhp#par_id3151756.619.help.text
+msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
+msgstr "Conditions linked by AND can be used with the function SUM() in the following manner:"
+
+#: 04060106.xhp#par_id3151774.620.help.text
+msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
+msgstr "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
+
+#: 04060106.xhp#par_id3151799.621.help.text
+msgid "Enter the following formula as an array formula:"
+msgstr "Enter the following formula as an array formula:"
+
+#: 04060106.xhp#par_id3151813.622.help.text
+msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgstr "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+
+#: 04060106.xhp#par_id3151828.623.help.text
+msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
+msgstr "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
+
+#: 04060106.xhp#par_id3151869.624.help.text
+msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+msgstr "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+
+#: 04060106.xhp#par_id3151884.625.help.text
+msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
+msgstr "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
+
+#: 04060106.xhp#bm_id3151957.help.text
+msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
+msgstr "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
+
+#: 04060106.xhp#hd_id3151957.436.help.text
+msgid "SUMIF"
+msgstr "SUMIF"
+
+#: 04060106.xhp#par_id3151986.437.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
+
+#: 04060106.xhp#hd_id3152015.438.help.text
+msgctxt "04060106.xhp#hd_id3152015.438.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3152028.439.help.text
+msgid "SUMIF(Range; Criteria; SumRange)"
+msgstr "SUMIF(Range; Criteria; SumRange)"
+
+#: 04060106.xhp#par_id3152043.440.help.text
+msgctxt "04060106.xhp#par_id3152043.440.help.text"
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "<emph>Range</emph> is the range to which the criteria are to be applied."
+
+#: 04060106.xhp#par_id3152062.441.help.text
+msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
+msgstr "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
+
+#: 04060106.xhp#par_id3152083.442.help.text
+msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
+msgstr "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
+
+#: 04060106.xhp#par_id8347422.help.text
+msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
+msgstr "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
+
+#: 04060106.xhp#hd_id3152110.443.help.text
+msgctxt "04060106.xhp#hd_id3152110.443.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3152148.626.help.text
+msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgstr "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+
+#: 04060106.xhp#par_id6670125.help.text
+msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
+msgstr "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
+
+#: 04060106.xhp#par_id6062196.help.text
+msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+msgstr "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+
+#: 04060106.xhp#bm_id3152195.help.text
+msgid "<bookmark_value>TAN function</bookmark_value>"
+msgstr "<bookmark_value>TAN function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3152195.446.help.text
+msgid "TAN"
+msgstr "TAN"
+
+#: 04060106.xhp#par_id3152224.447.help.text
+msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
+
+#: 04060106.xhp#hd_id3152242.448.help.text
+msgctxt "04060106.xhp#hd_id3152242.448.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3152255.449.help.text
+msgid "TAN(Number)"
+msgstr "TAN(Number)"
+
+#: 04060106.xhp#par_id3152269.450.help.text
+msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
+msgstr "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
+
+#: 04060106.xhp#par_id5752128.help.text
+msgid "To return the tangent of an angle in degrees, use the RADIANS function."
+msgstr "To return the tangent of an angle in degrees, use the RADIANS function."
+
+#: 04060106.xhp#hd_id3152287.451.help.text
+msgctxt "04060106.xhp#hd_id3152287.451.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3152301.452.help.text
+msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
+msgstr "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
+
+#: 04060106.xhp#par_id1804864.help.text
+msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+msgstr "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+
+#: 04060106.xhp#bm_id3165434.help.text
+msgid "<bookmark_value>TANH function</bookmark_value>"
+msgstr "<bookmark_value>TANH function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3165434.456.help.text
+msgid "TANH"
+msgstr "TANH"
+
+#: 04060106.xhp#par_id3165462.457.help.text
+msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3165480.458.help.text
+msgctxt "04060106.xhp#hd_id3165480.458.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3165494.459.help.text
+msgid "TANH(Number)"
+msgstr "TANH(Number)"
+
+#: 04060106.xhp#par_id3165508.460.help.text
+msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
+msgstr "Returns the hyperbolic tangent of <emph>Number</emph>."
+
+#: 04060106.xhp#hd_id3165527.461.help.text
+msgctxt "04060106.xhp#hd_id3165527.461.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3165541.462.help.text
+msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
+msgstr "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
+
+#: 04060106.xhp#bm_id3165633.help.text
+msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
+msgstr "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3165633.466.help.text
+msgid "SUBTOTAL"
+msgstr "SUBTOTAL"
+
+#: 04060106.xhp#par_id3165682.467.help.text
+msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
+msgstr "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
+
+#: 04060106.xhp#hd_id3165704.495.help.text
+msgctxt "04060106.xhp#hd_id3165704.495.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3165717.496.help.text
+msgid "SUBTOTAL(Function; Range)"
+msgstr "SUBTOTAL(Function; Range)"
+
+#: 04060106.xhp#par_id3165731.497.help.text
+msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
+msgstr "<emph>Function</emph> is a number that stands for one of the following functions:"
+
+#: 04060106.xhp#par_id3165782.469.help.text
+msgid "Function index"
+msgstr "Function index"
+
+#: 04060106.xhp#par_id3165806.470.help.text
+msgctxt "04060106.xhp#par_id3165806.470.help.text"
+msgid "Function"
+msgstr "Function"
+
+#: 04060106.xhp#par_id3165833.471.help.text
+msgctxt "04060106.xhp#par_id3165833.471.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060106.xhp#par_id3165856.472.help.text
+msgctxt "04060106.xhp#par_id3165856.472.help.text"
+msgid "AVERAGE"
+msgstr "AVERAGE"
+
+#: 04060106.xhp#par_id3165883.473.help.text
+msgctxt "04060106.xhp#par_id3165883.473.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060106.xhp#par_id3165906.474.help.text
+msgctxt "04060106.xhp#par_id3165906.474.help.text"
+msgid "COUNT"
+msgstr "COUNT"
+
+#: 04060106.xhp#par_id3165933.475.help.text
+msgctxt "04060106.xhp#par_id3165933.475.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060106.xhp#par_id3165956.476.help.text
+msgctxt "04060106.xhp#par_id3165956.476.help.text"
+msgid "COUNTA"
+msgstr "COUNTA"
+
+#: 04060106.xhp#par_id3165983.477.help.text
+msgctxt "04060106.xhp#par_id3165983.477.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060106.xhp#par_id3166006.478.help.text
+msgctxt "04060106.xhp#par_id3166006.478.help.text"
+msgid "MAX"
+msgstr "MAX"
+
+#: 04060106.xhp#par_id3166033.479.help.text
+msgctxt "04060106.xhp#par_id3166033.479.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060106.xhp#par_id3166056.480.help.text
+msgctxt "04060106.xhp#par_id3166056.480.help.text"
+msgid "MIN"
+msgstr "MIN"
+
+#: 04060106.xhp#par_id3143316.481.help.text
+msgctxt "04060106.xhp#par_id3143316.481.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060106.xhp#par_id3143339.482.help.text
+msgctxt "04060106.xhp#par_id3143339.482.help.text"
+msgid "PRODUCT"
+msgstr "PRODUCT"
+
+#: 04060106.xhp#par_id3143366.483.help.text
+msgctxt "04060106.xhp#par_id3143366.483.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060106.xhp#par_id3143389.484.help.text
+msgctxt "04060106.xhp#par_id3143389.484.help.text"
+msgid "STDEV"
+msgstr "STDEV"
+
+#: 04060106.xhp#par_id3143416.485.help.text
+msgctxt "04060106.xhp#par_id3143416.485.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060106.xhp#par_id3143439.486.help.text
+msgctxt "04060106.xhp#par_id3143439.486.help.text"
+msgid "STDEVP"
+msgstr "STDEVP"
+
+#: 04060106.xhp#par_id3143466.487.help.text
+msgctxt "04060106.xhp#par_id3143466.487.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060106.xhp#par_id3143489.488.help.text
+msgctxt "04060106.xhp#par_id3143489.488.help.text"
+msgid "SUM"
+msgstr "SUM"
+
+#: 04060106.xhp#par_id3143516.489.help.text
+msgctxt "04060106.xhp#par_id3143516.489.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060106.xhp#par_id3143539.490.help.text
+msgctxt "04060106.xhp#par_id3143539.490.help.text"
+msgid "VAR"
+msgstr "VAR"
+
+#: 04060106.xhp#par_id3143566.491.help.text
+msgctxt "04060106.xhp#par_id3143566.491.help.text"
+msgid "11"
+msgstr "11"
+
+#: 04060106.xhp#par_id3143589.492.help.text
+msgctxt "04060106.xhp#par_id3143589.492.help.text"
+msgid "VARP"
+msgstr "VARP"
+
+#: 04060106.xhp#par_id3143606.498.help.text
+msgid "<emph>Range</emph> is the range whose cells are included."
+msgstr "<emph>Range</emph> is the range whose cells are included."
+
+#: 04060106.xhp#hd_id3143625.499.help.text
+msgctxt "04060106.xhp#hd_id3143625.499.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3143638.562.help.text
+msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
+msgstr "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
+
+#: 04060106.xhp#par_id3143658.563.help.text
+msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+msgstr "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+
+#: 04060106.xhp#bm_id3143672.help.text
+msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
+msgstr "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3143672.564.help.text
+msgid "EUROCONVERT"
+msgstr "EUROCONVERT"
+
+#: 04060106.xhp#par_id3143708.565.help.text
+msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
+
+#: 04060106.xhp#par_id3143731.566.help.text
+msgctxt "04060106.xhp#par_id3143731.566.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Syntax</emph>"
+
+#: 04060106.xhp#par_id3143748.567.help.text
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
+msgstr "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
+
+#: 04060106.xhp#par_id3143763.568.help.text
+msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgstr "<emph>Value</emph> is the amount of the currency to be converted."
+
+#: 04060106.xhp#par_id3143782.569.help.text
+msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
+msgstr "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
+
+#: 04060106.xhp#par_id0119200904301810.help.text
+msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
+msgstr "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
+
+#: 04060106.xhp#par_id0119200904301815.help.text
+msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
+msgstr "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
+
+#: 04060106.xhp#par_id3143819.570.help.text
+msgid "<emph>Examples</emph>"
+msgstr "<emph>Examples</emph>"
+
+#: 04060106.xhp#par_id3143837.571.help.text
+msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+msgstr "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+
+#: 04060106.xhp#par_id3143853.572.help.text
+msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+msgstr "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+
+#: 04060106.xhp#bm_id0908200902090676.help.text
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr "<bookmark_value>CONVERT function</bookmark_value>"
+
+#: 04060106.xhp#hd_id0908200902074836.help.text
+msgid "CONVERT"
+msgstr "CONVERT"
+
+#: 04060106.xhp#par_id0908200902131122.help.text
+msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
+msgstr "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
+
+#: 04060106.xhp#par_id0908200902475420.help.text
+msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
+msgstr "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
+
+#: 04060106.xhp#hd_id0908200902131071.help.text
+msgctxt "04060106.xhp#hd_id0908200902131071.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id0908200902131191.help.text
+msgid "CONVERT(value;\"text\";\"text\")"
+msgstr "CONVERT(value;\"text\";\"text\")"
+
+#: 04060106.xhp#hd_id0908200902131152.help.text
+msgctxt "04060106.xhp#hd_id0908200902131152.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id090820090213112.help.text
+msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+msgstr "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+
+#: 04060106.xhp#par_id0908200902475431.help.text
+msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks. "
+msgstr "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks. "
+
+#: 04060106.xhp#bm_id3157177.help.text
+msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
+msgstr "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
+
+#: 04060106.xhp#hd_id3157177.502.help.text
+msgid "ODD"
+msgstr "ODD"
+
+#: 04060106.xhp#par_id3157205.503.help.text
+msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
+
+#: 04060106.xhp#hd_id3157223.504.help.text
+msgctxt "04060106.xhp#hd_id3157223.504.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3157237.505.help.text
+msgid "ODD(Number)"
+msgstr "ODD(Number)"
+
+#: 04060106.xhp#par_id3157250.506.help.text
+msgid " Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+msgstr " Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+
+#: 04060106.xhp#hd_id3157270.507.help.text
+msgctxt "04060106.xhp#hd_id3157270.507.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3157283.508.help.text
+msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
+msgstr "<item type=\"input\">=ODD(1.2)</item> returns 3."
+
+#: 04060106.xhp#par_id8746910.help.text
+msgid "<item type=\"input\">=ODD(1)</item> returns 1."
+msgstr "<item type=\"input\">=ODD(1)</item> returns 1."
+
+#: 04060106.xhp#par_id9636524.help.text
+msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgstr "<item type=\"input\">=ODD(0)</item> returns 1."
+
+#: 04060106.xhp#par_id5675527.help.text
+msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgstr "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+
+#: 04060106.xhp#bm_id3157404.help.text
+msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
+msgstr "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
+
+#: 04060106.xhp#hd_id3157404.512.help.text
+msgid "FLOOR"
+msgstr "FLOOR"
+
+#: 04060106.xhp#par_id3157432.513.help.text
+msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
+
+#: 04060106.xhp#hd_id3157451.514.help.text
+msgctxt "04060106.xhp#hd_id3157451.514.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3157464.515.help.text
+msgid "FLOOR(Number; Significance; Mode)"
+msgstr "FLOOR(Number; Significance; Mode)"
+
+#: 04060106.xhp#par_id3157478.516.help.text
+msgid "<emph>Number</emph> is the number that is to be rounded down."
+msgstr "<emph>Number</emph> is the number that is to be rounded down."
+
+#: 04060106.xhp#par_id3157497.517.help.text
+msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
+msgstr "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
+
+#: 04060106.xhp#par_id3157517.561.help.text
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+
+#: 04060106.xhp#par_id3163894.630.help.text
+msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+
+#: 04060106.xhp#hd_id3163932.518.help.text
+msgctxt "04060106.xhp#hd_id3163932.518.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3163945.519.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
+msgstr "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
+
+#: 04060106.xhp#par_id3163966.520.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+msgstr "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+
+#: 04060106.xhp#par_id3163988.521.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
+msgstr "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
+
+#: 04060106.xhp#bm_id3164086.help.text
+msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
+msgstr "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164086.523.help.text
+msgid "SIGN"
+msgstr "SIGN"
+
+#: 04060106.xhp#par_id3164115.524.help.text
+msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
+
+#: 04060106.xhp#hd_id3164136.525.help.text
+msgctxt "04060106.xhp#hd_id3164136.525.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3164150.526.help.text
+msgid "SIGN(Number)"
+msgstr "SIGN(Number)"
+
+#: 04060106.xhp#par_id3164164.527.help.text
+msgid "<emph>Number</emph> is the number whose sign is to be determined."
+msgstr "<emph>Number</emph> is the number whose sign is to be determined."
+
+#: 04060106.xhp#hd_id3164183.528.help.text
+msgctxt "04060106.xhp#hd_id3164183.528.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3164197.529.help.text
+msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
+msgstr "<item type=\"input\">=SIGN(3.4)</item> returns 1."
+
+#: 04060106.xhp#par_id3164212.530.help.text
+msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+msgstr "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+
+#: 04060106.xhp#bm_id3164252.help.text
+msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
+msgstr "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164252.658.help.text
+msgid "MROUND"
+msgstr "MROUND"
+
+#: 04060106.xhp#par_id3164288.659.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
+
+#: 04060106.xhp#hd_id3164306.660.help.text
+msgctxt "04060106.xhp#hd_id3164306.660.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3164320.661.help.text
+msgid "MROUND(Number; Multiple)"
+msgstr "MROUND(Number; Multiple)"
+
+#: 04060106.xhp#par_id3486434.help.text
+msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>. "
+msgstr "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>. "
+
+#: 04060106.xhp#par_id3068636.help.text
+msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgstr "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+
+#: 04060106.xhp#hd_id3164333.662.help.text
+msgctxt "04060106.xhp#hd_id3164333.662.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3164347.663.help.text
+msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
+msgstr "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
+
+#: 04060106.xhp#par_idN14DD6.help.text
+msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
+msgstr "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
+
+#: 04060106.xhp#bm_id3164375.help.text
+msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
+msgstr "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164375.532.help.text
+msgid "SQRT"
+msgstr "SQRT"
+
+#: 04060106.xhp#par_id3164404.533.help.text
+msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
+
+#: 04060106.xhp#hd_id3164424.534.help.text
+msgctxt "04060106.xhp#hd_id3164424.534.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3164437.535.help.text
+msgid "SQRT(Number)"
+msgstr "SQRT(Number)"
+
+#: 04060106.xhp#par_id3164451.536.help.text
+msgid "Returns the positive square root of <emph>Number</emph>."
+msgstr "Returns the positive square root of <emph>Number</emph>."
+
+#: 04060106.xhp#par_id6870021.help.text
+msgid " Number must be positive."
+msgstr " Number must be positive."
+
+#: 04060106.xhp#hd_id3164471.537.help.text
+msgctxt "04060106.xhp#hd_id3164471.537.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3164484.538.help.text
+msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
+msgstr "<item type=\"input\">=SQRT(16)</item> returns 4."
+
+#: 04060106.xhp#par_id3591723.help.text
+msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+msgstr "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+
+#: 04060106.xhp#bm_id3164560.help.text
+msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
+msgstr "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164560.665.help.text
+msgid "SQRTPI"
+msgstr "SQRTPI"
+
+#: 04060106.xhp#par_id3164596.666.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
+
+#: 04060106.xhp#hd_id3164614.667.help.text
+msgctxt "04060106.xhp#hd_id3164614.667.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3164627.668.help.text
+msgid "SQRTPI(Number)"
+msgstr "SQRTPI(Number)"
+
+#: 04060106.xhp#par_id1501510.help.text
+msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
+msgstr "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
+
+#: 04060106.xhp#par_id9929197.help.text
+msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgstr "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+
+#: 04060106.xhp#hd_id3164641.669.help.text
+msgctxt "04060106.xhp#hd_id3164641.669.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3164654.670.help.text
+msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+msgstr "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+
+#: 04060106.xhp#bm_id3164669.help.text
+msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+msgstr "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164669.671.help.text
+msgid "RANDBETWEEN"
+msgstr "RANDBETWEEN"
+
+#: 04060106.xhp#par_id3164711.672.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
+
+#: 04060106.xhp#hd_id3164745.673.help.text
+msgctxt "04060106.xhp#hd_id3164745.673.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3164758.674.help.text
+msgid "RANDBETWEEN(Bottom; Top)"
+msgstr "RANDBETWEEN(Bottom; Top)"
+
+#: 04060106.xhp#par_id7112338.help.text
+msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
+msgstr "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
+
+#: 04060106.xhp#par_id2855616.help.text
+msgctxt "04060106.xhp#par_id2855616.help.text"
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+
+#: 04060106.xhp#par_id2091433.help.text
+msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+
+#: 04060106.xhp#hd_id3164772.675.help.text
+msgctxt "04060106.xhp#hd_id3164772.675.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3164785.676.help.text
+msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+msgstr "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+
+#: 04060106.xhp#bm_id3164800.help.text
+msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+msgstr "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164800.542.help.text
+msgid "RAND"
+msgstr "RAND"
+
+#: 04060106.xhp#par_id3164829.543.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
+
+#: 04060106.xhp#hd_id3164870.545.help.text
+msgctxt "04060106.xhp#hd_id3164870.545.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3164884.546.help.text
+msgid "RAND()"
+msgstr "RAND()"
+
+#: 04060106.xhp#par_id5092318.help.text
+msgctxt "04060106.xhp#par_id5092318.help.text"
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgstr "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+
+#: 04060106.xhp#par_id9312417.help.text
+msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgstr "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+
+#: 04060106.xhp#hd_id9089022.help.text
+msgctxt "04060106.xhp#hd_id9089022.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id9569078.help.text
+msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgstr "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+
+#: 04060106.xhp#bm_id3164897.help.text
+msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
+msgstr "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
+
+#: 04060106.xhp#hd_id3164897.547.help.text
+msgid "COUNTIF"
+msgstr "COUNTIF"
+
+#: 04060106.xhp#par_id3164926.548.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
+
+#: 04060106.xhp#hd_id3164953.549.help.text
+msgctxt "04060106.xhp#hd_id3164953.549.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060106.xhp#par_id3164967.550.help.text
+msgid "COUNTIF(Range; Criteria)"
+msgstr "COUNTIF(Range; Criteria)"
+
+#: 04060106.xhp#par_id3164980.551.help.text
+msgctxt "04060106.xhp#par_id3164980.551.help.text"
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "<emph>Range</emph> is the range to which the criteria are to be applied."
+
+#: 04060106.xhp#par_id3165000.552.help.text
+msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
+msgstr "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
+
+#: 04060106.xhp#hd_id3165037.553.help.text
+msgctxt "04060106.xhp#hd_id3165037.553.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060106.xhp#par_id3166505.627.help.text
+msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
+msgstr "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
+
+#: 04060106.xhp#par_id3581652.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
+
+#: 04060106.xhp#par_id708639.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+
+#: 04060106.xhp#par_id5169225.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
+
+#: 04060106.xhp#par_id2118594.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
+
+#: 04060106.xhp#par_id166020.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006 "
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006 "
+
+#: 04060106.xhp#par_id6386913.help.text
+msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgstr "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+
+#: 02180000.xhp#tit.help.text
+msgctxt "02180000.xhp#tit.help.text"
+msgid "Move or Copy a Sheet"
+msgstr "Move or Copy a Sheet"
+
+#: 02180000.xhp#bm_id3153360.help.text
+msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
+
+#: 02180000.xhp#hd_id3153360.1.help.text
+msgctxt "02180000.xhp#hd_id3153360.1.help.text"
+msgid "Move or Copy a Sheet"
+msgstr "Move or Copy a Sheet"
+
+#: 02180000.xhp#par_id3154686.2.help.text
+msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
+msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
+
+#: 02180000.xhp#par_id2282479.help.text
+msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+msgstr "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+
+#: 02180000.xhp#hd_id3163710.3.help.text
+msgid "To Document"
+msgstr "To Document"
+
+#: 02180000.xhp#par_id3148645.4.help.text
+#, fuzzy
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>new document</emph> if you want to create a new location for the sheet to be moved or copied."
+
+#: 02180000.xhp#hd_id3154012.5.help.text
+msgid "Insert Before"
+msgstr "Insert Before"
+
+#: 02180000.xhp#par_id3145366.6.help.text
+#, fuzzy
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>move to end position</emph> option places the current sheet at the end."
+
+#: 02180000.xhp#hd_id3153726.7.help.text
+msgid "Copy"
+msgstr "Copy"
+
+#: 02180000.xhp#par_id3144764.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
+
+#: 02140500.xhp#tit.help.text
+msgctxt "02140500.xhp#tit.help.text"
+msgid "Fill Sheet"
+msgstr "Fill Sheet"
+
+#: 02140500.xhp#hd_id3153897.1.help.text
+msgctxt "02140500.xhp#hd_id3153897.1.help.text"
+msgid "Fill Sheet"
+msgstr "Fill Sheet"
+
+#: 02140500.xhp#par_id3150791.2.help.text
+msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
+msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
+
+#: 02140500.xhp#par_id3150767.3.help.text
+msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
+msgstr "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
+
+#: 02140500.xhp#hd_id3155131.4.help.text
+msgid "Filling a Sheet"
+msgstr "Filling a Sheet"
+
+#: 02140500.xhp#par_id3146119.5.help.text
+msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
+msgstr "Select the entire sheet by clicking the empty grey box in the upper left of the sheet. You can also select an area of the sheet to be copied."
+
+#: 02140500.xhp#par_id3153726.6.help.text
+msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
+msgstr "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
+
+#: 02140500.xhp#par_id3147436.7.help.text
+msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
+msgstr "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialogue which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
+
+#: 02140500.xhp#par_id3154942.8.help.text
+msgctxt "02140500.xhp#par_id3154942.8.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Click <emph>OK</emph>."
+
+#: 02140500.xhp#par_id3156283.9.help.text
+msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
+msgstr "This dialogue is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialogue, where you can find additional tips."
+
+#: 05080200.xhp#tit.help.text
+msgctxt "05080200.xhp#tit.help.text"
+msgid "Remove"
+msgstr "Remove"
+
+#: 05080200.xhp#hd_id3153562.1.help.text
+msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
+
+#: 05080200.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
+
+#: 12100000.xhp#tit.help.text
+msgid "Refresh Range"
+msgstr "Refresh Range"
+
+#: 12100000.xhp#bm_id3153662.help.text
+msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
+msgstr "<bookmark_value>database ranges; refreshing</bookmark_value>"
+
+#: 12100000.xhp#hd_id3153662.1.help.text
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+
+#: 12100000.xhp#par_id3153088.2.help.text
+msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
+msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
+
+#: 05060000.xhp#tit.help.text
+msgid "Merge and Center Cells"
+msgstr ""
+
+#: 05060000.xhp#hd_id3149785.1.help.text
+msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
+msgstr ""
+
+#: 05060000.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
+msgstr ""
+
+#: 05060000.xhp#par_id3154020.18.help.text
+msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
+msgstr ""
+
+#: 05060000.xhp#par_id3148552.4.help.text
+msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
+msgstr "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
+
+#: 05060000.xhp#par_id3149665.3.help.text
+msgid "If the cells to be merged have any contents, a security dialog is shown."
+msgstr "If the cells to be merged have any contents, a security dialogue is shown."
+
+#: 05060000.xhp#par_id3153718.help.text
+msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgstr ""
+
+#: 12080600.xhp#tit.help.text
+msgctxt "12080600.xhp#tit.help.text"
+msgid "Remove"
+msgstr "Remove"
+
+#: 12080600.xhp#hd_id3148947.1.help.text
+msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
+
+#: 12080600.xhp#par_id3149656.2.help.text
+msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
+
+#: func_datevalue.xhp#tit.help.text
+msgid "DATEVALUE "
+msgstr "DATEVALUE "
+
+#: func_datevalue.xhp#bm_id3145621.help.text
+msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
+msgstr "<bookmark_value>DATEVALUE function</bookmark_value>"
+
+#: func_datevalue.xhp#hd_id3145621.18.help.text
+msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+msgstr "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+
+#: func_datevalue.xhp#par_id3145087.19.help.text
+msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
+
+#: func_datevalue.xhp#par_id3149281.20.help.text
+msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
+msgstr "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
+
+#: func_datevalue.xhp#par_id0119200903491982.help.text
+msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
+msgstr "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
+
+#: func_datevalue.xhp#hd_id3156294.21.help.text
+msgctxt "func_datevalue.xhp#hd_id3156294.21.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_datevalue.xhp#par_id3149268.22.help.text
+msgid "DATEVALUE(\"Text\")"
+msgstr "DATEVALUE(\"Text\")"
+
+#: func_datevalue.xhp#par_id3154819.23.help.text
+msgid " <emph>Text</emph> is a valid date expression and must be entered with quotation marks."
+msgstr " <emph>Text</emph> is a valid date expression and must be entered with quotation marks."
+
+#: func_datevalue.xhp#hd_id3156309.24.help.text
+msgctxt "func_datevalue.xhp#hd_id3156309.24.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: func_datevalue.xhp#par_id3155841.25.help.text
+msgid " <emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
+msgstr " <emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
+
+#: 04060183.xhp#tit.help.text
+msgid "Statistical Functions Part Three"
+msgstr "Statistical Functions Part Three"
+
+#: 04060183.xhp#hd_id3166425.1.help.text
+msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
+msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
+
+#: 04060183.xhp#bm_id3149530.help.text
+msgid "<bookmark_value>LARGE function</bookmark_value>"
+msgstr "<bookmark_value>LARGE function</bookmark_value>"
+
+#: 04060183.xhp#hd_id3149530.2.help.text
+msgid "LARGE"
+msgstr "LARGE"
+
+#: 04060183.xhp#par_id3150518.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
+
+#: 04060183.xhp#hd_id3152990.4.help.text
+msgctxt "04060183.xhp#hd_id3152990.4.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3154372.5.help.text
+msgid "LARGE(Data; RankC)"
+msgstr "LARGE(Data; RankC)"
+
+#: 04060183.xhp#par_id3152986.6.help.text
+msgctxt "04060183.xhp#par_id3152986.6.help.text"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "<emph>Data</emph> is the cell range of data."
+
+#: 04060183.xhp#par_id3156448.7.help.text
+msgid "<emph>RankC</emph> is the ranking of the value."
+msgstr "<emph>RankC</emph> is the ranking of the value."
+
+#: 04060183.xhp#hd_id3152889.8.help.text
+msgctxt "04060183.xhp#hd_id3152889.8.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3148702.9.help.text
+msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
+msgstr "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
+
+#: 04060183.xhp#bm_id3154532.help.text
+msgid "<bookmark_value>SMALL function</bookmark_value>"
+msgstr "<bookmark_value>SMALL function</bookmark_value>"
+
+#: 04060183.xhp#hd_id3154532.11.help.text
+msgid "SMALL"
+msgstr "SMALL"
+
+#: 04060183.xhp#par_id3157981.12.help.text
+msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
+
+#: 04060183.xhp#hd_id3154957.13.help.text
+msgctxt "04060183.xhp#hd_id3154957.13.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3153974.14.help.text
+msgid "SMALL(Data; RankC)"
+msgstr "SMALL(Data; RankC)"
+
+#: 04060183.xhp#par_id3154540.15.help.text
+msgctxt "04060183.xhp#par_id3154540.15.help.text"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "<emph>Data</emph> is the cell range of data."
+
+#: 04060183.xhp#par_id3155094.16.help.text
+msgid "<emph>RankC</emph> is the rank of the value."
+msgstr "<emph>RankC</emph> is the rank of the value."
+
+#: 04060183.xhp#hd_id3153247.17.help.text
+msgctxt "04060183.xhp#hd_id3153247.17.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3149897.18.help.text
+msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
+msgstr "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
+
+#: 04060183.xhp#bm_id3153559.help.text
+msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
+msgstr "<bookmark_value>CONFIDENCE function</bookmark_value>"
+
+#: 04060183.xhp#hd_id3153559.20.help.text
+msgid "CONFIDENCE"
+msgstr "CONFIDENCE"
+
+#: 04060183.xhp#par_id3153814.21.help.text
+msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
+
+#: 04060183.xhp#hd_id3149315.22.help.text
+msgctxt "04060183.xhp#hd_id3149315.22.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3147501.23.help.text
+msgid "CONFIDENCE(Alpha; StDev; Size)"
+msgstr "CONFIDENCE(Alpha; StDev; Size)"
+
+#: 04060183.xhp#par_id3149872.24.help.text
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr "<emph>Alpha</emph> is the level of the confidence interval."
+
+#: 04060183.xhp#par_id3145324.25.help.text
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr "<emph>StDev</emph> is the standard deviation for the total population."
+
+#: 04060183.xhp#par_id3153075.26.help.text
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr "<emph>Size</emph> is the size of the total population."
+
+#: 04060183.xhp#hd_id3150435.27.help.text
+msgctxt "04060183.xhp#hd_id3150435.27.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3153335.28.help.text
+msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
+msgstr "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
+
+#: 04060183.xhp#bm_id3148746.help.text
+msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
+msgstr "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
+
+#: 04060183.xhp#hd_id3148746.30.help.text
+msgid "CORREL"
+msgstr "CORREL"
+
+#: 04060183.xhp#par_id3147299.31.help.text
+msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
+
+#: 04060183.xhp#hd_id3156397.32.help.text
+msgctxt "04060183.xhp#hd_id3156397.32.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3153023.33.help.text
+msgid "CORREL(Data1; Data2)"
+msgstr "CORREL(Data1; Data2)"
+
+#: 04060183.xhp#par_id3150036.34.help.text
+msgctxt "04060183.xhp#par_id3150036.34.help.text"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "<emph>Data1</emph> is the first data set."
+
+#: 04060183.xhp#par_id3153021.35.help.text
+msgctxt "04060183.xhp#par_id3153021.35.help.text"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "<emph>Data2</emph> is the second data set."
+
+#: 04060183.xhp#hd_id3149720.36.help.text
+msgctxt "04060183.xhp#hd_id3149720.36.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3149941.37.help.text
+msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
+msgstr "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
+
+#: 04060183.xhp#bm_id3150652.help.text
+msgid "<bookmark_value>COVAR function</bookmark_value>"
+msgstr "<bookmark_value>COVAR function</bookmark_value>"
+
+#: 04060183.xhp#hd_id3150652.39.help.text
+msgid "COVAR"
+msgstr "COVAR"
+
+#: 04060183.xhp#par_id3146875.40.help.text
+msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
+
+#: 04060183.xhp#hd_id3149013.41.help.text
+msgctxt "04060183.xhp#hd_id3149013.41.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3150740.42.help.text
+msgid "COVAR(Data1; Data2)"
+msgstr "COVAR(Data1; Data2)"
+
+#: 04060183.xhp#par_id3145827.43.help.text
+msgctxt "04060183.xhp#par_id3145827.43.help.text"
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "<emph>Data1</emph> is the first data set."
+
+#: 04060183.xhp#par_id3150465.44.help.text
+msgctxt "04060183.xhp#par_id3150465.44.help.text"
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "<emph>Data2</emph> is the second data set."
+
+#: 04060183.xhp#hd_id3154677.45.help.text
+msgctxt "04060183.xhp#hd_id3154677.45.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3144748.46.help.text
+msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgstr "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+
+#: 04060183.xhp#bm_id3147472.help.text
+msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
+msgstr "<bookmark_value>CRITBINOM function</bookmark_value>"
+
+#: 04060183.xhp#hd_id3147472.48.help.text
+msgid "CRITBINOM"
+msgstr "CRITBINOM"
+
+#: 04060183.xhp#par_id3149254.49.help.text
+msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
+
+#: 04060183.xhp#hd_id3153930.50.help.text
+msgctxt "04060183.xhp#hd_id3153930.50.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3148586.51.help.text
+msgid "CRITBINOM(Trials; SP; Alpha)"
+msgstr "CRITBINOM(Trials; SP; Alpha)"
+
+#: 04060183.xhp#par_id3145593.52.help.text
+msgid "<emph>Trials</emph> is the total number of trials."
+msgstr "<emph>Trials</emph> is the total number of trials."
+
+#: 04060183.xhp#par_id3153084.53.help.text
+msgid "<emph>SP</emph> is the probability of success for one trial."
+msgstr "<emph>SP</emph> is the probability of success for one trial."
+
+#: 04060183.xhp#par_id3149726.54.help.text
+msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+msgstr "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+
+#: 04060183.xhp#hd_id3148752.55.help.text
+msgctxt "04060183.xhp#hd_id3148752.55.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3148740.56.help.text
+msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+msgstr "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+
+#: 04060183.xhp#bm_id3155956.help.text
+msgid "<bookmark_value>KURT function</bookmark_value>"
+msgstr "<bookmark_value>KURT function</bookmark_value>"
+
+#: 04060183.xhp#hd_id3155956.58.help.text
+msgid "KURT"
+msgstr "KURT"
+
+#: 04060183.xhp#par_id3153108.59.help.text
+msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
+
+#: 04060183.xhp#hd_id3150334.60.help.text
+msgctxt "04060183.xhp#hd_id3150334.60.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3154508.61.help.text
+msgid "KURT(Number1; Number2; ...Number30)"
+msgstr "KURT(Number1; Number2; ...Number30)"
+
+#: 04060183.xhp#par_id3145167.62.help.text
+msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
+msgstr "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
+
+#: 04060183.xhp#hd_id3158000.63.help.text
+msgctxt "04060183.xhp#hd_id3158000.63.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3150016.64.help.text
+msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+msgstr "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+
+#: 04060183.xhp#bm_id3150928.help.text
+msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+msgstr "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+
+#: 04060183.xhp#hd_id3150928.66.help.text
+msgid "LOGINV"
+msgstr "LOGINV"
+
+#: 04060183.xhp#par_id3145297.67.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
+
+#: 04060183.xhp#hd_id3151016.68.help.text
+msgctxt "04060183.xhp#hd_id3151016.68.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3153049.69.help.text
+msgid "LOGINV(Number; Mean; StDev)"
+msgstr "LOGINV(Number; Mean; StDev)"
+
+#: 04060183.xhp#par_id3148390.70.help.text
+msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
+msgstr "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
+
+#: 04060183.xhp#par_id3149538.71.help.text
+msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
+msgstr "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
+
+#: 04060183.xhp#par_id3145355.72.help.text
+msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
+msgstr "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
+
+#: 04060183.xhp#hd_id3148768.73.help.text
+msgctxt "04060183.xhp#hd_id3148768.73.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3155623.74.help.text
+msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
+msgstr "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
+
+#: 04060183.xhp#bm_id3158417.help.text
+msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
+msgstr "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
+
+#: 04060183.xhp#hd_id3158417.76.help.text
+msgid "LOGNORMDIST"
+msgstr "LOGNORMDIST"
+
+#: 04060183.xhp#par_id3154953.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
+
+#: 04060183.xhp#hd_id3150474.78.help.text
+msgctxt "04060183.xhp#hd_id3150474.78.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060183.xhp#par_id3150686.79.help.text
+msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+msgstr "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+
+#: 04060183.xhp#par_id3154871.80.help.text
+msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
+msgstr "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
+
+#: 04060183.xhp#par_id3155820.81.help.text
+msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
+msgstr "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
+
+#: 04060183.xhp#par_id3155991.82.help.text
+msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
+msgstr "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
+
+#: 04060183.xhp#par_id3155992.help.text
+msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+msgstr "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+
+#: 04060183.xhp#hd_id3153178.83.help.text
+msgctxt "04060183.xhp#hd_id3153178.83.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060183.xhp#par_id3149778.84.help.text
+msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+msgstr "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+
+#: 02140200.xhp#tit.help.text
+msgctxt "02140200.xhp#tit.help.text"
+msgid "Right"
+msgstr "Right"
+
+#: 02140200.xhp#hd_id3153896.1.help.text
+msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
+msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
+
+#: 02140200.xhp#par_id3153361.2.help.text
+msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
+
+#: 02140200.xhp#par_id3154684.3.help.text
+msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
+msgstr "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
+
+#: 06060100.xhp#tit.help.text
+msgctxt "06060100.xhp#tit.help.text"
+msgid "Protecting Sheet"
+msgstr "Protecting Sheet"
+
+#: 06060100.xhp#hd_id3153087.1.help.text
+msgctxt "06060100.xhp#hd_id3153087.1.help.text"
+msgid "Protecting Sheet"
+msgstr "Protecting Sheet"
+
+#: 06060100.xhp#par_id3148664.2.help.text
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialogue in which you then specify sheet protection with or without a password."
+
+#: 06060100.xhp#par_id3149664.5.help.text
+msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+msgstr "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+
+#: 06060100.xhp#par_id3154490.8.help.text
+msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus: "
+msgstr "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus: "
+
+#: 06060100.xhp#par_id3149123.16.help.text
+msgid "Select the cells that will be unprotected"
+msgstr "Select the cells that will be unprotected"
+
+#: 06060100.xhp#par_id3150329.17.help.text
+msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
+msgstr "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
+
+#: 06060100.xhp#par_id3156384.18.help.text
+msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+msgstr "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+
+#: 06060100.xhp#par_id3149566.9.help.text
+msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
+msgstr "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
+
+#: 06060100.xhp#par_id3153964.10.help.text
+msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
+msgstr "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
+
+#: 06060100.xhp#par_id3150301.19.help.text
+msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+msgstr "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+
+#: 06060100.xhp#par_id3154656.3.help.text
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
+msgstr "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialogue opens, where you must enter the password."
+
+#: 06060100.xhp#par_id3149815.11.help.text
+msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+msgstr "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+
+#: 06060100.xhp#hd_id3150206.4.help.text
+msgctxt "06060100.xhp#hd_id3150206.4.help.text"
+msgid "Password (optional)"
+msgstr "Password (optional)"
+
+#: 06060100.xhp#par_id3152990.7.help.text
+msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
+msgstr "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorised changes.</ahelp>"
+
+#: 06060100.xhp#par_id3148700.12.help.text
+msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+msgstr "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialogue mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+
+#: func_edate.xhp#tit.help.text
+msgid "EDATE"
+msgstr "EDATE"
+
+#: func_edate.xhp#bm_id3151184.help.text
+msgid "<bookmark_value>EDATE function</bookmark_value>"
+msgstr "<bookmark_value>EDATE function</bookmark_value>"
+
+#: func_edate.xhp#hd_id3151184.213.help.text
+msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+msgstr "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+
+#: func_edate.xhp#par_id3150880.214.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
+
+#: func_edate.xhp#hd_id3154647.215.help.text
+msgctxt "func_edate.xhp#hd_id3154647.215.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_edate.xhp#par_id3153212.216.help.text
+msgid "EDATE(StartDate; Months)"
+msgstr "EDATE(StartDate; Months)"
+
+#: func_edate.xhp#par_id3146860.217.help.text
+msgid "<emph>StartDate</emph> is a date."
+msgstr "<emph>StartDate</emph> is a date."
+
+#: func_edate.xhp#par_id3152929.218.help.text
+msgctxt "func_edate.xhp#par_id3152929.218.help.text"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+
+#: func_edate.xhp#hd_id3151289.219.help.text
+msgctxt "func_edate.xhp#hd_id3151289.219.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: func_edate.xhp#par_id3155845.220.help.text
+msgid "What date is one month prior to 3.31.2001?"
+msgstr "What date is one month prior to 3.31.2001?"
+
+#: func_edate.xhp#par_id3155999.221.help.text
+msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
+msgstr "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
+
+#: 04060110.xhp#tit.help.text
+msgctxt "04060110.xhp#tit.help.text"
+msgid "Text Functions"
+msgstr "Text Functions"
+
+#: 04060110.xhp#bm_id3145389.help.text
+msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
+msgstr "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
+
+#: 04060110.xhp#hd_id3145389.1.help.text
+msgctxt "04060110.xhp#hd_id3145389.1.help.text"
+msgid "Text Functions"
+msgstr "Text Functions"
+
+#: 04060110.xhp#par_id3152986.2.help.text
+msgid "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions.</variable>"
+msgstr "<variable id=\"texttext\">This section contains descriptions of the <emph>Text</emph> functions.</variable>"
+
+#: 04060110.xhp#bm_id3149384.help.text
+msgid "<bookmark_value>ARABIC function</bookmark_value>"
+msgstr "<bookmark_value>ARABIC function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149384.239.help.text
+msgid "ARABIC"
+msgstr "ARABIC"
+
+#: 04060110.xhp#par_id3153558.240.help.text
+msgid "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARABISCH\">Calculates the value of a Roman number. The value range must be between 0 and 3999.</ahelp>"
+
+#: 04060110.xhp#hd_id3153011.241.help.text
+msgctxt "04060110.xhp#hd_id3153011.241.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3155523.242.help.text
+msgid "ARABIC(\"Text\")"
+msgstr "ARABIC(\"Text\")"
+
+#: 04060110.xhp#par_id3151193.243.help.text
+msgid " <emph>Text</emph> is the text that represents a Roman number."
+msgstr " <emph>Text</emph> is the text that represents a Roman number."
+
+#: 04060110.xhp#hd_id3155758.244.help.text
+msgctxt "04060110.xhp#hd_id3155758.244.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3154621.245.help.text
+msgid " <item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
+msgstr " <item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
+
+#: 04060110.xhp#par_id3147553.246.help.text
+msgid " <item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
+msgstr " <item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
+
+#: 04060110.xhp#bm_id8796349.help.text
+msgid "<bookmark_value>ASC function</bookmark_value>"
+msgstr "<bookmark_value>ASC function</bookmark_value>"
+
+#: 04060110.xhp#hd_id7723929.help.text
+msgid "ASC"
+msgstr "ASC"
+
+#: 04060110.xhp#par_id8455153.help.text
+msgid "<ahelp hid=\".\">The ASC function converts full-width to half-width ASCII and katakana characters. Returns a text string.</ahelp>"
+msgstr "<ahelp hid=\".\">The ASC function converts full-width to half-width ASCII and katakana characters. Returns a text string.</ahelp>"
+
+#: 04060110.xhp#par_id9912411.help.text
+msgctxt "04060110.xhp#par_id9912411.help.text"
+msgid "See <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
+msgstr ""
+
+#: 04060110.xhp#hd_id9204992.help.text
+msgctxt "04060110.xhp#hd_id9204992.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id1993774.help.text
+msgid "ASC(\"Text\")"
+msgstr "ASC(\"Text\")"
+
+#: 04060110.xhp#par_id2949919.help.text
+msgctxt "04060110.xhp#par_id2949919.help.text"
+msgid " <emph>Text</emph> is the text that contains characters to be converted."
+msgstr " <emph>Text</emph> is the text that contains characters to be converted."
+
+#: 04060110.xhp#par_id2355113.help.text
+msgid "See also JIS function."
+msgstr "See also JIS function."
+
+#: 04060110.xhp#bm_id9323709.help.text
+msgid "<bookmark_value>BAHTTEXT function</bookmark_value>"
+msgstr "<bookmark_value>BAHTTEXT function</bookmark_value>"
+
+#: 04060110.xhp#hd_id6695455.help.text
+msgid "BAHTTEXT"
+msgstr "BAHTTEXT"
+
+#: 04060110.xhp#par_id354014.help.text
+msgid "Converts a number to Thai text, including the Thai currency names."
+msgstr "Converts a number to Thai text, including the Thai currency names."
+
+#: 04060110.xhp#hd_id9942014.help.text
+msgctxt "04060110.xhp#hd_id9942014.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id8780785.help.text
+msgid "BAHTTEXT(Number)"
+msgstr "BAHTTEXT(Number)"
+
+#: 04060110.xhp#par_id1539353.help.text
+msgid " <emph>Number</emph> is any number. \"Baht\" is appended to the integral part of the number, and \"Satang\" is appended to the decimal part of the number."
+msgstr " <emph>Number</emph> is any number. \"Baht\" is appended to the integral part of the number, and \"Satang\" is appended to the decimal part of the number."
+
+#: 04060110.xhp#hd_id9694814.help.text
+msgctxt "04060110.xhp#hd_id9694814.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3289284.help.text
+msgid " <item type=\"input\">=BAHTTEXT(12.65)</item> returns a string in Thai characters with the meaning of \"Twelve Baht and sixty five Satang\"."
+msgstr " <item type=\"input\">=BAHTTEXT(12.65)</item> returns a string in Thai characters with the meaning of \"Twelve Baht and sixty five Satang\"."
+
+#: 04060110.xhp#bm_id3153072.help.text
+msgid "<bookmark_value>BASE function</bookmark_value>"
+msgstr "<bookmark_value>BASE function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3153072.213.help.text
+msgid "BASE"
+msgstr "BASE"
+
+#: 04060110.xhp#par_id3153289.214.help.text
+msgid "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
+msgstr "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
+
+#: 04060110.xhp#hd_id3146097.215.help.text
+msgctxt "04060110.xhp#hd_id3146097.215.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3155743.216.help.text
+msgid "BASE(Number; Radix; [MinimumLength])"
+msgstr "BASE(Number; Radix; [MinimumLength])"
+
+#: 04060110.xhp#par_id3151339.217.help.text
+msgid " <emph>Number</emph> is the positive integer to be converted."
+msgstr " <emph>Number</emph> is the positive integer to be converted."
+
+#: 04060110.xhp#par_id3159262.218.help.text
+msgctxt "04060110.xhp#par_id3159262.218.help.text"
+msgid " <emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
+msgstr " <emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
+
+#: 04060110.xhp#par_id3148746.219.help.text
+msgid " <emph>MinimumLength</emph> (optional) determines the minimum length of the character sequence that has been created. If the text is shorter than the indicated minimum length, zeros are added to the left of the string."
+msgstr " <emph>MinimumLength</emph> (optional) determines the minimum length of the character sequence that has been created. If the text is shorter than the indicated minimum length, zeros are added to the left of the string."
+
+#: 04060110.xhp#hd_id3146323.220.help.text
+msgctxt "04060110.xhp#hd_id3146323.220.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#bm_id3156399.help.text
+msgid "<bookmark_value>decimal system; converting to</bookmark_value>"
+msgstr "<bookmark_value>decimal system; converting to</bookmark_value>"
+
+#: 04060110.xhp#par_id3156399.221.help.text
+msgid " <item type=\"input\">=BASE(17;10;4)</item> returns 0017 in the decimal system."
+msgstr " <item type=\"input\">=BASE(17;10;4)</item> returns 0017 in the decimal system."
+
+#: 04060110.xhp#bm_id3157871.help.text
+msgid "<bookmark_value>binary system; converting to</bookmark_value>"
+msgstr "<bookmark_value>binary system; converting to</bookmark_value>"
+
+#: 04060110.xhp#par_id3157871.222.help.text
+msgid " <item type=\"input\">=BASE(17;2)</item> returns 10001 in the binary system."
+msgstr " <item type=\"input\">=BASE(17;2)</item> returns 10001 in the binary system."
+
+#: 04060110.xhp#bm_id3145226.help.text
+msgid "<bookmark_value>hexadecimal system; converting to</bookmark_value>"
+msgstr "<bookmark_value>hexadecimal system; converting to</bookmark_value>"
+
+#: 04060110.xhp#par_id3145226.223.help.text
+msgid " <item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
+msgstr " <item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
+
+#: 04060110.xhp#bm_id3149321.help.text
+msgid "<bookmark_value>CHAR function</bookmark_value>"
+msgstr "<bookmark_value>CHAR function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149321.201.help.text
+msgid "CHAR"
+msgstr "CHAR"
+
+#: 04060110.xhp#par_id3149150.202.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEICHEN\">Converts a number into a character according to the current code table.</ahelp> The number can be a two-digit or three-digit integer number."
+msgstr "<ahelp hid=\"HID_FUNC_ZEICHEN\">Converts a number into a character according to the current code table.</ahelp> The number can be a two-digit or three-digit integer number."
+
+#: 04060110.xhp#hd_id3149945.203.help.text
+msgctxt "04060110.xhp#hd_id3149945.203.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3145634.204.help.text
+msgid "CHAR(Number)"
+msgstr "CHAR(Number)"
+
+#: 04060110.xhp#par_id3155906.205.help.text
+msgid " <emph>Number</emph> is a number between 1 and 255 representing the code value for the character."
+msgstr " <emph>Number</emph> is a number between 1 and 255 representing the code value for the character."
+
+#: 04060110.xhp#hd_id3152982.207.help.text
+msgctxt "04060110.xhp#hd_id3152982.207.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3149890.208.help.text
+msgid " <item type=\"input\">=CHAR(100)</item> returns the character d."
+msgstr " <item type=\"input\">=CHAR(100)</item> returns the character d."
+
+#: 04060110.xhp#par_id0907200910283297.help.text
+msgid "=\"abc\" & CHAR(10) & \"def\" inserts a newline character into the string."
+msgstr "=\"abc\" & CHAR(10) & \"def\" inserts a newline character into the string."
+
+#: 04060110.xhp#bm_id3149009.help.text
+msgid "<bookmark_value>CLEAN function</bookmark_value>"
+msgstr "<bookmark_value>CLEAN function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149009.132.help.text
+msgid "CLEAN"
+msgstr "CLEAN"
+
+#: 04060110.xhp#par_id3150482.133.help.text
+msgid "<ahelp hid=\"HID_FUNC_SAEUBERN\">All non-printing characters are removed from the string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SAEUBERN\">All non-printing characters are removed from the string.</ahelp>"
+
+#: 04060110.xhp#hd_id3146880.134.help.text
+msgctxt "04060110.xhp#hd_id3146880.134.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3147472.135.help.text
+msgid "CLEAN(\"Text\")"
+msgstr "CLEAN(\"Text\")"
+
+#: 04060110.xhp#par_id3150695.136.help.text
+msgid " <emph>Text</emph> refers to the text from which to remove all non-printable characters."
+msgstr " <emph>Text</emph> refers to the text from which to remove all non-printable characters."
+
+#: 04060110.xhp#bm_id3155498.help.text
+msgid "<bookmark_value>CODE function</bookmark_value>"
+msgstr "<bookmark_value>CODE function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3155498.3.help.text
+msgid "CODE"
+msgstr "CODE"
+
+#: 04060110.xhp#par_id3152770.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_CODE\">Returns a numeric code for the first character in a text string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_CODE\">Returns a numeric code for the first character in a text string.</ahelp>"
+
+#: 04060110.xhp#hd_id3155830.5.help.text
+msgctxt "04060110.xhp#hd_id3155830.5.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3149188.6.help.text
+msgid "CODE(\"Text\")"
+msgstr "CODE(\"Text\")"
+
+#: 04060110.xhp#par_id3154383.7.help.text
+msgid " <emph>Text</emph> is the text for which the code of the first character is to be found."
+msgstr " <emph>Text</emph> is the text for which the code of the first character is to be found."
+
+#: 04060110.xhp#hd_id3154394.8.help.text
+msgctxt "04060110.xhp#hd_id3154394.8.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3159209.9.help.text
+msgid " <item type=\"input\">=CODE(\"Hieronymus\")</item> returns 72, <item type=\"input\">=CODE(\"hieroglyphic\")</item> returns 104."
+msgstr " <item type=\"input\">=CODE(\"Hieronymus\")</item> returns 72, <item type=\"input\">=CODE(\"hieroglyphic\")</item> returns 104."
+
+#: 04060110.xhp#par_id3150280.211.help.text
+msgid "The code used here does not refer to ASCII, but to the code table currently loaded."
+msgstr "The code used here does not refer to ASCII, but to the code table currently loaded."
+
+#: 04060110.xhp#bm_id3149688.help.text
+msgid "<bookmark_value>CONCATENATE function</bookmark_value>"
+msgstr "<bookmark_value>CONCATENATE function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149688.167.help.text
+msgid "CONCATENATE"
+msgstr "CONCATENATE"
+
+#: 04060110.xhp#par_id3154524.168.help.text
+msgid "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combines several text strings into one string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VERKETTEN\">Combines several text strings into one string.</ahelp>"
+
+#: 04060110.xhp#hd_id3149542.169.help.text
+msgctxt "04060110.xhp#hd_id3149542.169.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3155954.170.help.text
+msgid "CONCATENATE(\"Text1\"; ...; \"Text30\")"
+msgstr "CONCATENATE(\"Text1\"; ...; \"Text30\")"
+
+#: 04060110.xhp#par_id3146847.171.help.text
+msgid " <emph>Text 1; Text 2; ...</emph> represent up to 30 text passages which are to be combined into one string."
+msgstr " <emph>Text 1; Text 2; ...</emph> represent up to 30 text passages which are to be combined into one string."
+
+#: 04060110.xhp#hd_id3153110.172.help.text
+msgctxt "04060110.xhp#hd_id3153110.172.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3150008.173.help.text
+msgid " <item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
+msgstr " <item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
+
+#: 04060110.xhp#bm_id3145166.help.text
+msgid "<bookmark_value>DECIMAL function</bookmark_value>"
+msgstr "<bookmark_value>DECIMAL function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3145166.225.help.text
+msgid "DECIMAL"
+msgstr "DECIMAL"
+
+#: 04060110.xhp#par_id3156361.226.help.text
+msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text with characters from a <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">number system</link> to a positive integer in the base radix given.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
+msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text with characters from a <link href=\"text/shared/00/00000005.xhp#zahlensystem\" name=\"number system\">number system</link> to a positive integer in the base radix given.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
+
+#: 04060110.xhp#par_id3157994.227.help.text
+msgid "If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is disregarded. If the radix is 2, an appended b or B is disregarded. Other characters that do not belong to the number system generate an error."
+msgstr "If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is disregarded. If the radix is 2, an appended b or B is disregarded. Other characters that do not belong to the number system generate an error."
+
+#: 04060110.xhp#hd_id3150014.228.help.text
+msgctxt "04060110.xhp#hd_id3150014.228.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3154328.229.help.text
+msgid "DECIMAL(\"Text\"; Radix)"
+msgstr "DECIMAL(\"Text\"; Radix)"
+
+#: 04060110.xhp#par_id3150128.230.help.text
+msgid " <emph>Text</emph> is the text to be converted. To differentiate between a hexadecimal number, such as A1 and the reference to cell A1, you must place the number in quotation marks, for example, \"A1\" or \"FACE\"."
+msgstr " <emph>Text</emph> is the text to be converted. To differentiate between a hexadecimal number, such as A1 and the reference to cell A1, you must place the number in quotation marks, for example, \"A1\" or \"FACE\"."
+
+#: 04060110.xhp#par_id3145241.231.help.text
+msgctxt "04060110.xhp#par_id3145241.231.help.text"
+msgid " <emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
+msgstr " <emph>Radix</emph> indicates the base of the number system. It may be any positive integer between 2 and 36."
+
+#: 04060110.xhp#hd_id3156062.232.help.text
+msgctxt "04060110.xhp#hd_id3156062.232.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3145355.233.help.text
+msgid " <item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
+msgstr " <item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
+
+#: 04060110.xhp#par_id3155622.234.help.text
+msgid " <item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
+msgstr " <item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
+
+#: 04060110.xhp#par_id3151015.235.help.text
+msgid " <item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
+msgstr " <item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
+
+#: 04060110.xhp#bm_id3148402.help.text
+msgid "<bookmark_value>DOLLAR function</bookmark_value>"
+msgstr "<bookmark_value>DOLLAR function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3148402.11.help.text
+msgid "DOLLAR"
+msgstr "DOLLAR"
+
+#: 04060110.xhp#par_id3153049.12.help.text
+msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to an amount in the currency format, rounded to a specified decimal place.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted to currency. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places. "
+msgstr "<ahelp hid=\"HID_FUNC_DM\">Converts a number to an amount in the currency format, rounded to a specified decimal place.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted to currency. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places. "
+
+#: 04060110.xhp#par_id3151280.263.help.text
+msgid "You set the currency format in your system settings."
+msgstr "You set the currency format in your system settings."
+
+#: 04060110.xhp#hd_id3150569.13.help.text
+msgctxt "04060110.xhp#hd_id3150569.13.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3154188.14.help.text
+msgid "DOLLAR(Value; Decimals)"
+msgstr "DOLLAR(Value; Decimals)"
+
+#: 04060110.xhp#par_id3145299.15.help.text
+msgid " <emph>Value</emph> is a number, a reference to a cell containing a number, or a formula which returns a number."
+msgstr " <emph>Value</emph> is a number, a reference to a cell containing a number, or a formula which returns a number."
+
+#: 04060110.xhp#par_id3145629.16.help.text
+msgid " <emph>Decimals</emph> is the optional number of decimal places."
+msgstr " <emph>Decimals</emph> is the optional number of decimal places."
+
+#: 04060110.xhp#hd_id3149030.17.help.text
+msgctxt "04060110.xhp#hd_id3149030.17.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3153546.18.help.text
+msgid " <item type=\"input\">=DOLLAR(255)</item> returns $255.00."
+msgstr " <item type=\"input\">=DOLLAR(255)</item> returns $255.00."
+
+#: 04060110.xhp#par_id3154635.19.help.text
+msgid " <item type=\"input\">=DOLLAR(367.456;2)</item> returns $367.46. Use the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link>."
+msgstr " <item type=\"input\">=DOLLAR(367.456;2)</item> returns $367.46. Use the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link>."
+
+#: 04060110.xhp#bm_id3150685.help.text
+msgid "<bookmark_value>EXACT function</bookmark_value>"
+msgstr "<bookmark_value>EXACT function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3150685.78.help.text
+msgid "EXACT"
+msgstr "EXACT"
+
+#: 04060110.xhp#par_id3158413.79.help.text
+msgid "<ahelp hid=\"HID_FUNC_IDENTISCH\">Compares two text strings and returns TRUE if they are identical.</ahelp> This function is case-sensitive."
+msgstr "<ahelp hid=\"HID_FUNC_IDENTISCH\">Compares two text strings and returns TRUE if they are identical.</ahelp> This function is case-sensitive."
+
+#: 04060110.xhp#hd_id3152817.80.help.text
+msgctxt "04060110.xhp#hd_id3152817.80.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3148594.81.help.text
+msgid "EXACT(\"Text1\"; \"Text2\")"
+msgstr "EXACT(\"Text1\"; \"Text2\")"
+
+#: 04060110.xhp#par_id3153224.82.help.text
+msgid " <emph>Text1</emph> refers to the first text to compare."
+msgstr " <emph>Text1</emph> refers to the first text to compare."
+
+#: 04060110.xhp#par_id3148637.83.help.text
+msgid " <emph>Text2</emph> is the second text to compare."
+msgstr " <emph>Text2</emph> is the second text to compare."
+
+#: 04060110.xhp#hd_id3149777.84.help.text
+msgctxt "04060110.xhp#hd_id3149777.84.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3156263.85.help.text
+msgid " <item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
+msgstr " <item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
+
+#: 04060110.xhp#bm_id3152589.help.text
+msgid "<bookmark_value>FIND function</bookmark_value>"
+msgstr "<bookmark_value>FIND function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3152589.44.help.text
+msgid "FIND"
+msgstr "FIND"
+
+#: 04060110.xhp#par_id3146149.45.help.text
+msgid "<ahelp hid=\"HID_FUNC_FINDEN\">Looks for a string of text within another string.</ahelp> You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
+msgstr "<ahelp hid=\"HID_FUNC_FINDEN\">Looks for a string of text within another string.</ahelp> You can also define where to begin the search. The search term can be a number or any string of characters. The search is case-sensitive."
+
+#: 04060110.xhp#hd_id3083284.46.help.text
+msgctxt "04060110.xhp#hd_id3083284.46.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3083452.47.help.text
+msgid "FIND(\"FindText\"; \"Text\"; Position)"
+msgstr "FIND(\"FindText\"; \"Text\"; Position)"
+
+#: 04060110.xhp#par_id3150608.48.help.text
+msgid " <emph>FindText</emph> refers to the text to be found."
+msgstr " <emph>FindText</emph> refers to the text to be found."
+
+#: 04060110.xhp#par_id3152374.49.help.text
+msgid " <emph>Text</emph> is the text where the search takes place."
+msgstr " <emph>Text</emph> is the text where the search takes place."
+
+#: 04060110.xhp#par_id3152475.50.help.text
+msgid " <emph>Position</emph> (optional) is the position in the text from which the search starts."
+msgstr " <emph>Position</emph> (optional) is the position in the text from which the search starts."
+
+#: 04060110.xhp#hd_id3154812.51.help.text
+msgctxt "04060110.xhp#hd_id3154812.51.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3156375.52.help.text
+msgid " <item type=\"input\">=FIND(76;998877665544)</item> returns 6."
+msgstr " <item type=\"input\">=FIND(76;998877665544)</item> returns 6."
+
+#: 04060110.xhp#bm_id3149268.help.text
+msgid "<bookmark_value>FIXED function</bookmark_value>"
+msgstr "<bookmark_value>FIXED function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149268.34.help.text
+msgid "FIXED"
+msgstr "FIXED"
+
+#: 04060110.xhp#par_id3155833.35.help.text
+msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
+
+#: 04060110.xhp#hd_id3152470.36.help.text
+msgctxt "04060110.xhp#hd_id3152470.36.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3147567.37.help.text
+msgid "FIXED(Number; Decimals; NoThousandsSeparators)"
+msgstr "FIXED(Number; Decimals; NoThousandsSeparators)"
+
+#: 04060110.xhp#par_id3151272.38.help.text
+msgid " <emph>Number</emph> refers to the number to be formatted."
+msgstr " <emph>Number</emph> refers to the number to be formatted."
+
+#: 04060110.xhp#par_id3156322.39.help.text
+msgid " <emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgstr " <emph>Decimals</emph> refers to the number of decimal places to be displayed."
+
+#: 04060110.xhp#par_id3150877.40.help.text
+msgid " <emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr " <emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+
+#: 04060110.xhp#hd_id3149040.41.help.text
+msgctxt "04060110.xhp#hd_id3149040.41.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3145208.42.help.text
+msgid " <item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string. "
+msgstr " <item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string. "
+
+#: 04060110.xhp#par_id5282143.help.text
+msgid " <item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgstr " <item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+
+#: 04060110.xhp#bm_id7319864.help.text
+msgid "<bookmark_value>JIS function</bookmark_value>"
+msgstr "<bookmark_value>JIS function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3666188.help.text
+msgid "JIS"
+msgstr "JIS"
+
+#: 04060110.xhp#par_id964384.help.text
+msgid "<ahelp hid=\".\">The JIS function converts half-width to full-width ASCII and katakana characters. Returns a text string.</ahelp>"
+msgstr "<ahelp hid=\".\">The JIS function converts half-width to full-width ASCII and katakana characters. Returns a text string.</ahelp>"
+
+#: 04060110.xhp#par_id1551561.help.text
+msgctxt "04060110.xhp#par_id1551561.help.text"
+msgid "See <link href=\"http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">http://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
+msgstr ""
+
+#: 04060110.xhp#hd_id2212897.help.text
+msgctxt "04060110.xhp#hd_id2212897.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id2504654.help.text
+msgid "JIS(\"Text\")"
+msgstr "JIS(\"Text\")"
+
+#: 04060110.xhp#par_id5292519.help.text
+msgctxt "04060110.xhp#par_id5292519.help.text"
+msgid " <emph>Text</emph> is the text that contains characters to be converted."
+msgstr " <emph>Text</emph> is the text that contains characters to be converted."
+
+#: 04060110.xhp#par_id3984496.help.text
+msgid "See also ASC function."
+msgstr "See also ASC function."
+
+#: 04060110.xhp#bm_id3147083.help.text
+msgid "<bookmark_value>LEFT function</bookmark_value>"
+msgstr "<bookmark_value>LEFT function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3147083.95.help.text
+msgid "LEFT"
+msgstr "LEFT"
+
+#: 04060110.xhp#par_id3153622.96.help.text
+msgid "<ahelp hid=\"HID_FUNC_LINKS\">Returns the first character or characters of a text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LINKS\">Returns the first character or characters of a text.</ahelp>"
+
+#: 04060110.xhp#hd_id3156116.97.help.text
+msgctxt "04060110.xhp#hd_id3156116.97.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3146786.98.help.text
+msgid "LEFT(\"Text\"; Number)"
+msgstr "LEFT(\"Text\"; Number)"
+
+#: 04060110.xhp#par_id3147274.99.help.text
+msgid " <emph>Text</emph> is the text where the initial partial words are to be determined."
+msgstr " <emph>Text</emph> is the text where the initial partial words are to be determined."
+
+#: 04060110.xhp#par_id3153152.100.help.text
+msgid " <emph>Number</emph> (optional) specifies the number of characters for the start text. If this parameter is not defined, one character is returned."
+msgstr " <emph>Number</emph> (optional) specifies the number of characters for the start text. If this parameter is not defined, one character is returned."
+
+#: 04060110.xhp#hd_id3150260.101.help.text
+msgctxt "04060110.xhp#hd_id3150260.101.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3149141.102.help.text
+msgid " <item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
+msgstr " <item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
+
+#: 04060110.xhp#bm_id3156110.help.text
+msgid "<bookmark_value>LEN function</bookmark_value>"
+msgstr "<bookmark_value>LEN function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3156110.104.help.text
+msgid "LEN"
+msgstr "LEN"
+
+#: 04060110.xhp#par_id3150147.105.help.text
+msgid "<ahelp hid=\"HID_FUNC_LAENGE\">Returns the length of a string including spaces.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LAENGE\">Returns the length of a string including spaces.</ahelp>"
+
+#: 04060110.xhp#hd_id3155108.106.help.text
+msgctxt "04060110.xhp#hd_id3155108.106.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3154063.107.help.text
+msgid "LEN(\"Text\")"
+msgstr "LEN(\"Text\")"
+
+#: 04060110.xhp#par_id3146894.108.help.text
+msgid " <emph>Text</emph> is the text whose length is to be determined."
+msgstr " <emph>Text</emph> is the text whose length is to be determined."
+
+#: 04060110.xhp#hd_id3153884.109.help.text
+msgctxt "04060110.xhp#hd_id3153884.109.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3156008.110.help.text
+msgid " <item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
+msgstr " <item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
+
+#: 04060110.xhp#par_id3154300.111.help.text
+msgid " <item type=\"input\">=LEN(12345.67)</item> returns 8."
+msgstr " <item type=\"input\">=LEN(12345.67)</item> returns 8."
+
+#: 04060110.xhp#bm_id3153983.help.text
+msgid "<bookmark_value>LOWER function</bookmark_value>"
+msgstr "<bookmark_value>LOWER function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3153983.87.help.text
+msgid "LOWER"
+msgstr "LOWER"
+
+#: 04060110.xhp#par_id3152791.88.help.text
+msgid "<ahelp hid=\"HID_FUNC_KLEIN\">Converts all uppercase letters in a text string to lowercase.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KLEIN\">Converts all uppercase letters in a text string to lowercase.</ahelp>"
+
+#: 04060110.xhp#hd_id3155902.89.help.text
+msgctxt "04060110.xhp#hd_id3155902.89.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3150121.90.help.text
+msgid "LOWER(\"Text\")"
+msgstr "LOWER(\"Text\")"
+
+#: 04060110.xhp#par_id3153910.91.help.text
+msgctxt "04060110.xhp#par_id3153910.91.help.text"
+msgid " <emph>Text</emph> refers to the text to be converted."
+msgstr " <emph>Text</emph> refers to the text to be converted."
+
+#: 04060110.xhp#hd_id3159343.92.help.text
+msgctxt "04060110.xhp#hd_id3159343.92.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3155329.93.help.text
+msgid " <item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
+msgstr " <item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
+
+#: 04060110.xhp#bm_id3154589.help.text
+msgid "<bookmark_value>MID function</bookmark_value>"
+msgstr "<bookmark_value>MID function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3154589.148.help.text
+msgid "MID"
+msgstr "MID"
+
+#: 04060110.xhp#par_id3154938.149.help.text
+msgid "<ahelp hid=\"HID_FUNC_TEIL\">Returns a text string of a text. The parameters specify the starting position and the number of characters.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TEIL\">Returns a text string of a text. The parameters specify the starting position and the number of characters.</ahelp>"
+
+#: 04060110.xhp#hd_id3148829.150.help.text
+msgctxt "04060110.xhp#hd_id3148829.150.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3150526.151.help.text
+msgid "MID(\"Text\"; Start; Number)"
+msgstr "MID(\"Text\"; Start; Number)"
+
+#: 04060110.xhp#par_id3148820.152.help.text
+msgid " <emph>Text</emph> is the text containing the characters to extract."
+msgstr " <emph>Text</emph> is the text containing the characters to extract."
+
+#: 04060110.xhp#par_id3150774.153.help.text
+msgid " <emph>Start</emph> is the position of the first character in the text to extract."
+msgstr " <emph>Start</emph> is the position of the first character in the text to extract."
+
+#: 04060110.xhp#par_id3153063.154.help.text
+msgid " <emph>Number</emph> specifies the number of characters in the part of the text."
+msgstr " <emph>Number</emph> specifies the number of characters in the part of the text."
+
+#: 04060110.xhp#hd_id3150509.155.help.text
+msgctxt "04060110.xhp#hd_id3150509.155.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3158407.156.help.text
+msgid " <item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
+msgstr " <item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
+
+#: 04060110.xhp#bm_id3159143.help.text
+msgid "<bookmark_value>PROPER function</bookmark_value>"
+msgstr "<bookmark_value>PROPER function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3159143.70.help.text
+msgid "PROPER"
+msgstr "PROPER"
+
+#: 04060110.xhp#par_id3149768.71.help.text
+msgid "<ahelp hid=\"HID_FUNC_GROSS2\">Capitalizes the first letter in all words of a text string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GROSS2\">Capitalizes the first letter in all words of a text string.</ahelp>"
+
+#: 04060110.xhp#hd_id3153573.72.help.text
+msgctxt "04060110.xhp#hd_id3153573.72.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3154260.73.help.text
+msgid "PROPER(\"Text\")"
+msgstr "PROPER(\"Text\")"
+
+#: 04060110.xhp#par_id3147509.74.help.text
+msgctxt "04060110.xhp#par_id3147509.74.help.text"
+msgid " <emph>Text</emph> refers to the text to be converted."
+msgstr " <emph>Text</emph> refers to the text to be converted."
+
+#: 04060110.xhp#hd_id3147529.75.help.text
+msgctxt "04060110.xhp#hd_id3147529.75.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3155364.76.help.text
+msgid " <item type=\"input\">=PROPER(\"open office\")</item> returns Open Office."
+msgstr " <item type=\"input\">=PROPER(\"open office\")</item> returns Open Office."
+
+#: 04060110.xhp#bm_id3149171.help.text
+msgid "<bookmark_value>REPLACE function</bookmark_value>"
+msgstr "<bookmark_value>REPLACE function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149171.22.help.text
+msgid "REPLACE"
+msgstr "REPLACE"
+
+#: 04060110.xhp#par_id3148925.23.help.text
+msgid "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> function."
+msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> function."
+
+#: 04060110.xhp#par_id3158426.24.help.text
+msgid "Any text containing numbers must be enclosed in quotation marks if you do not want it to be interpreted as a number and automatically converted to text."
+msgstr "Any text containing numbers must be enclosed in quotation marks if you do not want it to be interpreted as a number and automatically converted to text."
+
+#: 04060110.xhp#hd_id3149159.25.help.text
+msgctxt "04060110.xhp#hd_id3149159.25.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3147286.26.help.text
+msgid "REPLACE(\"Text\"; Position; Length; \"NewText\")"
+msgstr "REPLACE(\"Text\"; Position; Length; \"NewText\")"
+
+#: 04060110.xhp#par_id3149797.27.help.text
+msgid " <emph>Text</emph> refers to text of which a part will be replaced."
+msgstr " <emph>Text</emph> refers to text of which a part will be replaced."
+
+#: 04060110.xhp#par_id3166451.28.help.text
+msgid " <emph>Position</emph> refers to the position within the text where the replacement will begin."
+msgstr " <emph>Position</emph> refers to the position within the text where the replacement will begin."
+
+#: 04060110.xhp#par_id3156040.29.help.text
+msgid " <emph>Length</emph> is the number of characters in <emph>Text</emph> to be replaced."
+msgstr " <emph>Length</emph> is the number of characters in <emph>Text</emph> to be replaced."
+
+#: 04060110.xhp#par_id3159188.30.help.text
+msgid " <emph>NewText</emph> refers to the text which replaces <emph>Text</emph>."
+msgstr " <emph>NewText</emph> refers to the text which replaces <emph>Text</emph>."
+
+#: 04060110.xhp#hd_id3146958.31.help.text
+msgctxt "04060110.xhp#hd_id3146958.31.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3154096.32.help.text
+msgid " <item type=\"input\">=REPLACE(\"1234567\";1;1;\"444\")</item> returns \"444234567\". One character at position 1 is replaced by the complete <item type=\"literal\">NewText</item>."
+msgstr " <item type=\"input\">=REPLACE(\"1234567\";1;1;\"444\")</item> returns \"444234567\". One character at position 1 is replaced by the complete <item type=\"literal\">NewText</item>."
+
+#: 04060110.xhp#bm_id3149741.help.text
+msgid "<bookmark_value>REPT function</bookmark_value>"
+msgstr "<bookmark_value>REPT function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149741.193.help.text
+msgid "REPT"
+msgstr "REPT"
+
+#: 04060110.xhp#par_id3153748.194.help.text
+msgid "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">Repeats a character string by the given <emph>number</emph> of copies.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WIEDERHOLEN\">Repeats a character string by the given <emph>number</emph> of copies.</ahelp>"
+
+#: 04060110.xhp#hd_id3152884.195.help.text
+msgctxt "04060110.xhp#hd_id3152884.195.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3150494.196.help.text
+msgid "REPT(\"Text\"; Number)"
+msgstr "REPT(\"Text\"; Number)"
+
+#: 04060110.xhp#par_id3154859.197.help.text
+msgid " <emph>Text</emph> is the text to be repeated."
+msgstr " <emph>Text</emph> is the text to be repeated."
+
+#: 04060110.xhp#par_id3150638.198.help.text
+msgid " <emph>Number</emph> is the number of repetitions."
+msgstr " <emph>Number</emph> is the number of repetitions."
+
+#: 04060110.xhp#par_id3149922.212.help.text
+msgid "The result can be a maximum of 255 characters."
+msgstr "The result can be a maximum of 255 characters."
+
+#: 04060110.xhp#hd_id3156213.199.help.text
+msgctxt "04060110.xhp#hd_id3156213.199.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3148626.200.help.text
+msgid " <item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
+msgstr " <item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
+
+#: 04060110.xhp#bm_id3149805.help.text
+msgid "<bookmark_value>RIGHT function</bookmark_value>"
+msgstr "<bookmark_value>RIGHT function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3149805.113.help.text
+msgid "RIGHT"
+msgstr "RIGHT"
+
+#: 04060110.xhp#par_id3145375.114.help.text
+msgid "<ahelp hid=\"HID_FUNC_RECHTS\">Returns the last character or characters of a text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RECHTS\">Returns the last character or characters of a text.</ahelp>"
+
+#: 04060110.xhp#hd_id3150837.115.help.text
+msgctxt "04060110.xhp#hd_id3150837.115.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3154344.116.help.text
+msgid "RIGHT(\"Text\"; Number)"
+msgstr "RIGHT(\"Text\"; Number)"
+
+#: 04060110.xhp#par_id3149426.117.help.text
+msgid " <emph>Text</emph> is the text of which the right part is to be determined."
+msgstr " <emph>Text</emph> is the text of which the right part is to be determined."
+
+#: 04060110.xhp#par_id3153350.118.help.text
+msgid " <emph>Number</emph> (optional) is the number of characters from the right part of the text."
+msgstr " <emph>Number</emph> (optional) is the number of characters from the right part of the text."
+
+#: 04060110.xhp#hd_id3148661.119.help.text
+msgctxt "04060110.xhp#hd_id3148661.119.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3151132.120.help.text
+msgid " <item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
+msgstr " <item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
+
+#: 04060110.xhp#bm_id3153534.help.text
+msgid "<bookmark_value>ROMAN function</bookmark_value>"
+msgstr "<bookmark_value>ROMAN function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3153534.248.help.text
+msgid "ROMAN"
+msgstr "ROMAN"
+
+#: 04060110.xhp#par_id3151256.249.help.text
+msgid "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ROEMISCH\">Converts a number into a Roman numeral. The value range must be between 0 and 3999, the modes can be integers from 0 to 4.</ahelp>"
+
+#: 04060110.xhp#hd_id3149299.250.help.text
+msgctxt "04060110.xhp#hd_id3149299.250.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3150593.251.help.text
+msgid "ROMAN(Number; Mode)"
+msgstr "ROMAN(Number; Mode)"
+
+#: 04060110.xhp#par_id3156139.252.help.text
+msgid " <emph>Number</emph> is the number that is to be converted into a Roman numeral."
+msgstr " <emph>Number</emph> is the number that is to be converted into a Roman numeral."
+
+#: 04060110.xhp#par_id3153318.253.help.text
+msgid " <emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
+msgstr " <emph>Mode</emph> (optional) indicates the degree of simplification. The higher the value, the greater is the simplification of the Roman number."
+
+#: 04060110.xhp#hd_id3145306.254.help.text
+msgctxt "04060110.xhp#hd_id3145306.254.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3151371.255.help.text
+msgid " <item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
+msgstr " <item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
+
+#: 04060110.xhp#par_id3153938.256.help.text
+msgid " <item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
+msgstr " <item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
+
+#: 04060110.xhp#par_id3148412.257.help.text
+msgid " <item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
+msgstr " <item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
+
+#: 04060110.xhp#par_id3155421.258.help.text
+msgid " <item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
+msgstr " <item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
+
+#: 04060110.xhp#par_id3149235.259.help.text
+msgid " <item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
+msgstr " <item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
+
+#: 04060110.xhp#par_id3150624.260.help.text
+msgid " <item type=\"input\">=ROMAN(999;4)</item> returns IM"
+msgstr " <item type=\"input\">=ROMAN(999;4)</item> returns IM"
+
+#: 04060110.xhp#bm_id3151005.help.text
+msgid "<bookmark_value>SEARCH function</bookmark_value>"
+msgstr "<bookmark_value>SEARCH function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3151005.122.help.text
+msgid "SEARCH"
+msgstr "SEARCH"
+
+#: 04060110.xhp#par_id3148692.123.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUCHEN\">Returns the position of a text segment within a character string.</ahelp> You can set the start of the search as an option. The search text can be a number or any sequence of characters. The search is not case-sensitive."
+msgstr "<ahelp hid=\"HID_FUNC_SUCHEN\">Returns the position of a text segment within a character string.</ahelp> You can set the start of the search as an option. The search text can be a number or any sequence of characters. The search is not case-sensitive."
+
+#: 04060110.xhp#hd_id3152964.124.help.text
+msgctxt "04060110.xhp#hd_id3152964.124.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3154671.125.help.text
+msgid "SEARCH(\"FindText\"; \"Text\"; Position)"
+msgstr "SEARCH(\"FindText\"; \"Text\"; Position)"
+
+#: 04060110.xhp#par_id3146080.126.help.text
+msgid " <emph>FindText</emph> is the text to be searched for."
+msgstr " <emph>FindText</emph> is the text to be searched for."
+
+#: 04060110.xhp#par_id3154111.127.help.text
+msgid " <emph>Text</emph> is the text where the search will take place."
+msgstr " <emph>Text</emph> is the text where the search will take place."
+
+#: 04060110.xhp#par_id3149559.128.help.text
+msgid " <emph>Position</emph> (optional) is the position in the text where the search is to start."
+msgstr " <emph>Position</emph> (optional) is the position in the text where the search is to start."
+
+#: 04060110.xhp#hd_id3147322.129.help.text
+msgctxt "04060110.xhp#hd_id3147322.129.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3154564.130.help.text
+msgid " <item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
+msgstr " <item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
+
+#: 04060110.xhp#bm_id3154830.help.text
+msgid "<bookmark_value>SUBSTITUTE function</bookmark_value>"
+msgstr "<bookmark_value>SUBSTITUTE function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3154830.174.help.text
+msgid "SUBSTITUTE"
+msgstr "SUBSTITUTE"
+
+#: 04060110.xhp#par_id3153698.175.help.text
+msgid "<ahelp hid=\"HID_FUNC_WECHSELN\">Substitutes new text for old text in a string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WECHSELN\">Substitutes new text for old text in a string.</ahelp>"
+
+#: 04060110.xhp#hd_id3150994.176.help.text
+msgctxt "04060110.xhp#hd_id3150994.176.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3147582.177.help.text
+msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
+msgstr "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)"
+
+#: 04060110.xhp#par_id3153675.178.help.text
+msgid " <emph>Text</emph> is the text in which text segments are to be exchanged."
+msgstr " <emph>Text</emph> is the text in which text segments are to be exchanged."
+
+#: 04060110.xhp#par_id3156155.179.help.text
+msgid " <emph>SearchText </emph>is the text segment that is to be replaced (a number of times)."
+msgstr " <emph>SearchText </emph>is the text segment that is to be replaced (a number of times)."
+
+#: 04060110.xhp#par_id3145779.180.help.text
+msgid " <emph>NewText</emph> is the text that is to replace the text segment."
+msgstr " <emph>NewText</emph> is the text that is to replace the text segment."
+
+#: 04060110.xhp#par_id3150348.181.help.text
+msgid " <emph>Occurrence</emph> (optional) indicates which occurrence of the search text is to be replaced. If this parameter is missing the search text is replaced throughout."
+msgstr " <emph>Occurrence</emph> (optional) indicates which occurrence of the search text is to be replaced. If this parameter is missing the search text is replaced throughout."
+
+#: 04060110.xhp#hd_id3150946.182.help.text
+msgctxt "04060110.xhp#hd_id3150946.182.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3150412.183.help.text
+msgid " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
+msgstr " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
+
+#: 04060110.xhp#par_id3154915.238.help.text
+msgid " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
+msgstr " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
+
+#: 04060110.xhp#bm_id3148977.help.text
+msgid "<bookmark_value>T function</bookmark_value>"
+msgstr "<bookmark_value>T function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3148977.140.help.text
+msgid "T"
+msgstr "T"
+
+#: 04060110.xhp#par_id3154359.141.help.text
+msgid "<ahelp hid=\"HID_FUNC_T\">This function returns the target text, or a blank text string if the target is not text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_T\">This function returns the target text, or a blank text string if the target is not text.</ahelp>"
+
+#: 04060110.xhp#hd_id3155858.142.help.text
+msgctxt "04060110.xhp#hd_id3155858.142.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3155871.143.help.text
+msgid "T(Value)"
+msgstr "T(Value)"
+
+#: 04060110.xhp#par_id3154726.144.help.text
+msgid "If <emph>Value</emph> is a text string or refers to a text string, T returns that text string; otherwise it returns a blank text string."
+msgstr "If <emph>Value</emph> is a text string or refers to a text string, T returns that text string; otherwise it returns a blank text string."
+
+#: 04060110.xhp#hd_id3155544.145.help.text
+msgctxt "04060110.xhp#hd_id3155544.145.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3151062.146.help.text
+msgid " <item type=\"input\">=T(12345)</item> returns an empty string. "
+msgstr " <item type=\"input\">=T(12345)</item> returns an empty string. "
+
+#: 04060110.xhp#par_id4650105.help.text
+msgid " <item type=\"input\">=T(\"12345\")</item> returns the string 12345."
+msgstr " <item type=\"input\">=T(\"12345\")</item> returns the string 12345."
+
+#: 04060110.xhp#bm_id3147132.help.text
+msgid "<bookmark_value>TEXT function</bookmark_value>"
+msgstr "<bookmark_value>TEXT function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3147132.158.help.text
+msgid "TEXT"
+msgstr "TEXT"
+
+#: 04060110.xhp#par_id3147213.159.help.text
+msgid "<ahelp hid=\"HID_FUNC_TEXT\">Converts a number into text according to a given format.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TEXT\">Converts a number into text according to a given format.</ahelp>"
+
+#: 04060110.xhp#hd_id3153129.160.help.text
+msgctxt "04060110.xhp#hd_id3153129.160.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3147377.161.help.text
+msgid "TEXT(Number; Format)"
+msgstr "TEXT(Number; Format)"
+
+#: 04060110.xhp#par_id3147389.162.help.text
+msgid " <emph>Number</emph> is the numerical value to be converted."
+msgstr " <emph>Number</emph> is the numerical value to be converted."
+
+#: 04060110.xhp#par_id3156167.163.help.text
+msgid " <emph>Format</emph> is the text which defines the format. Use decimal and thousands separators according to the language set in the cell format."
+msgstr " <emph>Format</emph> is the text which defines the format. Use decimal and thousands separators according to the language set in the cell format."
+
+#: 04060110.xhp#hd_id1243629.help.text
+msgctxt "04060110.xhp#hd_id1243629.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id9044770.help.text
+msgid " <item type=\"input\">=TEXT(12.34567;\"###.##\")</item> returns the text 12.35"
+msgstr " <item type=\"input\">=TEXT(12.34567;\"###.##\")</item> returns the text 12.35"
+
+#: 04060110.xhp#par_id3674123.help.text
+msgid " <item type=\"input\">=TEXT(12.34567;\"000.00\")</item> returns the text 012.35"
+msgstr " <item type=\"input\">=TEXT(12.34567;\"000.00\")</item> returns the text 012.35"
+
+#: 04060110.xhp#bm_id3151039.help.text
+msgid "<bookmark_value>TRIM function</bookmark_value>"
+msgstr "<bookmark_value>TRIM function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3151039.54.help.text
+msgid "TRIM"
+msgstr "TRIM"
+
+#: 04060110.xhp#par_id3157888.55.help.text
+msgid "<ahelp hid=\"HID_FUNC_GLAETTEN\">Removes spaces from a string, leaving only a single space character between words.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GLAETTEN\">Removes spaces from a string, leaving only a single space character between words.</ahelp>"
+
+#: 04060110.xhp#hd_id3152913.56.help.text
+msgctxt "04060110.xhp#hd_id3152913.56.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3151349.57.help.text
+msgid "TRIM(\"Text\")"
+msgstr "TRIM(\"Text\")"
+
+#: 04060110.xhp#par_id3151362.58.help.text
+msgid " <emph>Text</emph> refers to text in which spaces are removed."
+msgstr " <emph>Text</emph> refers to text in which spaces are removed."
+
+#: 04060110.xhp#hd_id3146838.59.help.text
+msgctxt "04060110.xhp#hd_id3146838.59.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3156074.60.help.text
+msgid " <item type=\"input\">=TRIM(\"hello\")</item> returns hello."
+msgstr " <item type=\"input\">=TRIM(\"hello\")</item> returns hello."
+
+#: 04060110.xhp#bm_id0907200904030935.help.text
+msgid "<bookmark_value>UNICHAR function</bookmark_value>"
+msgstr "<bookmark_value>UNICHAR function</bookmark_value>"
+
+#: 04060110.xhp#hd_id0907200904022525.help.text
+msgid "UNICHAR"
+msgstr "UNICHAR"
+
+#: 04060110.xhp#par_id0907200904022538.help.text
+msgid "<ahelp hid=\".\">Converts a code number into a Unicode character or letter.</ahelp>"
+msgstr "<ahelp hid=\".\">Converts a code number into a Unicode character or letter.</ahelp>"
+
+#: 04060110.xhp#hd_id0907200904123753.help.text
+msgctxt "04060110.xhp#hd_id0907200904123753.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id0907200904123753.help.text
+msgid "UNICHAR(number)"
+msgstr "UNICHAR(number)"
+
+#: 04060110.xhp#hd_id0907200904123720.help.text
+msgctxt "04060110.xhp#hd_id0907200904123720.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id090720090412378.help.text
+msgid "=UNICHAR(169) returns the Copyright character <emph>©</emph>."
+msgstr "=UNICHAR(169) returns the Copyright character <emph>©</emph>."
+
+#: 04060110.xhp#bm_id0907200904033543.help.text
+msgid "<bookmark_value>UNICODE function</bookmark_value>"
+msgstr "<bookmark_value>UNICODE function</bookmark_value>"
+
+#: 04060110.xhp#hd_id0907200904022588.help.text
+msgid "UNICODE"
+msgstr "UNICODE"
+
+#: 04060110.xhp#par_id0907200904022594.help.text
+msgid "<ahelp hid=\".\">Returns the numeric code for the first Unicode character in a text string.</ahelp>"
+msgstr "<ahelp hid=\".\">Returns the numeric code for the first Unicode character in a text string.</ahelp>"
+
+#: 04060110.xhp#hd_id0907200904123874.help.text
+msgctxt "04060110.xhp#hd_id0907200904123874.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id0907200904123846.help.text
+msgid "UNICODE(\"Text\")"
+msgstr "UNICODE(\"Text\")"
+
+#: 04060110.xhp#hd_id0907200904123899.help.text
+msgctxt "04060110.xhp#hd_id0907200904123899.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id0907200904123919.help.text
+msgid "=UNICODE(\"©\") returns the Unicode number 169 for the Copyright character."
+msgstr "=UNICODE(\"©\") returns the Unicode number 169 for the Copyright character."
+
+#: 04060110.xhp#bm_id3145178.help.text
+msgid "<bookmark_value>UPPER function</bookmark_value>"
+msgstr "<bookmark_value>UPPER function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3145178.62.help.text
+msgid "UPPER"
+msgstr "UPPER"
+
+#: 04060110.xhp#par_id3162905.63.help.text
+msgid "<ahelp hid=\"HID_FUNC_GROSS\">Converts the string specified in the <emph>text</emph> field to uppercase.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GROSS\">Converts the string specified in the <emph>text</emph> field to uppercase.</ahelp>"
+
+#: 04060110.xhp#hd_id3148526.64.help.text
+msgctxt "04060110.xhp#hd_id3148526.64.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3148539.65.help.text
+msgid "UPPER(\"Text\")"
+msgstr "UPPER(\"Text\")"
+
+#: 04060110.xhp#par_id3148496.66.help.text
+msgid " <emph>Text</emph> refers to the lower case letters you want to convert to upper case."
+msgstr " <emph>Text</emph> refers to the lower case letters you want to convert to upper case."
+
+#: 04060110.xhp#hd_id3148516.67.help.text
+msgctxt "04060110.xhp#hd_id3148516.67.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3146757.68.help.text
+msgid " <item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
+msgstr " <item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
+
+#: 04060110.xhp#bm_id3150802.help.text
+msgid "<bookmark_value>VALUE function</bookmark_value>"
+msgstr "<bookmark_value>VALUE function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3150802.185.help.text
+msgid "VALUE"
+msgstr "VALUE"
+
+#: 04060110.xhp#par_id3152551.186.help.text
+msgid "<ahelp hid=\"HID_FUNC_WERT\">Converts a text string into a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WERT\">Converts a text string into a number.</ahelp>"
+
+#: 04060110.xhp#hd_id3152568.187.help.text
+msgctxt "04060110.xhp#hd_id3152568.187.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id3153638.188.help.text
+msgid "VALUE(\"Text\")"
+msgstr "VALUE(\"Text\")"
+
+#: 04060110.xhp#par_id3153651.189.help.text
+msgid " <emph>Text</emph> is the text to be converted to a number."
+msgstr " <emph>Text</emph> is the text to be converted to a number."
+
+#: 04060110.xhp#hd_id3144719.190.help.text
+msgctxt "04060110.xhp#hd_id3144719.190.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060110.xhp#par_id3144733.191.help.text
+msgid " <item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
+msgstr " <item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
+
+#: 12080300.xhp#tit.help.text
+msgid "Group"
+msgstr "Group"
+
+#: 12080300.xhp#hd_id3153088.1.help.text
+msgctxt "12080300.xhp#hd_id3153088.1.help.text"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+
+#: 12080300.xhp#par_id3153821.2.help.text
+msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
+msgstr "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
+
+#: 12080300.xhp#par_id3145069.3.help.text
+msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgstr "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+
+#: 12080300.xhp#hd_id3125863.4.help.text
+msgid "Include"
+msgstr "Include"
+
+#: 12080300.xhp#hd_id3150448.6.help.text
+msgctxt "12080300.xhp#hd_id3150448.6.help.text"
+msgid "Rows"
+msgstr "Rows"
+
+#: 12080300.xhp#par_id3153194.7.help.text
+msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
+
+#: 12080300.xhp#hd_id3145786.8.help.text
+msgctxt "12080300.xhp#hd_id3145786.8.help.text"
+msgid "Columns"
+msgstr "Columns"
+
+#: 12080300.xhp#par_id3146984.9.help.text
+msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
+
+#: 06130000.xhp#tit.help.text
+msgid "AutoInput"
+msgstr "AutoInput"
+
+#: 06130000.xhp#bm_id2486037.help.text
+msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
+msgstr "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
+
+#: 06130000.xhp#hd_id3148492.1.help.text
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+
+#: 06130000.xhp#par_id3150793.2.help.text
+msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
+msgstr "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
+
+#: 06130000.xhp#par_id3156422.8.help.text
+msgid "The completion text is highlighted."
+msgstr "The completion text is highlighted."
+
+#: 06130000.xhp#par_idN1065D.help.text
+msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
+msgstr "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
+
+#: 06130000.xhp#par_idN10665.help.text
+msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
+msgstr "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
+
+#: 06130000.xhp#par_idN1066D.help.text
+msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
+msgstr ""
+
+#: 06130000.xhp#par_idN10679.help.text
+msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
+msgstr ""
+
+#: 06130000.xhp#par_id3150439.3.help.text
+msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
+msgstr "When typing formulae using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
+
+#: 06130000.xhp#par_id3153363.5.help.text
+msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
+msgstr "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
+
+#: 12040100.xhp#tit.help.text
+msgid "AutoFilter"
+msgstr "AutoFilter"
+
+#: 12040100.xhp#hd_id3153541.1.help.text
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+
+#: 12040100.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
+
+#: 12040100.xhp#par_id3145171.3.help.text
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
+
+#: 06020000.xhp#tit.help.text
+msgctxt "06020000.xhp#tit.help.text"
+msgid "Hyphenation"
+msgstr "Hyphenation"
+
+#: 06020000.xhp#bm_id3159399.help.text
+msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
+
+#: 06020000.xhp#hd_id3159399.1.help.text
+msgctxt "06020000.xhp#hd_id3159399.1.help.text"
+msgid "Hyphenation"
+msgstr "Hyphenation"
+
+#: 06020000.xhp#par_id3145068.2.help.text
+msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
+msgstr "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialogue for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
+
+#: 06020000.xhp#par_id3154366.3.help.text
+msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
+msgstr "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
+
+#: 06020000.xhp#hd_id3153192.4.help.text
+msgid "Hyphenation for selected cells."
+msgstr "Hyphenation for selected cells."
+
+#: 06020000.xhp#par_id3150868.5.help.text
+msgid "Select the cells for which you want to change the hyphenation."
+msgstr "Select the cells for which you want to change the hyphenation."
+
+#: 06020000.xhp#par_id3150440.6.help.text
+msgctxt "06020000.xhp#par_id3150440.6.help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr "Choose <emph>Tools - Language - Hyphenation</emph>."
+
+#: 06020000.xhp#par_id3156441.7.help.text
+msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
+msgstr "The <emph>Format Cells</emph> dialogue appears with the <emph>Alignment</emph> tab page open."
+
+#: 06020000.xhp#par_id3149260.12.help.text
+msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+msgstr "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+
+#: 06020000.xhp#hd_id3153094.8.help.text
+msgid "Hyphenation for Drawing Objects"
+msgstr "Hyphenation for Drawing Objects"
+
+#: 06020000.xhp#par_id3148577.9.help.text
+msgid "Select a drawing object."
+msgstr "Select a drawing object."
+
+#: 06020000.xhp#par_id3156285.10.help.text
+msgctxt "06020000.xhp#par_id3156285.10.help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr "Choose <emph>Tools - Language - Hyphenation</emph>."
+
+#: 06020000.xhp#par_id3147394.11.help.text
+msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
+msgstr "Each time you call the command you turn the hyphenation for the drawing object on or off. A tick shows the current status."
+
+#: 02190100.xhp#tit.help.text
+msgctxt "02190100.xhp#tit.help.text"
+msgid "Row Break"
+msgstr "Row Break"
+
+#: 02190100.xhp#bm_id3156326.help.text
+msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
+
+#: 02190100.xhp#hd_id3156326.1.help.text
+msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
+
+#: 02190100.xhp#par_id3154366.2.help.text
+msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
+
+#: 02190100.xhp#par_id3151041.3.help.text
+msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
+msgstr "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
+
+#: 06030800.xhp#tit.help.text
+msgid "Mark Invalid Data"
+msgstr "Mark Invalid Data"
+
+#: 06030800.xhp#bm_id3153821.help.text
+msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
+msgstr "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
+
+#: 06030800.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
+msgstr "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
+
+#: 06030800.xhp#par_id3147264.2.help.text
+msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
+
+#: 06030800.xhp#par_id3151211.3.help.text
+msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
+msgstr "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
+
+#: 12090105.xhp#tit.help.text
+msgctxt "12090105.xhp#tit.help.text"
+msgid "Data field"
+msgstr "Data field"
+
+#: 12090105.xhp#bm_id7292397.help.text
+msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgstr ""
+
+#: 12090105.xhp#hd_id3150871.1.help.text
+msgctxt "12090105.xhp#hd_id3150871.1.help.text"
+msgid "Data field"
+msgstr "Data field"
+
+#: 12090105.xhp#par_id3154124.16.help.text
+msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
+msgstr ""
+
+#: 12090105.xhp#hd_id3152596.2.help.text
+msgctxt "12090105.xhp#hd_id3152596.2.help.text"
+msgid "Subtotals"
+msgstr "Subtotals"
+
+#: 12090105.xhp#par_id3151113.3.help.text
+msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
+
+#: 12090105.xhp#hd_id3145366.4.help.text
+msgid "None"
+msgstr "None"
+
+#: 12090105.xhp#par_id3152576.5.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
+
+#: 12090105.xhp#hd_id3154012.6.help.text
+msgid "Automatic"
+msgstr "Automatic"
+
+#: 12090105.xhp#par_id3155856.7.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
+
+#: 12090105.xhp#hd_id3155411.8.help.text
+msgid "User-defined"
+msgstr "User-defined"
+
+#: 12090105.xhp#par_id3149581.9.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
+
+#: 12090105.xhp#hd_id3147124.10.help.text
+msgctxt "12090105.xhp#hd_id3147124.10.help.text"
+msgid "Function"
+msgstr "Function"
+
+#: 12090105.xhp#par_id3154490.11.help.text
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
+
+#: 12090105.xhp#hd_id3154944.14.help.text
+msgid "Show elements without data"
+msgstr "Show elements without data"
+
+#: 12090105.xhp#par_id3149403.15.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
+
+#: 12090105.xhp#hd_id3149122.12.help.text
+msgid "Name:"
+msgstr "Name:"
+
+#: 12090105.xhp#par_id3150749.13.help.text
+msgid "Lists the name of the selected data field."
+msgstr "Lists the name of the selected data field."
+
+#: 12090105.xhp#par_idN106EC.help.text
+msgctxt "12090105.xhp#par_idN106EC.help.text"
+msgid "More"
+msgstr "More"
+
+#: 12090105.xhp#par_idN106F0.help.text
+msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
+msgstr "<ahelp hid=\".\">Expands or reduces the dialogue. The <emph>More</emph> button is visible for data fields only.</ahelp>"
+
+#: 12090105.xhp#par_idN106F3.help.text
+msgctxt "12090105.xhp#par_idN106F3.help.text"
+msgid "Options"
+msgstr "Options"
+
+#: 12090105.xhp#par_idN106F7.help.text
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
+msgstr "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialogue. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
+
+#: 12090105.xhp#par_idN10708.help.text
+msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
+msgstr "If the dialogue is expanded by the <emph>More</emph> button, the following items are added to the dialogue:"
+
+#: 12090105.xhp#par_idN1070B.help.text
+msgctxt "12090105.xhp#par_idN1070B.help.text"
+msgid "Displayed value"
+msgstr "Displayed value"
+
+#: 12090105.xhp#par_idN1070F.help.text
+msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
+msgstr "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
+
+#: 12090105.xhp#par_idN10712.help.text
+msgctxt "12090105.xhp#par_idN10712.help.text"
+msgid "Type"
+msgstr "Type"
+
+#: 12090105.xhp#par_idN10716.help.text
+msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
+msgstr "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
+
+#: 12090105.xhp#par_idN10724.help.text
+msgctxt "12090105.xhp#par_idN10724.help.text"
+msgid "Type"
+msgstr "Type"
+
+#: 12090105.xhp#par_idN1072A.help.text
+msgctxt "12090105.xhp#par_idN1072A.help.text"
+msgid "Displayed value"
+msgstr "Displayed value"
+
+#: 12090105.xhp#par_idN10731.help.text
+msgid "Normal"
+msgstr "Normal"
+
+#: 12090105.xhp#par_idN10737.help.text
+msgid "Results are shown unchanged"
+msgstr "Results are shown unchanged"
+
+#: 12090105.xhp#par_idN1073E.help.text
+msgid "Difference from"
+msgstr "Difference from"
+
+#: 12090105.xhp#par_idN10744.help.text
+msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
+msgstr "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
+
+#: 12090105.xhp#par_idN10747.help.text
+msgid "<emph>Named item</emph>"
+msgstr "<emph>Named item</emph>"
+
+#: 12090105.xhp#par_idN1074C.help.text
+msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
+msgstr "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
+
+#: 12090105.xhp#par_idN1074F.help.text
+msgid "<emph>Previous item or Next item</emph>"
+msgstr "<emph>Previous item or Next item</emph>"
+
+#: 12090105.xhp#par_idN10754.help.text
+msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
+msgstr "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
+
+#: 12090105.xhp#par_idN1075B.help.text
+msgid "% Of"
+msgstr "% Of"
+
+#: 12090105.xhp#par_idN10761.help.text
+msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results. "
+msgstr "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results. "
+
+#: 12090105.xhp#par_idN1076A.help.text
+msgid "% Difference from"
+msgstr "% Difference from"
+
+#: 12090105.xhp#par_idN10770.help.text
+msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+
+#: 12090105.xhp#par_idN10777.help.text
+msgid "Running total in"
+msgstr "Running total in"
+
+#: 12090105.xhp#par_idN1077D.help.text
+msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
+msgstr "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
+
+#: 12090105.xhp#par_idN10780.help.text
+msgid "Results are always summed, even if a different summary function was used to get each result."
+msgstr "Results are always summed, even if a different summary function was used to get each result."
+
+#: 12090105.xhp#par_idN10787.help.text
+msgid "% of row"
+msgstr "% of row"
+
+#: 12090105.xhp#par_idN1078D.help.text
+msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used. "
+msgstr ""
+
+#: 12090105.xhp#par_idN10794.help.text
+msgid "% of column"
+msgstr "% of column"
+
+#: 12090105.xhp#par_idN1079A.help.text
+msgid "Same as \"% of row\", but the total for the result's column is used."
+msgstr "Same as \"% of row\", but the total for the result's column is used."
+
+#: 12090105.xhp#par_idN107A1.help.text
+msgid "% of total"
+msgstr "% of total"
+
+#: 12090105.xhp#par_idN107A7.help.text
+msgid "Same as \"% of row\", but the grand total for the result's data field is used."
+msgstr "Same as \"% of row\", but the grand total for the result's data field is used."
+
+#: 12090105.xhp#par_idN107AE.help.text
+msgid "Index"
+msgstr "Index"
+
+#: 12090105.xhp#par_idN107B4.help.text
+msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
+msgstr "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
+
+#: 12090105.xhp#par_idN107B7.help.text
+msgid "( original result * grand total ) / ( row total * column total )"
+msgstr "( original result * grand total ) / ( row total * column total )"
+
+#: 12090105.xhp#par_idN107BA.help.text
+msgid "Base field"
+msgstr "Base field"
+
+#: 12090105.xhp#par_idN107BE.help.text
+msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
+
+#: 12090105.xhp#par_idN107C1.help.text
+msgid "Base item"
+msgstr "Base item"
+
+#: 12090105.xhp#par_idN107C5.help.text
+msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
+
+#: 04060119.xhp#tit.help.text
+msgctxt "04060119.xhp#tit.help.text"
+msgid "Financial Functions Part Two"
+msgstr "Financial Functions Part Two"
+
+#: 04060119.xhp#hd_id3149052.1.help.text
+msgctxt "04060119.xhp#hd_id3149052.1.help.text"
+msgid "Financial Functions Part Two"
+msgstr "Financial Functions Part Two"
+
+#: 04060119.xhp#par_id3148742.343.help.text
+msgctxt "04060119.xhp#par_id3148742.343.help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+
+#: 04060119.xhp#par_id3151341.344.help.text
+msgctxt "04060119.xhp#par_id3151341.344.help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
+
+#: 04060119.xhp#bm_id3150026.help.text
+msgid "<bookmark_value>PPMT function</bookmark_value>"
+msgstr "<bookmark_value>PPMT function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3150026.238.help.text
+msgid "PPMT"
+msgstr "PPMT"
+
+#: 04060119.xhp#par_id3146942.239.help.text
+msgid "<ahelp hid=\"HID_FUNC_KAPZ\">Returns for a given period the payment on the principal for an investment that is based on periodic and constant payments and a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KAPZ\">Returns for a given period the payment on the principal for an investment that is based on periodic and constant payments and a constant interest rate.</ahelp>"
+
+#: 04060119.xhp#hd_id3150459.240.help.text
+msgctxt "04060119.xhp#hd_id3150459.240.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3146878.241.help.text
+msgid "PPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr "PPMT(Rate; Period; NPer; PV; FV; Type)"
+
+#: 04060119.xhp#par_id3151228.242.help.text
+msgctxt "04060119.xhp#par_id3151228.242.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 04060119.xhp#par_id3148887.243.help.text
+msgid "<emph>Period</emph> is the amortizement period. P = 1 for the first and P = NPer for the last period."
+msgstr "<emph>Period</emph> is the amortizement period. P = 1 for the first and P = NPer for the last period."
+
+#: 04060119.xhp#par_id3148436.244.help.text
+msgid "<emph>NPer</emph> is the total number of periods during which annuity is paid."
+msgstr "<emph>NPer</emph> is the total number of periods during which annuity is paid."
+
+#: 04060119.xhp#par_id3153035.245.help.text
+msgid "<emph>PV</emph> is the present value in the sequence of payments."
+msgstr "<emph>PV</emph> is the present value in the sequence of payments."
+
+#: 04060119.xhp#par_id3147474.246.help.text
+msgid "<emph>FV</emph> (optional) is the desired (future) value."
+msgstr "<emph>FV</emph> (optional) is the desired (future) value."
+
+#: 04060119.xhp#par_id3144744.247.help.text
+msgid "<emph>Type</emph> (optional) defines the due date. F = 1 for payment at the beginning of a period and F = 0 for payment at the end of a period."
+msgstr "<emph>Type</emph> (optional) defines the due date. F = 1 for payment at the beginning of a period and F = 0 for payment at the end of a period."
+
+#: 04060119.xhp#par_idN1067C.help.text
+msgctxt "04060119.xhp#par_idN1067C.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060119.xhp#hd_id3148582.248.help.text
+msgctxt "04060119.xhp#hd_id3148582.248.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3154811.249.help.text
+msgid "How high is the periodic monthly payment at an annual interest rate of 8.75% over a period of 3 years? The cash value is 5,000 currency units and is always paid at the beginning of a period. The future value is 8,000 currency units."
+msgstr "How high is the periodic monthly payment at an annual interest rate of 8.75% over a period of 3 years? The cash value is 5,000 currency units and is always paid at the beginning of a period. The future value is 8,000 currency units."
+
+#: 04060119.xhp#par_id3149246.250.help.text
+msgid "<item type=\"input\">=PPMT(8.75%/12;1;36;5000;8000;1)</item> = -350.99 currency units."
+msgstr "<item type=\"input\">=PPMT(8.75%/12;1;36;5000;8000;1)</item> = -350.99 currency units."
+
+#: 04060119.xhp#bm_id3146139.help.text
+msgid "<bookmark_value>calculating; total amortizement rates</bookmark_value><bookmark_value>total amortizement rates</bookmark_value><bookmark_value>amortization installment</bookmark_value><bookmark_value>repayment installment</bookmark_value><bookmark_value>CUMPRINC function</bookmark_value>"
+msgstr "<bookmark_value>calculating; total amortizement rates</bookmark_value><bookmark_value>total amortizement rates</bookmark_value><bookmark_value>amortization installment</bookmark_value><bookmark_value>repayment installment</bookmark_value><bookmark_value>CUMPRINC function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3146139.252.help.text
+msgid "CUMPRINC"
+msgstr "CUMPRINC"
+
+#: 04060119.xhp#par_id3150140.253.help.text
+msgid "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">Returns the cumulative interest paid for an investment period with a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KUMKAPITAL\">Returns the cumulative interest paid for an investment period with a constant interest rate.</ahelp>"
+
+#: 04060119.xhp#hd_id3149188.254.help.text
+msgctxt "04060119.xhp#hd_id3149188.254.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3148733.255.help.text
+msgid "CUMPRINC(Rate; NPer; PV; S; E; Type)"
+msgstr "CUMPRINC(Rate; NPer; PV; S; E; Type)"
+
+#: 04060119.xhp#par_id3150864.256.help.text
+msgctxt "04060119.xhp#par_id3150864.256.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 04060119.xhp#par_id3166052.257.help.text
+msgctxt "04060119.xhp#par_id3166052.257.help.text"
+msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
+msgstr "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
+
+#: 04060119.xhp#par_id3150007.258.help.text
+msgctxt "04060119.xhp#par_id3150007.258.help.text"
+msgid "<emph>PV</emph> is the current value in the sequence of payments."
+msgstr "<emph>PV</emph> is the current value in the sequence of payments."
+
+#: 04060119.xhp#par_id3153112.259.help.text
+msgctxt "04060119.xhp#par_id3153112.259.help.text"
+msgid "<emph>S</emph> is the first period."
+msgstr "<emph>S</emph> is the first period."
+
+#: 04060119.xhp#par_id3146847.260.help.text
+msgctxt "04060119.xhp#par_id3146847.260.help.text"
+msgid "<emph>E</emph> is the last period."
+msgstr "<emph>E</emph> is the last period."
+
+#: 04060119.xhp#par_id3145167.261.help.text
+msgctxt "04060119.xhp#par_id3145167.261.help.text"
+msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
+msgstr "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
+
+#: 04060119.xhp#hd_id3154502.262.help.text
+msgctxt "04060119.xhp#hd_id3154502.262.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3153570.263.help.text
+msgid "What are the payoff amounts if the yearly interest rate is 5.5% for 36 months? The cash value is 15,000 currency units. The payoff amount is calculated between the 10th and 18th period. The due date is at the end of the period."
+msgstr "What are the payoff amounts if the yearly interest rate is 5.5% for 36 months? The cash value is 15,000 currency units. The payoff amount is calculated between the 10th and 18th period. The due date is at the end of the period."
+
+#: 04060119.xhp#par_id3149884.264.help.text
+msgid "<item type=\"input\">=CUMPRINC(5.5%/12;36;15000;10;18;0)</item> = -3669.74 currency units. The payoff amount between the 10th and 18th period is 3669.74 currency units."
+msgstr "<item type=\"input\">=CUMPRINC(5.5%/12;36;15000;10;18;0)</item> = -3669.74 currency units. The payoff amount between the 10th and 18th period is 3669.74 currency units."
+
+#: 04060119.xhp#bm_id3150019.help.text
+msgid "<bookmark_value>CUMPRINC_ADD function</bookmark_value>"
+msgstr "<bookmark_value>CUMPRINC_ADD function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3150019.182.help.text
+msgid "CUMPRINC_ADD"
+msgstr "CUMPRINC_ADD"
+
+#: 04060119.xhp#par_id3145246.183.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Calculates the cumulative redemption of a loan in a period.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMPRINC\"> Calculates the cumulative redemption of a loan in a period.</ahelp>"
+
+#: 04060119.xhp#hd_id3153047.184.help.text
+msgctxt "04060119.xhp#hd_id3153047.184.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3157970.185.help.text
+msgid "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+msgstr "CUMPRINC_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+
+#: 04060119.xhp#par_id3145302.186.help.text
+msgctxt "04060119.xhp#par_id3145302.186.help.text"
+msgid "<emph>Rate</emph> is the interest rate for each period."
+msgstr "<emph>Rate</emph> is the interest rate for each period."
+
+#: 04060119.xhp#par_id3151017.187.help.text
+msgctxt "04060119.xhp#par_id3151017.187.help.text"
+msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
+msgstr "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
+
+#: 04060119.xhp#par_id3155620.188.help.text
+msgctxt "04060119.xhp#par_id3155620.188.help.text"
+msgid "<emph>PV</emph> is the current value."
+msgstr "<emph>PV</emph> is the current value."
+
+#: 04060119.xhp#par_id3145352.189.help.text
+msgctxt "04060119.xhp#par_id3145352.189.help.text"
+msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
+msgstr "<emph>StartPeriod</emph> is the first payment period for the calculation."
+
+#: 04060119.xhp#par_id3157986.190.help.text
+msgctxt "04060119.xhp#par_id3157986.190.help.text"
+msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
+msgstr "<emph>EndPeriod</emph> is the last payment period for the calculation."
+
+#: 04060119.xhp#par_id3150570.191.help.text
+msgctxt "04060119.xhp#par_id3150570.191.help.text"
+msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
+msgstr "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
+
+#: 04060119.xhp#hd_id3150269.192.help.text
+msgctxt "04060119.xhp#hd_id3150269.192.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3148774.193.help.text
+msgctxt "04060119.xhp#par_id3148774.193.help.text"
+msgid "The following mortgage loan is taken out on a house:"
+msgstr "The following mortgage loan is taken out on a house:"
+
+#: 04060119.xhp#par_id3150661.194.help.text
+msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units."
+msgstr "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units."
+
+#: 04060119.xhp#par_id3155512.195.help.text
+msgid "How much will you repay in the second year of the mortgage (thus from periods 13 to 24)?"
+msgstr "How much will you repay in the second year of the mortgage (thus from periods 13 to 24)?"
+
+#: 04060119.xhp#par_id3149394.196.help.text
+msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> returns -934.1071"
+msgstr "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;13;24;0)</item> returns -934.1071"
+
+#: 04060119.xhp#par_id3149026.197.help.text
+msgid "In the first month you will be repaying the following amount:"
+msgstr "In the first month you will be repaying the following amount:"
+
+#: 04060119.xhp#par_id3154636.198.help.text
+msgid "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;1;1;0)</item> returns -68.27827"
+msgstr "<item type=\"input\">=CUMPRINC_ADD(0.0075;360;125000;1;1;0)</item> returns -68.27827"
+
+#: 04060119.xhp#bm_id3155370.help.text
+msgid "<bookmark_value>calculating; accumulated interests</bookmark_value><bookmark_value>accumulated interests</bookmark_value><bookmark_value>CUMIPMT function</bookmark_value>"
+msgstr "<bookmark_value>calculating; accumulated interests</bookmark_value><bookmark_value>accumulated interests</bookmark_value><bookmark_value>CUMIPMT function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3155370.266.help.text
+msgid "CUMIPMT"
+msgstr "CUMIPMT"
+
+#: 04060119.xhp#par_id3158411.267.help.text
+msgid "<ahelp hid=\"HID_FUNC_KUMZINSZ\">Calculates the cumulative interest payments, that is, the total interest, for an investment based on a constant interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KUMZINSZ\">Calculates the cumulative interest payments, that is, the total interest, for an investment based on a constant interest rate.</ahelp>"
+
+#: 04060119.xhp#hd_id3155814.268.help.text
+msgctxt "04060119.xhp#hd_id3155814.268.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3147536.269.help.text
+msgid "CUMIPMT(Rate; NPer; PV; S; E; Type)"
+msgstr "CUMIPMT(Rate; NPer; PV; S; E; Type)"
+
+#: 04060119.xhp#par_id3150475.270.help.text
+msgctxt "04060119.xhp#par_id3150475.270.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 04060119.xhp#par_id3153921.271.help.text
+msgctxt "04060119.xhp#par_id3153921.271.help.text"
+msgid "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
+msgstr "<emph>NPer</emph> is the payment period with the total number of periods. NPER can also be a non-integer value."
+
+#: 04060119.xhp#par_id3153186.272.help.text
+msgctxt "04060119.xhp#par_id3153186.272.help.text"
+msgid "<emph>PV</emph> is the current value in the sequence of payments."
+msgstr "<emph>PV</emph> is the current value in the sequence of payments."
+
+#: 04060119.xhp#par_id3156259.273.help.text
+msgctxt "04060119.xhp#par_id3156259.273.help.text"
+msgid "<emph>S</emph> is the first period."
+msgstr "<emph>S</emph> is the first period."
+
+#: 04060119.xhp#par_id3155990.274.help.text
+msgctxt "04060119.xhp#par_id3155990.274.help.text"
+msgid "<emph>E</emph> is the last period."
+msgstr "<emph>E</emph> is the last period."
+
+#: 04060119.xhp#par_id3149777.275.help.text
+msgctxt "04060119.xhp#par_id3149777.275.help.text"
+msgid "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
+msgstr "<emph>Type</emph> is the due date of the payment at the beginning or end of each period."
+
+#: 04060119.xhp#hd_id3153723.276.help.text
+msgctxt "04060119.xhp#hd_id3153723.276.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3147478.277.help.text
+msgid "What are the interest payments at a yearly interest rate of 5.5 %, a payment period of monthly payments for 2 years and a current cash value of 5,000 currency units? The start period is the 4th and the end period is the 6th period. The payment is due at the beginning of each period."
+msgstr "What are the interest payments at a yearly interest rate of 5.5 %, a payment period of monthly payments for 2 years and a current cash value of 5,000 currency units? The start period is the 4th and the end period is the 6th period. The payment is due at the beginning of each period."
+
+#: 04060119.xhp#par_id3149819.278.help.text
+msgid "<item type=\"input\">=CUMIPMT(5.5%/12;24;5000;4;6;1)</item> = -57.54 currency units. The interest payments for between the 4th and 6th period are 57.54 currency units."
+msgstr "<item type=\"input\">=CUMIPMT(5.5%/12;24;5000;4;6;1)</item> = -57.54 currency units. The interest payments for between the 4th and 6th period are 57.54 currency units."
+
+#: 04060119.xhp#bm_id3083280.help.text
+msgid "<bookmark_value>CUMIPMT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>CUMIPMT_ADD function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3083280.165.help.text
+msgid "CUMIPMT_ADD"
+msgstr "CUMIPMT_ADD"
+
+#: 04060119.xhp#par_id3152482.166.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calculates the accumulated interest for a period.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_CUMIPMT\">Calculates the accumulated interest for a period.</ahelp>"
+
+#: 04060119.xhp#hd_id3149713.167.help.text
+msgctxt "04060119.xhp#hd_id3149713.167.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3145087.168.help.text
+msgid "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+msgstr "CUMIPMT_ADD(Rate; NPer; PV; StartPeriod; EndPeriod; Type)"
+
+#: 04060119.xhp#par_id3149277.169.help.text
+msgctxt "04060119.xhp#par_id3149277.169.help.text"
+msgid "<emph>Rate</emph> is the interest rate for each period."
+msgstr "<emph>Rate</emph> is the interest rate for each period."
+
+#: 04060119.xhp#par_id3149270.170.help.text
+msgctxt "04060119.xhp#par_id3149270.170.help.text"
+msgid "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
+msgstr "<emph>NPer</emph> is the total number of payment periods. The rate and NPER must refer to the same unit, and thus both be calculated annually or monthly."
+
+#: 04060119.xhp#par_id3152967.171.help.text
+msgctxt "04060119.xhp#par_id3152967.171.help.text"
+msgid "<emph>PV</emph> is the current value."
+msgstr "<emph>PV</emph> is the current value."
+
+#: 04060119.xhp#par_id3156308.172.help.text
+msgctxt "04060119.xhp#par_id3156308.172.help.text"
+msgid "<emph>StartPeriod</emph> is the first payment period for the calculation."
+msgstr "<emph>StartPeriod</emph> is the first payment period for the calculation."
+
+#: 04060119.xhp#par_id3149453.173.help.text
+msgctxt "04060119.xhp#par_id3149453.173.help.text"
+msgid "<emph>EndPeriod</emph> is the last payment period for the calculation."
+msgstr "<emph>EndPeriod</emph> is the last payment period for the calculation."
+
+#: 04060119.xhp#par_id3150962.174.help.text
+msgctxt "04060119.xhp#par_id3150962.174.help.text"
+msgid "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
+msgstr "<emph>Type</emph> is the maturity of a payment at the end of each period (Type = 0) or at the start of the period (Type = 1)."
+
+#: 04060119.xhp#hd_id3152933.175.help.text
+msgctxt "04060119.xhp#hd_id3152933.175.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3156324.176.help.text
+msgctxt "04060119.xhp#par_id3156324.176.help.text"
+msgid "The following mortgage loan is taken out on a house:"
+msgstr "The following mortgage loan is taken out on a house:"
+
+#: 04060119.xhp#par_id3147566.177.help.text
+msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (NPER = 30 * 12 = 360), Pv: 125000 currency units."
+msgstr "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (NPER = 30 * 12 = 360), Pv: 125000 currency units."
+
+#: 04060119.xhp#par_id3151272.178.help.text
+msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?"
+msgstr "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?"
+
+#: 04060119.xhp#par_id3156130.179.help.text
+msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> returns -11135.23."
+msgstr "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;13;24;0)</item> returns -11135.23."
+
+#: 04060119.xhp#par_id3150764.180.help.text
+msgid "How much interest must you pay in the first month?"
+msgstr "How much interest must you pay in the first month?"
+
+#: 04060119.xhp#par_id3146857.181.help.text
+msgid "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;1;1;0)</item> returns -937.50."
+msgstr "<item type=\"input\">=CUMIPMT_ADD(0.0075;360;125000;1;1;0)</item> returns -937.50."
+
+#: 04060119.xhp#bm_id3150878.help.text
+msgid "<bookmark_value>PRICE function</bookmark_value><bookmark_value>prices; fixed interest securities</bookmark_value><bookmark_value>sales values;fixed interest securities</bookmark_value>"
+msgstr "<bookmark_value>PRICE function</bookmark_value><bookmark_value>prices; fixed interest securities</bookmark_value><bookmark_value>sales values;fixed interest securities</bookmark_value>"
+
+#: 04060119.xhp#hd_id3150878.9.help.text
+msgid "PRICE"
+msgstr "PRICE"
+
+#: 04060119.xhp#par_id3153210.10.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_PRICE\">Calculates the market value of a fixed interest security with a par value of 100 currency units as a function of the forecast yield.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICE\">Calculates the market value of a fixed interest security with a par value of 100 currency units as a function of the forecast yield.</ahelp>"
+
+#: 04060119.xhp#hd_id3154646.11.help.text
+msgctxt "04060119.xhp#hd_id3154646.11.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3152804.12.help.text
+msgid "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
+msgstr "PRICE(Settlement; Maturity; Rate; Yield; Redemption; Frequency; Basis)"
+
+#: 04060119.xhp#par_id3156121.13.help.text
+msgctxt "04060119.xhp#par_id3156121.13.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3149983.14.help.text
+msgctxt "04060119.xhp#par_id3149983.14.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3153755.15.help.text
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+
+#: 04060119.xhp#par_id3155999.16.help.text
+msgctxt "04060119.xhp#par_id3155999.16.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Yield</emph> is the annual yield of the security."
+
+#: 04060119.xhp#par_id3156114.17.help.text
+msgctxt "04060119.xhp#par_id3156114.17.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+
+#: 04060119.xhp#par_id3155846.18.help.text
+msgctxt "04060119.xhp#par_id3155846.18.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+
+#: 04060119.xhp#hd_id3153148.19.help.text
+msgctxt "04060119.xhp#hd_id3153148.19.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3150260.20.help.text
+msgid "A security is purchased on 1999-02-15; the maturity date is 2007-11-15. The nominal rate of interest is 5.75%. The yield is 6.5%. The redemption value is 100 currency units. Interest is paid half-yearly (frequency is 2). With calculation on basis 0, the price is as follows:"
+msgstr "A security is purchased on 1999-02-15; the maturity date is 2007-11-15. The nominal rate of interest is 5.75%. The yield is 6.5%. The redemption value is 100 currency units. Interest is paid half-yearly (frequency is 2). With calculation on basis 0, the price is as follows:"
+
+#: 04060119.xhp#par_id3147273.21.help.text
+msgid "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) returns 95.04287."
+msgstr "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) returns 95.04287."
+
+#: 04060119.xhp#bm_id3151297.help.text
+msgid "<bookmark_value>PRICEDISC function</bookmark_value><bookmark_value>prices;non-interest-bearing securities</bookmark_value><bookmark_value>sales values;non-interest-bearing securities</bookmark_value>"
+msgstr "<bookmark_value>PRICEDISC function</bookmark_value><bookmark_value>prices;non-interest-bearing securities</bookmark_value><bookmark_value>sales values;non-interest-bearing securities</bookmark_value>"
+
+#: 04060119.xhp#hd_id3151297.22.help.text
+msgid "PRICEDISC"
+msgstr "PRICEDISC"
+
+#: 04060119.xhp#par_id3155100.23.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">Calculates the price per 100 currency units of par value of a non-interest- bearing security.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEDISC\">Calculates the price per 100 currency units of par value of a non-interest- bearing security.</ahelp>"
+
+#: 04060119.xhp#hd_id3149294.24.help.text
+msgctxt "04060119.xhp#hd_id3149294.24.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3146084.25.help.text
+msgid "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
+msgstr "PRICEDISC(Settlement; Maturity; Discount; Redemption; Basis)"
+
+#: 04060119.xhp#par_id3159179.26.help.text
+msgctxt "04060119.xhp#par_id3159179.26.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3154304.27.help.text
+msgctxt "04060119.xhp#par_id3154304.27.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3156014.28.help.text
+msgid "<emph>Discount</emph> is the discount of a security as a percentage."
+msgstr "<emph>Discount</emph> is the discount of a security as a percentage."
+
+#: 04060119.xhp#par_id3147489.29.help.text
+msgctxt "04060119.xhp#par_id3147489.29.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+
+#: 04060119.xhp#hd_id3152794.30.help.text
+msgctxt "04060119.xhp#hd_id3152794.30.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3149198.31.help.text
+msgid "A security is purchased on 1999-02-15; the maturity date is 1999-03-01. Discount in per cent is 5.25%. The redemption value is 100. When calculating on basis 2 the price discount is as follows:"
+msgstr "A security is purchased on 1999-02-15; the maturity date is 1999-03-01. Discount in per cent is 5.25%. The redemption value is 100. When calculating on basis 2 the price discount is as follows:"
+
+#: 04060119.xhp#par_id3151178.32.help.text
+msgid "=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2) returns 99.79583."
+msgstr "=PRICEDISC(\"1999-02-15\"; \"1999-03-01\"; 0.0525; 100; 2) returns 99.79583."
+
+#: 04060119.xhp#bm_id3154693.help.text
+msgid "<bookmark_value>PRICEMAT function</bookmark_value><bookmark_value>prices;interest-bearing securities</bookmark_value>"
+msgstr "<bookmark_value>PRICEMAT function</bookmark_value><bookmark_value>prices;interest-bearing securities</bookmark_value>"
+
+#: 04060119.xhp#hd_id3154693.33.help.text
+msgid "PRICEMAT"
+msgstr "PRICEMAT"
+
+#: 04060119.xhp#par_id3153906.34.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">Calculates the price per 100 currency units of par value of a security, that pays interest on the maturity date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_PRICEMAT\">Calculates the price per 100 currency units of par value of a security, that pays interest on the maturity date.</ahelp>"
+
+#: 04060119.xhp#hd_id3154933.35.help.text
+msgctxt "04060119.xhp#hd_id3154933.35.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3155393.36.help.text
+msgid "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
+msgstr "PRICEMAT(Settlement; Maturity; Issue; Rate; Yield; Basis)"
+
+#: 04060119.xhp#par_id3153102.37.help.text
+msgctxt "04060119.xhp#par_id3153102.37.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3150530.38.help.text
+msgctxt "04060119.xhp#par_id3150530.38.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3149903.39.help.text
+msgctxt "04060119.xhp#par_id3149903.39.help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Issue</emph> is the date of issue of the security."
+
+#: 04060119.xhp#par_id3148828.40.help.text
+msgctxt "04060119.xhp#par_id3148828.40.help.text"
+msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
+msgstr "<emph>Rate</emph> is the interest rate of the security on the issue date."
+
+#: 04060119.xhp#par_id3146993.41.help.text
+msgctxt "04060119.xhp#par_id3146993.41.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Yield</emph> is the annual yield of the security."
+
+#: 04060119.xhp#hd_id3150507.42.help.text
+msgctxt "04060119.xhp#hd_id3150507.42.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3154289.43.help.text
+msgid "Settlement date: February 15 1999, maturity date: April 13 1999, issue date: November 11 1998. Interest rate: 6.1 per cent, yield: 6.1 per cent, basis: 30/360 = 0."
+msgstr "Settlement date: February 15 1999, maturity date: April 13 1999, issue date: November 11 1998. Interest rate: 6.1 per cent, yield: 6.1 per cent, basis: 30/360 = 0."
+
+#: 04060119.xhp#par_id3154905.44.help.text
+msgid "The price is calculated as follows:"
+msgstr "The price is calculated as follows:"
+
+#: 04060119.xhp#par_id3158409.45.help.text
+msgid "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) returns 99.98449888."
+msgstr "=PRICEMAT(\"1999-02-15\";\"1999-04-13\";\"1998-11-11\"; 0.061; 0.061;0) returns 99.98449888."
+
+#: 04060119.xhp#bm_id3148448.help.text
+msgid "<bookmark_value>calculating; durations</bookmark_value><bookmark_value>durations;calculating</bookmark_value><bookmark_value>DURATION function</bookmark_value>"
+msgstr "<bookmark_value>calculating; durations</bookmark_value><bookmark_value>durations;calculating</bookmark_value><bookmark_value>DURATION function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3148448.280.help.text
+msgid "DURATION"
+msgstr "DURATION"
+
+#: 04060119.xhp#par_id3153056.281.help.text
+msgid "<ahelp hid=\"HID_FUNC_LAUFZEIT\">Calculates the number of periods required by an investment to attain the desired value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LAUFZEIT\">Calculates the number of periods required by an investment to attain the desired value.</ahelp>"
+
+#: 04060119.xhp#hd_id3145421.282.help.text
+msgctxt "04060119.xhp#hd_id3145421.282.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3148933.283.help.text
+msgid "DURATION(Rate; PV; FV)"
+msgstr "DURATION(Rate; PV; FV)"
+
+#: 04060119.xhp#par_id3148801.284.help.text
+msgid "<emph>Rate</emph> is a constant. The interest rate is to be calculated for the entire duration (duration period). The interest rate per period is calculated by dividing the interest rate by the calculated duration. The internal rate for an annuity is to be entered as Rate/12."
+msgstr "<emph>Rate</emph> is a constant. The interest rate is to be calculated for the entire duration (duration period). The interest rate per period is calculated by dividing the interest rate by the calculated duration. The internal rate for an annuity is to be entered as Rate/12."
+
+#: 04060119.xhp#par_id3147239.285.help.text
+msgctxt "04060119.xhp#par_id3147239.285.help.text"
+msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+msgstr "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+
+#: 04060119.xhp#par_id3147515.286.help.text
+msgid "<emph>FV</emph> is the expected value. The future value determines the desired (future) value of the deposit."
+msgstr "<emph>FV</emph> is the expected value. The future value determines the desired (future) value of the deposit."
+
+#: 04060119.xhp#hd_id3153579.287.help.text
+msgctxt "04060119.xhp#hd_id3153579.287.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3148480.288.help.text
+msgid "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20."
+msgstr "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20."
+
+#: 04060119.xhp#bm_id3148912.help.text
+msgid "<bookmark_value>calculating;linear depreciations</bookmark_value><bookmark_value>depreciations;linear</bookmark_value><bookmark_value>linear depreciations</bookmark_value><bookmark_value>straight-line depreciations</bookmark_value><bookmark_value>SLN function</bookmark_value>"
+msgstr "<bookmark_value>calculating;linear depreciations</bookmark_value><bookmark_value>depreciations;linear</bookmark_value><bookmark_value>linear depreciations</bookmark_value><bookmark_value>straight-line depreciations</bookmark_value><bookmark_value>SLN function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3148912.290.help.text
+msgid "SLN"
+msgstr "SLN"
+
+#: 04060119.xhp#par_id3149154.291.help.text
+msgid "<ahelp hid=\"HID_FUNC_LIA\">Returns the straight-line depreciation of an asset for one period.</ahelp>The amount of the depreciation is constant during the depreciation period."
+msgstr "<ahelp hid=\"HID_FUNC_LIA\">Returns the straight-line depreciation of an asset for one period.</ahelp>The amount of the depreciation is constant during the depreciation period."
+
+#: 04060119.xhp#hd_id3153240.292.help.text
+msgctxt "04060119.xhp#hd_id3153240.292.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3166456.293.help.text
+msgid "SLN(Cost; Salvage; Life)"
+msgstr "SLN(Cost; Salvage; Life)"
+
+#: 04060119.xhp#par_id3146955.294.help.text
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Cost</emph> is the initial cost of an asset."
+
+#: 04060119.xhp#par_id3149796.295.help.text
+msgctxt "04060119.xhp#par_id3149796.295.help.text"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+
+#: 04060119.xhp#par_id3166444.296.help.text
+msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
+msgstr "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
+
+#: 04060119.xhp#hd_id3155579.297.help.text
+msgctxt "04060119.xhp#hd_id3155579.297.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3154098.298.help.text
+msgid "Office equipment with an initial cost of 50,000 currency units is to be depreciated over 7 years. The value at the end of the depreciation is to be 3,500 currency units."
+msgstr "Office equipment with an initial cost of 50,000 currency units is to be depreciated over 7 years. The value at the end of the depreciation is to be 3,500 currency units."
+
+#: 04060119.xhp#par_id3153390.299.help.text
+msgid "<item type=\"input\">=SLN(50000;3,500;84)</item> = 553.57 currency units. The periodic monthly depreciation of the office equipment is 553.57 currency units."
+msgstr "<item type=\"input\">=SLN(50000;3,500;84)</item> = 553.57 currency units. The periodic monthly depreciation of the office equipment is 553.57 currency units."
+
+#: 04060119.xhp#bm_id3153739.help.text
+msgid "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macauley duration</bookmark_value>"
+msgstr "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macauley duration</bookmark_value>"
+
+#: 04060119.xhp#hd_id3153739.217.help.text
+msgid "MDURATION"
+msgstr "MDURATION"
+
+#: 04060119.xhp#par_id3149923.218.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
+
+#: 04060119.xhp#hd_id3149964.219.help.text
+msgctxt "04060119.xhp#hd_id3149964.219.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3148987.220.help.text
+msgid "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
+msgstr "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency; Basis)"
+
+#: 04060119.xhp#par_id3148619.221.help.text
+msgctxt "04060119.xhp#par_id3148619.221.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3149805.222.help.text
+msgctxt "04060119.xhp#par_id3149805.222.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3154338.223.help.text
+msgid "<emph>Coupon</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr "<emph>Coupon</emph> is the annual nominal rate of interest (coupon interest rate)"
+
+#: 04060119.xhp#par_id3148466.224.help.text
+msgctxt "04060119.xhp#par_id3148466.224.help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Yield</emph> is the annual yield of the security."
+
+#: 04060119.xhp#par_id3149423.225.help.text
+msgctxt "04060119.xhp#par_id3149423.225.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+
+#: 04060119.xhp#hd_id3154602.226.help.text
+msgctxt "04060119.xhp#hd_id3154602.226.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3148652.227.help.text
+msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The nominal rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the modified duration?"
+msgstr "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The nominal rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the modified duration?"
+
+#: 04060119.xhp#par_id3145378.228.help.text
+msgid "=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3) returns 4.02 years."
+msgstr "=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3) returns 4.02 years."
+
+#: 04060119.xhp#bm_id3149242.help.text
+msgid "<bookmark_value>calculating;net present values</bookmark_value><bookmark_value>net present values</bookmark_value><bookmark_value>NPV function</bookmark_value>"
+msgstr "<bookmark_value>calculating;net present values</bookmark_value><bookmark_value>net present values</bookmark_value><bookmark_value>NPV function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3149242.301.help.text
+msgid "NPV"
+msgstr "NPV"
+
+#: 04060119.xhp#par_id3145308.302.help.text
+msgid "<ahelp hid=\"HID_FUNC_NBW\">Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NBW\">Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value.</ahelp>"
+
+#: 04060119.xhp#hd_id3149937.303.help.text
+msgctxt "04060119.xhp#hd_id3149937.303.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3153321.304.help.text
+msgid "NPV(Rate; Value1; Value2; ...)"
+msgstr "NPV(Rate; Value1; Value2; ...)"
+
+#: 04060119.xhp#par_id3150630.305.help.text
+msgid "<emph>Rate</emph> is the discount rate for a period."
+msgstr "<emph>Rate</emph> is the discount rate for a period."
+
+#: 04060119.xhp#par_id3150427.306.help.text
+msgid "<emph>Value1;...</emph> are up to 30 values, which represent deposits or withdrawals."
+msgstr "<emph>Value1;...</emph> are up to 30 values, which represent deposits or withdrawals."
+
+#: 04060119.xhp#hd_id3153538.307.help.text
+msgctxt "04060119.xhp#hd_id3153538.307.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3154800.308.help.text
+msgid "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were payed as -40 currency units."
+msgstr "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were payed as -40 currency units."
+
+#: 04060119.xhp#par_id3143270.309.help.text
+msgid "<item type=\"input\">=NPV(8.75%;10;20;30)</item> = 49.43 currency units. The net present value is the returned value minus the initial costs of 40 currency units, therefore 9.43 currency units."
+msgstr "<item type=\"input\">=NPV(8.75%;10;20;30)</item> = 49.43 currency units. The net present value is the returned value minus the initial costs of 40 currency units, therefore 9.43 currency units."
+
+#: 04060119.xhp#bm_id3149484.help.text
+msgid "<bookmark_value>calculating;nominal interest rates</bookmark_value><bookmark_value>nominal interest rates</bookmark_value><bookmark_value>NOMINAL function</bookmark_value>"
+msgstr "<bookmark_value>calculating;nominal interest rates</bookmark_value><bookmark_value>nominal interest rates</bookmark_value><bookmark_value>NOMINAL function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3149484.311.help.text
+msgid "NOMINAL"
+msgstr "NOMINAL"
+
+#: 04060119.xhp#par_id3149596.312.help.text
+msgid "<ahelp hid=\"HID_FUNC_NOMINAL\">Calculates the yearly nominal interest rate, given the effective rate and the number of compounding periods per year.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NOMINAL\">Calculates the yearly nominal interest rate, given the effective rate and the number of compounding periods per year.</ahelp>"
+
+#: 04060119.xhp#hd_id3151252.313.help.text
+msgctxt "04060119.xhp#hd_id3151252.313.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3152769.314.help.text
+msgid "NOMINAL(EffectiveRate; NPerY)"
+msgstr "NOMINAL(EffectiveRate; NPerY)"
+
+#: 04060119.xhp#par_id3147521.315.help.text
+msgid "<emph>EffectiveRate</emph> is the effective interest rate"
+msgstr "<emph>EffectiveRate</emph> is the effective interest rate"
+
+#: 04060119.xhp#par_id3156334.316.help.text
+msgid "<emph>NPerY</emph> is the number of periodic interest payments per year."
+msgstr "<emph>NPerY</emph> is the number of periodic interest payments per year."
+
+#: 04060119.xhp#hd_id3154473.317.help.text
+msgctxt "04060119.xhp#hd_id3154473.317.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3147091.318.help.text
+msgid "What is the nominal interest per year for an effective interest rate of 13.5% if twelve payments are made per year."
+msgstr "What is the nominal interest per year for an effective interest rate of 13.5% if twelve payments are made per year."
+
+#: 04060119.xhp#par_id3154831.319.help.text
+msgid "<item type=\"input\">=NOMINAL(13.5%;12)</item> = 12.73%. The nominal interest rate per year is 12.73%."
+msgstr "<item type=\"input\">=NOMINAL(13.5%;12)</item> = 12.73%. The nominal interest rate per year is 12.73%."
+
+#: 04060119.xhp#bm_id3155123.help.text
+msgid "<bookmark_value>NOMINAL_ADD function</bookmark_value>"
+msgstr "<bookmark_value>NOMINAL_ADD function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3155123.229.help.text
+msgid "NOMINAL_ADD"
+msgstr "NOMINAL_ADD"
+
+#: 04060119.xhp#par_id3148671.230.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Calculates the annual nominal rate of interest on the basis of the effective rate and the number of interest payments per annum.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Calculates the annual nominal rate of interest on the basis of the effective rate and the number of interest payments per annum.</ahelp>"
+
+#: 04060119.xhp#hd_id3155611.231.help.text
+msgctxt "04060119.xhp#hd_id3155611.231.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3156157.232.help.text
+msgid "NOMINAL_ADD(EffectiveRate; NPerY)"
+msgstr "NOMINAL_ADD(EffectiveRate; NPerY)"
+
+#: 04060119.xhp#par_id3153777.233.help.text
+msgid "<emph>EffectiveRate</emph> is the effective annual rate of interest."
+msgstr "<emph>EffectiveRate</emph> is the effective annual rate of interest."
+
+#: 04060119.xhp#par_id3150409.234.help.text
+msgid "<emph>NPerY</emph> the number of interest payments per year."
+msgstr "<emph>NPerY</emph> the number of interest payments per year."
+
+#: 04060119.xhp#hd_id3146789.235.help.text
+msgctxt "04060119.xhp#hd_id3146789.235.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3145777.236.help.text
+msgid "What is the nominal rate of interest for a 5.3543% effective rate of interest and quarterly payment."
+msgstr "What is the nominal rate of interest for a 5.3543% effective rate of interest and quarterly payment."
+
+#: 04060119.xhp#par_id3156146.237.help.text
+msgid "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
+msgstr "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
+
+#: 04060119.xhp#bm_id3159087.help.text
+msgid "<bookmark_value>DOLLARFR function</bookmark_value><bookmark_value>converting;decimal fractions, into mixed decimal fractions</bookmark_value>"
+msgstr "<bookmark_value>DOLLARFR function</bookmark_value><bookmark_value>converting;decimal fractions, into mixed decimal fractions</bookmark_value>"
+
+#: 04060119.xhp#hd_id3159087.208.help.text
+msgid "DOLLARFR"
+msgstr "DOLLARFR"
+
+#: 04060119.xhp#par_id3150593.209.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">Converts a quotation that has been given as a decimal number into a mixed decimal fraction.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARFR\">Converts a quotation that has been given as a decimal number into a mixed decimal fraction.</ahelp>"
+
+#: 04060119.xhp#hd_id3151106.210.help.text
+msgctxt "04060119.xhp#hd_id3151106.210.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3152959.211.help.text
+msgid "DOLLARFR(DecimalDollar; Fraction)"
+msgstr "DOLLARFR(DecimalDollar; Fraction)"
+
+#: 04060119.xhp#par_id3149558.212.help.text
+msgid "<emph>DecimalDollar</emph> is a decimal number."
+msgstr "<emph>DecimalDollar</emph> is a decimal number."
+
+#: 04060119.xhp#par_id3153672.213.help.text
+msgctxt "04060119.xhp#par_id3153672.213.help.text"
+msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
+msgstr "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
+
+#: 04060119.xhp#hd_id3156274.214.help.text
+msgctxt "04060119.xhp#hd_id3156274.214.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3153795.215.help.text
+msgid "<item type=\"input\">=DOLLARFR(1.125;16)</item> converts into sixteenths. The result is 1.02 for 1 plus 2/16."
+msgstr "<item type=\"input\">=DOLLARFR(1.125;16)</item> converts into sixteenths. The result is 1.02 for 1 plus 2/16."
+
+#: 04060119.xhp#par_id3150995.216.help.text
+msgid "<item type=\"input\">=DOLLARFR(1.125;8)</item> converts into eighths. The result is 1.1 for 1 plus 1/8."
+msgstr "<item type=\"input\">=DOLLARFR(1.125;8)</item> converts into eighths. The result is 1.1 for 1 plus 1/8."
+
+#: 04060119.xhp#bm_id3154671.help.text
+msgid "<bookmark_value>fractions; converting</bookmark_value><bookmark_value>converting;decimal fractions, into decimal numbers</bookmark_value><bookmark_value>DOLLARDE function</bookmark_value>"
+msgstr "<bookmark_value>fractions; converting</bookmark_value><bookmark_value>converting;decimal fractions, into decimal numbers</bookmark_value><bookmark_value>DOLLARDE function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3154671.199.help.text
+msgid "DOLLARDE"
+msgstr "DOLLARDE"
+
+#: 04060119.xhp#par_id3154418.200.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">Converts a quotation that has been given as a decimal fraction into a decimal number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DOLLARDE\">Converts a quotation that has been given as a decimal fraction into a decimal number.</ahelp>"
+
+#: 04060119.xhp#hd_id3146124.201.help.text
+msgctxt "04060119.xhp#hd_id3146124.201.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3150348.202.help.text
+msgid "DOLLARDE(FractionalDollar; Fraction)"
+msgstr "DOLLARDE(FractionalDollar; Fraction)"
+
+#: 04060119.xhp#par_id3154111.203.help.text
+msgid "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
+msgstr "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
+
+#: 04060119.xhp#par_id3153695.204.help.text
+msgctxt "04060119.xhp#par_id3153695.204.help.text"
+msgid "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
+msgstr "<emph>Fraction</emph> is a whole number that is used as the denominator of the decimal fraction."
+
+#: 04060119.xhp#hd_id3153884.205.help.text
+msgctxt "04060119.xhp#hd_id3153884.205.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3150941.206.help.text
+msgid "<item type=\"input\">=DOLLARDE(1.02;16)</item> stands for 1 and 2/16. This returns 1.125."
+msgstr "<item type=\"input\">=DOLLARDE(1.02;16)</item> stands for 1 and 2/16. This returns 1.125."
+
+#: 04060119.xhp#par_id3150830.207.help.text
+msgid "<item type=\"input\">=DOLLARDE(1.1;8)</item> stands for 1 and 1/8. This returns 1.125."
+msgstr "<item type=\"input\">=DOLLARDE(1.1;8)</item> stands for 1 and 1/8. This returns 1.125."
+
+#: 04060119.xhp#bm_id3148974.help.text
+msgid "<bookmark_value>calculating;modified internal rates of return</bookmark_value><bookmark_value>modified internal rates of return</bookmark_value><bookmark_value>MIRR function</bookmark_value><bookmark_value>internal rates of return;modified</bookmark_value>"
+msgstr "<bookmark_value>calculating;modified internal rates of return</bookmark_value><bookmark_value>modified internal rates of return</bookmark_value><bookmark_value>MIRR function</bookmark_value><bookmark_value>internal rates of return;modified</bookmark_value>"
+
+#: 04060119.xhp#hd_id3148974.321.help.text
+msgid "MIRR"
+msgstr "MIRR"
+
+#: 04060119.xhp#par_id3155497.322.help.text
+msgid "<ahelp hid=\"HID_FUNC_QIKV\">Calculates the modified internal rate of return of a series of investments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QIKV\">Calculates the modified internal rate of return of a series of investments.</ahelp>"
+
+#: 04060119.xhp#hd_id3154354.323.help.text
+msgctxt "04060119.xhp#hd_id3154354.323.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3148399.324.help.text
+msgid "MIRR(Values; Investment; ReinvestRate)"
+msgstr "MIRR(Values; Investment; ReinvestRate)"
+
+#: 04060119.xhp#par_id3155896.325.help.text
+msgid "<emph>Values</emph> corresponds to the array or the cell reference for cells whose content corresponds to the payments."
+msgstr "<emph>Values</emph> corresponds to the array or the cell reference for cells whose content corresponds to the payments."
+
+#: 04060119.xhp#par_id3149998.326.help.text
+msgid "<emph>Investment</emph> is the rate of interest of the investments (the negative values of the array)"
+msgstr "<emph>Investment</emph> is the rate of interest of the investments (the negative values of the array)"
+
+#: 04060119.xhp#par_id3159408.327.help.text
+msgid "<emph>ReinvestRate</emph>:the rate of interest of the reinvestment (the positive values of the array)"
+msgstr "<emph>ReinvestRate</emph>:the rate of interest of the reinvestment (the positive values of the array)"
+
+#: 04060119.xhp#hd_id3154714.328.help.text
+msgctxt "04060119.xhp#hd_id3154714.328.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3147352.329.help.text
+msgid "Assuming a cell content of A1 = <item type=\"input\">-5</item>, A2 = <item type=\"input\">10</item>, A3 = <item type=\"input\">15</item>, and A4 = <item type=\"input\">8</item>, and an investment value of 0.5 and a reinvestment value of 0.1, the result is 94.16%."
+msgstr "Assuming a cell content of A1 = <item type=\"input\">-5</item>, A2 = <item type=\"input\">10</item>, A3 = <item type=\"input\">15</item>, and A4 = <item type=\"input\">8</item>, and an investment value of 0.5 and a reinvestment value of 0.1, the result is 94.16%."
+
+#: 04060119.xhp#bm_id3149323.help.text
+msgid "<bookmark_value>YIELD function</bookmark_value><bookmark_value>rates of return;securities</bookmark_value><bookmark_value>yields, see also rates of return</bookmark_value>"
+msgstr "<bookmark_value>YIELD function</bookmark_value><bookmark_value>rates of return;securities</bookmark_value><bookmark_value>yields, see also rates of return</bookmark_value>"
+
+#: 04060119.xhp#hd_id3149323.129.help.text
+msgid "YIELD"
+msgstr "YIELD"
+
+#: 04060119.xhp#par_id3150643.130.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calculates the yield of a security.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELD\">Calculates the yield of a security.</ahelp>"
+
+#: 04060119.xhp#hd_id3149344.131.help.text
+msgctxt "04060119.xhp#hd_id3149344.131.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3149744.132.help.text
+msgid "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
+msgstr "YIELD(Settlement; Maturity; Rate; Price; Redemption; Frequency; Basis)"
+
+#: 04060119.xhp#par_id3154526.133.help.text
+msgctxt "04060119.xhp#par_id3154526.133.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3153266.134.help.text
+msgctxt "04060119.xhp#par_id3153266.134.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3151284.135.help.text
+msgctxt "04060119.xhp#par_id3151284.135.help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "<emph>Rate</emph> is the annual rate of interest."
+
+#: 04060119.xhp#par_id3147314.136.help.text
+msgctxt "04060119.xhp#par_id3147314.136.help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+
+#: 04060119.xhp#par_id3145156.137.help.text
+msgctxt "04060119.xhp#par_id3145156.137.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+
+#: 04060119.xhp#par_id3159218.138.help.text
+msgctxt "04060119.xhp#par_id3159218.138.help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+
+#: 04060119.xhp#hd_id3147547.139.help.text
+msgctxt "04060119.xhp#hd_id3147547.139.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3151214.140.help.text
+msgid "A security is purchased on 1999-02-15. It matures on 2007-11-15. The rate of interest is 5.75%. The price is 95.04287 currency units per 100 units of par value, the redemption value is 100 units. Interest is paid half-yearly (frequency = 2) and the basis is 0. How high is the yield?"
+msgstr "A security is purchased on 1999-02-15. It matures on 2007-11-15. The rate of interest is 5.75%. The price is 95.04287 currency units per 100 units of par value, the redemption value is 100 units. Interest is paid half-yearly (frequency = 2) and the basis is 0. How high is the yield?"
+
+#: 04060119.xhp#par_id3154194.141.help.text
+msgid "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.50 per cent."
+msgstr "=YIELD(\"1999-02-15\"; \"2007-11-15\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.50 per cent."
+
+#: 04060119.xhp#bm_id3150100.help.text
+msgid "<bookmark_value>YIELDDISC function</bookmark_value><bookmark_value>rates of return;non-interest-bearing securities</bookmark_value>"
+msgstr "<bookmark_value>YIELDDISC function</bookmark_value><bookmark_value>rates of return;non-interest-bearing securities</bookmark_value>"
+
+#: 04060119.xhp#hd_id3150100.142.help.text
+msgid "YIELDDISC"
+msgstr "YIELDDISC"
+
+#: 04060119.xhp#par_id3150486.143.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Calculates the annual yield of a non-interest-bearing security.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDDISC\">Calculates the annual yield of a non-interest-bearing security.</ahelp>"
+
+#: 04060119.xhp#hd_id3149171.144.help.text
+msgctxt "04060119.xhp#hd_id3149171.144.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3159191.145.help.text
+msgid "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
+msgstr "YIELDDISC(Settlement; Maturity; Price; Redemption; Basis)"
+
+#: 04060119.xhp#par_id3150237.146.help.text
+msgctxt "04060119.xhp#par_id3150237.146.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3146924.147.help.text
+msgctxt "04060119.xhp#par_id3146924.147.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3151201.148.help.text
+msgctxt "04060119.xhp#par_id3151201.148.help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+
+#: 04060119.xhp#par_id3156049.149.help.text
+msgctxt "04060119.xhp#par_id3156049.149.help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgstr "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+
+#: 04060119.xhp#hd_id3154139.150.help.text
+msgctxt "04060119.xhp#hd_id3154139.150.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3163815.151.help.text
+msgid "A non-interest-bearing security is purchased on 1999-02-15. It matures on 1999-03-01. The price is 99.795 currency units per 100 units of par value, the redemption value is 100 units. The basis is 2. How high is the yield?"
+msgstr "A non-interest-bearing security is purchased on 1999-02-15. It matures on 1999-03-01. The price is 99.795 currency units per 100 units of par value, the redemption value is 100 units. The basis is 2. How high is the yield?"
+
+#: 04060119.xhp#par_id3155187.152.help.text
+msgid "=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2) returns 0.052823 or 5.2823 per cent."
+msgstr "=YIELDDISC(\"1999-02-15\"; \"1999-03-01\"; 99.795; 100; 2) returns 0.052823 or 5.2823 per cent."
+
+#: 04060119.xhp#bm_id3155140.help.text
+msgid "<bookmark_value>YIELDMAT function</bookmark_value><bookmark_value>rates of return;securities with interest paid on maturity</bookmark_value>"
+msgstr "<bookmark_value>YIELDMAT function</bookmark_value><bookmark_value>rates of return;securities with interest paid on maturity</bookmark_value>"
+
+#: 04060119.xhp#hd_id3155140.153.help.text
+msgid "YIELDMAT"
+msgstr "YIELDMAT"
+
+#: 04060119.xhp#par_id3151332.154.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">Calculates the annual yield of a security, the interest of which is paid on the date of maturity.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YIELDMAT\">Calculates the annual yield of a security, the interest of which is paid on the date of maturity.</ahelp>"
+
+#: 04060119.xhp#hd_id3159100.155.help.text
+msgctxt "04060119.xhp#hd_id3159100.155.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3159113.156.help.text
+msgid "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
+msgstr "YIELDMAT(Settlement; Maturity; Issue; Rate; Price; Basis)"
+
+#: 04060119.xhp#par_id3149309.157.help.text
+msgctxt "04060119.xhp#par_id3149309.157.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3151381.158.help.text
+msgctxt "04060119.xhp#par_id3151381.158.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3153302.159.help.text
+msgctxt "04060119.xhp#par_id3153302.159.help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "<emph>Issue</emph> is the date of issue of the security."
+
+#: 04060119.xhp#par_id3147140.160.help.text
+msgctxt "04060119.xhp#par_id3147140.160.help.text"
+msgid "<emph>Rate</emph> is the interest rate of the security on the issue date."
+msgstr "<emph>Rate</emph> is the interest rate of the security on the issue date."
+
+#: 04060119.xhp#par_id3151067.161.help.text
+msgctxt "04060119.xhp#par_id3151067.161.help.text"
+msgid "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+msgstr "<emph>Price</emph> is the price (purchase price) of the security per 100 currency units of par value."
+
+#: 04060119.xhp#hd_id3155342.162.help.text
+msgctxt "04060119.xhp#hd_id3155342.162.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3163717.163.help.text
+msgid "A security is purchased on 1999-03-15. It matures on 1999-11-03. The issue date was 1998-11-08. The rate of interest is 6.25%, the price is 100.0123 units. The basis is 0. How high is the yield?"
+msgstr "A security is purchased on 1999-03-15. It matures on 1999-11-03. The issue date was 1998-11-08. The rate of interest is 6.25%, the price is 100.0123 units. The basis is 0. How high is the yield?"
+
+#: 04060119.xhp#par_id3155311.164.help.text
+msgid "=YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0.0625; 100.0123; 0) returns 0.060954 or 6.0954 per cent."
+msgstr "=YIELDMAT(\"1999-03-15\"; \"1999-11-03\"; \"1998-11-08\"; 0.0625; 100.0123; 0) returns 0.060954 or 6.0954 per cent."
+
+#: 04060119.xhp#bm_id3149577.help.text
+msgid "<bookmark_value>calculating;annuities</bookmark_value><bookmark_value>annuities</bookmark_value><bookmark_value>PMT function</bookmark_value>"
+msgstr "<bookmark_value>calculating;annuities</bookmark_value><bookmark_value>annuities</bookmark_value><bookmark_value>PMT function</bookmark_value>"
+
+#: 04060119.xhp#hd_id3149577.330.help.text
+msgid "PMT"
+msgstr "PMT"
+
+#: 04060119.xhp#par_id3148563.331.help.text
+msgid "<ahelp hid=\"HID_FUNC_RMZ\">Returns the periodic payment for an annuity with constant interest rates.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RMZ\">Returns the periodic payment for an annuity with constant interest rates.</ahelp>"
+
+#: 04060119.xhp#hd_id3145257.332.help.text
+msgctxt "04060119.xhp#hd_id3145257.332.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3147278.333.help.text
+msgid "PMT(Rate; NPer; PV; FV; Type)"
+msgstr "PMT(Rate; NPer; PV; FV; Type)"
+
+#: 04060119.xhp#par_id3147291.334.help.text
+msgctxt "04060119.xhp#par_id3147291.334.help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "<emph>Rate</emph> is the periodic interest rate."
+
+#: 04060119.xhp#par_id3148641.335.help.text
+msgid "<emph>NPer</emph> is the number of periods in which annuity is paid."
+msgstr "<emph>NPer</emph> is the number of periods in which annuity is paid."
+
+#: 04060119.xhp#par_id3156360.336.help.text
+msgctxt "04060119.xhp#par_id3156360.336.help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+
+#: 04060119.xhp#par_id3154920.337.help.text
+msgid "<emph>FV</emph> (optional) is the desired value (future value) to be reached at the end of the periodic payments."
+msgstr "<emph>FV</emph> (optional) is the desired value (future value) to be reached at the end of the periodic payments."
+
+#: 04060119.xhp#par_id3156434.338.help.text
+msgid "<emph>Type</emph> (optional) is the due date for the periodic payments. Type=1 is payment at the beginning and Type=0 is payment at the end of each period."
+msgstr "<emph>Type</emph> (optional) is the due date for the periodic payments. Type=1 is payment at the beginning and Type=0 is payment at the end of each period."
+
+#: 04060119.xhp#par_idN11645.help.text
+msgctxt "04060119.xhp#par_idN11645.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060119.xhp#hd_id3152358.339.help.text
+msgctxt "04060119.xhp#hd_id3152358.339.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3154222.340.help.text
+msgid "What are the periodic payments at a yearly interest rate of 1.99% if the payment time is 3 years and the cash value is 25,000 currency units. There are 36 months as 36 payment periods, and the interest rate per payment period is 1.99%/12."
+msgstr "What are the periodic payments at a yearly interest rate of 1.99% if the payment time is 3 years and the cash value is 25,000 currency units. There are 36 months as 36 payment periods, and the interest rate per payment period is 1.99%/12."
+
+#: 04060119.xhp#par_id3155943.341.help.text
+msgid "<item type=\"input\">=PMT(1.99%/12;36;25000)</item> = -715.96 currency units. The periodic monthly payment is therefore 715.96 currency units."
+msgstr "<item type=\"input\">=PMT(1.99%/12;36;25000)</item> = -715.96 currency units. The periodic monthly payment is therefore 715.96 currency units."
+
+#: 04060119.xhp#bm_id3155799.help.text
+msgid "<bookmark_value>TBILLEQ function</bookmark_value><bookmark_value>treasury bills;annual return</bookmark_value><bookmark_value>annual return on treasury bills</bookmark_value>"
+msgstr "<bookmark_value>TBILLEQ function</bookmark_value><bookmark_value>treasury bills;annual return</bookmark_value><bookmark_value>annual return on treasury bills</bookmark_value>"
+
+#: 04060119.xhp#hd_id3155799.58.help.text
+msgid "TBILLEQ"
+msgstr "TBILLEQ"
+
+#: 04060119.xhp#par_id3154403.59.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill ().</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill ().</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
+
+#: 04060119.xhp#hd_id3155080.60.help.text
+msgctxt "04060119.xhp#hd_id3155080.60.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3150224.61.help.text
+msgid "TBILLEQ(Settlement; Maturity; Discount)"
+msgstr "TBILLEQ(Settlement; Maturity; Discount)"
+
+#: 04060119.xhp#par_id3156190.62.help.text
+msgctxt "04060119.xhp#par_id3156190.62.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3153827.63.help.text
+msgctxt "04060119.xhp#par_id3153827.63.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3150310.64.help.text
+msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+
+#: 04060119.xhp#hd_id3150324.65.help.text
+msgctxt "04060119.xhp#hd_id3150324.65.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3153173.66.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9.14 per cent."
+msgstr "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9.14 per cent."
+
+#: 04060119.xhp#par_id3153520.67.help.text
+msgid "The return on the treasury bill corresponding to a security is worked out as follows:"
+msgstr "The return on the treasury bill corresponding to a security is worked out as follows:"
+
+#: 04060119.xhp#par_id3154382.68.help.text
+msgid "=TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0.0914) returns 0.094151 or 9.4151 per cent."
+msgstr "=TBILLEQ(\"1999-03-31\";\"1999-06-01\"; 0.0914) returns 0.094151 or 9.4151 per cent."
+
+#: 04060119.xhp#bm_id3151032.help.text
+msgid "<bookmark_value>TBILLPRICE function</bookmark_value><bookmark_value>treasury bills;prices</bookmark_value><bookmark_value>prices;treasury bills</bookmark_value>"
+msgstr "<bookmark_value>TBILLPRICE function</bookmark_value><bookmark_value>treasury bills;prices</bookmark_value><bookmark_value>prices;treasury bills</bookmark_value>"
+
+#: 04060119.xhp#hd_id3151032.69.help.text
+msgid "TBILLPRICE"
+msgstr "TBILLPRICE"
+
+#: 04060119.xhp#par_id3157887.70.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Calculates the price of a treasury bill per 100 currency units.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLPRICE\">Calculates the price of a treasury bill per 100 currency units.</ahelp>"
+
+#: 04060119.xhp#hd_id3156374.71.help.text
+msgctxt "04060119.xhp#hd_id3156374.71.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3150284.72.help.text
+msgid "TBILLPRICE(Settlement; Maturity; Discount)"
+msgstr "TBILLPRICE(Settlement; Maturity; Discount)"
+
+#: 04060119.xhp#par_id3154059.73.help.text
+msgctxt "04060119.xhp#par_id3154059.73.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3154073.74.help.text
+msgctxt "04060119.xhp#par_id3154073.74.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3145765.75.help.text
+msgid "<emph>Discount</emph> is the percentage discount upon acquisition of the security."
+msgstr "<emph>Discount</emph> is the percentage discount upon acquisition of the security."
+
+#: 04060119.xhp#hd_id3153373.76.help.text
+msgctxt "04060119.xhp#hd_id3153373.76.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3155542.77.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9 per cent."
+msgstr "Settlement date: March 31 1999, maturity date: June 1 1999, discount: 9 per cent."
+
+#: 04060119.xhp#par_id3154578.78.help.text
+msgid "The price of the treasury bill is worked out as follows:"
+msgstr "The price of the treasury bill is worked out as follows:"
+
+#: 04060119.xhp#par_id3154592.79.help.text
+msgid "=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09) returns 98.45."
+msgstr "=TBILLPRICE(\"1999-03-31\";\"1999-06-01\"; 0.09) returns 98.45."
+
+#: 04060119.xhp#bm_id3152912.help.text
+msgid "<bookmark_value>TBILLYIELD function</bookmark_value><bookmark_value>treasury bills;rates of return</bookmark_value><bookmark_value>rates of return of treasury bills</bookmark_value>"
+msgstr "<bookmark_value>TBILLYIELD function</bookmark_value><bookmark_value>treasury bills;rates of return</bookmark_value><bookmark_value>rates of return of treasury bills</bookmark_value>"
+
+#: 04060119.xhp#hd_id3152912.80.help.text
+msgid "TBILLYIELD"
+msgstr "TBILLYIELD"
+
+#: 04060119.xhp#par_id3145560.81.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
+
+#: 04060119.xhp#hd_id3145578.82.help.text
+msgctxt "04060119.xhp#hd_id3145578.82.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060119.xhp#par_id3156077.83.help.text
+msgid "TBILLYIELD(Settlement; Maturity; Price)"
+msgstr "TBILLYIELD(Settlement; Maturity; Price)"
+
+#: 04060119.xhp#par_id3156091.84.help.text
+msgctxt "04060119.xhp#par_id3156091.84.help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph> is the date of purchase of the security."
+
+#: 04060119.xhp#par_id3157856.85.help.text
+msgctxt "04060119.xhp#par_id3157856.85.help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph> is the date on which the security matures (expires)."
+
+#: 04060119.xhp#par_id3149627.86.help.text
+msgid "<emph>Price</emph> is the price (purchase price) of the treasury bill per 100 currency units of par value."
+msgstr "<emph>Price</emph> is the price (purchase price) of the treasury bill per 100 currency units of par value."
+
+#: 04060119.xhp#hd_id3149642.87.help.text
+msgctxt "04060119.xhp#hd_id3149642.87.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060119.xhp#par_id3145178.88.help.text
+msgid "Settlement date: March 31 1999, maturity date: June 1 1999, price: 98.45 currency units."
+msgstr "Settlement date: March 31 1999, maturity date: June 1 1999, price: 98.45 currency units."
+
+#: 04060119.xhp#par_id3145193.89.help.text
+msgid "The yield of the treasury bill is worked out as follows:"
+msgstr "The yield of the treasury bill is worked out as follows:"
+
+#: 04060119.xhp#par_id3148528.90.help.text
+msgid "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) returns 0.091417 or 9.1417 per cent."
+msgstr "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) returns 0.091417 or 9.1417 per cent."
+
+#: 04060119.xhp#par_id3148546.345.help.text
+msgctxt "04060119.xhp#par_id3148546.345.help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+
+#: 04060119.xhp#par_id3146762.346.help.text
+msgctxt "04060119.xhp#par_id3146762.346.help.text"
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
+
+#: func_weeknumadd.xhp#tit.help.text
+msgid "WEEKNUM_ADD "
+msgstr "WEEKNUM_ADD "
+
+#: func_weeknumadd.xhp#bm_id3166443.help.text
+msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
+
+#: func_weeknumadd.xhp#hd_id3166443.222.help.text
+msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
+msgstr "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
+
+#: func_weeknumadd.xhp#par_id3152945.223.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
+
+#: func_weeknumadd.xhp#par_idN105DD.help.text
+msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
+msgstr "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
+
+#: func_weeknumadd.xhp#hd_id3153745.224.help.text
+msgctxt "func_weeknumadd.xhp#hd_id3153745.224.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_weeknumadd.xhp#par_id3153685.225.help.text
+msgid "WEEKNUM_ADD(Date; ReturnType)"
+msgstr "WEEKNUM_ADD(Date; ReturnType)"
+
+#: func_weeknumadd.xhp#par_id3159277.226.help.text
+msgid "<emph>Date</emph> is the date within the calendar week."
+msgstr "<emph>Date</emph> is the date within the calendar week."
+
+#: func_weeknumadd.xhp#par_id3154098.227.help.text
+msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
+msgstr "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
+
+#: func_weeknumadd.xhp#hd_id3152886.228.help.text
+msgctxt "func_weeknumadd.xhp#hd_id3152886.228.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: func_weeknumadd.xhp#par_id3149973.229.help.text
+msgid "In which week number does 12.24.2001 fall?"
+msgstr "In which week number does 12.24.2001 fall?"
+
+#: func_weeknumadd.xhp#par_id3149914.230.help.text
+msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
+msgstr "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
+
+#: 06031000.xhp#tit.help.text
+msgid "AutoRefresh"
+msgstr "AutoRefresh"
+
+#: 06031000.xhp#bm_id3154515.help.text
+msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
+msgstr "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
+
+#: 06031000.xhp#hd_id3154515.1.help.text
+msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
+msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
+
+#: 06031000.xhp#par_id3147264.2.help.text
+msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
+
+#: 12090103.xhp#tit.help.text
+msgctxt "12090103.xhp#tit.help.text"
+msgid "Filter"
+msgstr "Filter"
+
+#: 12090103.xhp#hd_id3153970.1.help.text
+msgctxt "12090103.xhp#hd_id3153970.1.help.text"
+msgid "Filter"
+msgstr "Filter"
+
+#: 12090103.xhp#par_id3150448.2.help.text
+msgid "Set the filtering options for the data."
+msgstr "Set the filtering options for the data."
+
+#: 12090103.xhp#hd_id3151043.3.help.text
+msgid "Filter Criteria"
+msgstr "Filter Criteria"
+
+#: 12090103.xhp#par_id3150440.4.help.text
+msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
+msgstr "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
+
+#: 12090103.xhp#hd_id3159153.5.help.text
+msgctxt "12090103.xhp#hd_id3159153.5.help.text"
+msgid "Operator"
+msgstr "Operator"
+
+#: 12090103.xhp#par_id3153093.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
+
+#: 12090103.xhp#hd_id3152462.7.help.text
+msgid "Field name"
+msgstr "Field name"
+
+#: 12090103.xhp#par_id3155306.8.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+
+#: 12090103.xhp#hd_id3148575.9.help.text
+msgctxt "12090103.xhp#hd_id3148575.9.help.text"
+msgid "Condition"
+msgstr "Condition"
+
+#: 12090103.xhp#par_id3147394.10.help.text
+msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+
+#: 12090103.xhp#par_id3144764.11.help.text
+msgid "The following operators are available:"
+msgstr "The following operators are available:"
+
+#: 12090103.xhp#par_id3153415.12.help.text
+msgid "<emph>Conditions:</emph>"
+msgstr "<emph>Conditions:</emph>"
+
+#: 12090103.xhp#par_id3150324.13.help.text
+msgid "="
+msgstr "="
+
+#: 12090103.xhp#par_id3153714.14.help.text
+msgid "equal"
+msgstr "equal"
+
+#: 12090103.xhp#par_id3154254.15.help.text
+msgid "<"
+msgstr "<"
+
+#: 12090103.xhp#par_id3154703.16.help.text
+msgid "less than"
+msgstr "less than"
+
+#: 12090103.xhp#par_id3155335.17.help.text
+msgid ">"
+msgstr ">"
+
+#: 12090103.xhp#par_id3147003.18.help.text
+msgid "greater than"
+msgstr "greater than"
+
+#: 12090103.xhp#par_id3153270.19.help.text
+msgid "<="
+msgstr "<="
+
+#: 12090103.xhp#par_id3145257.20.help.text
+msgid "less than or equal to"
+msgstr "less than or equal to"
+
+#: 12090103.xhp#par_id3145134.21.help.text
+msgid ">="
+msgstr ">="
+
+#: 12090103.xhp#par_id3151214.22.help.text
+msgid "greater than or equal to"
+msgstr "greater than or equal to"
+
+#: 12090103.xhp#par_id3150345.23.help.text
+msgid "<>"
+msgstr "<>"
+
+#: 12090103.xhp#par_id3159101.24.help.text
+msgid "not equal to"
+msgstr "not equal to"
+
+#: 12090103.xhp#hd_id3150886.25.help.text
+msgctxt "12090103.xhp#hd_id3150886.25.help.text"
+msgid "Value"
+msgstr "Value"
+
+#: 12090103.xhp#par_id3155506.26.help.text
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
+
+#: 12090103.xhp#hd_id3146980.27.help.text
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
+
+#: 05020600.xhp#tit.help.text
+msgid "Cell Protection"
+msgstr "Cell Protection"
+
+#: 05020600.xhp#hd_id3145119.1.help.text
+msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
+msgstr "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
+
+#: 05020600.xhp#par_id3150398.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Defines protection options for selected cells.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Defines protection options for selected cells.</ahelp>"
+
+#: 05020600.xhp#hd_id3150447.3.help.text
+msgid "Protection"
+msgstr "Protection"
+
+#: 05020600.xhp#hd_id3125864.9.help.text
+msgid "Hide all"
+msgstr "Hide all"
+
+#: 05020600.xhp#par_id3153768.10.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Hides formulas and contents of the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Hides formulae and contents of the selected cells.</ahelp>"
+
+#: 05020600.xhp#hd_id3153190.5.help.text
+msgid "Protected"
+msgstr "Protected"
+
+#: 05020600.xhp#par_id3151119.6.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Prevents the selected cells from being modified.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Prevents the selected cells from being modified.</ahelp>"
+
+#: 05020600.xhp#par_id3156283.15.help.text
+msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
+msgstr "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
+
+#: 05020600.xhp#hd_id3149377.7.help.text
+msgid "Hide formula"
+msgstr "Hide formula"
+
+#: 05020600.xhp#par_id3154510.8.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Hides formulas in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Hides formulae in the selected cells.</ahelp>"
+
+#: 05020600.xhp#hd_id3155602.11.help.text
+msgctxt "05020600.xhp#hd_id3155602.11.help.text"
+msgid "Print"
+msgstr "Print"
+
+#: 05020600.xhp#par_id3153836.12.help.text
+msgid "Defines print options for the sheet."
+msgstr "Defines print options for the sheet."
+
+#: 05020600.xhp#hd_id3155065.13.help.text
+msgid "Hide when printing"
+msgstr "Hide when printing"
+
+#: 05020600.xhp#par_id3155443.14.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Keeps the selected cells from being printed.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Keeps the selected cells from being printed.</ahelp>"
+
+#: 12090102.xhp#tit.help.text
+msgctxt "12090102.xhp#tit.help.text"
+msgid "Pivot Table"
+msgstr ""
+
+#: 12090102.xhp#bm_id2306894.help.text
+msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
+msgstr ""
+
+#: 12090102.xhp#hd_id3149165.1.help.text
+msgctxt "12090102.xhp#hd_id3149165.1.help.text"
+msgid "Pivot Table"
+msgstr ""
+
+#: 12090102.xhp#par_id3155922.13.help.text
+msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
+msgstr ""
+
+#: 12090102.xhp#par_id3148798.34.help.text
+msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
+msgstr ""
+
+#: 12090102.xhp#hd_id3154908.18.help.text
+msgctxt "12090102.xhp#hd_id3154908.18.help.text"
+msgid "Layout"
+msgstr "Layout"
+
+#: 12090102.xhp#par_id3150768.19.help.text
+msgid "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
+msgstr ""
+
+#: 12090102.xhp#par_id3147229.20.help.text
+msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
+msgstr "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
+
+#: 12090102.xhp#par_id3145749.21.help.text
+msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
+msgstr "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialogue. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
+
+#: 12090102.xhp#hd_id3149260.28.help.text
+msgctxt "12090102.xhp#hd_id3149260.28.help.text"
+msgid "Remove"
+msgstr "Remove"
+
+#: 12090102.xhp#par_id3150010.27.help.text
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
+
+#: 12090102.xhp#hd_id3145273.26.help.text
+msgctxt "12090102.xhp#hd_id3145273.26.help.text"
+msgid "Options"
+msgstr "Options"
+
+#: 12090102.xhp#par_id3146120.25.help.text
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog where you can change the function that is associated with the selected field.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialogue where you can change the function that is associated with the selected field.</ahelp>"
+
+#: 12090102.xhp#hd_id3154944.22.help.text
+msgctxt "12090102.xhp#hd_id3154944.22.help.text"
+msgid "More"
+msgstr "More"
+
+#: 12090102.xhp#par_id3145647.23.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
+msgstr ""
+
+#: 12090102.xhp#hd_id3151073.2.help.text
+msgctxt "12090102.xhp#hd_id3151073.2.help.text"
+msgid "Result"
+msgstr "Result"
+
+#: 12090102.xhp#par_id3155417.3.help.text
+msgid "Specify the settings for displaying the results of the pivot table."
+msgstr ""
+
+#: 12090102.xhp#hd_id0509200913025625.help.text
+msgid "Selection from"
+msgstr "Selection from"
+
+#: 12090102.xhp#par_id0509200913025615.help.text
+msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
+msgstr ""
+
+#: 12090102.xhp#hd_id3155603.4.help.text
+msgid "Results to"
+msgstr "Results to"
+
+#: 12090102.xhp#par_id3153838.5.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the pivot table.</ahelp>"
+msgstr ""
+
+#: 12090102.xhp#par_id3155961.6.help.text
+msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
+msgstr ""
+
+#: 12090102.xhp#hd_id3147364.7.help.text
+msgid "Ignore empty rows"
+msgstr "Ignore empty rows"
+
+#: 12090102.xhp#par_id3154022.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
+
+#: 12090102.xhp#hd_id3155114.9.help.text
+msgid "Identify categories"
+msgstr "Identify categories"
+
+#: 12090102.xhp#par_id3145257.10.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
+
+#: 12090102.xhp#hd_id3149207.14.help.text
+msgid "Total columns"
+msgstr "Total columns"
+
+#: 12090102.xhp#par_id3166426.15.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
+
+#: 12090102.xhp#hd_id3150364.16.help.text
+msgid "Total rows"
+msgstr "Total rows"
+
+#: 12090102.xhp#par_id3152583.17.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
+
+#: 12090102.xhp#par_idN10897.help.text
+msgid "Add filter"
+msgstr "Add filter"
+
+#: 12090102.xhp#par_idN1089B.help.text
+msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
+msgstr ""
+
+#: 12090102.xhp#par_idN108B2.help.text
+msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Opens the Filter dialogue.</ahelp>"
+
+#: 12090102.xhp#par_idN108C9.help.text
+msgid "Enable drill to details"
+msgstr "Enable drill to details"
+
+#: 12090102.xhp#par_idN108CD.help.text
+msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
+msgstr "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
+
+#: 12090102.xhp#par_idN108DC.help.text
+msgid "To examine details inside a pivot table"
+msgstr ""
+
+#: 12090102.xhp#par_idN108E0.help.text
+msgid "Do one of the following:"
+msgstr "Do one of the following:"
+
+#: 12090102.xhp#par_idN108E6.help.text
+msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
+msgstr "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
+
+#: 12090102.xhp#par_idN108EE.help.text
+msgid "Double-click a field in the table."
+msgstr "Double-click a field in the table."
+
+#: 12090102.xhp#par_idN108F1.help.text
+msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
+msgstr "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialogue opens:"
+
+#: 12090102.xhp#par_idN10900.help.text
+msgid "Show Detail"
+msgstr "Show Detail"
+
+#: 12090102.xhp#par_idN10904.help.text
+msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
+msgstr "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
+
+#: 12090102.xhp#par_id3149817.35.help.text
+msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
+msgstr ""
+
+#: func_eomonth.xhp#tit.help.text
+msgid "EOMONTH"
+msgstr "EOMONTH"
+
+#: func_eomonth.xhp#bm_id3150991.help.text
+msgid "<bookmark_value>EOMONTH function</bookmark_value>"
+msgstr "<bookmark_value>EOMONTH function</bookmark_value>"
+
+#: func_eomonth.xhp#hd_id3150991.231.help.text
+msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
+msgstr "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
+
+#: func_eomonth.xhp#par_id3152766.232.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
+
+#: func_eomonth.xhp#hd_id3150597.233.help.text
+msgctxt "func_eomonth.xhp#hd_id3150597.233.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_eomonth.xhp#par_id3150351.234.help.text
+msgid "EOMONTH(StartDate; Months)"
+msgstr "EOMONTH(StartDate; Months)"
+
+#: func_eomonth.xhp#par_id3146787.235.help.text
+msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+msgstr "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+
+#: func_eomonth.xhp#par_id3155615.236.help.text
+msgctxt "func_eomonth.xhp#par_id3155615.236.help.text"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+
+#: func_eomonth.xhp#hd_id3156335.237.help.text
+msgctxt "func_eomonth.xhp#hd_id3156335.237.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: func_eomonth.xhp#par_id3154829.238.help.text
+msgid "What is the last day of the month that falls 6 months after September 14 2001?"
+msgstr "What is the last day of the month that falls 6 months after September 14 2001?"
+
+#: func_eomonth.xhp#par_id3156143.239.help.text
+msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
+msgstr "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
+
+#: func_eomonth.xhp#par_id3156144.239.help.text
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgstr "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+
+#: 02120100.xhp#tit.help.text
+msgctxt "02120100.xhp#tit.help.text"
+msgid "Header/Footer"
+msgstr "Header/Footer"
+
+#: 02120100.xhp#bm_id3153360.help.text
+msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
+msgstr "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
+
+#: 02120100.xhp#hd_id3153360.1.help.text
+msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
+msgstr "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
+
+#: 02120100.xhp#par_id3150768.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Defines or formats a header or footer for a Page Style.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Defines or formats a header or footer for a Page Style.</ahelp>"
+
+#: 02120100.xhp#hd_id3145748.3.help.text
+msgid "Left Area"
+msgstr "Left Area"
+
+#: 02120100.xhp#par_id3147434.4.help.text
+msgid "<ahelp hid=\"HID_SC_HF_FLL\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_FLL\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
+
+#: 02120100.xhp#hd_id3148648.5.help.text
+msgid "Center Area"
+msgstr "Centre Area"
+
+#: 02120100.xhp#par_id3163710.6.help.text
+msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\".\">Enter the text to be displayed at the centre of the header or footer.</ahelp>"
+
+#: 02120100.xhp#hd_id3154942.7.help.text
+msgid "Right Area"
+msgstr "Right Area"
+
+#: 02120100.xhp#par_id3147126.8.help.text
+msgid "<ahelp hid=\"HID_SC_HF_FLR\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_FLR\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
+
+#: 02120100.xhp#par_idN10811.help.text
+msgctxt "02120100.xhp#par_idN10811.help.text"
+msgid "Header/Footer"
+msgstr "Header/Footer"
+
+#: 02120100.xhp#par_idN10815.help.text
+msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+msgstr "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+
+#: 02120100.xhp#hd_id3154729.9.help.text
+msgid "Text attributes"
+msgstr "Text attributes"
+
+#: 02120100.xhp#par_id3150717.10.help.text
+msgid "<ahelp hid=\"HID_SC_HF_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
+msgstr "<ahelp hid=\"HID_SC_HF_TEXT\">Opens a dialogue to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialogue contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
+
+#: 02120100.xhp#par_id3159266.help.text
+msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
+
+#: 02120100.xhp#par_id3155336.25.help.text
+msgid "Text Attributes"
+msgstr "Text Attributes"
+
+#: 02120100.xhp#hd_id3145792.11.help.text
+msgid "File Name "
+msgstr "File Name "
+
+#: 02120100.xhp#par_id3150206.12.help.text
+msgid "<ahelp hid=\"HID_SC_HF_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
+msgstr "<ahelp hid=\"HID_SC_HF_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
+
+#: 02120100.xhp#par_id3150369.help.text
+msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
+
+#: 02120100.xhp#par_id3154487.26.help.text
+msgid "File Name"
+msgstr "File Name"
+
+#: 02120100.xhp#hd_id3155812.13.help.text
+msgctxt "02120100.xhp#hd_id3155812.13.help.text"
+msgid "Sheet Name"
+msgstr "Sheet Name"
+
+#: 02120100.xhp#par_id3148842.14.help.text
+msgid "<ahelp hid=\"HID_SC_HF_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
+
+#: 02120100.xhp#par_id3146870.help.text
+msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
+
+#: 02120100.xhp#par_id3147071.27.help.text
+msgctxt "02120100.xhp#par_id3147071.27.help.text"
+msgid "Sheet Name"
+msgstr "Sheet Name"
+
+#: 02120100.xhp#hd_id3144768.15.help.text
+msgctxt "02120100.xhp#hd_id3144768.15.help.text"
+msgid "Page"
+msgstr "Page"
+
+#: 02120100.xhp#par_id3154960.16.help.text
+msgid "<ahelp hid=\"HID_SC_HF_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
+
+#: 02120100.xhp#par_id3151304.help.text
+msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
+
+#: 02120100.xhp#par_id3150048.28.help.text
+msgctxt "02120100.xhp#par_id3150048.28.help.text"
+msgid "Page"
+msgstr "Page"
+
+#: 02120100.xhp#hd_id3146962.17.help.text
+msgctxt "02120100.xhp#hd_id3146962.17.help.text"
+msgid "Pages"
+msgstr "Pages"
+
+#: 02120100.xhp#par_id3153812.18.help.text
+msgid "<ahelp hid=\"HID_SC_HF_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
+
+#: 02120100.xhp#par_id3149315.help.text
+msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
+
+#: 02120100.xhp#par_id3147499.29.help.text
+msgctxt "02120100.xhp#par_id3147499.29.help.text"
+msgid "Pages"
+msgstr "Pages"
+
+#: 02120100.xhp#hd_id3149050.19.help.text
+msgctxt "02120100.xhp#hd_id3149050.19.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 02120100.xhp#par_id3153960.20.help.text
+msgid "<ahelp hid=\"HID_SC_HF_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
+
+#: 02120100.xhp#par_id3147299.help.text
+msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
+
+#: 02120100.xhp#par_id3150540.30.help.text
+msgctxt "02120100.xhp#par_id3150540.30.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 02120100.xhp#hd_id3147610.21.help.text
+msgctxt "02120100.xhp#hd_id3147610.21.help.text"
+msgid "Time"
+msgstr "Time"
+
+#: 02120100.xhp#par_id3145638.22.help.text
+msgid "<ahelp hid=\"HID_SC_HF_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_HF_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
+
+#: 02120100.xhp#par_id3153122.help.text
+msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
+
+#: 02120100.xhp#par_id3157904.31.help.text
+msgctxt "02120100.xhp#par_id3157904.31.help.text"
+msgid "Time"
+msgstr "Time"
+
+#: 04060120.xhp#tit.help.text
+msgctxt "04060120.xhp#tit.help.text"
+msgid "Bit Operation Functions"
+msgstr ""
+
+#: 04060120.xhp#hd_id4149052.1.help.text
+msgctxt "04060120.xhp#hd_id4149052.1.help.text"
+msgid "Bit Operation Functions"
+msgstr ""
+
+#: 04060120.xhp#bm_id4150026.help.text
+#, fuzzy
+msgid "<bookmark_value>BITAND function</bookmark_value>"
+msgstr "<bookmark_value>AND function</bookmark_value>"
+
+#: 04060120.xhp#hd_id4150026.238.help.text
+msgid "BITAND"
+msgstr ""
+
+#: 04060120.xhp#par_id4146942.239.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4150459.240.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4150459.240.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060120.xhp#par_id4146878.241.help.text
+msgid "BITAND(number1; number2)"
+msgstr ""
+
+#: 04060120.xhp#par_id4151228.242.help.text
+msgctxt "04060120.xhp#par_id4151228.242.help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#: 04060120.xhp#hd_id4148582.248.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4148582.248.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060120.xhp#par_id4149246.250.help.text
+msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
+msgstr ""
+
+#: 04060120.xhp#bm_id4146139.help.text
+#, fuzzy
+msgid "<bookmark_value>BITOR function</bookmark_value>"
+msgstr "<bookmark_value>OR function</bookmark_value>"
+
+#: 04060120.xhp#hd_id4146139.252.help.text
+msgid "BITOR"
+msgstr ""
+
+#: 04060120.xhp#par_id4150140.253.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4149188.254.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4149188.254.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060120.xhp#par_id4148733.255.help.text
+msgid "BITOR(number1; number2)"
+msgstr ""
+
+#: 04060120.xhp#par_id4150864.256.help.text
+msgctxt "04060120.xhp#par_id4150864.256.help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#: 04060120.xhp#par_id4149884.264.help.text
+msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgstr ""
+
+#: 04060120.xhp#bm_id4150019.help.text
+#, fuzzy
+msgid "<bookmark_value>BITXOR function</bookmark_value>"
+msgstr "<bookmark_value>OR function</bookmark_value>"
+
+#: 04060120.xhp#hd_id4150019.182.help.text
+msgid "BITXOR"
+msgstr ""
+
+#: 04060120.xhp#par_id4145246.183.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4153047.184.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4153047.184.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060120.xhp#par_id4157970.185.help.text
+msgid "BITXOR(number1; number2)"
+msgstr ""
+
+#: 04060120.xhp#par_id4145302.186.help.text
+msgctxt "04060120.xhp#par_id4145302.186.help.text"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#: 04060120.xhp#hd_id4150269.192.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4150269.192.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060120.xhp#par_id4149394.196.help.text
+msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
+msgstr ""
+
+#: 04060120.xhp#bm_id4155370.help.text
+#, fuzzy
+msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
+msgstr "<bookmark_value>BINOMDIST function</bookmark_value>"
+
+#: 04060120.xhp#hd_id4155370.266.help.text
+msgid "BITLSHIFT"
+msgstr ""
+
+#: 04060120.xhp#par_id4158411.267.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4155814.268.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4155814.268.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060120.xhp#par_id4147536.269.help.text
+msgid "BITLSHIFT(number; shift)"
+msgstr ""
+
+#: 04060120.xhp#par_id4150475.270.help.text
+msgctxt "04060120.xhp#par_id4150475.270.help.text"
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#: 04060120.xhp#par_id4153921.271.help.text
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
+msgstr ""
+
+#: 04060120.xhp#hd_id4153723.276.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4153723.276.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060120.xhp#par_id4149819.278.help.text
+msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
+msgstr ""
+
+#: 04060120.xhp#bm_id4083280.help.text
+#, fuzzy
+msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
+msgstr "<bookmark_value>BINOMDIST function</bookmark_value>"
+
+#: 04060120.xhp#hd_id4083280.165.help.text
+msgid "BITRSHIFT"
+msgstr ""
+
+#: 04060120.xhp#par_id4152482.166.help.text
+msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
+msgstr ""
+
+#: 04060120.xhp#hd_id4149713.167.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4149713.167.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060120.xhp#par_id4145087.168.help.text
+msgid "BITRSHIFT(number; shift)"
+msgstr ""
+
+#: 04060120.xhp#par_id4149277.169.help.text
+msgctxt "04060120.xhp#par_id4149277.169.help.text"
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
+
+#: 04060120.xhp#par_id4149270.170.help.text
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
+msgstr ""
+
+#: 04060120.xhp#hd_id4152933.175.help.text
+#, fuzzy
+msgctxt "04060120.xhp#hd_id4152933.175.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060120.xhp#par_id4156130.179.help.text
+msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
+msgstr ""
+
+#: 04070100.xhp#tit.help.text
+msgctxt "04070100.xhp#tit.help.text"
+msgid "Define Names"
+msgstr "Define Names"
+
+#: 04070100.xhp#hd_id3156330.1.help.text
+msgctxt "04070100.xhp#hd_id3156330.1.help.text"
+msgid "Define Names"
+msgstr "Define Names"
+
+#: 04070100.xhp#par_id3154366.2.help.text
+msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
+msgstr "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialogue where you can specify a name for a selected area.</ahelp></variable>"
+
+#: 04070100.xhp#par_id3154123.31.help.text
+msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
+msgstr "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialogue fields."
+
+#: 04070100.xhp#par_id3155131.30.help.text
+msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
+msgstr "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulae or parts of a formula are not listed here."
+
+#: 04070100.xhp#hd_id3151118.3.help.text
+msgctxt "04070100.xhp#hd_id3151118.3.help.text"
+msgid "Name"
+msgstr "Name"
+
+#: 04070100.xhp#par_id3163712.29.help.text
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different coloured frames."
+
+#: 04070100.xhp#hd_id3153728.9.help.text
+msgid "Assigned to"
+msgstr "Assigned to"
+
+#: 04070100.xhp#par_id3147435.10.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+
+#: 04070100.xhp#par_id3146986.12.help.text
+msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
+msgstr "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
+
+#: 04070100.xhp#hd_id3154729.13.help.text
+msgctxt "04070100.xhp#hd_id3154729.13.help.text"
+msgid "More"
+msgstr "More"
+
+#: 04070100.xhp#par_id3149958.14.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
+
+#: 04070100.xhp#hd_id3147394.15.help.text
+msgid "Area type"
+msgstr "Area type"
+
+#: 04070100.xhp#par_id3155416.16.help.text
+msgid "Defines additional options related to the type of reference area."
+msgstr "Defines additional options related to the type of reference area."
+
+#: 04070100.xhp#hd_id3150716.17.help.text
+msgctxt "04070100.xhp#hd_id3150716.17.help.text"
+msgid "Print range"
+msgstr "Print range"
+
+#: 04070100.xhp#par_id3150751.18.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Defines the area as a print range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Defines the area as a print range.</ahelp>"
+
+#: 04070100.xhp#hd_id3153764.19.help.text
+msgctxt "04070100.xhp#hd_id3153764.19.help.text"
+msgid "Filter"
+msgstr "Filter"
+
+#: 04070100.xhp#par_id3155766.20.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+
+#: 04070100.xhp#hd_id3159267.21.help.text
+msgid "Repeat column"
+msgstr "Repeat column"
+
+#: 04070100.xhp#par_id3149565.22.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Defines the area as a repeating column.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Defines the area as a repeating column.</ahelp>"
+
+#: 04070100.xhp#hd_id3153966.23.help.text
+msgid "Repeat row"
+msgstr "Repeat row"
+
+#: 04070100.xhp#par_id3150300.24.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Defines the area as a repeating row.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Defines the area as a repeating row.</ahelp>"
+
+#: 04070100.xhp#hd_id3155112.27.help.text
+msgctxt "04070100.xhp#hd_id3155112.27.help.text"
+msgid "Add/Modify"
+msgstr "Add/Modify"
+
+#: 04070100.xhp#par_id3159236.28.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
+
+#: 12040400.xhp#tit.help.text
+msgid "Remove Filter"
+msgstr "Remove Filter"
+
+#: 12040400.xhp#hd_id3153087.1.help.text
+msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
+
+#: 12040400.xhp#par_id3154760.2.help.text
+msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
+
+#: 12090000.xhp#tit.help.text
+msgctxt "12090000.xhp#tit.help.text"
+msgid "Pivot Table"
+msgstr ""
+
+#: 12090000.xhp#hd_id3150275.1.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
+msgstr "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+
+#: 12090000.xhp#par_id3153562.2.help.text
+msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
+msgstr ""
+
+#: 12090000.xhp#hd_id3155923.3.help.text
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+msgstr "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+
+#: 12090000.xhp#par_idN105FB.help.text
+msgctxt "12090000.xhp#par_idN105FB.help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr ""
+
+#: solver.xhp#tit.help.text
+msgid "Solver"
+msgstr "Solver"
+
+#: solver.xhp#bm_id7654652.help.text
+msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
+msgstr "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
+
+#: solver.xhp#hd_id9216284.help.text
+msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgstr "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+
+#: solver.xhp#par_id9210486.help.text
+msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
+msgstr "<ahelp hid=\".\">Opens the Solver dialogue. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
+
+#: solver.xhp#par_id8538773.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimised.</ahelp>"
+
+#: solver.xhp#par_id7564012.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
+
+#: solver.xhp#par_id1186254.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
+
+#: solver.xhp#par_id7432477.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
+
+#: solver.xhp#par_id7141026.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
+
+#: solver.xhp#par_id8531449.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+
+#: solver.xhp#par_id9183935.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+
+#: solver.xhp#par_id946684.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+
+#: solver.xhp#par_id9607226.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+
+#: solver.xhp#par_id1939451.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialogue. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
+
+#: solver.xhp#par_id9038972.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
+
+#: solver.xhp#par_id2423780.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialogue.</ahelp>"
+
+#: solver.xhp#par_id2569658.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialogue settings are retained until you close the current document.</ahelp>"
+
+#: solver.xhp#par_id5474410.help.text
+msgid "To solve equations with the solver"
+msgstr "To solve equations with the solver"
+
+#: solver.xhp#par_id2216559.help.text
+msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
+msgstr "The goal of the solver process is to find those variable values of an equation that result in an optimised value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
+
+#: solver.xhp#par_id7869502.help.text
+msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box. "
+msgstr "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box. "
+
+#: solver.xhp#par_id9852900.help.text
+msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
+msgstr "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
+
+#: solver.xhp#par_id5323953.help.text
+msgid "The default solver engine supports only linear equations."
+msgstr "The default solver engine supports only linear equations."
+
+#: solver_options.xhp#tit.help.text
+msgctxt "solver_options.xhp#tit.help.text"
+msgid "Options"
+msgstr "Options"
+
+#: solver_options.xhp#hd_id2794274.help.text
+msgctxt "solver_options.xhp#hd_id2794274.help.text"
+msgid "Options"
+msgstr "Options"
+
+#: solver_options.xhp#par_id6776940.help.text
+msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
+msgstr "The Options dialogue for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
+
+#: solver_options.xhp#par_id393993.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
+
+#: solver_options.xhp#par_id5871761.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
+
+#: solver_options.xhp#par_id6531266.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialogue opens where you can change the value.</ahelp>"
+
+#: solver_options.xhp#par_id3912778.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
+
+#: solver_options.xhp#par_id3163853.help.text
+msgid "Use the Options dialog to configure the current solver engine."
+msgstr "Use the Options dialogue to configure the current solver engine."
+
+#: solver_options.xhp#par_id121158.help.text
+msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
+msgstr "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
+
+#: solver_options.xhp#par_id3806878.help.text
+msgid "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
+msgstr "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
+
+#: solver_options.xhp#par_id130619.help.text
+msgid "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value."
+msgstr "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialogue where you can change the value."
+
+#: solver_options.xhp#par_id9999694.help.text
+msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
+msgstr "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialogue."
+
+#: 02160000.xhp#tit.help.text
+msgctxt "02160000.xhp#tit.help.text"
+msgid "Delete Cells"
+msgstr "Delete Cells"
+
+#: 02160000.xhp#bm_id3153726.help.text
+msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
+msgstr "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
+
+#: 02160000.xhp#hd_id3153726.1.help.text
+msgctxt "02160000.xhp#hd_id3153726.1.help.text"
+msgid "Delete Cells"
+msgstr "Delete Cells"
+
+#: 02160000.xhp#par_id3154490.2.help.text
+msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
+msgstr ""
+
+#: 02160000.xhp#hd_id3149121.3.help.text
+msgctxt "02160000.xhp#hd_id3149121.3.help.text"
+msgid "Selection"
+msgstr "Selection"
+
+#: 02160000.xhp#par_id3150751.4.help.text
+msgid "This area contains options for specifying how sheets are displayed after deleting cells."
+msgstr "This area contains options for specifying how sheets are displayed after deleting cells."
+
+#: 02160000.xhp#hd_id3155767.5.help.text
+msgid "Shift cells up"
+msgstr "Shift cells up"
+
+#: 02160000.xhp#par_id3153714.6.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
+
+#: 02160000.xhp#hd_id3156382.7.help.text
+msgid "Shift cells left"
+msgstr "Shift cells left"
+
+#: 02160000.xhp#par_id3154702.8.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
+
+#: 02160000.xhp#hd_id3146918.9.help.text
+msgid "Delete entire row(s)"
+msgstr "Delete entire row(s)"
+
+#: 02160000.xhp#par_id3148487.10.help.text
+msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
+
+#: 02160000.xhp#hd_id3155114.11.help.text
+msgid "Delete entire column(s)"
+msgstr "Delete entire column(s)"
+
+#: 02160000.xhp#par_id3150086.12.help.text
+msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
+
+#: 02160000.xhp#par_id3166424.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
+msgstr "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
+
+#: 05040200.xhp#tit.help.text
+msgctxt "05040200.xhp#tit.help.text"
+msgid "Optimal Column Width"
+msgstr "Optimal Column Width"
+
+#: 05040200.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
+
+#: 05040200.xhp#hd_id3155628.1.help.text
+msgctxt "05040200.xhp#hd_id3155628.1.help.text"
+msgid "Optimal Column Width"
+msgstr "Optimal Column Width"
+
+#: 05040200.xhp#par_id3145068.2.help.text
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
+
+#: 05040200.xhp#hd_id3150767.3.help.text
+msgctxt "05040200.xhp#hd_id3150767.3.help.text"
+msgid "Add"
+msgstr "Add"
+
+#: 05040200.xhp#par_id3150449.4.help.text
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
+msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
+
+#: 05040200.xhp#hd_id3145785.5.help.text
+msgctxt "05040200.xhp#hd_id3145785.5.help.text"
+msgid "Default value"
+msgstr "Default value"
+
+#: 05040200.xhp#par_id3146120.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
+
+#: 12040000.xhp#tit.help.text
+msgctxt "12040000.xhp#tit.help.text"
+msgid "Filter"
+msgstr "Filter"
+
+#: 12040000.xhp#hd_id3150767.1.help.text
+msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
+
+#: 12040000.xhp#par_id3155131.2.help.text
+msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
+msgstr "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
+
+#: 12040000.xhp#par_id3146119.7.help.text
+msgid "$[officename] automatically recognizes predefined database ranges."
+msgstr "$[officename] automatically recognises predefined database ranges."
+
+#: 12040000.xhp#par_id3153363.3.help.text
+msgid "The following filtering options are available:"
+msgstr "The following filtering options are available:"
+
+#: 12040000.xhp#hd_id3153728.4.help.text
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+
+#: 12040000.xhp#hd_id3159153.5.help.text
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
+msgstr "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
+
+#: 04090000.xhp#tit.help.text
+msgid "Link to External Data"
+msgstr "Link to External Data"
+
+#: 04090000.xhp#par_id3153192.2.help.text
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+
+#: 04090000.xhp#hd_id3145785.3.help.text
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
+msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
+
+#: 04090000.xhp#par_id3149262.4.help.text
+msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
+
+#: 04090000.xhp#hd_id3146984.5.help.text
+msgid "URL of external data source."
+msgstr "URL of external data source."
+
+#: 04090000.xhp#par_id3145366.6.help.text
+msgid "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
+
+#: 04090000.xhp#hd_id3145251.7.help.text
+msgid "Available tables/ranges"
+msgstr "Available tables/ranges"
+
+#: 04090000.xhp#par_id3147397.8.help.text
+msgid "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Select the table or the data range that you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Select the table or the data range that you want to insert.</ahelp>"
+
+#: 04090000.xhp#hd_id3154492.9.help.text
+msgid "Update every"
+msgstr "Update every"
+
+#: 04090000.xhp#par_id3154017.10.help.text
+msgid "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
+msgstr "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
+
+#: 04070400.xhp#tit.help.text
+msgid "Define Label Range"
+msgstr "Define Label Range"
+
+#: 04070400.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
+msgstr "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
+
+#: 04070400.xhp#hd_id3150791.1.help.text
+msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
+msgstr "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
+
+#: 04070400.xhp#par_id3150868.2.help.text
+msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
+msgstr "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialogue in which you can define a label range.</ahelp></variable>"
+
+#: 04070400.xhp#par_id3155411.13.help.text
+msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
+msgstr "The cell contents of a label range can be used like names in formulae - $[officename] recognises these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
+
+#: 04070400.xhp#par_id3147435.14.help.text
+msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
+msgstr "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
+
+#: 04070400.xhp#hd_id3145801.3.help.text
+msgctxt "04070400.xhp#hd_id3145801.3.help.text"
+msgid "Range"
+msgstr "Range"
+
+#: 04070400.xhp#par_id3154731.4.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
+
+#: 04070400.xhp#hd_id3149121.5.help.text
+msgctxt "04070400.xhp#hd_id3149121.5.help.text"
+msgid "Contains column labels"
+msgstr "Contains column labels"
+
+#: 04070400.xhp#par_id3150330.6.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
+
+#: 04070400.xhp#hd_id3149020.7.help.text
+msgid "Contains row labels"
+msgstr "Contains row labels"
+
+#: 04070400.xhp#par_id3154754.8.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
+
+#: 04070400.xhp#hd_id3159264.11.help.text
+msgid "For data range"
+msgstr "For data range"
+
+#: 04070400.xhp#par_id3154703.12.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
+
+#: 04070400.xhp#hd_id3145789.9.help.text
+msgctxt "04070400.xhp#hd_id3145789.9.help.text"
+msgid "Add"
+msgstr "Add"
+
+#: 04070400.xhp#par_id3147005.10.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
+
+#: func_date.xhp#tit.help.text
+msgid "DATE"
+msgstr "DATE"
+
+#: func_date.xhp#bm_id3155511.help.text
+msgid "<bookmark_value>DATE function</bookmark_value>"
+msgstr "<bookmark_value>DATE function</bookmark_value>"
+
+#: func_date.xhp#hd_id3155511.3.help.text
+msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgstr "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+
+#: func_date.xhp#par_id3153551.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
+msgstr "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
+
+#: func_date.xhp#hd_id3148590.5.help.text
+msgctxt "func_date.xhp#hd_id3148590.5.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_date.xhp#par_id3150474.6.help.text
+msgid "DATE(Year; Month; Day)"
+msgstr "DATE(Year; Month; Day)"
+
+#: func_date.xhp#par_id3152815.7.help.text
+msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
+msgstr "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
+
+#: func_date.xhp#par_id3153222.174.help.text
+msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
+msgstr "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognised as 20xx."
+
+#: func_date.xhp#par_id3155817.8.help.text
+msgid "<emph>Month</emph> is an integer indicating the month."
+msgstr "<emph>Month</emph> is an integer indicating the month."
+
+#: func_date.xhp#par_id3153183.9.help.text
+msgid "<emph>Day</emph> is an integer indicating the day of the month."
+msgstr "<emph>Day</emph> is an integer indicating the day of the month."
+
+#: func_date.xhp#par_id3156260.10.help.text
+msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
+msgstr "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
+
+#: func_date.xhp#hd_id3147477.12.help.text
+msgctxt "func_date.xhp#hd_id3147477.12.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: func_date.xhp#par_id3152589.16.help.text
+msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
+msgstr "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
+
+#: func_days360.xhp#tit.help.text
+msgid "DAYS360 "
+msgstr "DAYS360 "
+
+#: func_days360.xhp#bm_id3148555.help.text
+msgid "<bookmark_value>DAYS360 function</bookmark_value>"
+msgstr "<bookmark_value>DAYS360 function</bookmark_value>"
+
+#: func_days360.xhp#hd_id3148555.124.help.text
+msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
+msgstr "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
+
+#: func_days360.xhp#par_id3156032.125.help.text
+msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
+
+#: func_days360.xhp#hd_id3155347.126.help.text
+msgctxt "func_days360.xhp#hd_id3155347.126.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_days360.xhp#par_id3155313.127.help.text
+msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
+msgstr "DAYS360(\"Date1\"; \"Date2\"; Type)"
+
+#: func_days360.xhp#par_id3145263.128.help.text
+msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
+msgstr "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
+
+#: func_days360.xhp#par_id3151064.129.help.text
+msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
+msgstr "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
+
+#: func_days360.xhp#hd_id3148641.130.help.text
+msgctxt "func_days360.xhp#hd_id3148641.130.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_days360.xhp#par_id3156348.132.help.text
+msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
+msgstr "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
+
+#: text2columns.xhp#tit.help.text
+msgid "Text to Columns"
+msgstr "Text to Columns"
+
+#: text2columns.xhp#bm_id8004394.help.text
+msgid "<bookmark_value>text to columns</bookmark_value>"
+msgstr "<bookmark_value>text to columns</bookmark_value>"
+
+#: text2columns.xhp#hd_id2300180.help.text
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
+
+#: text2columns.xhp#par_id655232.help.text
+msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
+msgstr "<variable id=\"text2columns\">Opens the Text to Columns dialogue, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
+
+#: text2columns.xhp#hd_id9599597.help.text
+msgid "To expand cell contents to multiple cells"
+msgstr "To expand cell contents to multiple cells"
+
+#: text2columns.xhp#par_id2021546.help.text
+msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row. "
+msgstr "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row. "
+
+#: text2columns.xhp#par_id2623981.help.text
+msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>. "
+msgstr "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>. "
+
+#: text2columns.xhp#par_id7242042.help.text
+msgid "Select the cell or cells that you want to expand."
+msgstr "Select the cell or cells that you want to expand."
+
+#: text2columns.xhp#par_id6999420.help.text
+msgid "Choose <emph>Data - Text to Columns</emph>."
+msgstr "Choose <emph>Data - Text to Columns</emph>."
+
+#: text2columns.xhp#par_id6334116.help.text
+msgid "You see the Text to Columns dialog."
+msgstr "You see the Text to Columns dialogue."
+
+#: text2columns.xhp#par_id9276406.help.text
+msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
+msgstr "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
+
+#: text2columns.xhp#par_id8523819.help.text
+msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
+msgstr "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
+
+#: text2columns.xhp#par_id1517380.help.text
+msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
+msgstr "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
+
+#: text2columns.xhp#par_id7110812.help.text
+msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
+msgstr "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
+
+#: 05050300.xhp#tit.help.text
+msgctxt "05050300.xhp#tit.help.text"
+msgid "Show Sheet"
+msgstr "Show Sheet"
+
+#: 05050300.xhp#bm_id3148946.help.text
+msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
+msgstr "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
+
+#: 05050300.xhp#hd_id3148946.1.help.text
+msgctxt "05050300.xhp#hd_id3148946.1.help.text"
+msgid "Show Sheet"
+msgstr "Show Sheet"
+
+#: 05050300.xhp#par_id3148799.2.help.text
+msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
+msgstr "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
+
+#: 05050300.xhp#hd_id3151112.3.help.text
+msgid "Hidden sheets"
+msgstr "Hidden sheets"
+
+#: 05050300.xhp#par_id3145273.4.help.text
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
+
+#: 06030100.xhp#tit.help.text
+msgid "Trace Precedents"
+msgstr "Trace Precedents"
+
+#: 06030100.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+msgstr "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+
+#: 06030100.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
+
+#: 06030100.xhp#par_id3153542.2.help.text
+msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
+
+#: 06030100.xhp#par_id3147265.4.help.text
+msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
+msgstr "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
+
+#: 06030100.xhp#par_id3154321.3.help.text
+msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
+msgstr "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
+
+#: 04080000.xhp#tit.help.text
+msgctxt "04080000.xhp#tit.help.text"
+msgid "Function List"
+msgstr "Function List"
+
+#: 04080000.xhp#bm_id3154126.help.text
+msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
+msgstr "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
+
+#: 04080000.xhp#hd_id3154126.1.help.text
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgstr "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+
+#: 04080000.xhp#par_id3151118.2.help.text
+msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
+msgstr "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
+
+#: 04080000.xhp#par_id3152576.3.help.text
+msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
+msgstr "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
+
+#: 04080000.xhp#hd_id3145799.4.help.text
+msgid "Category List"
+msgstr "Category List"
+
+#: 04080000.xhp#hd_id3153160.5.help.text
+msgctxt "04080000.xhp#hd_id3153160.5.help.text"
+msgid "Function List"
+msgstr "Function List"
+
+#: 04080000.xhp#par_id3149412.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+
+#: 04080000.xhp#hd_id3146971.7.help.text
+msgid "Insert Function into calculation sheet"
+msgstr "Insert Function into calculation sheet"
+
+#: 04080000.xhp#par_id3150043.help.text
+msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
+
+#: 04080000.xhp#par_id3147345.8.help.text
+msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
+msgstr "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
+
+#: 05070000.xhp#tit.help.text
+msgctxt "05070000.xhp#tit.help.text"
+msgid "Page Style"
+msgstr "Page Style"
+
+#: 05070000.xhp#hd_id3157910.1.help.text
+msgctxt "05070000.xhp#hd_id3157910.1.help.text"
+msgid "Page Style"
+msgstr "Page Style"
+
+#: 05070000.xhp#par_id3156023.2.help.text
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialogue where you can define the appearance of all pages in your document.</ahelp></variable>"
+
+#: 02150000.xhp#tit.help.text
+msgctxt "02150000.xhp#tit.help.text"
+msgid "Deleting Contents"
+msgstr "Deleting Contents"
+
+#: 02150000.xhp#bm_id3143284.help.text
+msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
+msgstr "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
+
+#: 02150000.xhp#hd_id3143284.1.help.text
+msgctxt "02150000.xhp#hd_id3143284.1.help.text"
+msgid "Deleting Contents"
+msgstr "Deleting Contents"
+
+#: 02150000.xhp#par_id3149456.2.help.text
+msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
+msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
+
+#: 02150000.xhp#par_id3159154.21.help.text
+msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
+msgstr ""
+
+#: 02150000.xhp#par_id3145367.22.help.text
+msgid "Pressing Delete deletes content without calling the dialog or changing formats."
+msgstr ""
+
+#: 02150000.xhp#par_id3153951.23.help.text
+msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
+msgstr "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialogue."
+
+#: 02150000.xhp#hd_id3148575.3.help.text
+msgctxt "02150000.xhp#hd_id3148575.3.help.text"
+msgid "Selection"
+msgstr "Selection"
+
+#: 02150000.xhp#par_id3149665.4.help.text
+msgid "This area lists the options for deleting contents."
+msgstr "This area lists the options for deleting contents."
+
+#: 02150000.xhp#hd_id3146975.5.help.text
+msgid "Delete All"
+msgstr "Delete All"
+
+#: 02150000.xhp#par_id3154729.6.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Deletes all content from the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Deletes all content from the selected cell range.</ahelp>"
+
+#: 02150000.xhp#hd_id3156286.7.help.text
+msgid "Text"
+msgstr "Text"
+
+#: 02150000.xhp#par_id3154015.8.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Deletes text only. Formats, formulae, numbers and dates are not affected.</ahelp>"
+
+#: 02150000.xhp#hd_id3153840.9.help.text
+msgid "Numbers"
+msgstr "Numbers"
+
+#: 02150000.xhp#par_id3148405.10.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Deletes numbers only. Formats and formulae remain unchanged.</ahelp>"
+
+#: 02150000.xhp#hd_id3155764.11.help.text
+msgid "Date & time"
+msgstr "Date & time"
+
+#: 02150000.xhp#par_id3149567.12.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Deletes date and time values. Formats, text, numbers and formulae remain unchanged.</ahelp>"
+
+#: 02150000.xhp#hd_id3154703.13.help.text
+msgctxt "02150000.xhp#hd_id3154703.13.help.text"
+msgid "Formulas"
+msgstr "Formulas"
+
+#: 02150000.xhp#par_id3148485.14.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Deletes formulae. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
+
+#: 02150000.xhp#hd_id3150300.15.help.text
+msgctxt "02150000.xhp#hd_id3150300.15.help.text"
+msgid "Comments"
+msgstr "Comments"
+
+#: 02150000.xhp#par_id3154658.16.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
+
+#: 02150000.xhp#hd_id3155112.17.help.text
+msgid "Formats"
+msgstr "Formats"
+
+#: 02150000.xhp#par_id3146134.18.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
+
+#: 02150000.xhp#hd_id3150088.19.help.text
+msgctxt "02150000.xhp#hd_id3150088.19.help.text"
+msgid "Objects"
+msgstr "Objects"
+
+#: 02150000.xhp#par_id3152990.20.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Deletes objects. All cell content remains unchanged.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Deletes objects. All cell content remains unchanged.</ahelp>"
+
+#: 07090000.xhp#tit.help.text
+msgid "Freeze"
+msgstr "Freeze"
+
+#: 07090000.xhp#hd_id3150517.1.help.text
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
+
+#: 07090000.xhp#par_id3156289.2.help.text
+msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
+msgstr "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
+
+#: 12070100.xhp#tit.help.text
+msgctxt "12070100.xhp#tit.help.text"
+msgid "Consolidate by"
+msgstr "Consolidate by"
+
+#: 12070100.xhp#hd_id3151210.1.help.text
+msgctxt "12070100.xhp#hd_id3151210.1.help.text"
+msgid "Consolidate by"
+msgstr "Consolidate by"
+
+#: 12070100.xhp#hd_id3125864.2.help.text
+msgctxt "12070100.xhp#hd_id3125864.2.help.text"
+msgid "Consolidate by"
+msgstr "Consolidate by"
+
+#: 12070100.xhp#par_id3154909.3.help.text
+msgid "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
+msgstr "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
+
+#: 12070100.xhp#hd_id3153968.4.help.text
+msgid "Row labels"
+msgstr "Row labels"
+
+#: 12070100.xhp#par_id3150441.5.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
+
+#: 12070100.xhp#hd_id3146976.6.help.text
+msgid "Column labels"
+msgstr "Column labels"
+
+#: 12070100.xhp#par_id3155411.7.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
+
+#: 12070100.xhp#hd_id3153191.12.help.text
+msgctxt "12070100.xhp#hd_id3153191.12.help.text"
+msgid "Options"
+msgstr "Options"
+
+#: 12070100.xhp#hd_id3159154.8.help.text
+msgid "Link to source data"
+msgstr "Link to source data"
+
+#: 12070100.xhp#par_id3146986.9.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
+
+#: 12070100.xhp#hd_id3163708.10.help.text
+msgctxt "12070100.xhp#hd_id3163708.10.help.text"
+msgid "More <<"
+msgstr "More <<"
+
+#: 12070100.xhp#par_id3151118.11.help.text
+msgctxt "12070100.xhp#par_id3151118.11.help.text"
+msgid "Hides the additional options."
+msgstr "Hides the additional options."
+
+#: 02110000.xhp#tit.help.text
+msgid "Navigator"
+msgstr "Navigator"
+
+#: 02110000.xhp#bm_id3150791.help.text
+msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
+msgstr "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
+
+#: 02110000.xhp#hd_id3150791.1.help.text
+msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
+msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
+
+#: 02110000.xhp#par_id3156422.2.help.text
+msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
+msgstr "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
+
+#: 02110000.xhp#par_id3145271.40.help.text
+msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
+msgstr "Choose <emph>View - Navigator</emph> to display the Navigator."
+
+#: 02110000.xhp#hd_id3159155.4.help.text
+msgctxt "02110000.xhp#hd_id3159155.4.help.text"
+msgid "Column"
+msgstr "Column"
+
+#: 02110000.xhp#par_id3146984.5.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
+
+#: 02110000.xhp#hd_id3147126.6.help.text
+msgctxt "02110000.xhp#hd_id3147126.6.help.text"
+msgid "Row"
+msgstr "Row"
+
+#: 02110000.xhp#par_id3149958.7.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
+
+#: 02110000.xhp#hd_id3150717.8.help.text
+msgctxt "02110000.xhp#hd_id3150717.8.help.text"
+msgid "Data Range"
+msgstr "Data Range"
+
+#: 02110000.xhp#par_id3150752.10.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
+
+#: 02110000.xhp#par_id3159264.help.text
+msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
+
+#: 02110000.xhp#par_id3146919.9.help.text
+msgctxt "02110000.xhp#par_id3146919.9.help.text"
+msgid "Data Range"
+msgstr "Data Range"
+
+#: 02110000.xhp#hd_id3148488.14.help.text
+msgctxt "02110000.xhp#hd_id3148488.14.help.text"
+msgid "Start"
+msgstr "Start"
+
+#: 02110000.xhp#par_id3150086.16.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+
+#: 02110000.xhp#par_id3152994.help.text
+msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
+
+#: 02110000.xhp#par_id3154372.15.help.text
+msgctxt "02110000.xhp#par_id3154372.15.help.text"
+msgid "Start"
+msgstr "Start"
+
+#: 02110000.xhp#hd_id3146982.17.help.text
+msgctxt "02110000.xhp#hd_id3146982.17.help.text"
+msgid "End"
+msgstr "End"
+
+#: 02110000.xhp#par_id3152985.19.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+
+#: 02110000.xhp#par_id3159170.help.text
+msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
+
+#: 02110000.xhp#par_id3147072.18.help.text
+msgctxt "02110000.xhp#par_id3147072.18.help.text"
+msgid "End"
+msgstr "End"
+
+#: 02110000.xhp#hd_id3150107.20.help.text
+msgctxt "02110000.xhp#hd_id3150107.20.help.text"
+msgid "Toggle"
+msgstr "Toggle"
+
+#: 02110000.xhp#par_id3159098.22.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
+
+#: 02110000.xhp#par_id3152869.help.text
+msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
+
+#: 02110000.xhp#par_id3159229.21.help.text
+msgctxt "02110000.xhp#par_id3159229.21.help.text"
+msgid "Toggle"
+msgstr "Toggle"
+
+#: 02110000.xhp#hd_id3149381.11.help.text
+msgctxt "02110000.xhp#hd_id3149381.11.help.text"
+msgid "Contents"
+msgstr "Contents"
+
+#: 02110000.xhp#par_id3150051.13.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
+
+#: 02110000.xhp#par_id3155597.help.text
+msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
+
+#: 02110000.xhp#par_id3150955.12.help.text
+msgctxt "02110000.xhp#par_id3150955.12.help.text"
+msgid "Contents"
+msgstr "Contents"
+
+#: 02110000.xhp#hd_id3147244.23.help.text
+msgctxt "02110000.xhp#hd_id3147244.23.help.text"
+msgid "Scenarios"
+msgstr "Scenarios"
+
+#: 02110000.xhp#par_id3153955.25.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
+
+#: 02110000.xhp#par_id3148745.help.text
+#, fuzzy
+msgid "<image id=\"img_id3159256\" src=\"sc/imglst/navipi/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
+
+#: 02110000.xhp#par_id3166466.24.help.text
+msgctxt "02110000.xhp#par_id3166466.24.help.text"
+msgid "Scenarios"
+msgstr "Scenarios"
+
+#: 02110000.xhp#par_idN10A6C.help.text
+msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
+msgstr "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
+
+#: 02110000.xhp#par_idN10A77.help.text
+msgctxt "02110000.xhp#par_idN10A77.help.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: 02110000.xhp#par_idN10A7B.help.text
+msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
+
+#: 02110000.xhp#par_idN10A92.help.text
+msgid "Properties"
+msgstr "Properties"
+
+#: 02110000.xhp#par_idN10A96.help.text
+msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialogue, where you can edit the scenario properties.</ahelp>"
+
+#: 02110000.xhp#hd_id3150037.26.help.text
+msgctxt "02110000.xhp#hd_id3150037.26.help.text"
+msgid "Drag Mode"
+msgstr "Drag Mode"
+
+#: 02110000.xhp#par_id3157876.28.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
+
+#: 02110000.xhp#par_id3149947.help.text
+msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
+
+#: 02110000.xhp#par_id3150656.27.help.text
+msgctxt "02110000.xhp#par_id3150656.27.help.text"
+msgid "Drag Mode"
+msgstr "Drag Mode"
+
+#: 02110000.xhp#hd_id3149009.29.help.text
+msgid "Insert as Hyperlink"
+msgstr "Insert as Hyperlink"
+
+#: 02110000.xhp#par_id3146938.30.help.text
+msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object. "
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object. "
+
+#: 02110000.xhp#par_id3880733.help.text
+msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
+msgstr "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
+
+#: 02110000.xhp#hd_id3154682.31.help.text
+msgid "Insert as Link"
+msgstr "Insert as Link"
+
+#: 02110000.xhp#par_id3150746.32.help.text
+msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+
+#: 02110000.xhp#hd_id3145824.33.help.text
+msgid "Insert as Copy"
+msgstr "Insert as Copy"
+
+#: 02110000.xhp#par_id3147471.34.help.text
+msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+
+#: 02110000.xhp#hd_id3147423.38.help.text
+msgctxt "02110000.xhp#hd_id3147423.38.help.text"
+msgid "Objects"
+msgstr "Objects"
+
+#: 02110000.xhp#par_id3150700.39.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
+
+#: 02110000.xhp#hd_id3150860.35.help.text
+msgid "Documents"
+msgstr "Documents"
+
+#: 02110000.xhp#par_id3153929.36.help.text
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
+
+#: 02200000.xhp#tit.help.text
+msgctxt "02200000.xhp#tit.help.text"
+msgid "Sheet"
+msgstr "Sheet"
+
+#: 02200000.xhp#hd_id3146794.1.help.text
+msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
+
+#: 02200000.xhp#par_id3149456.2.help.text
+msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
+msgstr "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
+
+#: 02200000.xhp#hd_id3150792.3.help.text
+msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
+msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
+
+#: 02200000.xhp#hd_id3153968.4.help.text
+msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
+msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
+
+#: 02200000.xhp#hd_id3163708.5.help.text
+msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
+
+#: 02200000.xhp#hd_id3163733308.help.text
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+
+#: 04060116.xhp#tit.help.text
+msgctxt "04060116.xhp#tit.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Add-in Functions, List of Analysis Functions Part Two"
+
+#: 04060116.xhp#bm_id3145074.help.text
+msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
+msgstr "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
+
+#: 04060116.xhp#hd_id3154659.1.help.text
+msgctxt "04060116.xhp#hd_id3154659.1.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Add-in Functions, List of Analysis Functions Part Two"
+
+#: 04060116.xhp#par_id3151242.174.help.text
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
+
+#: 04060116.xhp#par_id3148869.5.help.text
+msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
+
+#: 04060116.xhp#par_id3147072.240.help.text
+msgctxt "04060116.xhp#par_id3147072.240.help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+
+#: 04060116.xhp#bm_id3154959.help.text
+msgid "<bookmark_value>IMABS function</bookmark_value>"
+msgstr "<bookmark_value>IMABS function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3154959.44.help.text
+msgid "IMABS"
+msgstr "IMABS"
+
+#: 04060116.xhp#par_id3149895.45.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3155382.46.help.text
+msgctxt "04060116.xhp#hd_id3155382.46.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3151302.47.help.text
+msgid "IMABS(\"ComplexNumber\")"
+msgstr "IMABS(\"ComplexNumber\")"
+
+#: 04060116.xhp#par_id3153974.48.help.text
+msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
+msgstr "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
+
+#: 04060116.xhp#hd_id3149697.49.help.text
+msgctxt "04060116.xhp#hd_id3149697.49.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3143222.50.help.text
+msgid " <item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+msgstr " <item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+
+#: 04060116.xhp#bm_id3145357.help.text
+msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
+msgstr "<bookmark_value>IMAGINARY function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3145357.51.help.text
+msgid "IMAGINARY"
+msgstr "IMAGINARY"
+
+#: 04060116.xhp#par_id3146965.52.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3153555.53.help.text
+msgctxt "04060116.xhp#hd_id3153555.53.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3155522.54.help.text
+msgid "IMAGINARY(\"ComplexNumber\")"
+msgstr "IMAGINARY(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3151193.56.help.text
+msgctxt "04060116.xhp#hd_id3151193.56.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3155592.57.help.text
+msgid " <item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+msgstr " <item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+
+#: 04060116.xhp#bm_id3146106.help.text
+msgid "<bookmark_value>IMPOWER function</bookmark_value>"
+msgstr "<bookmark_value>IMPOWER function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3146106.58.help.text
+msgid "IMPOWER"
+msgstr "IMPOWER"
+
+#: 04060116.xhp#par_id3147245.59.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3150954.60.help.text
+msgctxt "04060116.xhp#hd_id3150954.60.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3147501.61.help.text
+msgid "IMPOWER(\"ComplexNumber\"; Number)"
+msgstr "IMPOWER(\"ComplexNumber\"; Number)"
+
+#: 04060116.xhp#par_id3155743.63.help.text
+msgid " <emph>Number</emph> is the exponent."
+msgstr " <emph>Number</emph> is the exponent."
+
+#: 04060116.xhp#hd_id3149048.64.help.text
+msgctxt "04060116.xhp#hd_id3149048.64.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3151393.65.help.text
+msgid " <item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+msgstr " <item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+
+#: 04060116.xhp#bm_id3148748.help.text
+msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
+msgstr "<bookmark_value>IMARGUMENT function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3148748.66.help.text
+msgid "IMARGUMENT"
+msgstr "IMARGUMENT"
+
+#: 04060116.xhp#par_id3151341.67.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3150533.68.help.text
+msgctxt "04060116.xhp#hd_id3150533.68.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3156402.69.help.text
+msgid "IMARGUMENT(\"ComplexNumber\")"
+msgstr "IMARGUMENT(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3153019.71.help.text
+msgctxt "04060116.xhp#hd_id3153019.71.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3159125.72.help.text
+msgid " <item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+msgstr " <item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+
+#: 04060116.xhp#bm_id3149146.help.text
+msgid "<bookmark_value>IMCOS function</bookmark_value>"
+msgstr "<bookmark_value>IMCOS function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3149146.73.help.text
+msgid "IMCOS"
+msgstr "IMCOS"
+
+#: 04060116.xhp#par_id3149725.74.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3159116.75.help.text
+msgctxt "04060116.xhp#hd_id3159116.75.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3147415.76.help.text
+msgid "IMCOS(\"ComplexNumber\")"
+msgstr "IMCOS(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3152980.78.help.text
+msgctxt "04060116.xhp#hd_id3152980.78.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3157901.79.help.text
+msgid " <item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
+msgstr " <item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
+
+#: 04060116.xhp#bm_id3150024.help.text
+msgid "<bookmark_value>IMDIV function</bookmark_value>"
+msgstr "<bookmark_value>IMDIV function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3150024.80.help.text
+msgid "IMDIV"
+msgstr "IMDIV"
+
+#: 04060116.xhp#par_id3145825.81.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
+
+#: 04060116.xhp#hd_id3150465.82.help.text
+msgctxt "04060116.xhp#hd_id3150465.82.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3146942.83.help.text
+msgid "IMDIV(\"Numerator\"; \"Denominator\")"
+msgstr "IMDIV(\"Numerator\"; \"Denominator\")"
+
+#: 04060116.xhp#par_id3150741.84.help.text
+msgid " <emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
+msgstr " <emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
+
+#: 04060116.xhp#hd_id3151229.85.help.text
+msgctxt "04060116.xhp#hd_id3151229.85.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3148440.86.help.text
+msgid " <item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+msgstr " <item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+
+#: 04060116.xhp#bm_id3153039.help.text
+msgid "<bookmark_value>IMEXP function</bookmark_value>"
+msgstr "<bookmark_value>IMEXP function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3153039.87.help.text
+msgid "IMEXP"
+msgstr "IMEXP"
+
+#: 04060116.xhp#par_id3144741.88.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+
+#: 04060116.xhp#hd_id3145591.89.help.text
+msgctxt "04060116.xhp#hd_id3145591.89.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3154810.90.help.text
+msgid "IMEXP(\"ComplexNumber\")"
+msgstr "IMEXP(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3148581.92.help.text
+msgctxt "04060116.xhp#hd_id3148581.92.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3149253.93.help.text
+msgid " <item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+msgstr " <item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+
+#: 04060116.xhp#bm_id3149955.help.text
+msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
+msgstr "<bookmark_value>IMCONJUGATE function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3149955.94.help.text
+msgid "IMCONJUGATE"
+msgstr "IMCONJUGATE"
+
+#: 04060116.xhp#par_id3155263.95.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3148750.96.help.text
+msgctxt "04060116.xhp#hd_id3148750.96.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3153082.97.help.text
+msgid "IMCONJUGATE(\"ComplexNumber\")"
+msgstr "IMCONJUGATE(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3153326.99.help.text
+msgctxt "04060116.xhp#hd_id3153326.99.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3149688.100.help.text
+msgid " <item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+msgstr " <item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+
+#: 04060116.xhp#bm_id3150898.help.text
+msgid "<bookmark_value>IMLN function</bookmark_value>"
+msgstr "<bookmark_value>IMLN function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3150898.101.help.text
+msgid "IMLN"
+msgstr "IMLN"
+
+#: 04060116.xhp#par_id3146853.102.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+
+#: 04060116.xhp#hd_id3150008.103.help.text
+msgctxt "04060116.xhp#hd_id3150008.103.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3155954.104.help.text
+msgid "IMLN(\"ComplexNumber\")"
+msgstr "IMLN(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3153565.106.help.text
+msgctxt "04060116.xhp#hd_id3153565.106.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3153736.107.help.text
+msgid " <item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+msgstr " <item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+
+#: 04060116.xhp#bm_id3155929.help.text
+msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
+msgstr "<bookmark_value>IMLOG10 function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3155929.108.help.text
+msgid "IMLOG10"
+msgstr "IMLOG10"
+
+#: 04060116.xhp#par_id3149882.109.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3154327.110.help.text
+msgctxt "04060116.xhp#hd_id3154327.110.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3150128.111.help.text
+msgid "IMLOG10(\"ComplexNumber\")"
+msgstr "IMLOG10(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3149003.113.help.text
+msgctxt "04060116.xhp#hd_id3149003.113.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3151021.114.help.text
+msgid " <item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+msgstr " <item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+
+#: 04060116.xhp#bm_id3155623.help.text
+msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
+msgstr "<bookmark_value>IMLOG2 function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3155623.115.help.text
+msgid "IMLOG2"
+msgstr "IMLOG2"
+
+#: 04060116.xhp#par_id3150932.116.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3153046.117.help.text
+msgctxt "04060116.xhp#hd_id3153046.117.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3145355.118.help.text
+msgid "IMLOG2(\"ComplexNumber\")"
+msgstr "IMLOG2(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3148768.120.help.text
+msgctxt "04060116.xhp#hd_id3148768.120.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3149536.121.help.text
+msgid " <item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+msgstr " <item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+
+#: 04060116.xhp#bm_id3145626.help.text
+msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
+msgstr "<bookmark_value>IMPRODUCT function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3145626.122.help.text
+msgid "IMPRODUCT"
+msgstr "IMPRODUCT"
+
+#: 04060116.xhp#par_id3153545.123.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
+
+#: 04060116.xhp#hd_id3149388.124.help.text
+msgctxt "04060116.xhp#hd_id3149388.124.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3149027.125.help.text
+msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
+msgstr "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
+
+#: 04060116.xhp#hd_id3153228.127.help.text
+msgctxt "04060116.xhp#hd_id3153228.127.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3155815.128.help.text
+msgid " <item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+msgstr " <item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+
+#: 04060116.xhp#bm_id3147539.help.text
+msgid "<bookmark_value>IMREAL function</bookmark_value>"
+msgstr "<bookmark_value>IMREAL function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3147539.129.help.text
+msgid "IMREAL"
+msgstr "IMREAL"
+
+#: 04060116.xhp#par_id3155372.130.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3154951.131.help.text
+msgctxt "04060116.xhp#hd_id3154951.131.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3153927.132.help.text
+msgid "IMREAL(\"ComplexNumber\")"
+msgstr "IMREAL(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3155409.134.help.text
+msgctxt "04060116.xhp#hd_id3155409.134.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3155986.135.help.text
+msgid " <item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+msgstr " <item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+
+#: 04060116.xhp#bm_id3148431.help.text
+msgid "<bookmark_value>IMSIN function</bookmark_value>"
+msgstr "<bookmark_value>IMSIN function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3148431.136.help.text
+msgid "IMSIN"
+msgstr "IMSIN"
+
+#: 04060116.xhp#par_id3152591.137.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3149822.138.help.text
+msgctxt "04060116.xhp#hd_id3149822.138.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3150387.139.help.text
+msgid "IMSIN(\"ComplexNumber\")"
+msgstr "IMSIN(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3150613.141.help.text
+msgctxt "04060116.xhp#hd_id3150613.141.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3154310.142.help.text
+msgid " <item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
+msgstr " <item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
+
+#: 04060116.xhp#bm_id3163826.help.text
+msgid "<bookmark_value>IMSUB function</bookmark_value>"
+msgstr "<bookmark_value>IMSUB function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3163826.143.help.text
+msgid "IMSUB"
+msgstr "IMSUB"
+
+#: 04060116.xhp#par_id3149277.144.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
+
+#: 04060116.xhp#hd_id3149264.145.help.text
+msgctxt "04060116.xhp#hd_id3149264.145.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3149710.146.help.text
+msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
+msgstr "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
+
+#: 04060116.xhp#hd_id3155833.148.help.text
+msgctxt "04060116.xhp#hd_id3155833.148.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3150963.149.help.text
+msgid " <item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+msgstr " <item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+
+#: 04060116.xhp#bm_id3156312.help.text
+msgid "<bookmark_value>IMSUM function</bookmark_value>"
+msgstr "<bookmark_value>IMSUM function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3156312.150.help.text
+msgid "IMSUM"
+msgstr "IMSUM"
+
+#: 04060116.xhp#par_id3153215.151.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
+
+#: 04060116.xhp#hd_id3156095.152.help.text
+msgctxt "04060116.xhp#hd_id3156095.152.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3152930.153.help.text
+msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
+msgstr "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
+
+#: 04060116.xhp#hd_id3154640.155.help.text
+msgctxt "04060116.xhp#hd_id3154640.155.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3147081.156.help.text
+msgid " <item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+msgstr " <item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+
+#: 04060116.xhp#bm_id3147570.help.text
+msgid "<bookmark_value>IMSQRT function</bookmark_value>"
+msgstr "<bookmark_value>IMSQRT function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3147570.167.help.text
+msgid "IMSQRT"
+msgstr "IMSQRT"
+
+#: 04060116.xhp#par_id3156131.168.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
+
+#: 04060116.xhp#hd_id3145202.169.help.text
+msgctxt "04060116.xhp#hd_id3145202.169.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3150760.170.help.text
+msgid "IMSQRT(\"ComplexNumber\")"
+msgstr "IMSQRT(\"ComplexNumber\")"
+
+#: 04060116.xhp#hd_id3147268.172.help.text
+msgctxt "04060116.xhp#hd_id3147268.172.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3152807.173.help.text
+msgid " <item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+msgstr " <item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+
+#: 04060116.xhp#bm_id3154054.help.text
+msgid "<bookmark_value>COMPLEX function</bookmark_value>"
+msgstr "<bookmark_value>COMPLEX function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3154054.157.help.text
+msgid "COMPLEX"
+msgstr "COMPLEX"
+
+#: 04060116.xhp#par_id3156111.158.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
+
+#: 04060116.xhp#hd_id3154744.159.help.text
+msgctxt "04060116.xhp#hd_id3154744.159.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3155999.160.help.text
+msgid "COMPLEX(RealNum; INum; Suffix)"
+msgstr "COMPLEX(RealNum; INum; Suffix)"
+
+#: 04060116.xhp#par_id3153626.161.help.text
+msgid " <emph>RealNum</emph> is the real coefficient of the complex number."
+msgstr " <emph>RealNum</emph> is the real coefficient of the complex number."
+
+#: 04060116.xhp#par_id3149135.162.help.text
+msgid " <emph>INum</emph> is the imaginary coefficient of the complex number."
+msgstr " <emph>INum</emph> is the imaginary coefficient of the complex number."
+
+#: 04060116.xhp#par_id3155849.163.help.text
+msgid " <emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+msgstr " <emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+
+#: 04060116.xhp#hd_id3145659.164.help.text
+msgctxt "04060116.xhp#hd_id3145659.164.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3143229.165.help.text
+msgid " <item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+msgstr " <item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+
+#: 04060116.xhp#bm_id3155103.help.text
+msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
+
+#: 04060116.xhp#hd_id3155103.217.help.text
+msgid "OCT2BIN"
+msgstr "OCT2BIN"
+
+#: 04060116.xhp#par_id3146898.218.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
+
+#: 04060116.xhp#hd_id3146088.219.help.text
+msgctxt "04060116.xhp#hd_id3146088.219.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3154303.220.help.text
+msgid "OCT2BIN(Number; Places)"
+msgstr "OCT2BIN(Number; Places)"
+
+#: 04060116.xhp#par_id3156013.221.help.text
+msgctxt "04060116.xhp#par_id3156013.221.help.text"
+msgid " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+
+#: 04060116.xhp#par_id3153984.222.help.text
+msgctxt "04060116.xhp#par_id3153984.222.help.text"
+msgid " <emph>Places</emph> is the number of places to be output."
+msgstr " <emph>Places</emph> is the number of places to be output."
+
+#: 04060116.xhp#hd_id3147493.223.help.text
+msgctxt "04060116.xhp#hd_id3147493.223.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3147260.224.help.text
+msgid " <item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
+msgstr " <item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
+
+#: 04060116.xhp#bm_id3152791.help.text
+msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
+
+#: 04060116.xhp#hd_id3152791.225.help.text
+msgid "OCT2DEC"
+msgstr "OCT2DEC"
+
+#: 04060116.xhp#par_id3149199.226.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
+
+#: 04060116.xhp#hd_id3159337.227.help.text
+msgctxt "04060116.xhp#hd_id3159337.227.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3153902.228.help.text
+msgid "OCT2DEC(Number)"
+msgstr "OCT2DEC(Number)"
+
+#: 04060116.xhp#par_id3155326.229.help.text
+msgctxt "04060116.xhp#par_id3155326.229.help.text"
+msgid " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+
+#: 04060116.xhp#hd_id3154698.230.help.text
+msgctxt "04060116.xhp#hd_id3154698.230.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3154930.231.help.text
+msgid " <item type=\"input\">=OCT2DEC(144)</item> returns 100."
+msgstr " <item type=\"input\">=OCT2DEC(144)</item> returns 100."
+
+#: 04060116.xhp#bm_id3155391.help.text
+msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
+
+#: 04060116.xhp#hd_id3155391.232.help.text
+msgid "OCT2HEX"
+msgstr "OCT2HEX"
+
+#: 04060116.xhp#par_id3148831.233.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
+
+#: 04060116.xhp#hd_id3146988.234.help.text
+msgctxt "04060116.xhp#hd_id3146988.234.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3150523.235.help.text
+msgid "OCT2HEX(Number; Places)"
+msgstr "OCT2HEX(Number; Places)"
+
+#: 04060116.xhp#par_id3159162.236.help.text
+msgctxt "04060116.xhp#par_id3159162.236.help.text"
+msgid " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr " <emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+
+#: 04060116.xhp#par_id3145420.237.help.text
+msgctxt "04060116.xhp#par_id3145420.237.help.text"
+msgid " <emph>Places</emph> is the number of places to be output."
+msgstr " <emph>Places</emph> is the number of places to be output."
+
+#: 04060116.xhp#hd_id3150504.238.help.text
+msgctxt "04060116.xhp#hd_id3150504.238.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id3148802.239.help.text
+msgid " <item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
+msgstr " <item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
+
+#: 04060116.xhp#bm_id3148446.help.text
+msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>CONVERT_ADD function</bookmark_value>"
+
+#: 04060116.xhp#hd_id3148446.175.help.text
+msgid "CONVERT_ADD"
+msgstr "CONVERT_ADD"
+
+#: 04060116.xhp#par_id3154902.176.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for litre) in a cell, enter the apostrophe ' immediately followed by l."
+
+#: 04060116.xhp#par_id3153055.177.help.text
+msgid "Property"
+msgstr "Property"
+
+#: 04060116.xhp#par_id3147234.178.help.text
+msgid "Units"
+msgstr "Units"
+
+#: 04060116.xhp#par_id3147512.179.help.text
+msgid "Weight"
+msgstr "Weight"
+
+#: 04060116.xhp#par_id3148476.180.help.text
+msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
+msgstr ""
+
+#: 04060116.xhp#par_id3155361.181.help.text
+msgid "Length"
+msgstr "Length"
+
+#: 04060116.xhp#par_id3148925.182.help.text
+msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
+msgstr ""
+
+#: 04060116.xhp#par_id3158429.183.help.text
+msgctxt "04060116.xhp#par_id3158429.183.help.text"
+msgid "Time"
+msgstr "Time"
+
+#: 04060116.xhp#par_id3150707.184.help.text
+msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
+msgstr ""
+
+#: 04060116.xhp#par_id3153238.185.help.text
+msgid "Pressure"
+msgstr "Pressure"
+
+#: 04060116.xhp#par_id3166437.186.help.text
+msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
+msgstr ""
+
+#: 04060116.xhp#par_id3152944.187.help.text
+msgid "Force"
+msgstr "Force"
+
+#: 04060116.xhp#par_id3155582.188.help.text
+msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
+msgstr ""
+
+#: 04060116.xhp#par_id3153686.189.help.text
+msgid "Energy"
+msgstr "Energy"
+
+#: 04060116.xhp#par_id3153386.190.help.text
+msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
+msgstr ""
+
+#: 04060116.xhp#par_id3154100.191.help.text
+msgid "Power"
+msgstr "Power"
+
+#: 04060116.xhp#par_id3149915.192.help.text
+msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
+msgstr ""
+
+#: 04060116.xhp#par_id3148988.193.help.text
+msgid "Field strength"
+msgstr "Field strength"
+
+#: 04060116.xhp#par_id3148616.194.help.text
+msgid "<emph>T</emph>, <emph>ga</emph>"
+msgstr ""
+
+#: 04060116.xhp#par_id3151120.195.help.text
+msgid "Temperature"
+msgstr "Temperature"
+
+#: 04060116.xhp#par_id3148659.196.help.text
+msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
+msgstr ""
+
+#: 04060116.xhp#par_id3154610.197.help.text
+msgid "Volume"
+msgstr "Volume"
+
+#: 04060116.xhp#par_id3149423.198.help.text
+msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
+msgstr ""
+
+#: 04060116.xhp#par_id3149244.199.help.text
+msgid "Area"
+msgstr "Area"
+
+#: 04060116.xhp#par_id3150425.200.help.text
+msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
+msgstr ""
+
+#: 04060116.xhp#par_id3150629.201.help.text
+msgid "Speed"
+msgstr "Speed"
+
+#: 04060116.xhp#par_id3159246.202.help.text
+msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
+msgstr ""
+
+#: 04060116.xhp#par_id3150789.201.help.text
+msgid "Information"
+msgstr ""
+
+#: 04060116.xhp#par_id3159899.202.help.text
+msgid "<emph>bit</emph>, <emph>byte</emph>"
+msgstr ""
+
+#: 04060116.xhp#par_id3143277.203.help.text
+msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
+msgstr ""
+
+#: 04060116.xhp#par_id3148422.204.help.text
+msgid "Prefix"
+msgstr ""
+
+#: 04060116.xhp#par_id3148423.help.text
+msgid "Multiplier"
+msgstr ""
+
+#: 04060116.xhp#par_id3149490.help.text
+msgid "Y (yotta)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149931.help.text
+msgid "10^24"
+msgstr ""
+
+#: 04060116.xhp#par_id3149491.help.text
+msgid "Z (zetta)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149932.help.text
+msgid "10^21"
+msgstr ""
+
+#: 04060116.xhp#par_id3149492.help.text
+msgid "E (exa)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149933.help.text
+msgid "10^18"
+msgstr ""
+
+#: 04060116.xhp#par_id3149493.help.text
+msgid "P (peta)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149934.help.text
+msgid "10^15"
+msgstr ""
+
+#: 04060116.xhp#par_id3149494.help.text
+msgid "T (tera)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149935.help.text
+msgid "10^12"
+msgstr ""
+
+#: 04060116.xhp#par_id3149495.help.text
+msgid "G (giga)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149936.help.text
+msgid "10^9"
+msgstr ""
+
+#: 04060116.xhp#par_id3149496.help.text
+msgid "M (mega)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149937.help.text
+msgid "10^6"
+msgstr ""
+
+#: 04060116.xhp#par_id3149497.help.text
+msgid "k (kilo)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149938.help.text
+msgid "10^3"
+msgstr ""
+
+#: 04060116.xhp#par_id3149498.help.text
+msgid "h (hecto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149939.help.text
+msgid "10^2"
+msgstr ""
+
+#: 04060116.xhp#par_id3149499.help.text
+msgid "e (deca)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149940.help.text
+msgid "10^1"
+msgstr ""
+
+#: 04060116.xhp#par_id3149500.help.text
+msgid "d (deci)"
+msgstr ""
+
+#: 04060116.xhp#par_id3143940.help.text
+msgid "10^-1"
+msgstr ""
+
+#: 04060116.xhp#par_id3149501.help.text
+msgid "c (centi)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149941.help.text
+msgid "10^-2"
+msgstr ""
+
+#: 04060116.xhp#par_id3149502.help.text
+msgid "m (milli)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149942.help.text
+msgid "10^-3"
+msgstr ""
+
+#: 04060116.xhp#par_id3149503.help.text
+msgid "u (micro)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149943.help.text
+msgid "10^-6"
+msgstr ""
+
+#: 04060116.xhp#par_id3149504.help.text
+msgid "n (nano)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149944.help.text
+msgid "10^-9"
+msgstr ""
+
+#: 04060116.xhp#par_id3149505.help.text
+msgid "p (pico)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149945.help.text
+msgid "10^-12"
+msgstr ""
+
+#: 04060116.xhp#par_id3149506.help.text
+msgid "f (femto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149946.help.text
+msgid "10^-15"
+msgstr ""
+
+#: 04060116.xhp#par_id3149507.help.text
+msgid "a (atto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149947.help.text
+msgid "10^-18"
+msgstr ""
+
+#: 04060116.xhp#par_id3149508.help.text
+msgid "z (zepto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149948.help.text
+msgid "10^-21"
+msgstr ""
+
+#: 04060116.xhp#par_id3149509.help.text
+msgid "y (yocto)"
+msgstr ""
+
+#: 04060116.xhp#par_id3149949.help.text
+msgid "10^-24"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903061174.help.text
+msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
+msgstr "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
+
+#: 04060116.xhp#par_id0908200903090966.help.text
+msgid "ki kibi 1024"
+msgstr "ki kibi 1024"
+
+#: 04060116.xhp#par_id0908200903090958.help.text
+msgid "Mi mebi 1048576"
+msgstr "Mi mebi 1048576"
+
+#: 04060116.xhp#par_id0908200903090936.help.text
+msgid "Gi gibi 1073741824"
+msgstr "Gi gibi 1073741824"
+
+#: 04060116.xhp#par_id0908200903090975.help.text
+msgid "Ti tebi 1099511627776"
+msgstr "Ti tebi 1099511627776"
+
+#: 04060116.xhp#par_id0908200903090930.help.text
+msgid "Pi pebi 1125899906842620"
+msgstr "Pi pebi 1125899906842620"
+
+#: 04060116.xhp#par_id0908200903091070.help.text
+msgid "Ei exbi 1152921504606850000"
+msgstr "Ei exbi 1152921504606850000"
+
+#: 04060116.xhp#par_id0908200903091097.help.text
+msgid "Zi zebi 1180591620717410000000"
+msgstr "Zi zebi 1180591620717410000000"
+
+#: 04060116.xhp#par_id0908200903091010.help.text
+msgid "Yi yobi 1208925819614630000000000"
+msgstr "Yi yobi 1208925819614630000000000"
+
+#: 04060116.xhp#hd_id3146125.209.help.text
+msgctxt "04060116.xhp#hd_id3146125.209.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3153695.210.help.text
+msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
+msgstr "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
+
+#: 04060116.xhp#par_id3147522.211.help.text
+msgid " <emph>Number</emph> is the number to be converted."
+msgstr " <emph>Number</emph> is the number to be converted."
+
+#: 04060116.xhp#par_id3154472.212.help.text
+msgid " <emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr " <emph>FromUnit</emph> is the unit from which conversion is taking place."
+
+#: 04060116.xhp#par_id3153790.213.help.text
+msgid " <emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr " <emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+
+#: 04060116.xhp#hd_id3156270.214.help.text
+msgctxt "04060116.xhp#hd_id3156270.214.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: 04060116.xhp#par_id3156336.215.help.text
+msgid " <item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
+msgstr " <item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
+
+#: 04060116.xhp#par_id3154834.216.help.text
+msgid " <item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgstr " <item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+
+#: 04060116.xhp#bm_id3147096.help.text
+msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+msgstr "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+
+#: 04060116.xhp#hd_id3147096.36.help.text
+msgid "FACTDOUBLE"
+msgstr "FACTDOUBLE"
+
+#: 04060116.xhp#par_id3151309.37.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
+
+#: 04060116.xhp#hd_id3154666.38.help.text
+msgctxt "04060116.xhp#hd_id3154666.38.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060116.xhp#par_id3155121.39.help.text
+msgid "FACTDOUBLE(Number)"
+msgstr "FACTDOUBLE(Number)"
+
+#: 04060116.xhp#par_id3158440.40.help.text
+msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
+msgstr "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
+
+#: 04060116.xhp#par_id2480849.help.text
+msgid "For even numbers FACTDOUBLE(n) returns:"
+msgstr "For even numbers FACTDOUBLE(n) returns:"
+
+#: 04060116.xhp#par_id4181951.help.text
+msgid "2*4*6*8* ... *n"
+msgstr "2*4*6*8* ... *n"
+
+#: 04060116.xhp#par_id2927335.help.text
+msgid "For odd numbers FACTDOUBLE(n) returns:"
+msgstr "For odd numbers FACTDOUBLE(n) returns:"
+
+#: 04060116.xhp#par_id2107303.help.text
+msgid "1*3*5*7* ... *n"
+msgstr "1*3*5*7* ... *n"
+
+#: 04060116.xhp#par_id4071779.help.text
+msgid "FACTDOUBLE(0) returns 1 by definition."
+msgstr "FACTDOUBLE(0) returns 1 by definition."
+
+#: 04060116.xhp#hd_id3154622.42.help.text
+msgctxt "04060116.xhp#hd_id3154622.42.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060116.xhp#par_id7844477.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+msgstr " <item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+
+#: 04060116.xhp#par_id3154116.43.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+msgstr " <item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+
+#: 04060116.xhp#par_id6478469.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+msgstr " <item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+
+#: 05050100.xhp#tit.help.text
+msgctxt "05050100.xhp#tit.help.text"
+msgid "Rename Sheet"
+msgstr "Rename Sheet"
+
+#: 05050100.xhp#bm_id3147336.help.text
+msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
+msgstr "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
+
+#: 05050100.xhp#hd_id3147336.1.help.text
+msgctxt "05050100.xhp#hd_id3147336.1.help.text"
+msgid "Rename Sheet"
+msgstr "Rename Sheet"
+
+#: 05050100.xhp#par_id3150792.2.help.text
+msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
+msgstr "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialogue where you can assign a different name to the current sheet.</ahelp></variable>"
+
+#: 05050100.xhp#hd_id3153968.3.help.text
+msgctxt "05050100.xhp#hd_id3153968.3.help.text"
+msgid "Name"
+msgstr "Name"
+
+#: 05050100.xhp#par_id3155131.help.text
+msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
+
+#: 05050100.xhp#par_id3153092.5.help.text
+msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
+msgstr "You can also open the<emph> Rename Sheet </emph>dialogue through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
+
+#: 05050100.xhp#par_id3147396.6.help.text
+msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+msgstr "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+
+#: 07080000.xhp#tit.help.text
+msgid "Split"
+msgstr "Split"
+
+#: 07080000.xhp#hd_id3163800.1.help.text
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
+
+#: 07080000.xhp#par_id3150084.2.help.text
+msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
+
+#: 07080000.xhp#par_id3154910.3.help.text
+msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
+msgstr "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
+
+#: 07080000.xhp#par_id3149263.4.help.text
+msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
+msgstr "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
+
+#: func_now.xhp#tit.help.text
+msgid "NOW"
+msgstr "NOW"
+
+#: func_now.xhp#bm_id3150521.help.text
+msgid "<bookmark_value>NOW function</bookmark_value>"
+msgstr "<bookmark_value>NOW function</bookmark_value>"
+
+#: func_now.xhp#hd_id3150521.47.help.text
+msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
+msgstr "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
+
+#: func_now.xhp#par_id3148829.48.help.text
+msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
+msgstr "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
+
+#: func_now.xhp#hd_id3146988.49.help.text
+msgctxt "func_now.xhp#hd_id3146988.49.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_now.xhp#par_id3154897.50.help.text
+msgid "NOW()"
+msgstr "NOW()"
+
+#: func_now.xhp#par_id4598529.help.text
+msgid "NOW is a function without arguments."
+msgstr "NOW is a function without arguments."
+
+#: func_now.xhp#hd_id3154205.51.help.text
+msgctxt "func_now.xhp#hd_id3154205.51.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: func_now.xhp#par_id3150774.52.help.text
+msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
+msgstr "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
+
+#: 12120100.xhp#tit.help.text
+msgid "Criteria"
+msgstr "Criteria"
+
+#: 12120100.xhp#bm_id1464278.help.text
+msgid "<bookmark_value>selection lists;validity</bookmark_value>"
+msgstr "<bookmark_value>selection lists;validity</bookmark_value>"
+
+#: 12120100.xhp#hd_id3153032.1.help.text
+msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
+
+#: 12120100.xhp#par_id3156327.2.help.text
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
+
+#: 12120100.xhp#par_id3155923.4.help.text
+msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
+msgstr "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
+
+#: 12120100.xhp#hd_id3153896.5.help.text
+msgid "Allow"
+msgstr "Allow"
+
+#: 12120100.xhp#par_id3150400.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
+
+#: 12120100.xhp#par_id3148797.17.help.text
+msgid "The following conditions are available:"
+msgstr "The following conditions are available:"
+
+#: 12120100.xhp#par_id3150447.18.help.text
+msgctxt "12120100.xhp#par_id3150447.18.help.text"
+msgid "Condition"
+msgstr "Condition"
+
+#: 12120100.xhp#par_id3155854.19.help.text
+msgid "Effect"
+msgstr "Effect"
+
+#: 12120100.xhp#par_id3153092.20.help.text
+msgid "All values"
+msgstr "All values"
+
+#: 12120100.xhp#par_id3155411.21.help.text
+msgid "No limitation."
+msgstr "No limitation."
+
+#: 12120100.xhp#par_id3147434.22.help.text
+msgid "Whole number"
+msgstr "Whole number"
+
+#: 12120100.xhp#par_id3154319.23.help.text
+msgid "Only whole numbers corresponding to the condition."
+msgstr "Only whole numbers corresponding to the condition."
+
+#: 12120100.xhp#par_id3145802.24.help.text
+msgid "Decimal"
+msgstr "Decimal"
+
+#: 12120100.xhp#par_id3153160.25.help.text
+msgid "All numbers corresponding to the condition."
+msgstr "All numbers corresponding to the condition."
+
+#: 12120100.xhp#par_id3149377.26.help.text
+msgctxt "12120100.xhp#par_id3149377.26.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 12120100.xhp#par_id3150718.27.help.text
+msgctxt "12120100.xhp#par_id3150718.27.help.text"
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgstr "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialogue is called up."
+
+#: 12120100.xhp#par_id3146969.28.help.text
+msgctxt "12120100.xhp#par_id3146969.28.help.text"
+msgid "Time"
+msgstr "Time"
+
+#: 12120100.xhp#par_id3155066.29.help.text
+msgctxt "12120100.xhp#par_id3155066.29.help.text"
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgstr "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialogue is called up."
+
+#: 12120100.xhp#par_idN106A0.help.text
+msgid "Cell range"
+msgstr "Cell range"
+
+#: 12120100.xhp#par_idN106A5.help.text
+msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
+msgstr "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
+
+#: 12120100.xhp#par_idN106AB.help.text
+msgid "List"
+msgstr "List"
+
+#: 12120100.xhp#par_idN106B0.help.text
+msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
+msgstr "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
+
+#: 12120100.xhp#par_id3154756.30.help.text
+msgid "Text length"
+msgstr "Text length"
+
+#: 12120100.xhp#par_id3147339.31.help.text
+msgid "Entries whose length corresponds to the condition."
+msgstr "Entries whose length corresponds to the condition."
+
+#: 12120100.xhp#hd_id3154704.7.help.text
+msgid "Allow blank cells"
+msgstr "Allow blank cells"
+
+#: 12120100.xhp#par_id3153967.8.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
+
+#: 12120100.xhp#par_idN10709.help.text
+msgid "Show selection list"
+msgstr "Show selection list"
+
+#: 12120100.xhp#par_idN1070D.help.text
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
+
+#: 12120100.xhp#par_idN10724.help.text
+msgid "Sort entries ascending"
+msgstr "Sort entries ascending"
+
+#: 12120100.xhp#par_idN10728.help.text
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
+
+#: 12120100.xhp#par_idN1073F.help.text
+msgid "Source"
+msgstr "Source"
+
+#: 12120100.xhp#par_idN10743.help.text
+msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
+msgstr "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
+
+#: 12120100.xhp#par_idN1075A.help.text
+msgid "Entries"
+msgstr "Entries"
+
+#: 12120100.xhp#par_idN1075E.help.text
+msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
+msgstr "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
+
+#: 12120100.xhp#hd_id3163807.9.help.text
+msgid "Data"
+msgstr "Data"
+
+#: 12120100.xhp#par_id3144502.10.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
+
+#: 12120100.xhp#hd_id3153782.11.help.text
+msgctxt "12120100.xhp#hd_id3153782.11.help.text"
+msgid "Value"
+msgstr "Value"
+
+#: 12120100.xhp#par_id3153266.12.help.text
+msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
+msgstr "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
+
+#: 12120100.xhp#hd_id3149814.13.help.text
+msgid "Minimum"
+msgstr "Minimum"
+
+#: 12120100.xhp#par_id3153199.14.help.text
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+
+#: 12120100.xhp#hd_id3149035.15.help.text
+msgid "Maximum"
+msgstr "Maximum"
+
+#: 12120100.xhp#par_id3150089.16.help.text
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+
+#: 12080200.xhp#tit.help.text
+msgid "Show Details"
+msgstr "Show Details"
+
+#: 12080200.xhp#bm_id3153561.help.text
+msgid "<bookmark_value>tables; showing details</bookmark_value>"
+msgstr "<bookmark_value>tables; showing details</bookmark_value>"
+
+#: 12080200.xhp#hd_id3153561.1.help.text
+msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+
+#: 12080200.xhp#par_id3153822.2.help.text
+msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
+
+#: 12080200.xhp#par_id3155922.3.help.text
+msgid "To hide a selected group, choose <emph>Data -Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
+msgstr "To hide a selected group, choose <emph>Data -Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
+
+#: 12080200.xhp#par_id6036561.help.text
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
+msgstr ""
+
+#: 05030200.xhp#tit.help.text
+msgctxt "05030200.xhp#tit.help.text"
+msgid "Optimal Row Heights"
+msgstr "Optimal Row Heights"
+
+#: 05030200.xhp#bm_id3148491.help.text
+msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
+msgstr "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
+
+#: 05030200.xhp#hd_id3148491.1.help.text
+msgctxt "05030200.xhp#hd_id3148491.1.help.text"
+msgid "Optimal Row Heights"
+msgstr "Optimal Row Heights"
+
+#: 05030200.xhp#par_id3154758.2.help.text
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
+
+#: 05030200.xhp#hd_id3154908.3.help.text
+msgctxt "05030200.xhp#hd_id3154908.3.help.text"
+msgid "Add"
+msgstr "Add"
+
+#: 05030200.xhp#par_id3151044.4.help.text
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
+msgstr "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
+
+#: 05030200.xhp#hd_id3150439.5.help.text
+msgctxt "05030200.xhp#hd_id3150439.5.help.text"
+msgid "Default value"
+msgstr "Default value"
+
+#: 05030200.xhp#par_id3146984.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
+
+#: 04060111.xhp#tit.help.text
+msgctxt "04060111.xhp#tit.help.text"
+msgid "Add-in Functions"
+msgstr "Add-in Functions"
+
+#: 04060111.xhp#bm_id3150870.help.text
+msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
+msgstr "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
+
+#: 04060111.xhp#hd_id3150870.1.help.text
+msgctxt "04060111.xhp#hd_id3150870.1.help.text"
+msgid "Add-in Functions"
+msgstr "Add-in Functions"
+
+#: 04060111.xhp#par_id3147427.2.help.text
+msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
+msgstr "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
+
+#: 04060111.xhp#par_id3163713.75.help.text
+msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+msgstr "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+
+#: 04060111.xhp#par_id3146120.5.help.text
+msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
+msgstr "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
+
+#: 04060111.xhp#hd_id3151075.7.help.text
+msgid "Add-ins supplied"
+msgstr "Add-ins supplied"
+
+#: 04060111.xhp#par_id3156285.8.help.text
+msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
+msgstr "$[officename] contains examples for the add-in interface of $[officename] Calc."
+
+#: 04060111.xhp#par_id3159267.76.help.text
+msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+
+#: 04060111.xhp#par_id3154703.77.help.text
+msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+
+#: 04060111.xhp#bm_id3149566.help.text
+msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
+msgstr "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
+
+#: 04060111.xhp#hd_id3149566.14.help.text
+msgid "ISLEAPYEAR"
+msgstr "ISLEAPYEAR"
+
+#: 04060111.xhp#par_id3150297.15.help.text
+msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
+msgstr "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
+
+#: 04060111.xhp#hd_id3148487.16.help.text
+msgctxt "04060111.xhp#hd_id3148487.16.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060111.xhp#par_id3150205.17.help.text
+msgid "ISLEAPYEAR(\"Date\")"
+msgstr "ISLEAPYEAR(\"Date\")"
+
+#: 04060111.xhp#par_id3159239.18.help.text
+msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+
+#: 04060111.xhp#hd_id3149817.19.help.text
+msgctxt "04060111.xhp#hd_id3149817.19.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060111.xhp#par_id3150786.20.help.text
+msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
+msgstr "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
+
+#: 04060111.xhp#par_idN107E7.help.text
+msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
+msgstr "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
+
+#: 04060111.xhp#par_idN107EA.help.text
+msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
+msgstr "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
+
+#: 04060111.xhp#bm_id3154656.help.text
+msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
+msgstr "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
+
+#: 04060111.xhp#hd_id3154656.21.help.text
+msgid "YEARS"
+msgstr "YEARS"
+
+#: 04060111.xhp#par_id3150886.22.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+
+#: 04060111.xhp#hd_id3154370.23.help.text
+msgctxt "04060111.xhp#hd_id3154370.23.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060111.xhp#par_id3146114.24.help.text
+msgid "YEARS(StartDate; EndDate; Type)"
+msgstr "YEARS(StartDate; EndDate; Type)"
+
+#: 04060111.xhp#par_id3145387.25.help.text
+msgctxt "04060111.xhp#par_id3145387.25.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>StartDate</emph> is the first date"
+
+#: 04060111.xhp#par_id3156290.26.help.text
+msgctxt "04060111.xhp#par_id3156290.26.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>EndDate</emph> is the second date"
+
+#: 04060111.xhp#par_id3152893.27.help.text
+msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
+msgstr "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
+
+#: 04060111.xhp#bm_id3152898.help.text
+msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
+msgstr "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
+
+#: 04060111.xhp#hd_id3152898.28.help.text
+msgid "MONTHS"
+msgstr "MONTHS"
+
+#: 04060111.xhp#par_id3153066.29.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+
+#: 04060111.xhp#hd_id3151240.30.help.text
+msgctxt "04060111.xhp#hd_id3151240.30.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060111.xhp#par_id3146869.31.help.text
+msgid "MONTHS(StartDate; EndDate; Type)"
+msgstr "MONTHS(StartDate; EndDate; Type)"
+
+#: 04060111.xhp#par_id3145075.32.help.text
+msgctxt "04060111.xhp#par_id3145075.32.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>StartDate</emph> is the first date"
+
+#: 04060111.xhp#par_id3157981.33.help.text
+msgctxt "04060111.xhp#par_id3157981.33.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>EndDate</emph> is the second date"
+
+#: 04060111.xhp#par_id3150111.34.help.text
+msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
+msgstr "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
+
+#: 04060111.xhp#bm_id3159094.help.text
+msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
+msgstr "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
+
+#: 04060111.xhp#hd_id3159094.35.help.text
+msgid "ROT13"
+msgstr "ROT13"
+
+#: 04060111.xhp#par_id3146781.36.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
+msgstr "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
+
+#: 04060111.xhp#hd_id3150893.37.help.text
+msgctxt "04060111.xhp#hd_id3150893.37.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060111.xhp#par_id3159205.38.help.text
+msgid "ROT13(Text)"
+msgstr "ROT13(Text)"
+
+#: 04060111.xhp#par_id3153249.39.help.text
+msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
+msgstr "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
+
+#: 04060111.xhp#bm_id3151300.help.text
+msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+msgstr "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+
+#: 04060111.xhp#hd_id3151300.43.help.text
+msgid "DAYSINYEAR"
+msgstr "DAYSINYEAR"
+
+#: 04060111.xhp#par_id3143220.44.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
+
+#: 04060111.xhp#hd_id3145358.45.help.text
+msgctxt "04060111.xhp#hd_id3145358.45.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060111.xhp#par_id3154651.46.help.text
+msgid "DAYSINYEAR(Date)"
+msgstr "DAYSINYEAR(Date)"
+
+#: 04060111.xhp#par_id3153803.47.help.text
+msgctxt "04060111.xhp#par_id3153803.47.help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+
+#: 04060111.xhp#hd_id3153487.48.help.text
+msgctxt "04060111.xhp#hd_id3153487.48.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060111.xhp#par_id3153811.49.help.text
+msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
+msgstr "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
+
+#: 04060111.xhp#bm_id3154737.help.text
+msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
+msgstr "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
+
+#: 04060111.xhp#hd_id3154737.50.help.text
+msgid "DAYSINMONTH"
+msgstr "DAYSINMONTH"
+
+#: 04060111.xhp#par_id3149316.51.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
+
+#: 04060111.xhp#hd_id3145114.52.help.text
+msgctxt "04060111.xhp#hd_id3145114.52.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060111.xhp#par_id3150955.53.help.text
+msgid "DAYSINMONTH(Date)"
+msgstr "DAYSINMONTH(Date)"
+
+#: 04060111.xhp#par_id3147501.54.help.text
+msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+
+#: 04060111.xhp#hd_id3149871.55.help.text
+msgctxt "04060111.xhp#hd_id3149871.55.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060111.xhp#par_id3155742.56.help.text
+msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
+msgstr "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
+
+#: 04060111.xhp#bm_id3149048.help.text
+msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
+msgstr "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
+
+#: 04060111.xhp#hd_id3149048.57.help.text
+msgid "WEEKS"
+msgstr "WEEKS"
+
+#: 04060111.xhp#par_id3153340.58.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
+msgstr "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
+
+#: 04060111.xhp#hd_id3150393.59.help.text
+msgctxt "04060111.xhp#hd_id3150393.59.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060111.xhp#par_id3147402.60.help.text
+msgid "WEEKS(StartDate; EndDate; Type)"
+msgstr "WEEKS(StartDate; EndDate; Type)"
+
+#: 04060111.xhp#par_id3151387.61.help.text
+msgctxt "04060111.xhp#par_id3151387.61.help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "<emph>StartDate</emph> is the first date"
+
+#: 04060111.xhp#par_id3146324.62.help.text
+msgctxt "04060111.xhp#par_id3146324.62.help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "<emph>EndDate</emph> is the second date"
+
+#: 04060111.xhp#par_id3166467.63.help.text
+msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
+msgstr "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
+
+#: 04060111.xhp#bm_id3145237.help.text
+msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
+msgstr "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
+
+#: 04060111.xhp#hd_id3145237.64.help.text
+msgid "WEEKSINYEAR"
+msgstr "WEEKSINYEAR"
+
+#: 04060111.xhp#par_id3147410.65.help.text
+msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
+msgstr "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
+
+#: 04060111.xhp#hd_id3149719.66.help.text
+msgctxt "04060111.xhp#hd_id3149719.66.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060111.xhp#par_id3145638.67.help.text
+msgid "WEEKSINYEAR(Date)"
+msgstr "WEEKSINYEAR(Date)"
+
+#: 04060111.xhp#par_id3149946.68.help.text
+msgctxt "04060111.xhp#par_id3149946.68.help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+
+#: 04060111.xhp#hd_id3150037.69.help.text
+msgctxt "04060111.xhp#hd_id3150037.69.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: 04060111.xhp#par_id3147614.70.help.text
+msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
+msgstr "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
+
+#: 04060111.xhp#hd_id3157901.72.help.text
+msgid "Add-ins through %PRODUCTNAME API"
+msgstr "Add-ins through %PRODUCTNAME API"
+
+#: 04060111.xhp#par_id3149351.73.help.text
+#, fuzzy
+msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
+msgstr "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.openoffice.org/\">API</link>."
+
+#: 04060102.xhp#tit.help.text
+msgctxt "04060102.xhp#tit.help.text"
+msgid "Date & Time Functions"
+msgstr "Date & Time Functions"
+
+#: 04060102.xhp#bm_id3154536.help.text
+msgid "<bookmark_value>date and time functions</bookmark_value><bookmark_value>functions; date & time</bookmark_value><bookmark_value>Function Wizard; date & time</bookmark_value>"
+msgstr "<bookmark_value>date and time functions</bookmark_value><bookmark_value>functions; date & time</bookmark_value><bookmark_value>Function Wizard; date & time</bookmark_value>"
+
+#: 04060102.xhp#hd_id3154536.1.help.text
+msgctxt "04060102.xhp#hd_id3154536.1.help.text"
+msgid "Date & Time Functions"
+msgstr "Date & Time Functions"
+
+#: 04060102.xhp#par_id3153973.2.help.text
+msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
+msgstr "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
+
+#: 04060102.xhp#par_idN10600.help.text
+msgid "The functions whose names end with _ADD return the same results as the corresponding Microsoft Excel functions. Use the functions without _ADD to get results based on international standards. For example, the WEEKNUM function calculates the week number of a given date based on international standard ISO 8601, while WEEKNUM_ADD returns the same week number as Microsoft Excel."
+msgstr "The functions whose names end with _ADD return the same results as the corresponding Microsoft Excel functions. Use the functions without _ADD to get results based on international standards. For example, the WEEKNUM function calculates the week number of a given date based on international standard ISO 8601, while WEEKNUM_ADD returns the same week number as Microsoft Excel."
+
+#: 04060102.xhp#par_id3150437.170.help.text
+msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
+msgstr "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
+
+#: 04060102.xhp#hd_id2408825.help.text
+msgid "Date base for day zero"
+msgstr "Date base for day zero"
+
+#: 04060102.xhp#par_id9988402.help.text
+msgid "Dates are calculated as offsets from a starting day zero. You can set the day zero to be one of the following:"
+msgstr "Dates are calculated as offsets from a starting day zero. You can set the day zero to be one of the following:"
+
+#: 04060102.xhp#par_id6401257.help.text
+msgid "Date base"
+msgstr "Date base"
+
+#: 04060102.xhp#par_id5841242.help.text
+msgid "Use"
+msgstr "Use"
+
+#: 04060102.xhp#par_id6794030.help.text
+msgid "'12/30/1899'"
+msgstr "'12/30/1899'"
+
+#: 04060102.xhp#par_id7096774.help.text
+msgid "(default)"
+msgstr "(default)"
+
+#: 04060102.xhp#par_id5699942.help.text
+msgid "'01/01/1900'"
+msgstr "'01/01/1900'"
+
+#: 04060102.xhp#par_id6420484.help.text
+msgid "(used in former StarCalc 1.0)"
+msgstr "(used in former StarCalc 1.0)"
+
+#: 04060102.xhp#par_id6986602.help.text
+msgid "'01/01/1904'"
+msgstr "'01/01/1904'"
+
+#: 04060102.xhp#par_id616779.help.text
+msgid "(used in Apple software)"
+msgstr "(used in Apple software)"
+
+#: 04060102.xhp#par_id791039.help.text
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> to select the date base."
+msgstr "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> to select the date base."
+
+#: 04060102.xhp#par_id1953489.help.text
+msgid "When you copy and paste cells containing date values between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+msgstr "When you copy and paste cells containing date values between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
+
+#: 04060102.xhp#hd_id757469.help.text
+msgid "Two digits years"
+msgstr "Two digits years"
+
+#: 04060102.xhp#par_id3149720.183.help.text
+msgid "In <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
+msgstr "In <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
+
+#: 04060102.xhp#par_id3150654.185.help.text
+msgid "When entering dates, slashes or dashes used as date separators may be interpreted as arithmetic operators. Therefore, dates entered in this format are not always recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas, place them in quotation marks, for example, \"07/20/54\"."
+msgstr "When entering dates, slashes or dashes used as date separators may be interpreted as arithmetic operators. Therefore, dates entered in this format are not always recognised as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulae, place them in quotation marks, for example, \"07/20/54\"."
+
+#: 04060102.xhp#par_idN1067A.help.text
+msgid "Functions"
+msgstr "Functions"
+
+#: 04060102.xhp#par_idN10683.help.text
+msgid "<embedvar href=\"text/scalc/01/func_workday.xhp#workday\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_workday.xhp#workday\"/>"
+
+#: 04060102.xhp#par_id5189062.help.text
+msgid "<embedvar href=\"text/scalc/01/func_yearfrac.xhp#yearfrac\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_yearfrac.xhp#yearfrac\"/>"
+
+#: 04060102.xhp#par_id6854457.help.text
+msgid "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
+
+#: 04060102.xhp#par_id6354457.help.text
+#, fuzzy
+msgid "<embedvar href=\"text/scalc/01/func_datedif.xhp#datedif\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_date.xhp#date\"/>"
+
+#: 04060102.xhp#par_id3372295.help.text
+msgid "<embedvar href=\"text/scalc/01/func_datevalue.xhp#datevalue\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_datevalue.xhp#datevalue\"/>"
+
+#: 04060102.xhp#par_id5684377.help.text
+msgid "<embedvar href=\"text/scalc/01/func_edate.xhp#edate\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_edate.xhp#edate\"/>"
+
+#: 04060102.xhp#par_id7576525.help.text
+msgid "<embedvar href=\"text/scalc/01/func_today.xhp#today\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_today.xhp#today\"/>"
+
+#: 04060102.xhp#par_id641193.help.text
+msgid "<embedvar href=\"text/scalc/01/func_year.xhp#year\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_year.xhp#year\"/>"
+
+#: 04060102.xhp#par_id6501968.help.text
+msgid "<embedvar href=\"text/scalc/01/func_now.xhp#now\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_now.xhp#now\"/>"
+
+#: 04060102.xhp#par_id3886532.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weeknum.xhp#weeknum\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_weeknum.xhp#weeknum\"/>"
+
+#: 04060102.xhp#par_id614947.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weeknumadd.xhp#weeknumadd\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_weeknumadd.xhp#weeknumadd\"/>"
+
+#: 04060102.xhp#par_id3953062.help.text
+msgid "<embedvar href=\"text/scalc/01/func_minute.xhp#minute\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_minute.xhp#minute\"/>"
+
+#: 04060102.xhp#par_id2579729.help.text
+msgid "<embedvar href=\"text/scalc/01/func_month.xhp#month\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_month.xhp#month\"/>"
+
+#: 04060102.xhp#par_id1346781.help.text
+msgid "<embedvar href=\"text/scalc/01/func_eomonth.xhp#eomonth\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_eomonth.xhp#eomonth\"/>"
+
+#: 04060102.xhp#par_id8951384.help.text
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.xhp#networkdays\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_networkdays.xhp#networkdays\"/>"
+
+#: 04060102.xhp#par_id1074251.help.text
+msgid "<embedvar href=\"text/scalc/01/func_eastersunday.xhp#eastersunday\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_eastersunday.xhp#eastersunday\"/>"
+
+#: 04060102.xhp#par_id372325.help.text
+msgid "<embedvar href=\"text/scalc/01/func_second.xhp#second\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_second.xhp#second\"/>"
+
+#: 04060102.xhp#par_id224005.help.text
+msgid "<embedvar href=\"text/scalc/01/func_hour.xhp#hour\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_hour.xhp#hour\"/>"
+
+#: 04060102.xhp#par_id5375835.help.text
+msgid "<embedvar href=\"text/scalc/01/func_day.xhp#day\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_day.xhp#day\"/>"
+
+#: 04060102.xhp#par_id1208838.help.text
+msgid "<embedvar href=\"text/scalc/01/func_days.xhp#days\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_days.xhp#days\"/>"
+
+#: 04060102.xhp#par_id7679982.help.text
+msgid "<embedvar href=\"text/scalc/01/func_days360.xhp#days360\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_days360.xhp#days360\"/>"
+
+#: 04060102.xhp#par_id9172643.help.text
+msgid "<embedvar href=\"text/scalc/01/func_weekday.xhp#weekday\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_weekday.xhp#weekday\"/>"
+
+#: 04060102.xhp#par_id2354503.help.text
+msgid "<embedvar href=\"text/scalc/01/func_time.xhp#time\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_time.xhp#time\"/>"
+
+#: 04060102.xhp#par_id7765434.help.text
+msgid "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
+msgstr "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
+
+#: 12080400.xhp#tit.help.text
+msgid "Ungroup"
+msgstr "Ungroup"
+
+#: 12080400.xhp#hd_id3148492.1.help.text
+msgctxt "12080400.xhp#hd_id3148492.1.help.text"
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+
+#: 12080400.xhp#par_id3151384.2.help.text
+msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
+msgstr "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
+
+#: 12080400.xhp#hd_id3151210.3.help.text
+msgid "Deactivate for"
+msgstr "Deactivate for"
+
+#: 12080400.xhp#hd_id3156280.5.help.text
+msgctxt "12080400.xhp#hd_id3156280.5.help.text"
+msgid "Rows"
+msgstr "Rows"
+
+#: 12080400.xhp#par_id3125864.6.help.text
+msgid "Removes selected rows from a group."
+msgstr "Removes selected rows from a group."
+
+#: 12080400.xhp#hd_id3147230.7.help.text
+msgctxt "12080400.xhp#hd_id3147230.7.help.text"
+msgid "Columns"
+msgstr "Columns"
+
+#: 12080400.xhp#par_id3154685.8.help.text
+msgid "Removes selected columns from a group."
+msgstr "Removes selected columns from a group."
+
+#: func_eastersunday.xhp#tit.help.text
+msgid "EASTERSUNDAY"
+msgstr "EASTERSUNDAY"
+
+#: func_eastersunday.xhp#bm_id3152960.help.text
+msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
+msgstr "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
+
+#: func_eastersunday.xhp#hd_id3152960.175.help.text
+msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
+msgstr "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
+
+#: func_eastersunday.xhp#par_id3154570.176.help.text
+msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
+
+#: func_eastersunday.xhp#hd_id9460127.help.text
+msgctxt "func_eastersunday.xhp#hd_id9460127.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_eastersunday.xhp#par_id2113711.help.text
+msgid "EASTERSUNDAY(Year)"
+msgstr "EASTERSUNDAY(Year)"
+
+#: func_eastersunday.xhp#par_id3938413.help.text
+msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
+msgstr "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
+
+#: func_eastersunday.xhp#par_id3156156.177.help.text
+msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
+msgstr "Easter Monday = EASTERSUNDAY(Year) + 1"
+
+#: func_eastersunday.xhp#par_id3147521.178.help.text
+msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgstr "Good Friday = EASTERSUNDAY(Year) - 2"
+
+#: func_eastersunday.xhp#par_id3146072.179.help.text
+msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+msgstr "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+
+#: func_eastersunday.xhp#par_id3149553.180.help.text
+msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+msgstr "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+
+#: func_eastersunday.xhp#hd_id3155120.181.help.text
+msgctxt "func_eastersunday.xhp#hd_id3155120.181.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_eastersunday.xhp#par_id3154472.182.help.text
+msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
+msgstr "=EASTERSUNDAY(2000) returns 2000-04-23."
+
+#: func_eastersunday.xhp#par_id3150940.184.help.text
+msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+
+#: 05080300.xhp#tit.help.text
+msgctxt "05080300.xhp#tit.help.text"
+msgid "Edit Print Ranges"
+msgstr "Edit Print Ranges"
+
+#: 05080300.xhp#hd_id3153088.1.help.text
+msgctxt "05080300.xhp#hd_id3153088.1.help.text"
+msgid "Edit Print Ranges"
+msgstr "Edit Print Ranges"
+
+#: 05080300.xhp#par_id3159488.2.help.text
+msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
+msgstr "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialogue where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
+
+#: 05080300.xhp#par_idN105AE.help.text
+msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+
+#: 05080300.xhp#hd_id3156281.3.help.text
+msgctxt "05080300.xhp#hd_id3156281.3.help.text"
+msgid "Print range"
+msgstr "Print range"
+
+#: 05080300.xhp#par_id3147228.4.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
+
+#: 05080300.xhp#par_id3145174.5.help.text
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+
+#: 05080300.xhp#par_id3145272.6.help.text
+msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
+msgstr "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
+
+#: 05080300.xhp#hd_id3149260.7.help.text
+msgid "Rows to repeat"
+msgstr "Rows to repeat"
+
+#: 05080300.xhp#par_id3147426.8.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
+
+#: 05080300.xhp#par_id3155418.9.help.text
+msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
+msgstr "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialogue."
+
+#: 05080300.xhp#hd_id3149581.10.help.text
+msgid "Columns to repeat"
+msgstr "Columns to repeat"
+
+#: 05080300.xhp#par_id3155602.11.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
+
+#: 05080300.xhp#par_id3150749.12.help.text
+msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
+msgstr "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialogue."
+
+#: func_year.xhp#tit.help.text
+msgid "YEAR"
+msgstr "YEAR"
+
+#: func_year.xhp#bm_id3153982.help.text
+msgid "<bookmark_value>YEAR function</bookmark_value>"
+msgstr "<bookmark_value>YEAR function</bookmark_value>"
+
+#: func_year.xhp#hd_id3153982.37.help.text
+msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+
+#: func_year.xhp#par_id3147496.38.help.text
+msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
+
+#: func_year.xhp#hd_id3146090.39.help.text
+msgctxt "func_year.xhp#hd_id3146090.39.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_year.xhp#par_id3154304.40.help.text
+msgid "YEAR(Number)"
+msgstr "YEAR(Number)"
+
+#: func_year.xhp#par_id3156013.41.help.text
+msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
+msgstr "<emph>Number</emph> shows the internal date value for which the year is to be returned."
+
+#: func_year.xhp#hd_id3152797.42.help.text
+msgctxt "func_year.xhp#hd_id3152797.42.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_year.xhp#par_id3145668.43.help.text
+msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
+msgstr "<item type=\"input\">=YEAR(1)</item> returns 1899"
+
+#: func_year.xhp#par_id3151168.44.help.text
+msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
+msgstr "<item type=\"input\">=YEAR(2)</item> returns 1900"
+
+#: func_year.xhp#par_id3150115.45.help.text
+msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+msgstr "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+
+#: 06030400.xhp#tit.help.text
+msgid "Remove Dependents"
+msgstr "Remove Dependents"
+
+#: 06030400.xhp#bm_id3147335.help.text
+msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
+msgstr "<bookmark_value>cells; removing dependents</bookmark_value>"
+
+#: 06030400.xhp#hd_id3147335.1.help.text
+msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+
+#: 06030400.xhp#par_id3148663.2.help.text
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
+
+#: 06050000.xhp#tit.help.text
+msgctxt "06050000.xhp#tit.help.text"
+msgid "Create Scenario"
+msgstr "Create Scenario"
+
+#: 06050000.xhp#hd_id3156023.1.help.text
+msgctxt "06050000.xhp#hd_id3156023.1.help.text"
+msgid "Create Scenario"
+msgstr "Create Scenario"
+
+#: 06050000.xhp#par_id3150541.2.help.text
+msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
+msgstr "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
+
+#: 06050000.xhp#par_idN10637.help.text
+msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+
+#: 06050000.xhp#hd_id3156280.3.help.text
+msgid "Name of scenario"
+msgstr "Name of scenario"
+
+#: 06050000.xhp#par_id3151041.13.help.text
+msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
+msgstr "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
+
+#: 06050000.xhp#hd_id3153954.14.help.text
+msgid "Comment"
+msgstr "Comment"
+
+#: 06050000.xhp#par_id3155411.15.help.text
+msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
+msgstr "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
+
+#: 06050000.xhp#hd_id3145273.16.help.text
+msgid "Settings"
+msgstr "Settings"
+
+#: 06050000.xhp#par_id3153364.17.help.text
+msgid "This section is used to define some of the settings used in the scenario display."
+msgstr "This section is used to define some of the settings used in the scenario display."
+
+#: 06050000.xhp#hd_id3145367.18.help.text
+msgid "Display border"
+msgstr "Display border"
+
+#: 06050000.xhp#par_id3151073.19.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The colour for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
+
+#: 06050000.xhp#hd_id3149582.20.help.text
+msgid "Copy back"
+msgstr "Copy back"
+
+#: 06050000.xhp#par_id3154942.21.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behaviour of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+
+#: 06050000.xhp#hd_id3149402.22.help.text
+msgid "Copy entire sheet"
+msgstr "Copy entire sheet"
+
+#: 06050000.xhp#par_id3146969.23.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
+
+#: 06050000.xhp#par_idN1075A.help.text
+msgid "Prevent changes"
+msgstr "Prevent changes"
+
+#: 06050000.xhp#par_idN1075E.help.text
+msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgstr "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behaviour of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+
+#: 06050000.xhp#par_idN10778.help.text
+msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
+msgstr "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
+
+#: 06050000.xhp#par_idN10780.help.text
+msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
+msgstr "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
+
+#: 06050000.xhp#par_idN1078C.help.text
+msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
+msgstr "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
+
+#: 12040500.xhp#tit.help.text
+msgid "Hide AutoFilter"
+msgstr "Hide AutoFilter"
+
+#: 12040500.xhp#bm_id3150276.help.text
+msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
+msgstr "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
+
+#: 12040500.xhp#hd_id3150276.1.help.text
+msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
+
+#: 12040500.xhp#par_id3156326.2.help.text
+msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
+
+#: 02170000.xhp#tit.help.text
+msgid "Delete Sheet"
+msgstr "Delete Sheet"
+
+#: 02170000.xhp#bm_id3156424.help.text
+msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
+
+#: 02170000.xhp#hd_id3156424.1.help.text
+msgid " Delete Sheet"
+msgstr " Delete Sheet"
+
+#: 02170000.xhp#par_id3153193.2.help.text
+msgid "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
+msgstr "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
+
+#: 02170000.xhp#par_id3145801.7.help.text
+msgid "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
+msgstr "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
+
+#: 02170000.xhp#hd_id3147124.3.help.text
+msgid "Yes"
+msgstr "Yes"
+
+#: 02170000.xhp#par_id3154943.4.help.text
+msgid "Deletes the current sheet."
+msgstr "Deletes the current sheet."
+
+#: 02170000.xhp#hd_id3149412.5.help.text
+msgid "No"
+msgstr "No"
+
+#: 02170000.xhp#par_id3154510.6.help.text
+msgid "Cancels the dialog. No delete is performed."
+msgstr "Cancels the dialogue. No delete is performed."
+
+#: 04070300.xhp#tit.help.text
+msgctxt "04070300.xhp#tit.help.text"
+msgid "Creating Names"
+msgstr "Creating Names"
+
+#: 04070300.xhp#bm_id3147264.help.text
+msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
+msgstr "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
+
+#: 04070300.xhp#hd_id3147264.1.help.text
+msgctxt "04070300.xhp#hd_id3147264.1.help.text"
+msgid "Creating Names"
+msgstr "Creating Names"
+
+#: 04070300.xhp#par_id3153969.2.help.text
+msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
+msgstr "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
+
+#: 04070300.xhp#par_id3156280.13.help.text
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialogue, from which you can select the naming options that you want."
+
+#: 04070300.xhp#hd_id3151116.3.help.text
+msgid "Create names from"
+msgstr "Create names from"
+
+#: 04070300.xhp#par_id3152597.4.help.text
+msgid "Defines which part of the spreadsheet is to be used for creating the name."
+msgstr "Defines which part of the spreadsheet is to be used for creating the name."
+
+#: 04070300.xhp#hd_id3153729.5.help.text
+msgid "Top row"
+msgstr "Top row"
+
+#: 04070300.xhp#par_id3149263.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
+
+#: 04070300.xhp#hd_id3146984.7.help.text
+msgid "Left Column"
+msgstr "Left Column"
+
+#: 04070300.xhp#par_id3153190.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+
+#: 04070300.xhp#hd_id3156284.9.help.text
+msgid "Bottom row"
+msgstr "Bottom row"
+
+#: 04070300.xhp#par_id3147124.10.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
+
+#: 04070300.xhp#hd_id3154731.11.help.text
+msgid "Right Column"
+msgstr "Right Column"
+
+#: 04070300.xhp#par_id3153158.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+
+#: 06030000.xhp#tit.help.text
+msgid "Detective"
+msgstr "Detective"
+
+#: 06030000.xhp#bm_id3151245.help.text
+msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
+msgstr "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
+
+#: 06030000.xhp#hd_id3151245.1.help.text
+msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+
+#: 06030000.xhp#par_id3151211.2.help.text
+msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
+msgstr "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
+
+#: 06030000.xhp#par_id3150447.3.help.text
+msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace. "
+msgstr "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace. "
+
+#: 03080000.xhp#tit.help.text
+msgid "Value Highlighting"
+msgstr "Value Highlighting"
+
+#: 03080000.xhp#bm_id3151384.help.text
+msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
+msgstr ""
+
+#: 03080000.xhp#hd_id3151384.help.text
+msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
+msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
+
+#: 03080000.xhp#par_id3154366.help.text
+msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
+msgstr "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colours, depending on type.</ahelp>"
+
+#: 03080000.xhp#par_id3125863.help.text
+msgid "To remove the highlighting, unmark the menu entry."
+msgstr "To remove the highlighting, unmark the menu entry."
+
+#: 03080000.xhp#par_id3145785.help.text
+msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
+msgstr "Text cells are formatted in black, formulae in green, and number cells in blue, no matter how their display is formatted."
+
+#: 03080000.xhp#par_id3153188.help.text
+msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
+msgstr "If this function is active, colours that you define in the document will not be displayed. When you deactivate the function, the user-defined colours are displayed again."
+
+#: 04060112.xhp#tit.help.text
+msgctxt "04060112.xhp#tit.help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr "Add-in for Programming in $[officename] Calc"
+
+#: 04060112.xhp#bm_id3151076.help.text
+msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
+msgstr "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
+
+#: 04060112.xhp#hd_id3151076.1.help.text
+msgctxt "04060112.xhp#hd_id3151076.1.help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr "Add-in for Programming in $[officename] Calc"
+
+#: 04060112.xhp#par_id3147001.220.help.text
+msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
+msgstr "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
+
+#: 04060112.xhp#par_id3150361.2.help.text
+msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
+msgstr "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
+
+#: 04060112.xhp#par_id3149211.3.help.text
+msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
+msgstr "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognised by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
+
+#: 04060112.xhp#hd_id3146981.4.help.text
+msgid "The Add-In Concept"
+msgstr "The Add-In Concept"
+
+#: 04060112.xhp#par_id3156292.5.help.text
+msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
+msgstr "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
+
+#: 04060112.xhp#hd_id3152890.6.help.text
+msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
+msgstr "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
+
+#: 04060112.xhp#par_id3148837.7.help.text
+msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
+msgstr "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
+
+#: 04060112.xhp#par_id3148604.8.help.text
+msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
+msgstr "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
+
+#: 04060112.xhp#par_id3150112.9.help.text
+msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
+msgstr "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
+
+#: 04060112.xhp#par_id3155269.10.help.text
+msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
+msgstr "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
+
+#: 04060112.xhp#hd_id3145077.11.help.text
+msgid "General information about the interface"
+msgstr "General information about the interface"
+
+#: 04060112.xhp#par_id3146776.12.help.text
+msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
+msgstr "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
+
+#: 04060112.xhp#par_id3149899.13.help.text
+msgid "The data types are defined as follows:"
+msgstr "The data types are defined as follows:"
+
+#: 04060112.xhp#par_id3151302.14.help.text
+msgid "<emph>Data types</emph>"
+msgstr "<emph>Data types</emph>"
+
+#: 04060112.xhp#par_id3143222.15.help.text
+msgid "<emph>Definition</emph>"
+msgstr "<emph>Definition</emph>"
+
+#: 04060112.xhp#par_id3149384.16.help.text
+msgid "CALLTYPE"
+msgstr "CALLTYPE"
+
+#: 04060112.xhp#par_id3146963.17.help.text
+msgid "Under Windows: FAR PASCAL (_far _pascal)"
+msgstr "Under Windows: FAR PASCAL (_far _pascal)"
+
+#: 04060112.xhp#par_id3153809.18.help.text
+msgid "Other: default (operating system specific default)"
+msgstr "Other: default (operating system specific default)"
+
+#: 04060112.xhp#par_id3154734.19.help.text
+msgid "USHORT"
+msgstr "USHORT"
+
+#: 04060112.xhp#par_id3155760.20.help.text
+msgid "2 Byte unsigned Integer"
+msgstr "2 Byte unsigned Integer"
+
+#: 04060112.xhp#par_id3145320.21.help.text
+msgid "DOUBLE"
+msgstr "DOUBLE"
+
+#: 04060112.xhp#par_id3150956.22.help.text
+msgid "8 byte platform-dependent format"
+msgstr "8 byte platform-dependent format"
+
+#: 04060112.xhp#par_id3146097.23.help.text
+msgid "Paramtype"
+msgstr "Paramtype"
+
+#: 04060112.xhp#par_id3150432.24.help.text
+msgid "Platform-dependent like int"
+msgstr "Platform-dependent like int"
+
+#: 04060112.xhp#par_id3153955.25.help.text
+msgid "PTR_DOUBLE =0 pointer to a double"
+msgstr "PTR_DOUBLE =0 pointer to a double"
+
+#: 04060112.xhp#par_id3159262.26.help.text
+msgid "PTR_STRING =1 pointer to a zero-terminated string"
+msgstr "PTR_STRING =1 pointer to a zero-terminated string"
+
+#: 04060112.xhp#par_id3148747.27.help.text
+msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
+msgstr "PTR_DOUBLE_ARR =2 pointer to a double array"
+
+#: 04060112.xhp#par_id3147406.28.help.text
+msgid "PTR_STRING_ARR =3 pointer to a string array"
+msgstr "PTR_STRING_ARR =3 pointer to a string array"
+
+#: 04060112.xhp#par_id3151392.29.help.text
+msgid "PTR_CELL_ARR =4 pointer to a cell array"
+msgstr "PTR_CELL_ARR =4 pointer to a cell array"
+
+#: 04060112.xhp#par_id3153028.30.help.text
+msgid "NONE =5"
+msgstr "NONE =5"
+
+#: 04060112.xhp#hd_id3156396.31.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
+
+#: 04060112.xhp#par_id3153019.32.help.text
+msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
+msgstr "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
+
+#: 04060112.xhp#par_id3150038.33.help.text
+msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
+msgstr "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
+
+#: 04060112.xhp#par_id3157876.34.help.text
+msgid "void CALLTYPE fn(out, in1, in2, ...)"
+msgstr "void CALLTYPE fn(out, in1, in2, ...)"
+
+#: 04060112.xhp#par_id3147616.35.help.text
+msgid "Output: Resulting value"
+msgstr "Output: Resulting value"
+
+#: 04060112.xhp#par_id3159119.36.help.text
+msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
+msgstr "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
+
+#: 04060112.xhp#hd_id3150653.37.help.text
+msgid "GetFunctionCount()"
+msgstr "GetFunctionCount()"
+
+#: 04060112.xhp#par_id3152981.38.help.text
+msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
+msgstr "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
+
+#: 04060112.xhp#par_id3150742.39.help.text
+msgctxt "04060112.xhp#par_id3150742.39.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Syntax</emph>"
+
+#: 04060112.xhp#par_id3148728.40.help.text
+msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+msgstr "void CALLTYPE GetFunctionCount(USHORT& nCount)"
+
+#: 04060112.xhp#par_id3154677.41.help.text
+msgctxt "04060112.xhp#par_id3154677.41.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Parameter</emph>"
+
+#: 04060112.xhp#par_id3146940.42.help.text
+msgid "USHORT &nCount:"
+msgstr "USHORT &nCount:"
+
+#: 04060112.xhp#par_id3149893.43.help.text
+msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
+msgstr "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
+
+#: 04060112.xhp#hd_id3147476.44.help.text
+msgid "GetFunctionData()"
+msgstr "GetFunctionData()"
+
+#: 04060112.xhp#par_id3154841.45.help.text
+msgid "Determines all the important information about an Add-In function."
+msgstr "Determines all the important information about an Add-In function."
+
+#: 04060112.xhp#par_id3148888.46.help.text
+msgctxt "04060112.xhp#par_id3148888.46.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Syntax</emph>"
+
+#: 04060112.xhp#par_id3148434.47.help.text
+msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+msgstr "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
+
+#: 04060112.xhp#par_id3149253.48.help.text
+msgctxt "04060112.xhp#par_id3149253.48.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Parameter</emph>"
+
+#: 04060112.xhp#par_id3149686.49.help.text
+msgctxt "04060112.xhp#par_id3149686.49.help.text"
+msgid "USHORT& nNo:"
+msgstr "USHORT& nNo:"
+
+#: 04060112.xhp#par_id3149949.50.help.text
+msgid "Input: Function number between 0 and nCount-1, inclusively."
+msgstr "Input: Function number between 0 and nCount-1, inclusively."
+
+#: 04060112.xhp#par_id3149546.51.help.text
+msgid "char* pFuncName:"
+msgstr "char* pFuncName:"
+
+#: 04060112.xhp#par_id3148579.52.help.text
+msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
+msgstr "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
+
+#: 04060112.xhp#par_id3153935.53.help.text
+msgid "USHORT& nParamCount:"
+msgstr "USHORT& nParamCount:"
+
+#: 04060112.xhp#par_id3150142.54.help.text
+msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
+msgstr "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
+
+#: 04060112.xhp#par_id3145143.55.help.text
+msgid "Paramtype* peType:"
+msgstr "Paramtype* peType:"
+
+#: 04060112.xhp#par_id3148750.56.help.text
+msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
+msgstr "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
+
+#: 04060112.xhp#par_id3153078.57.help.text
+msgid "char* pInternalName:"
+msgstr "char* pInternalName:"
+
+#: 04060112.xhp#par_id3155261.58.help.text
+msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
+msgstr "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
+
+#: 04060112.xhp#par_id3153327.59.help.text
+msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
+msgstr "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
+
+#: 04060112.xhp#hd_id3148567.60.help.text
+msgid "GetParameterDescription()"
+msgstr "GetParameterDescription()"
+
+#: 04060112.xhp#par_id3153000.61.help.text
+msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
+msgstr "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
+
+#: 04060112.xhp#par_id3154501.62.help.text
+msgctxt "04060112.xhp#par_id3154501.62.help.text"
+msgid "<emph>Syntax</emph>"
+msgstr "<emph>Syntax</emph>"
+
+#: 04060112.xhp#par_id3153564.63.help.text
+msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+msgstr "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
+
+#: 04060112.xhp#par_id3157995.64.help.text
+msgctxt "04060112.xhp#par_id3157995.64.help.text"
+msgid "<emph>Parameter</emph>"
+msgstr "<emph>Parameter</emph>"
+
+#: 04060112.xhp#par_id3155925.65.help.text
+msgctxt "04060112.xhp#par_id3155925.65.help.text"
+msgid "USHORT& nNo:"
+msgstr "USHORT& nNo:"
+
+#: 04060112.xhp#par_id3149883.66.help.text
+msgid "Input: Number of the function in the library; between 0 and nCount-1."
+msgstr "Input: Number of the function in the library; between 0 and nCount-1."
+
+#: 04060112.xhp#par_id3154326.67.help.text
+msgid "USHORT& nParam:"
+msgstr "USHORT& nParam:"
+
+#: 04060112.xhp#par_id3159139.68.help.text
+msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
+msgstr "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
+
+#: 04060112.xhp#par_id3147374.69.help.text
+msgid "char* pName:"
+msgstr "char* pName:"
+
+#: 04060112.xhp#par_id3145245.70.help.text
+msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
+msgstr "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
+
+#: 04060112.xhp#par_id3151020.71.help.text
+msgid "char* pDesc:"
+msgstr "char* pDesc:"
+
+#: 04060112.xhp#par_id3148389.72.help.text
+msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
+msgstr "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
+
+#: 04060112.xhp#par_id3145303.73.help.text
+msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
+msgstr "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
+
+#: 04060112.xhp#hd_id3148874.76.help.text
+msgid "Cell areas"
+msgstr "Cell areas"
+
+#: 04060112.xhp#par_id3150265.77.help.text
+msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
+msgstr "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
+
+#: 04060112.xhp#hd_id3156060.78.help.text
+msgid "Double Array"
+msgstr "Double Array"
+
+#: 04060112.xhp#par_id3149540.79.help.text
+msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
+msgstr "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
+
+#: 04060112.xhp#par_id3149388.80.help.text
+msgctxt "04060112.xhp#par_id3149388.80.help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Offset</emph>"
+
+#: 04060112.xhp#par_id3154636.81.help.text
+msgctxt "04060112.xhp#par_id3154636.81.help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Name</emph>"
+
+#: 04060112.xhp#par_id3153228.82.help.text
+msgctxt "04060112.xhp#par_id3153228.82.help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Description</emph>"
+
+#: 04060112.xhp#par_id3150685.83.help.text
+msgctxt "04060112.xhp#par_id3150685.83.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060112.xhp#par_id3154869.84.help.text
+msgctxt "04060112.xhp#par_id3154869.84.help.text"
+msgid "Col1"
+msgstr "Col1"
+
+#: 04060112.xhp#par_id3147541.85.help.text
+msgctxt "04060112.xhp#par_id3147541.85.help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3149783.86.help.text
+msgctxt "04060112.xhp#par_id3149783.86.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060112.xhp#par_id3155986.87.help.text
+msgctxt "04060112.xhp#par_id3155986.87.help.text"
+msgid "Row1"
+msgstr "Row1"
+
+#: 04060112.xhp#par_id3147483.88.help.text
+msgctxt "04060112.xhp#par_id3147483.88.help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Row number in the upper-left corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3153721.89.help.text
+msgctxt "04060112.xhp#par_id3153721.89.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060112.xhp#par_id3154317.90.help.text
+msgctxt "04060112.xhp#par_id3154317.90.help.text"
+msgid "Tab1"
+msgstr "Tab1"
+
+#: 04060112.xhp#par_id3149820.91.help.text
+msgctxt "04060112.xhp#par_id3149820.91.help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Table number in the upper-left corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3163820.92.help.text
+msgctxt "04060112.xhp#par_id3163820.92.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060112.xhp#par_id3149710.93.help.text
+msgctxt "04060112.xhp#par_id3149710.93.help.text"
+msgid "Col2"
+msgstr "Col2"
+
+#: 04060112.xhp#par_id3154819.94.help.text
+msgctxt "04060112.xhp#par_id3154819.94.help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3145083.95.help.text
+msgctxt "04060112.xhp#par_id3145083.95.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060112.xhp#par_id3156310.96.help.text
+msgctxt "04060112.xhp#par_id3156310.96.help.text"
+msgid "Row2"
+msgstr "Row2"
+
+#: 04060112.xhp#par_id3150968.97.help.text
+msgctxt "04060112.xhp#par_id3150968.97.help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Row number in the lower-right corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3156133.98.help.text
+msgctxt "04060112.xhp#par_id3156133.98.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp#par_id3153218.99.help.text
+msgctxt "04060112.xhp#par_id3153218.99.help.text"
+msgid "Tab2"
+msgstr "Tab2"
+
+#: 04060112.xhp#par_id3147086.100.help.text
+msgctxt "04060112.xhp#par_id3147086.100.help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Table number in the lower-right corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3151270.101.help.text
+msgctxt "04060112.xhp#par_id3151270.101.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp#par_id3152934.102.help.text
+msgctxt "04060112.xhp#par_id3152934.102.help.text"
+msgid "Count"
+msgstr "Count"
+
+#: 04060112.xhp#par_id3145202.103.help.text
+msgctxt "04060112.xhp#par_id3145202.103.help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Number of the following elements. Empty cells are not counted or passed."
+
+#: 04060112.xhp#par_id3150879.104.help.text
+msgctxt "04060112.xhp#par_id3150879.104.help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp#par_id3156002.105.help.text
+msgctxt "04060112.xhp#par_id3156002.105.help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp#par_id3147276.106.help.text
+msgctxt "04060112.xhp#par_id3147276.106.help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Column number of the element. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3151295.107.help.text
+msgctxt "04060112.xhp#par_id3151295.107.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp#par_id3150261.108.help.text
+msgctxt "04060112.xhp#par_id3150261.108.help.text"
+msgid "Row"
+msgstr "Row"
+
+#: 04060112.xhp#par_id3155851.109.help.text
+msgctxt "04060112.xhp#par_id3155851.109.help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Row number of the element; numbering starts at 0."
+
+#: 04060112.xhp#par_id3153150.110.help.text
+msgctxt "04060112.xhp#par_id3153150.110.help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp#par_id3153758.111.help.text
+msgctxt "04060112.xhp#par_id3153758.111.help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp#par_id3150154.112.help.text
+msgctxt "04060112.xhp#par_id3150154.112.help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Table number of the element; numbering starts at 0."
+
+#: 04060112.xhp#par_id3149289.113.help.text
+msgctxt "04060112.xhp#par_id3149289.113.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp#par_id3156010.114.help.text
+msgctxt "04060112.xhp#par_id3156010.114.help.text"
+msgid "Error"
+msgstr "Error"
+
+#: 04060112.xhp#par_id3159181.115.help.text
+msgctxt "04060112.xhp#par_id3159181.115.help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+
+#: 04060112.xhp#par_id3147493.116.help.text
+msgctxt "04060112.xhp#par_id3147493.116.help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp#par_id3149200.117.help.text
+msgctxt "04060112.xhp#par_id3149200.117.help.text"
+msgid "Value"
+msgstr "Value"
+
+#: 04060112.xhp#par_id3151174.118.help.text
+msgid "8 byte IEEE variable of type double/floating point"
+msgstr "8 byte IEEE variable of type double/floating point"
+
+#: 04060112.xhp#par_id3154688.119.help.text
+msgid "30"
+msgstr "30"
+
+#: 04060112.xhp#par_id3159337.120.help.text
+msgctxt "04060112.xhp#par_id3159337.120.help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp#par_id3155388.121.help.text
+msgctxt "04060112.xhp#par_id3155388.121.help.text"
+msgid "Next element"
+msgstr "Next element"
+
+#: 04060112.xhp#hd_id3154935.122.help.text
+msgid "String Array"
+msgstr "String Array"
+
+#: 04060112.xhp#par_id3153105.123.help.text
+msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
+msgstr "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
+
+#: 04060112.xhp#par_id3149908.124.help.text
+msgctxt "04060112.xhp#par_id3149908.124.help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Offset</emph>"
+
+#: 04060112.xhp#par_id3159165.125.help.text
+msgctxt "04060112.xhp#par_id3159165.125.help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Name</emph>"
+
+#: 04060112.xhp#par_id3159150.126.help.text
+msgctxt "04060112.xhp#par_id3159150.126.help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Description</emph>"
+
+#: 04060112.xhp#par_id3149769.127.help.text
+msgctxt "04060112.xhp#par_id3149769.127.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060112.xhp#par_id3150509.128.help.text
+msgctxt "04060112.xhp#par_id3150509.128.help.text"
+msgid "Col1"
+msgstr "Col1"
+
+#: 04060112.xhp#par_id3148447.129.help.text
+msgctxt "04060112.xhp#par_id3148447.129.help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3145418.130.help.text
+msgctxt "04060112.xhp#par_id3145418.130.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060112.xhp#par_id3147512.131.help.text
+msgctxt "04060112.xhp#par_id3147512.131.help.text"
+msgid "Row1"
+msgstr "Row1"
+
+#: 04060112.xhp#par_id3147235.132.help.text
+msgctxt "04060112.xhp#par_id3147235.132.help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Row number in the upper-left corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3155362.133.help.text
+msgctxt "04060112.xhp#par_id3155362.133.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060112.xhp#par_id3151051.134.help.text
+msgctxt "04060112.xhp#par_id3151051.134.help.text"
+msgid "Tab1"
+msgstr "Tab1"
+
+#: 04060112.xhp#par_id3148923.135.help.text
+msgctxt "04060112.xhp#par_id3148923.135.help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Table number in the upper-left corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3149158.136.help.text
+msgctxt "04060112.xhp#par_id3149158.136.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060112.xhp#par_id3166437.137.help.text
+msgctxt "04060112.xhp#par_id3166437.137.help.text"
+msgid "Col2"
+msgstr "Col2"
+
+#: 04060112.xhp#par_id3149788.138.help.text
+msgctxt "04060112.xhp#par_id3149788.138.help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3166450.139.help.text
+msgctxt "04060112.xhp#par_id3166450.139.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060112.xhp#par_id3152877.140.help.text
+msgctxt "04060112.xhp#par_id3152877.140.help.text"
+msgid "Row2"
+msgstr "Row2"
+
+#: 04060112.xhp#par_id3152949.141.help.text
+msgctxt "04060112.xhp#par_id3152949.141.help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Row number in the lower-right corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3159270.142.help.text
+msgctxt "04060112.xhp#par_id3159270.142.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp#par_id3154107.143.help.text
+msgctxt "04060112.xhp#par_id3154107.143.help.text"
+msgid "Tab2"
+msgstr "Tab2"
+
+#: 04060112.xhp#par_id3153747.144.help.text
+msgctxt "04060112.xhp#par_id3153747.144.help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Table number in the lower-right corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3149924.145.help.text
+msgctxt "04060112.xhp#par_id3149924.145.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp#par_id3154858.146.help.text
+msgctxt "04060112.xhp#par_id3154858.146.help.text"
+msgid "Count"
+msgstr "Count"
+
+#: 04060112.xhp#par_id3148621.147.help.text
+msgctxt "04060112.xhp#par_id3148621.147.help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Number of the following elements. Empty cells are not counted or passed."
+
+#: 04060112.xhp#par_id3148467.148.help.text
+msgctxt "04060112.xhp#par_id3148467.148.help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp#par_id3151126.149.help.text
+msgctxt "04060112.xhp#par_id3151126.149.help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp#par_id3154334.150.help.text
+msgctxt "04060112.xhp#par_id3154334.150.help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Column number of the element. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3149416.151.help.text
+msgctxt "04060112.xhp#par_id3149416.151.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp#par_id3150631.152.help.text
+msgctxt "04060112.xhp#par_id3150631.152.help.text"
+msgid "Row"
+msgstr "Row"
+
+#: 04060112.xhp#par_id3150424.153.help.text
+msgctxt "04060112.xhp#par_id3150424.153.help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Row number of the element; numbering starts at 0."
+
+#: 04060112.xhp#par_id3154797.154.help.text
+msgctxt "04060112.xhp#par_id3154797.154.help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp#par_id3143274.155.help.text
+msgctxt "04060112.xhp#par_id3143274.155.help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp#par_id3149513.156.help.text
+msgctxt "04060112.xhp#par_id3149513.156.help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Table number of the element; numbering starts at 0."
+
+#: 04060112.xhp#par_id3145306.157.help.text
+msgctxt "04060112.xhp#par_id3145306.157.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp#par_id3153948.158.help.text
+msgctxt "04060112.xhp#par_id3153948.158.help.text"
+msgid "Error"
+msgstr "Error"
+
+#: 04060112.xhp#par_id3153534.159.help.text
+msgctxt "04060112.xhp#par_id3153534.159.help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+
+#: 04060112.xhp#par_id3153311.160.help.text
+msgctxt "04060112.xhp#par_id3153311.160.help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp#par_id3148695.161.help.text
+msgid "Len"
+msgstr "Len"
+
+#: 04060112.xhp#par_id3152769.162.help.text
+msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+
+#: 04060112.xhp#par_id3153772.163.help.text
+msgctxt "04060112.xhp#par_id3153772.163.help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060112.xhp#par_id3153702.164.help.text
+msgctxt "04060112.xhp#par_id3153702.164.help.text"
+msgid "String"
+msgstr "String"
+
+#: 04060112.xhp#par_id3154474.165.help.text
+msgid "String with closing zero byte"
+msgstr "String with closing zero byte"
+
+#: 04060112.xhp#par_id3156269.166.help.text
+msgid "24+Len"
+msgstr "24+Len"
+
+#: 04060112.xhp#par_id3154825.167.help.text
+msgctxt "04060112.xhp#par_id3154825.167.help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp#par_id3147097.168.help.text
+msgctxt "04060112.xhp#par_id3147097.168.help.text"
+msgid "Next element"
+msgstr "Next element"
+
+#: 04060112.xhp#hd_id3159091.169.help.text
+msgid "Cell Array"
+msgstr "Cell Array"
+
+#: 04060112.xhp#par_id3156140.170.help.text
+msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
+msgstr "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
+
+#: 04060112.xhp#par_id3154664.171.help.text
+msgctxt "04060112.xhp#par_id3154664.171.help.text"
+msgid "<emph>Offset</emph>"
+msgstr "<emph>Offset</emph>"
+
+#: 04060112.xhp#par_id3154566.172.help.text
+msgctxt "04060112.xhp#par_id3154566.172.help.text"
+msgid "<emph>Name</emph>"
+msgstr "<emph>Name</emph>"
+
+#: 04060112.xhp#par_id3146073.173.help.text
+msgctxt "04060112.xhp#par_id3146073.173.help.text"
+msgid "<emph>Description</emph>"
+msgstr "<emph>Description</emph>"
+
+#: 04060112.xhp#par_id3154117.174.help.text
+msgctxt "04060112.xhp#par_id3154117.174.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060112.xhp#par_id3150988.175.help.text
+msgctxt "04060112.xhp#par_id3150988.175.help.text"
+msgid "Col1"
+msgstr "Col1"
+
+#: 04060112.xhp#par_id3146783.176.help.text
+msgctxt "04060112.xhp#par_id3146783.176.help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3153666.177.help.text
+msgctxt "04060112.xhp#par_id3153666.177.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060112.xhp#par_id3149560.178.help.text
+msgctxt "04060112.xhp#par_id3149560.178.help.text"
+msgid "Row1"
+msgstr "Row1"
+
+#: 04060112.xhp#par_id3156156.179.help.text
+msgctxt "04060112.xhp#par_id3156156.179.help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Row number in the upper-left corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3150408.180.help.text
+msgctxt "04060112.xhp#par_id3150408.180.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060112.xhp#par_id3150593.181.help.text
+msgctxt "04060112.xhp#par_id3150593.181.help.text"
+msgid "Tab1"
+msgstr "Tab1"
+
+#: 04060112.xhp#par_id3150357.182.help.text
+msgctxt "04060112.xhp#par_id3150357.182.help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr "Table number in the upper-left corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3146912.183.help.text
+msgctxt "04060112.xhp#par_id3146912.183.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060112.xhp#par_id3153352.184.help.text
+msgctxt "04060112.xhp#par_id3153352.184.help.text"
+msgid "Col2"
+msgstr "Col2"
+
+#: 04060112.xhp#par_id3155893.185.help.text
+msgctxt "04060112.xhp#par_id3155893.185.help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3150827.186.help.text
+msgctxt "04060112.xhp#par_id3150827.186.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060112.xhp#par_id3148406.187.help.text
+msgctxt "04060112.xhp#par_id3148406.187.help.text"
+msgid "Row2"
+msgstr "Row2"
+
+#: 04060112.xhp#par_id3150673.188.help.text
+msgctxt "04060112.xhp#par_id3150673.188.help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Row number in the lower-right corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3155864.189.help.text
+msgctxt "04060112.xhp#par_id3155864.189.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060112.xhp#par_id3153197.190.help.text
+msgctxt "04060112.xhp#par_id3153197.190.help.text"
+msgid "Tab2"
+msgstr "Tab2"
+
+#: 04060112.xhp#par_id3149329.191.help.text
+msgctxt "04060112.xhp#par_id3149329.191.help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr "Table number in the lower-right corner of the cell area; numbering starts at 0."
+
+#: 04060112.xhp#par_id3147360.192.help.text
+msgctxt "04060112.xhp#par_id3147360.192.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060112.xhp#par_id3154520.193.help.text
+msgctxt "04060112.xhp#par_id3154520.193.help.text"
+msgid "Count"
+msgstr "Count"
+
+#: 04060112.xhp#par_id3150647.194.help.text
+msgctxt "04060112.xhp#par_id3150647.194.help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr "Number of the following elements. Empty cells are not counted or passed."
+
+#: 04060112.xhp#par_id3149747.195.help.text
+msgctxt "04060112.xhp#par_id3149747.195.help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060112.xhp#par_id3147579.196.help.text
+msgctxt "04060112.xhp#par_id3147579.196.help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp#par_id3154188.197.help.text
+msgctxt "04060112.xhp#par_id3154188.197.help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr "Column number of the element. Numbering starts at 0."
+
+#: 04060112.xhp#par_id3159209.198.help.text
+msgctxt "04060112.xhp#par_id3159209.198.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060112.xhp#par_id3153265.199.help.text
+msgctxt "04060112.xhp#par_id3153265.199.help.text"
+msgid "Row"
+msgstr "Row"
+
+#: 04060112.xhp#par_id3150095.200.help.text
+msgctxt "04060112.xhp#par_id3150095.200.help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr "Row number of the element; numbering starts at 0."
+
+#: 04060112.xhp#par_id3151276.201.help.text
+msgctxt "04060112.xhp#par_id3151276.201.help.text"
+msgid "18"
+msgstr "18"
+
+#: 04060112.xhp#par_id3149177.202.help.text
+msgctxt "04060112.xhp#par_id3149177.202.help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp#par_id3146925.203.help.text
+msgctxt "04060112.xhp#par_id3146925.203.help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr "Table number of the element; numbering starts at 0."
+
+#: 04060112.xhp#par_id3150488.204.help.text
+msgctxt "04060112.xhp#par_id3150488.204.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060112.xhp#par_id3149441.205.help.text
+msgctxt "04060112.xhp#par_id3149441.205.help.text"
+msgid "Error"
+msgstr "Error"
+
+#: 04060112.xhp#par_id3156048.206.help.text
+msgctxt "04060112.xhp#par_id3156048.206.help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+
+#: 04060112.xhp#par_id3163813.207.help.text
+msgctxt "04060112.xhp#par_id3163813.207.help.text"
+msgid "22"
+msgstr "22"
+
+#: 04060112.xhp#par_id3159102.208.help.text
+msgctxt "04060112.xhp#par_id3159102.208.help.text"
+msgid "Type"
+msgstr "Type"
+
+#: 04060112.xhp#par_id3149581.209.help.text
+msgid "Type of cell content, 0 == Double, 1 == String"
+msgstr "Type of cell content, 0 == Double, 1 == String"
+
+#: 04060112.xhp#par_id3155182.210.help.text
+msgctxt "04060112.xhp#par_id3155182.210.help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060112.xhp#par_id3153291.211.help.text
+msgid "Value or Len"
+msgstr "Value or Len"
+
+#: 04060112.xhp#par_id3148560.212.help.text
+msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
+msgstr "If type == 0: 8 byte IEEE variable of type double/floating point"
+
+#: 04060112.xhp#par_id3148901.213.help.text
+msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+
+#: 04060112.xhp#par_id3145215.214.help.text
+msgid "26 if type==1"
+msgstr "26 if type==1"
+
+#: 04060112.xhp#par_id3155143.215.help.text
+msgctxt "04060112.xhp#par_id3155143.215.help.text"
+msgid "String"
+msgstr "String"
+
+#: 04060112.xhp#par_id3149298.216.help.text
+msgid "If type == 1: String with closing zero byte"
+msgstr "If type == 1: String with closing zero byte"
+
+#: 04060112.xhp#par_id3151322.217.help.text
+msgid "32 or 26+Len"
+msgstr "32 or 26+Len"
+
+#: 04060112.xhp#par_id3163722.218.help.text
+msgctxt "04060112.xhp#par_id3163722.218.help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp#par_id3151059.219.help.text
+msgctxt "04060112.xhp#par_id3151059.219.help.text"
+msgid "Next element"
+msgstr "Next element"
+
+#: 12080100.xhp#tit.help.text
+msgid "Hide Details"
+msgstr "Hide Details"
+
+#: 12080100.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
+msgstr "<bookmark_value>sheets; hiding details</bookmark_value>"
+
+#: 12080100.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
+msgstr "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
+
+#: 12080100.xhp#par_id3154515.2.help.text
+msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
+msgstr "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
+
+#: 12080100.xhp#par_id3153252.3.help.text
+msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data -Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
+msgstr "To show all hidden groups, select the outlined table, and then choose <emph>Data -Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
+
+#: func_day.xhp#tit.help.text
+msgid "DAY "
+msgstr "DAY "
+
+#: func_day.xhp#bm_id3147317.help.text
+msgid "<bookmark_value>DAY function</bookmark_value>"
+msgstr "<bookmark_value>DAY function</bookmark_value>"
+
+#: func_day.xhp#hd_id3147317.106.help.text
+msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+msgstr "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+
+#: func_day.xhp#par_id3147584.107.help.text
+msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
+msgstr "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
+
+#: func_day.xhp#hd_id3150487.108.help.text
+msgctxt "func_day.xhp#hd_id3150487.108.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_day.xhp#par_id3149430.109.help.text
+msgid "DAY(Number)"
+msgstr "DAY(Number)"
+
+#: func_day.xhp#par_id3149443.110.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
+msgstr "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
+
+#: func_day.xhp#hd_id3163809.111.help.text
+msgid "Examples "
+msgstr "Examples "
+
+#: func_day.xhp#par_id3151200.112.help.text
+msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
+msgstr "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
+
+#: func_day.xhp#par_id3154130.113.help.text
+msgid "DAY(NOW()) returns the current day."
+msgstr "DAY(NOW()) returns the current day."
+
+#: func_day.xhp#par_id3159190.114.help.text
+msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
+msgstr "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
+
+#: 12020000.xhp#tit.help.text
+msgctxt "12020000.xhp#tit.help.text"
+msgid "Select Database Range"
+msgstr "Select Database Range"
+
+#: 12020000.xhp#bm_id3145068.help.text
+msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
+msgstr "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
+
+#: 12020000.xhp#hd_id3145068.1.help.text
+msgctxt "12020000.xhp#hd_id3145068.1.help.text"
+msgid "Select Database Range"
+msgstr "Select Database Range"
+
+#: 12020000.xhp#par_id3149655.2.help.text
+msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
+msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
+
+#: 12020000.xhp#hd_id3153192.3.help.text
+msgid "Ranges"
+msgstr "Ranges"
+
+#: 12020000.xhp#par_id3154684.4.help.text
+msgid "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
+
+#: 12090300.xhp#tit.help.text
+msgctxt "12090300.xhp#tit.help.text"
+msgid "Delete"
+msgstr "Delete"
+
+#: 12090300.xhp#hd_id3150276.1.help.text
+msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+
+#: 12090300.xhp#par_id3159400.2.help.text
+msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
+msgstr ""
+
+#: 06030600.xhp#tit.help.text
+msgid "Trace Error"
+msgstr "Trace Error"
+
+#: 06030600.xhp#bm_id3153561.help.text
+msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
+msgstr "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
+
+#: 06030600.xhp#hd_id3153561.1.help.text
+msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
+msgstr "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
+
+#: 06030600.xhp#par_id3148550.2.help.text
+msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
+
+#: 04010000.xhp#tit.help.text
+msgid "Manual Break"
+msgstr "Manual Break"
+
+#: 04010000.xhp#bm_id3153192.help.text
+msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
+
+#: 04010000.xhp#hd_id3153192.1.help.text
+msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+
+#: 04010000.xhp#par_id3125864.2.help.text
+msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
+msgstr "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
+
+#: 04010000.xhp#par_id3155133.3.help.text
+msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
+msgstr "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
+
+#: func_workday.xhp#tit.help.text
+msgid "WORKDAY"
+msgstr "WORKDAY"
+
+#: func_workday.xhp#bm_id3149012.help.text
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr "<bookmark_value>WORKDAY function</bookmark_value>"
+
+#: func_workday.xhp#hd_id3149012.186.help.text
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+msgstr "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
+
+#: func_workday.xhp#par_id3149893.187.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+
+#: func_workday.xhp#hd_id3146944.188.help.text
+msgctxt "func_workday.xhp#hd_id3146944.188.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_workday.xhp#par_id3154844.189.help.text
+msgid "WORKDAY(StartDate; Days; Holidays)"
+msgstr "WORKDAY(StartDate; Days; Holidays)"
+
+#: func_workday.xhp#par_id3147469.190.help.text
+msgctxt "func_workday.xhp#par_id3147469.190.help.text"
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+msgstr "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+
+#: func_workday.xhp#par_id3153038.191.help.text
+msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+msgstr "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+
+#: func_workday.xhp#par_id3150693.192.help.text
+msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+
+#: func_workday.xhp#hd_id3150141.193.help.text
+msgctxt "func_workday.xhp#hd_id3150141.193.help.text"
+msgid "Example"
+msgstr "Example"
+
+#: func_workday.xhp#par_id3152782.194.help.text
+msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+
+#: func_workday.xhp#par_id3146142.195.help.text
+msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+
+#: 12030200.xhp#tit.help.text
+msgctxt "12030200.xhp#tit.help.text"
+msgid "Options"
+msgstr "Options"
+
+#: 12030200.xhp#bm_id3147228.help.text
+msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
+msgstr "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
+
+#: 12030200.xhp#hd_id3147228.1.help.text
+msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
+msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
+
+#: 12030200.xhp#par_id3153770.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Sets additional sorting options.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SORT_OPTIONS\"> Sets additional sorting options.</ahelp>"
+
+#: 12030200.xhp#hd_id3146976.3.help.text
+msgid " Case Sensitivity"
+msgstr " Case Sensitivity"
+
+#: 12030200.xhp#par_id3153091.4.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_CASESENSITIVE\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_CASESENSITIVE\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
+
+#: 12030200.xhp#par_idN10637.help.text
+msgid " Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
+msgstr " Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
+
+#: 12030200.xhp#hd_id3155856.5.help.text
+msgid " Range contains column/row labels"
+msgstr " Range contains column/row labels"
+
+#: 12030200.xhp#par_id3154014.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_LABEL\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_LABEL\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialogue defines the name and function of this check box."
+
+#: 12030200.xhp#hd_id3147436.7.help.text
+msgid " Include formats"
+msgstr " Include formats"
+
+#: 12030200.xhp#par_id3149377.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_FORMATS\"> Preserves the current cell formatting.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_FORMATS\"> Preserves the current cell formatting.</ahelp>"
+
+#: 12030200.xhp#hd_id3147438.help.text
+msgid "Enable natural sort"
+msgstr ""
+
+#: 12030200.xhp#par_id3149378.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_NATURALSORT\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
+msgstr ""
+
+#: 12030200.xhp#hd_id3153878.10.help.text
+msgid " Copy sort results to:"
+msgstr " Copy sort results to:"
+
+#: 12030200.xhp#par_id3156286.11.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_COPYRESULT\"> Copies the sorted list to the cell range that you specify.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_COPYRESULT\"> Copies the sorted list to the cell range that you specify.</ahelp>"
+
+#: 12030200.xhp#hd_id3153418.12.help.text
+msgctxt "12030200.xhp#hd_id3153418.12.help.text"
+msgid " Sort results"
+msgstr " Sort results"
+
+#: 12030200.xhp#par_id3155602.13.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_OUTAREA\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_OUTAREA\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
+
+#: 12030200.xhp#hd_id3153707.14.help.text
+msgctxt "12030200.xhp#hd_id3153707.14.help.text"
+msgid " Sort results"
+msgstr " Sort results"
+
+#: 12030200.xhp#par_id3145642.15.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCPAGE_SORT_OPTIONS:ED_OUTAREA\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCPAGE_SORT_OPTIONS:ED_OUTAREA\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
+
+#: 12030200.xhp#hd_id3155445.16.help.text
+msgctxt "12030200.xhp#hd_id3155445.16.help.text"
+msgid " Custom sort order"
+msgstr " Custom sort order"
+
+#: 12030200.xhp#par_id3156385.17.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_SORT_USER\"> Click here and then select the custom sort order that you want.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SORT_OPTIONS:BTN_SORT_USER\"> Click here and then select the custom sort order that you want.</ahelp>"
+
+#: 12030200.xhp#hd_id3154704.18.help.text
+msgctxt "12030200.xhp#hd_id3154704.18.help.text"
+msgid " Custom sort order"
+msgstr " Custom sort order"
+
+#: 12030200.xhp#par_id3155962.19.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_SORT_USER\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_SORT_USER\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
+
+#: 12030200.xhp#hd_id3149257.28.help.text
+msgctxt "12030200.xhp#hd_id3149257.28.help.text"
+msgid " Language"
+msgstr " Language"
+
+#: 12030200.xhp#hd_id3147004.29.help.text
+msgctxt "12030200.xhp#hd_id3147004.29.help.text"
+msgid " Language"
+msgstr " Language"
+
+#: 12030200.xhp#par_id3150787.32.help.text
+msgid "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_LANGUAGE\"> Select the language for the sorting rules.</ahelp>"
+msgstr "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_LANGUAGE\"> Select the language for the sorting rules.</ahelp>"
+
+#: 12030200.xhp#hd_id3150344.30.help.text
+msgid " Options"
+msgstr " Options"
+
+#: 12030200.xhp#par_id3155113.33.help.text
+msgid "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_ALGORITHM\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
+msgstr "<ahelp hid=\"SC_LISTBOX_RID_SCPAGE_SORT_OPTIONS_LB_ALGORITHM\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
+
+#: 12030200.xhp#hd_id3152580.20.help.text
+msgid " Direction"
+msgstr " Direction"
+
+#: 12030200.xhp#hd_id3154201.22.help.text
+msgid " Top to Bottom (Sort Rows)"
+msgstr " Top to Bottom (Sort Rows)"
+
+#: 12030200.xhp#par_id3166430.23.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_TOP_DOWN\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_TOP_DOWN\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
+
+#: 12030200.xhp#hd_id3145588.24.help.text
+msgid " Left to Right (Sort Columns)"
+msgstr " Left to Right (Sort Columns)"
+
+#: 12030200.xhp#par_id3154370.25.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_LEFT_RIGHT\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_OPTIONS:BTN_LEFT_RIGHT\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
+
+#: 12030200.xhp#hd_id3156290.26.help.text
+msgid " Data area"
+msgstr " Data area"
+
+#: 12030200.xhp#par_id3156446.27.help.text
+msgid " Displays the cell range that you want to sort."
+msgstr " Displays the cell range that you want to sort."
+
+#: 06030700.xhp#tit.help.text
+msgid "Fill Mode"
+msgstr "Fill Mode"
+
+#: 06030700.xhp#bm_id3145119.help.text
+msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
+msgstr "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
+
+#: 06030700.xhp#hd_id3145119.1.help.text
+msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+msgstr "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+
+#: 06030700.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
+msgstr "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
+
+#: 06030700.xhp#par_id3151211.3.help.text
+msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
+msgstr "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
+
+#: 05040000.xhp#tit.help.text
+msgctxt "05040000.xhp#tit.help.text"
+msgid "Column"
+msgstr "Column"
+
+#: 05040000.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
+msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
+
+#: 05040000.xhp#par_id3148946.2.help.text
+msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
+msgstr "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
+
+#: 05040000.xhp#hd_id3150398.3.help.text
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
+
+#: 05040000.xhp#hd_id3145171.4.help.text
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
+
+#: 02140600.xhp#tit.help.text
+msgctxt "02140600.xhp#tit.help.text"
+msgid "Fill Series"
+msgstr "Fill Series"
+
+#: 02140600.xhp#hd_id3148664.1.help.text
+msgctxt "02140600.xhp#hd_id3148664.1.help.text"
+msgid "Fill Series"
+msgstr "Fill Series"
+
+#: 02140600.xhp#par_id3148797.2.help.text
+msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
+msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialogue. Determine direction, increment, time unit and series type.</ahelp></variable>"
+
+#: 02140600.xhp#par_id3146976.41.help.text
+msgid "Before filling a series, first select the cell range."
+msgstr "Before filling a series, first select the cell range."
+
+#: 02140600.xhp#par_id3145748.3.help.text
+msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
+msgstr "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialogue."
+
+#: 02140600.xhp#hd_id3147435.4.help.text
+msgid "Direction"
+msgstr "Direction"
+
+#: 02140600.xhp#par_id3154729.5.help.text
+msgid "Determines the direction of series creation."
+msgstr "Determines the direction of series creation."
+
+#: 02140600.xhp#hd_id3145253.6.help.text
+msgctxt "02140600.xhp#hd_id3145253.6.help.text"
+msgid "Down"
+msgstr "Down"
+
+#: 02140600.xhp#par_id3155418.7.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
+
+#: 02140600.xhp#hd_id3155738.8.help.text
+msgctxt "02140600.xhp#hd_id3155738.8.help.text"
+msgid "Right"
+msgstr "Right"
+
+#: 02140600.xhp#par_id3149402.9.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
+
+#: 02140600.xhp#hd_id3146972.10.help.text
+msgctxt "02140600.xhp#hd_id3146972.10.help.text"
+msgid "Up"
+msgstr "Up"
+
+#: 02140600.xhp#par_id3153711.11.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
+
+#: 02140600.xhp#hd_id3153764.12.help.text
+msgctxt "02140600.xhp#hd_id3153764.12.help.text"
+msgid "Left"
+msgstr "Left"
+
+#: 02140600.xhp#par_id3156382.13.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
+
+#: 02140600.xhp#hd_id3147344.14.help.text
+msgid "Series Type"
+msgstr "Series Type"
+
+#: 02140600.xhp#par_id3149257.15.help.text
+msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
+msgstr "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
+
+#: 02140600.xhp#hd_id3148488.16.help.text
+msgid "Linear"
+msgstr "Linear"
+
+#: 02140600.xhp#par_id3159238.17.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
+
+#: 02140600.xhp#hd_id3149210.18.help.text
+msgid "Growth"
+msgstr "Growth"
+
+#: 02140600.xhp#par_id3150364.19.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
+
+#: 02140600.xhp#hd_id3149528.20.help.text
+msgctxt "02140600.xhp#hd_id3149528.20.help.text"
+msgid "Date"
+msgstr "Date"
+
+#: 02140600.xhp#par_id3150887.21.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
+
+#: 02140600.xhp#hd_id3150202.22.help.text
+msgid "AutoFill"
+msgstr "AutoFill"
+
+#: 02140600.xhp#par_id3156288.23.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customised lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
+
+#: 02140600.xhp#par_id3155811.24.help.text
+msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
+msgstr "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
+
+#: 02140600.xhp#hd_id3148700.25.help.text
+msgid "Unit of Time"
+msgstr "Unit of Time"
+
+#: 02140600.xhp#par_id3153308.26.help.text
+msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
+msgstr "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
+
+#: 02140600.xhp#hd_id3148868.27.help.text
+msgid "Day"
+msgstr "Day"
+
+#: 02140600.xhp#par_id3148605.28.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
+
+#: 02140600.xhp#hd_id3144771.29.help.text
+msgid "Weekday"
+msgstr "Weekday"
+
+#: 02140600.xhp#par_id3150108.30.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
+
+#: 02140600.xhp#hd_id3154957.31.help.text
+msgid "Month"
+msgstr "Month"
+
+#: 02140600.xhp#par_id3149126.32.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
+
+#: 02140600.xhp#hd_id3152870.33.help.text
+msgid "Year"
+msgstr "Year"
+
+#: 02140600.xhp#par_id3151300.34.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
+
+#: 02140600.xhp#hd_id3154762.35.help.text
+msgid "Start Value"
+msgstr "Start Value"
+
+#: 02140600.xhp#par_id3149381.36.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
+
+#: 02140600.xhp#hd_id3153013.37.help.text
+msgid "End Value"
+msgstr "End Value"
+
+#: 02140600.xhp#par_id3153487.38.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
+
+#: 02140600.xhp#hd_id3149312.39.help.text
+msgid "Increment"
+msgstr "Increment"
+
+#: 02140600.xhp#par_id3154739.40.help.text
+msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
+msgstr "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
+
+#: 06060000.xhp#tit.help.text
+msgid "Protect Document"
+msgstr "Protect Document"
+
+#: 06060000.xhp#hd_id3148946.1.help.text
+msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
+msgstr "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
+
+#: 06060000.xhp#par_id3153362.2.help.text
+msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+msgstr "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+
+#: 06060000.xhp#hd_id3147228.3.help.text
+msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
+msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
+
+#: 06060000.xhp#hd_id3153768.4.help.text
+msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+
+#: 06060000.xhp#par_idN10622.help.text
+msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+
+#: 12070000.xhp#tit.help.text
+msgctxt "12070000.xhp#tit.help.text"
+msgid "Consolidate"
+msgstr "Consolidate"
+
+#: 12070000.xhp#hd_id3148946.1.help.text
+msgctxt "12070000.xhp#hd_id3148946.1.help.text"
+msgid "Consolidate"
+msgstr "Consolidate"
+
+#: 12070000.xhp#par_id3148798.2.help.text
+msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
+msgstr "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
+
+#: 12070000.xhp#hd_id3150010.8.help.text
+msgctxt "12070000.xhp#hd_id3150010.8.help.text"
+msgid "Function"
+msgstr "Function"
+
+#: 12070000.xhp#par_id3149377.9.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
+
+#: 12070000.xhp#hd_id3147127.10.help.text
+msgid "Consolidation ranges"
+msgstr "Consolidation ranges"
+
+#: 12070000.xhp#par_id3151075.11.help.text
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
+
+#: 12070000.xhp#hd_id3147397.12.help.text
+msgid "Source data range"
+msgstr "Source data range"
+
+#: 12070000.xhp#par_id3153836.13.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+
+#: 12070000.xhp#hd_id3155768.15.help.text
+msgctxt "12070000.xhp#hd_id3155768.15.help.text"
+msgid "Copy results to"
+msgstr "Copy results to"
+
+#: 12070000.xhp#par_id3147341.16.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
+
+#: 12070000.xhp#hd_id3147345.17.help.text
+msgctxt "12070000.xhp#hd_id3147345.17.help.text"
+msgid "Add"
+msgstr "Add"