summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: 6af416b8a2f931d47ec425e9e90da764c198a93b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

gb_Top_MODULE_CHECK_TARGETS := slowcheck unitcheck subsequentcheck perfcheck uicheck screenshot

.PHONY : check-if-root bootstrap gbuild build build-non-l10n-only build-l10n-only check clean clean-build clean-host test-install distclean distro-pack-install docs download etags fetch get-submodules id install install-gdb-printers install-strip tags debugrun help showmodules translations packageinfo internal.clean $(gb_Top_MODULE_CHECK_TARGETS)

MAKECMDGOALS?=build
build_goal:=$(if $(filter build build-nocheck uicheck,$(MAKECMDGOALS)),build)\
 $(if $(filter check,$(MAKECMDGOALS)),unitcheck slowcheck subsequentcheck $(if $(filter Linux, $(shell uname)), uicheck))\
 $(filter build-l10n-only build-non-l10n-only debugrun help showmodules translations $(gb_Top_MODULE_CHECK_TARGETS) check packageinfo gbuildtojson,$(MAKECMDGOALS))

SRCDIR := @SRC_ROOT@
BUILDDIR := @BUILDDIR@
COMPILER_PLUGINS := @COMPILER_PLUGINS@
GIT_BUILD := $(if $(wildcard $(SRCDIR)/.git),T)

# Run autogen.sh if needed and force make to restart itself.
# ... but there are several cases where we do not want to run
# autogen.sh:
# 1. if we are building from tarballs, not git checkout (I do not
#    think packagers would ever want that. I certainly do not.)
# 2. if we are making help, clean or distclean, because they do not
#    need updated configuration
ifeq (,$(MAKE_RESTARTS)$(if $(GIT_BUILD),,T)$(if $(filter-out help showmodules clean distclean,$(MAKECMDGOALS)),,T))

# note: this must touch both Makefile and $(BUILDDIR)/Makefile, because make
# may be invoked using either of these paths, and it will restart itself only
# if the updated target is exactly the same path as the Makefile it is using
.PHONY : force-restart
Makefile $(BUILDDIR)/Makefile: $(BUILDDIR)/config_host.mk $(BUILDDIR)/config_host_lang.mk force-restart
	@touch $@

# run configure in an environment not polluted by config_host.mk
$(BUILDDIR)/config_host.mk : $(wildcard \
		$(SRCDIR)/config_host.mk.in \
		$(SRCDIR)/config_host_lang.mk.in \
		$(SRCDIR)/Makefile.in \
		$(SRCDIR)/instsetoo_native/util/openoffice.lst.in \
		$(SRCDIR)/configure.ac \
		$(SRCDIR)/config_host/*.h.in \
		$(SRCDIR)/download.lst \
		$(BUILDDIR)/autogen.input \
		$(BUILDDIR)/autogen.lastrun \
		$(BUILDDIR)/autogen.sh \
		) \
		$(shell . $(SRCDIR)/bin/get_config_variables JAVA_HOME && \
			if test -n "$${JAVA_HOME}" -a ! -d "$${JAVA_HOME}/bin"; then echo force-restart; fi)
	sh -c $(SRCDIR)/autogen.sh

else # MAKE_RESTARTS

.DEFAULT_GOAL := build

check-if-root:
	@if test ! `uname` = 'Haiku' -a `id -u` = 0 && ! grep -q 'lxc\|docker' /proc/self/cgroup && ! grep -q 'libpod_parent' /proc/self/cgroup; then \
		echo; \
		echo 'Building LibreOffice as root is a very bad idea, use a regular user.'; \
		echo; \
		exit 1; \
	fi

gb_Side ?= host

include $(BUILDDIR)/config_$(gb_Side).mk

export GMAKE_OPTIONS?=-r$(if $(verbose),,s)$(value $(MAKEFLAGS))

PARALLELISM_OPTION := $(if $(filter-out 0,$(PARALLELISM)),-j $(PARALLELISM),)

IWYU_OPTION := $(if $(IWYU_PATH),-k CC=$(IWYU_PATH) CXX=$(IWYU_PATH),)

# don't want to have a dependency to iwyudummy.generate because it's
# useful to manually edit the generated StaticLibrary_iwyudummy.mk
iwyudummy: bootstrap fetch
	$(if $(wildcard $(BUILDDIR)/iwyudummy),,$(error first call "make iwyudummy.generate"))
	cd $(BUILDDIR)/iwyudummy && $(MAKE) $(IWYU_OPTION) $(GMAKE_OPTIONS)

iwyudummy.generate:
	$(SRCDIR)/bin/gen-iwyu-dummy-lib

#
# Partial Build
#
define gb_Top_GbuildModuleRules
.PHONY: $(1) $(1).build $(1).all $(1).check $(1).clean $(1).showdeliverables $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target))

$(1): bootstrap fetch
	cd $(SRCDIR)/$(2) && $$(MAKE) $(IWYU_OPTION) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS)

$(1).build $(1).check $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target)): bootstrap fetch
	cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)

$(1).clean $(1).showdeliverables:
	cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)

$(1).all: bootstrap fetch
	$$(MAKE) $(PARALLELISM_OPTION) $(IWYU_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $(WORKDIR)/Module/$(1) $(if $(CROSS_COMPILING),,$(WORKDIR)/Module/check/$(1) $(WORKDIR)/Module/slowcheck/$(1))

endef

define gb_Top_GbuildModulesRules
$(foreach m,$(1),$(call gb_Top_GbuildModuleRules,$(notdir $(m)),$(m)))
endef

gbuild_modules := $(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk $(SRCDIR)/external/*/Module_*.mk)))

gbuild_internal_modules := $(filter-out odk external,$(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk))))

internal.clean: $(addsuffix .clean,$(gbuild_internal_modules))


$(eval $(call gb_Top_GbuildModulesRules,$(gbuild_modules)))

gbuild_TARGETS := AllLangHelp \
	AllLangMoTarget \
	AllLangPackage \
	AutoInstall \
	CliLibrary \
	CliNativeLibrary \
	CliUnoApi \
	CompilerTest \
	Configuration \
	CppunitTest \
	CustomTarget \
	Dictionary \
	Executable \
	Extension \
	ExtensionPackage \
	ExtensionPackageSet \
	ExternalPackage \
	ExternalProject \
	Gallery \
	GeneratedPackage \
	InstallModule \
	InstallScript \
	InternalUnoApi \
	Jar \
	JunitTest \
	Library \
	Module \
	Package \
	PackageSet \
	Pagein \
	Postprocess \
	Pyuno \
	PythonTest \
	Rdb \
	SdiTarget \
	StaticLibrary \
	UIConfig \
	UITest \
	UnoApi \
	UnpackedTarball \
	WinResTarget \
	Zip \

# build a generic gbuild target
$(foreach target,$(gbuild_TARGETS),$(target)_% $(foreach module,$(gbuild_modules),$(target)_$(module)/%)) UIConfig_modules/% %.genpatch: bootstrap fetch
	$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@

$(gbuild_TARGETS):
	$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@

#
# Clean
#
clean: clean-host clean-build

clean-host:
	rm -fr $(TESTINSTALLDIR)
	rm -fr $(INSTDIR)
	rm -fr $(WORKDIR)

clean-build:
ifneq ($(CROSS_COMPILING),)
	rm -fr $(INSTDIR_FOR_BUILD)
	rm -fr $(WORKDIR_FOR_BUILD)
ifeq ($(OS),ANDROID)
	rm -fr $(SRCDIR)/android/source/obj
	rm -fr $(SRCDIR)/android/source/jniLibs
	rm -fr $(SRCDIR)/android/source/build
	rm -fr $(SRCDIR)/android/source/assets
	rm -fr $(SRCDIR)/android/source/assets_fullUI
	rm -fr $(SRCDIR)/android/source/assets_strippedUI
endif
endif

include $(SRCDIR)/compilerplugins/Makefile.mk

#
# Distclean
#
distclean : clean compilerplugins-clean
	rm -fr \
        $(BUILDDIR)/Makefile \
        $(BUILDDIR)/aclocal.m4 \
        $(BUILDDIR)/autom4te.cache \
        $(BUILDDIR)/bin/bffvalidator.sh \
        $(BUILDDIR)/bin/odfvalidator.sh \
        $(BUILDDIR)/bin/officeotron.sh \
        $(BUILDDIR)/config.log \
        $(BUILDDIR)/config.Build.log \
        $(BUILDDIR)/config.status \
        $(BUILDDIR)/config_build.mk \
        $(BUILDDIR)/config_build_lang.mk \
        $(BUILDDIR)/config_build \
        $(BUILDDIR)/config_host.mk \
        $(BUILDDIR)/config_host.mk.stamp \
        $(BUILDDIR)/config_host_lang.mk \
        $(BUILDDIR)/config_host_lang.mk.stamp \
        $(BUILDDIR)/config_host/*.h \
        $(BUILDDIR)/configure \
        $(BUILDDIR)/hardened_runtime.xcent \
        $(BUILDDIR)/instsetoo_native/util/openoffice.lst \
        $(BUILDDIR)/sysui/desktop/macosx/Info.plist
	$(if $(filter WNT,$(OS)),env -i PATH="$$PATH") $(FIND) $(SRCDIR)/solenv/gdb -name \*.pyc -exec rm {} \;

#
# custom command
#
cmd:
	echo "custom cmd" && ( $(cmd) )

#
# Fetch
#
ifneq ($(DO_FETCH_TARBALLS),)
include $(SRCDIR)/Makefile.fetch
fetch: download
fetch: get-submodules

ifneq (,$(wildcard $(SRCDIR)/.git))
get-submodules:
ifneq ($(foreach i,$(GIT_NEEDED_SUBMODULES),$(SRCDIR)/$(i)/.git),$(wildcard $(foreach i,$(GIT_NEEDED_SUBMODULES),$(SRCDIR)/$(i)/.git)))
	cd $(SRCDIR) && ./g -f clone
endif
ifeq ($(shell test -d $(SRCDIR)/.git; echo $$?),0)
	@cd $(SRCDIR) && ./g -z # make sure the git hooks are in place even if no submodules are needed
endif

else # these sources are from a tarball, so get the other source tarballs
gb_LO_VER := $(shell . $(SRCDIR)/sources.ver && echo $$lo_sources_ver)
$(if $(gb_LO_VER),,$(error Error while retrieving $$lo_sources_ver from $(SRCDIR)/sources.ver))

get-submodules: | download
ifneq ($(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),$(SRCDIR)/src/libreoffice-$(i)-$(gb_LO_VER)),$(wildcard $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),$(SRCDIR)/src/libreoffice-$(i)-$(gb_LO_VER))))
	$(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
		$(call fetch_Download_item_unchecked,http://download.documentfoundation.org/libreoffice/src/$(shell echo $(gb_LO_VER) | sed -e "s/\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/"),libreoffice-$(i)-$(gb_LO_VER).tar.xz))
	$(SRCDIR)/bin/unpack-sources $(SRCDIR) $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
		$(TARFILE_LOCATION)/libreoffice-$(i)-$(gb_LO_VER).tar.xz)
endif

endif

else
fetch:
	@echo "Automatic fetching of external tarballs is disabled."

endif

#
# Bootstrap
#
bootstrap: check-if-root compilerplugins

#
# Build
#
# Note: this will pipe through all gbuild targets to ... gbuild
#       with some translations like "check"->"unitcheck subsequentcheck uicheck" for historic reasons
#
build: bootstrap fetch $(if $(CROSS_COMPILING),cross-toolset) \
        $(if $(filter check,$(MAKECMDGOALS)),$(if $(COMPILER_PLUGINS),$(if $(LODE_HOME),clang-format-check))) \
        install-gdb-printers
	$(MAKE) $(PARALLELISM_OPTION) $(IWYU_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $(build_goal)
ifeq ($(OS),iOS)
	$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) ios
endif

build-non-l10n-only build-l10n-only build-nocheck check debugrun translations packageinfo $(gb_Top_MODULE_CHECK_TARGETS): build

help showmodules gbuildtojson:
	$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@

cross-toolset: bootstrap fetch
# fetch again in case there are externals only needed on build platform
ifneq ($(OS),iOS)
	$(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(BUILDDIR)/Makefile fetch
endif
	$(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild build-tools

install-gdb-printers:
ifneq ($(filter-out WNT MACOSX iOS,$(OS)),)
	mkdir -p $(INSTDIR)
	$(SRCDIR)/solenv/bin/install-gdb-printers -a $(INSTDIR) -c
endif


#
# Install
#

define gb_Top_DoInstall
echo "$(1) in $(INSTALLDIR) ..." && \
$(SRCDIR)/solenv/bin/ooinstall $(2) "$(INSTALLDIR)"

endef

ifneq ($(OS),MACOSX)
define gb_Top_InstallFinished
echo && echo "If you want to edit the .ui files with glade first execute:" && \
echo && echo "export GLADE_CATALOG_SEARCH_PATH=$(2)/share/glade" && \
echo && echo "$(1) finished, you can now execute:" && \
echo "$(2)/program/soffice"

endef
else
define gb_Top_InstallFinished
echo && echo "$(1) finished, you can now run: " && \
echo "open $(2)/$(PRODUCTNAME).app" && \
echo "" && \
echo "To debug: gdb $(2)/$(PRODUCTNAME).app/Contents/MacOS/soffice"

endef
endif

ifneq ($(OS),MACOSX)
install:
	@$(call gb_Top_DoInstall,Installing,)
	@$(call gb_Top_InstallFinished,Installation,$(INSTALLDIR))

install-strip:
	@$(call gb_Top_DoInstall,Installing and stripping binaries,--strip)
	@$(call gb_Top_InstallFinished,Installation,$(INSTALLDIR))
endif # !MACOSX

test-install: build
	@rm -rf $(TESTINSTALLDIR)
	@mkdir -p $(TESTINSTALLDIR)
ifeq ($(OS_FOR_BUILD),WNT)
	cd $(SRCDIR)/instsetoo_native && $(MAKE) LIBO_TEST_INSTALL=TRUE $(GMAKE_OPTIONS)
else
	@$(SRCDIR)/solenv/bin/ooinstall $(TESTINSTALLDIR)
ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
#
# Create Resources/*.lproj directories for languages supported by macOS
	set -x; for lang in ca cs da de el en es fi fr hr hu id it ja ko ms nl no pl pt pt_PT ro ru sk sv th tr uk vi zh_CN zh_TW; do \
		lproj=$(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Resources/$$lang.lproj; \
		mkdir "$$lproj"; \
	done
#
# Remove unnecessary executables in the LibreOfficePython framework
	rm -rf $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Frameworks/LibreOfficePython.framework/Versions/[1-9]*/bin
#
# Remove the python.o object file which is weird and interferes with app store uploading
# And with it removed, presumably the other stuff in the Python lib/python3.3/config-3.3m probably does not make sense either.
	rm -rf $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Frameworks/LibreOfficePython.framework/Versions/[1-9]*/lib/python[1-9]*/config-[1-9]*
#
ifneq ($(ENABLE_MACOSX_SANDBOX),)

# Remove the gengal binary that we hardly need and the shell scripts
# for which code signatures (stored as extended attributes) won't
# survive upload to the App Store anyway. See
# https://developer.apple.com/library/content/documentation/Security/Conceptual/CodeSigningGuide/Procedures/Procedures.html#//apple_ref/doc/uid/TP40005929-CH4-TNTAG201
# We could put the shell scripts somewhere in Resources instead, but
# no 3rd-party code that would be interested in them would look there
# anyway.
	rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/gengal
	rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unopkg
	rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unoinfo
endif
#
# Then use the macosx-codesign-app-bundle script
	@$(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app
endif
endif
	@$(call gb_Top_InstallFinished,Test Installation,$(TESTINSTALLDIR))

mac-app-store-package: test-install
ifneq ($(MACOSX_PACKAGE_SIGNING_IDENTITY),)
	rm -rf "$(PRODUCTNAME).app"
	mv "$(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app" "$(PRODUCTNAME).app"
	productbuild --component "$(PRODUCTNAME).app" /Applications --sign $(MACOSX_PACKAGE_SIGNING_IDENTITY) $(PRODUCTNAME_WITHOUT_SPACES).pkg
else
	@echo You did not provide an installer signing identity with --enable-macosx-package-signing
	@exit 1
endif

distro-pack-install: install
	$(SRCDIR)/bin/distro-install-clean-up
	$(SRCDIR)/bin/distro-install-desktop-integration
	$(SRCDIR)/bin/distro-install-sdk
	$(SRCDIR)/bin/distro-install-file-lists

install-package-%:
	$(MAKE) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@

id:
	@$(SRCDIR)/solenv/bin/create-ids

tags:
	@$(SRCDIR)/solenv/bin/create-tags

etags:
	@$(SRCDIR)/solenv/bin/create-tags -e

docs:
	@$(SRCDIR)/solenv/bin/mkdocs.sh $(SRCDIR)/docs $(SRCDIR)/solenv/inc/doxygen.cfg

findunusedheaders:
	$(SRCDIR)/bin/find-unusedheaders.py

symbols:
	rm -fr $(WORKDIR)/symbols/
	mkdir -p $(WORKDIR)/symbols/
ifeq ($(OS),WNT)
	$(SRCDIR)/bin/symbolstore.py $(WORKDIR)/UnpackedTarball/breakpad/src/tools/windows/binaries/dump_syms.exe $(WORKDIR)/symbols/ $(INSTDIR)/program/*
	$(SRCDIR)/bin/symstore.sh
else
	$(SRCDIR)/bin/symbolstore.py $(WORKDIR)/UnpackedTarball/breakpad/src/tools/linux/dump_syms/dump_syms $(WORKDIR)/symbols/ $(INSTDIR)/program/*
endif

	cd $(WORKDIR)/symbols/ && zip -r $(WORKDIR)/symbols.zip *

create-mar:
	rm -fr $(WORKDIR)/installation/mar/
	rm -fr $(WORKDIR)/installation/temp/
	mkdir -p $(WORKDIR)/installation/temp/
	mkdir -p $(WORKDIR)/installation/mar/
	tar -xzf $(WORKDIR)/installation/LibreOfficeDev/archive/install/en-US/LibreOffice* -C $(WORKDIR)/installation/temp/
	$(SRCDIR)/bin/update/make_full_update.sh $(WORKDIR)/installation/mar/test.mar $(WORKDIR)/installation/temp/*/

upload-symbols:
	$(MAKE) -f $(SRCDIR)/Makefile.gbuild upload-symbols

create-update-info:
	$(MAKE) -f $(SRCDIR)/Makefile.gbuild create-update-info

upload-update-info:
	$(MAKE) -f $(SRCDIR)/Makefile.gbuild upload-update-info

create-partial-info:
	$(MAKE) -f $(SRCDIR)/Makefile.gbuild create-partial-info

dump-deps:
	@$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild

dump-deps-png:
	@$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild | dot -Tpng -o lo.png

dump-deps-sort:
	@$(SRCDIR)/bin/module-deps.pl -t $(MAKE) $(SRCDIR)/Makefile.gbuild

clang-format-check:
	@$(SRCDIR)/solenv/clang-format/check-last-commit

define gb_Top_GbuildToIdeIntegration
$(1)-ide-integration: gbuildtojson $(if $(filter MACOSX,$(OS_FOR_BUILD)),python3.all)
	cd $(SRCDIR) && \
		$(if $(filter MACOSX,$(OS_FOR_BUILD)),PATH="$(INSTROOT_FOR_BUILD)/Frameworks/LibreOfficePython.framework/Versions/Current/bin:$(PATH)") \
		$(SRCDIR)/bin/gbuild-to-ide --ide $(1) --make $(MAKE)

endef

$(foreach ide,\
	codelite \
	vs2017 \
	vs2019 \
	kdevelop \
	vim \
	qtcreator \
	xcode \
        eclipsecdt,\
$(eval $(call gb_Top_GbuildToIdeIntegration,$(ide))))

fuzzers: StaticLibrary_dtoa Library_sal Library_salhelper Library_reg Library_store Library_unoidl codemaker Library_cppu Library_i18nlangtag Library_cppuhelper Library_comphelper StaticLibrary_ulingu StaticLibrary_findsofficepath Library_tl Library_basegfx Library_canvastools Library_cppcanvas Library_dbtools Library_deploymentmisc Library_editeng Library_fwe Library_fwi Library_i18nutil Library_localebe1 Library_sax Library_sofficeapp Library_ucbhelper Rdb_services udkapi offapi Library_gie Library_icg Library_reflection Library_invocadapt Library_bootstrap Library_introspection Library_stocservices Library_xmlreader Library_gcc3_uno instsetoo_native more_fonts StaticLibrary_boost_locale StaticLibrary_fuzzerstubs StaticLibrary_fuzzer_core StaticLibrary_fuzzer_calc StaticLibrary_fuzzer_draw StaticLibrary_fuzzer_writer StaticLibrary_fuzzer_math Library_forui Library_binaryurp Library_io Library_invocation Library_namingservice Library_proxyfac Library_uuresolver Module_ure Library_wpftwriter Executable_pptfuzzer Executable_cgmfuzzer Executable_ww2fuzzer Executable_ww6fuzzer Executable_ww8fuzzer Executable_qpwfuzzer Executable_slkfuzzer Executable_fodtfuzzer Executable_fodsfuzzer Executable_fodpfuzzer Executable_xlsfuzzer Executable_scrtffuzzer Executable_wksfuzzer Executable_diffuzzer Executable_docxfuzzer Executable_xlsxfuzzer Executable_pptxfuzzer Executable_htmlfuzzer Executable_rtffuzzer Executable_mmlfuzzer Executable_mtpfuzzer Executable_olefuzzer Executable_lwpfuzzer Executable_hwpfuzzer Executable_wmffuzzer Executable_dxffuzzer Executable_sftfuzzer Executable_svmfuzzer Executable_tiffuzzer Executable_epsfuzzer Executable_jpgfuzzer Executable_metfuzzer Executable_bmpfuzzer Executable_giffuzzer Executable_pngfuzzer Executable_602fuzzer Executable_tgafuzzer Executable_pcxfuzzer Executable_psdfuzzer Executable_ppmfuzzer Executable_pcdfuzzer Executable_rasfuzzer Executable_pctfuzzer Executable_xpmfuzzer Executable_xbmfuzzer

endif # MAKE_RESTARTS

# vim: set noet sw=4 ts=4:
cdded4ca03e7ca5b96fb356883edfa370'>source/mk/helpcontent2/source/text/scalc/01.po28800
-rw-r--r--source/mk/helpcontent2/source/text/scalc/02.po532
-rw-r--r--source/mk/helpcontent2/source/text/scalc/04.po795
-rw-r--r--source/mk/helpcontent2/source/text/scalc/05.po529
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po5860
-rw-r--r--source/mk/helpcontent2/source/text/schart.po401
-rw-r--r--source/mk/helpcontent2/source/text/schart/00.po275
-rw-r--r--source/mk/helpcontent2/source/text/schart/01.po3928
-rw-r--r--source/mk/helpcontent2/source/text/schart/02.po124
-rw-r--r--source/mk/helpcontent2/source/text/schart/04.po144
-rw-r--r--source/mk/helpcontent2/source/text/sdraw.po556
-rw-r--r--source/mk/helpcontent2/source/text/sdraw/00.po24
-rw-r--r--source/mk/helpcontent2/source/text/sdraw/01.po28
-rw-r--r--source/mk/helpcontent2/source/text/sdraw/04.po438
-rw-r--r--source/mk/helpcontent2/source/text/sdraw/guide.po1145
-rw-r--r--source/mk/helpcontent2/source/text/shared.po1522
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po6589
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po22909
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po9192
-rw-r--r--source/mk/helpcontent2/source/text/shared/04.po1353
-rw-r--r--source/mk/helpcontent2/source/text/shared/05.po602
-rw-r--r--source/mk/helpcontent2/source/text/shared/07.po44
-rw-r--r--source/mk/helpcontent2/source/text/shared/autokorr.po232
-rw-r--r--source/mk/helpcontent2/source/text/shared/autopi.po4847
-rw-r--r--source/mk/helpcontent2/source/text/shared/explorer/database.po7676
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po10180
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po7785
-rw-r--r--source/mk/helpcontent2/source/text/simpress.po829
-rw-r--r--source/mk/helpcontent2/source/text/simpress/00.po689
-rw-r--r--source/mk/helpcontent2/source/text/simpress/01.po4543
-rw-r--r--source/mk/helpcontent2/source/text/simpress/02.po2923
-rw-r--r--source/mk/helpcontent2/source/text/simpress/04.po840
-rw-r--r--source/mk/helpcontent2/source/text/simpress/guide.po2656
-rw-r--r--source/mk/helpcontent2/source/text/smath.po292
-rw-r--r--source/mk/helpcontent2/source/text/smath/00.po381
-rw-r--r--source/mk/helpcontent2/source/text/smath/01.po6445
-rw-r--r--source/mk/helpcontent2/source/text/smath/02.po43
-rw-r--r--source/mk/helpcontent2/source/text/smath/04.po121
-rw-r--r--source/mk/helpcontent2/source/text/smath/guide.po440
-rw-r--r--source/mk/helpcontent2/source/text/swriter.po1051
-rw-r--r--source/mk/helpcontent2/source/text/swriter/00.po1256
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po14112
-rw-r--r--source/mk/helpcontent2/source/text/swriter/02.po1940
-rw-r--r--source/mk/helpcontent2/source/text/swriter/04.po1162
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po8907
-rw-r--r--source/mk/instsetoo_native/inc_openoffice/windows/msi_languages.po2410
-rw-r--r--source/mk/mysqlc/source.po24
-rw-r--r--source/mk/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po20
-rw-r--r--source/mk/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po205
-rw-r--r--source/mk/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po23
-rw-r--r--source/mk/nlpsolver/src/locale.po181
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office.po5736
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po12254
-rw-r--r--source/mk/padmin/source.po646
-rw-r--r--source/mk/readlicense_oo/docs/readme.po524
-rw-r--r--source/mk/reportbuilder/java/com/sun/star/report/function/metadata.po39
-rw-r--r--source/mk/reportbuilder/registry/data/org/openoffice/Office.po64
-rw-r--r--source/mk/reportbuilder/registry/data/org/openoffice/Office/UI.po285
-rw-r--r--source/mk/reportbuilder/registry/data/org/openoffice/TypeDetection.po32
-rw-r--r--source/mk/reportbuilder/util.po23
-rw-r--r--source/mk/reportdesign/source/core/resource.po80
-rw-r--r--source/mk/reportdesign/source/ui/dlg.po569
-rw-r--r--source/mk/reportdesign/source/ui/inspection.po444
-rw-r--r--source/mk/reportdesign/source/ui/report.po390
-rw-r--r--source/mk/sc/source/core/src.po60
-rw-r--r--source/mk/sc/source/ui/cctrl.po40
-rw-r--r--source/mk/sc/source/ui/dbgui.po1147
-rw-r--r--source/mk/sc/source/ui/docshell.po32
-rw-r--r--source/mk/sc/source/ui/drawfunc.po202
-rw-r--r--source/mk/sc/source/ui/formdlg.po80
-rw-r--r--source/mk/sc/source/ui/miscdlgs.po479
-rw-r--r--source/mk/sc/source/ui/navipi.po180
-rw-r--r--source/mk/sc/source/ui/optdlg.po35
-rw-r--r--source/mk/sc/source/ui/pagedlg.po333
-rw-r--r--source/mk/sc/source/ui/src.po13291
-rw-r--r--source/mk/sc/source/ui/styleui.po118
-rw-r--r--source/mk/scaddins/source/analysis.po3638
-rw-r--r--source/mk/scaddins/source/datefunc.po212
-rw-r--r--source/mk/sccomp/source/solver.po60
-rw-r--r--source/mk/scp2/source/accessories.po2306
-rw-r--r--source/mk/scp2/source/activex.po24
-rw-r--r--source/mk/scp2/source/base.po58
-rw-r--r--source/mk/scp2/source/binfilter.po60
-rw-r--r--source/mk/scp2/source/calc.po94
-rw-r--r--source/mk/scp2/source/draw.po76
-rw-r--r--source/mk/scp2/source/extensions.po302
-rw-r--r--source/mk/scp2/source/gnome.po24
-rw-r--r--source/mk/scp2/source/graphicfilter.po140
-rw-r--r--source/mk/scp2/source/impress.po100
-rw-r--r--source/mk/scp2/source/javafilter.po116
-rw-r--r--source/mk/scp2/source/kde.po24
-rw-r--r--source/mk/scp2/source/math.po56
-rw-r--r--source/mk/scp2/source/onlineupdate.po24
-rw-r--r--source/mk/scp2/source/ooo.po2769
-rw-r--r--source/mk/scp2/source/python.po32
-rw-r--r--source/mk/scp2/source/quickstart.po24
-rw-r--r--source/mk/scp2/source/sdkoo.po24
-rw-r--r--source/mk/scp2/source/smoketest.po23
-rw-r--r--source/mk/scp2/source/stdlibs.po23
-rw-r--r--source/mk/scp2/source/tde.po23
-rw-r--r--source/mk/scp2/source/winexplorerext.po24
-rw-r--r--source/mk/scp2/source/writer.po112
-rw-r--r--source/mk/scp2/source/xsltfilter.po26
-rw-r--r--source/mk/scripting/source/pyprov.po23
-rw-r--r--source/mk/sd/source/core.po409
-rw-r--r--source/mk/sd/source/filter/html.po270
-rw-r--r--source/mk/sd/source/ui/accessibility.po66
-rw-r--r--source/mk/sd/source/ui/animations.po706
-rw-r--r--source/mk/sd/source/ui/annotations.po130
-rw-r--r--source/mk/sd/source/ui/app.po2233
-rw-r--r--source/mk/sd/source/ui/dlg.po1577
-rw-r--r--source/mk/sd/source/ui/slideshow.po94
-rw-r--r--source/mk/sd/source/ui/table.po58
-rw-r--r--source/mk/sd/source/ui/view.po286
-rw-r--r--source/mk/sdext/source/minimizer.po25
-rw-r--r--source/mk/sdext/source/minimizer/registry/data/org/openoffice/Office.po20
-rw-r--r--source/mk/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po290
-rw-r--r--source/mk/sdext/source/pdfimport.po23
-rw-r--r--source/mk/sdext/source/presenter.po25
-rw-r--r--source/mk/sdext/source/presenter/help/en-US/com.sun.PresenterScreen.po172
-rw-r--r--source/mk/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po308
-rw-r--r--source/mk/setup_native/source/mac.po112
-rw-r--r--source/mk/sfx2/source/appl.po621
-rw-r--r--source/mk/sfx2/source/bastyp.po32
-rw-r--r--source/mk/sfx2/source/dialog.po1058
-rw-r--r--source/mk/sfx2/source/doc.po732
-rw-r--r--source/mk/sfx2/source/menu.po56
-rw-r--r--source/mk/sfx2/source/view.po148
-rw-r--r--source/mk/shell/source/win32/shlxthandler/res.po164
-rw-r--r--source/mk/starmath/source.po1924
-rw-r--r--source/mk/svl/source/items.po20
-rw-r--r--source/mk/svl/source/misc.po347
-rw-r--r--source/mk/svtools/source/contnr.po232
-rw-r--r--source/mk/svtools/source/control.po214
-rw-r--r--source/mk/svtools/source/dialogs.po851
-rw-r--r--source/mk/svtools/source/filter.po278
-rw-r--r--source/mk/svtools/source/java.po74
-rw-r--r--source/mk/svtools/source/misc.po1554
-rw-r--r--source/mk/svtools/source/toolpanel.po24
-rw-r--r--source/mk/svtools/workben/unodialog.po36
-rw-r--r--source/mk/svx/inc.po296
-rw-r--r--source/mk/svx/source/accessibility.po164
-rw-r--r--source/mk/svx/source/dialog.po3667
-rw-r--r--source/mk/svx/source/engine3d.po675
-rw-r--r--source/mk/svx/source/fmcomp.po104
-rw-r--r--source/mk/svx/source/form.po1210
-rw-r--r--source/mk/svx/source/gallery2.po745
-rw-r--r--source/mk/svx/source/items.po602
-rw-r--r--source/mk/svx/source/src.po583
-rw-r--r--source/mk/svx/source/stbctrls.po121
-rw-r--r--source/mk/svx/source/svdraw.po2591
-rw-r--r--source/mk/svx/source/table.po20
-rw-r--r--source/mk/svx/source/tbxctrls.po384
-rw-r--r--source/mk/svx/source/toolbars.po88
-rw-r--r--source/mk/svx/source/unodialogs/textconversiondlgs.po388
-rw-r--r--source/mk/sw/source/core/layout.po23
-rw-r--r--source/mk/sw/source/core/undo.po653
-rw-r--r--source/mk/sw/source/core/unocore.po44
-rw-r--r--source/mk/sw/source/ui/app.po1137
-rw-r--r--source/mk/sw/source/ui/chrdlg.po498
-rw-r--r--source/mk/sw/source/ui/config.po1208
-rw-r--r--source/mk/sw/source/ui/dbui.po1406
-rw-r--r--source/mk/sw/source/ui/dialog.po436
-rw-r--r--source/mk/sw/source/ui/dochdl.po68
-rw-r--r--source/mk/sw/source/ui/docvw.po395
-rw-r--r--source/mk/sw/source/ui/envelp.po671
-rw-r--r--source/mk/sw/source/ui/fldui.po1049
-rw-r--r--source/mk/sw/source/ui/fmtui.po218
-rw-r--r--source/mk/sw/source/ui/frmdlg.po863
-rw-r--r--source/mk/sw/source/ui/globdoc.po24
-rw-r--r--source/mk/sw/source/ui/index.po911
-rw-r--r--source/mk/sw/source/ui/lingu.po84
-rw-r--r--source/mk/sw/source/ui/misc.po1284
-rw-r--r--source/mk/sw/source/ui/ribbar.po440
-rw-r--r--source/mk/sw/source/ui/shells.po248
-rw-r--r--source/mk/sw/source/ui/smartmenu.po20
-rw-r--r--source/mk/sw/source/ui/table.po590
-rw-r--r--source/mk/sw/source/ui/uiview.po168
-rw-r--r--source/mk/sw/source/ui/utlui.po2071
-rw-r--r--source/mk/sw/source/ui/web.po60
-rw-r--r--source/mk/sw/source/ui/wrtsh.po40
-rw-r--r--source/mk/swext/mediawiki/help.po383
-rw-r--r--source/mk/swext/mediawiki/src.po24
-rw-r--r--source/mk/swext/mediawiki/src/registry/data/org/openoffice/Office.po24
-rw-r--r--source/mk/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po144
-rw-r--r--source/mk/sysui/desktop/share.po309
-rw-r--r--source/mk/uui/source.po754
-rw-r--r--source/mk/vcl/source/src.po874
-rw-r--r--source/mk/wizards/source/euro.po348
-rw-r--r--source/mk/wizards/source/formwizard.po2834
-rw-r--r--source/mk/wizards/source/importwizard.po334
-rw-r--r--source/mk/wizards/source/schedule.po213
-rw-r--r--source/mk/wizards/source/template.po248
-rw-r--r--source/mk/xmlsecurity/source/component.po20
-rw-r--r--source/mk/xmlsecurity/source/dialogs.po368
330 files changed, 323182 insertions, 0 deletions
diff --git a/source/mk/accessibility/source/helper.po b/source/mk/accessibility/source/helper.po
new file mode 100644
index 00000000000..123ac849a02
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Прелистај"
+
+#: accessiblestrings.src#RID_STR_ACC_DESC_PANELDECL_TABBAR.string.text
+msgid "Panel Deck Tab Bar"
+msgstr ""
diff --git a/source/mk/avmedia/source/framework.po b/source/mk/avmedia/source/framework.po
new file mode 100644
index 00000000000..bd2de9fbf5b
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: mediacontrol.src#AVMEDIA_STR_OPEN.string.text
+msgid "Open"
+msgstr "Отвори"
+
+#: mediacontrol.src#AVMEDIA_STR_INSERT.string.text
+msgid "Apply"
+msgstr "Примени"
+
+#: mediacontrol.src#AVMEDIA_STR_PLAY.string.text
+msgid "Play"
+msgstr "Пушти"
+
+#: mediacontrol.src#AVMEDIA_STR_PAUSE.string.text
+msgid "Pause"
+msgstr "Пауза"
+
+#: mediacontrol.src#AVMEDIA_STR_STOP.string.text
+msgid "Stop"
+msgstr "Стоп"
+
+#: mediacontrol.src#AVMEDIA_STR_ENDLESS.string.text
+msgid "Repeat"
+msgstr "Повтори"
+
+#: mediacontrol.src#AVMEDIA_STR_MUTE.string.text
+msgid "Mute"
+msgstr "Исклучи звук"
+
+#: mediacontrol.src#AVMEDIA_STR_ZOOM.string.text
+msgid "View"
+msgstr "Преглед"
+
+#: 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 "Во размер"
+
+#: mediacontrol.src#AVMEDIA_STR_MEDIAPLAYER.string.text
+msgid "Media Player"
+msgstr "Пуштање мултимедија"
diff --git a/source/mk/avmedia/source/viewer.po b/source/mk/avmedia/source/viewer.po
new file mode 100644
index 00000000000..6607c2fafdd
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Вметнување филм и звук"
+
+#: mediawindow.src#AVMEDIA_STR_OPENMEDIA_DLG.string.text
+msgid "Open Movie and Sound"
+msgstr "Отворање филм и звук"
+
+#: mediawindow.src#AVMEDIA_STR_ALL_MEDIAFILES.string.text
+msgid "All movie and sound files"
+msgstr "Сите филмски и звучни датотеки"
+
+#: 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 "Форматот на избраната датотека не е поддржан."
diff --git a/source/mk/basctl/source/basicide.po b/source/mk/basctl/source/basicide.po
new file mode 100644
index 00000000000..cf45f2cff51
--- /dev/null
+++ b/source/mk/basctl/source/basicide.po
@@ -0,0 +1,814 @@
+#. 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-12 00:39+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Модули"
+
+#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_DLG.pageitem.text
+msgid "Dialogs"
+msgstr "Дијалози"
+
+#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_LIB.pageitem.text
+msgid "Libraries"
+msgstr "Библиотеки"
+
+#: moduldlg.src#RID_TD_ORGANIZE.tabdialog.text
+msgid "%PRODUCTNAME Basic Macro Organizer"
+msgstr "Организатор на BASIC-макроа за %PRODUCTNAME"
+
+#: moduldlg.src#RID_TP_MODULS.RID_STR_LIB.fixedtext.text
+msgid "M~odule"
+msgstr "М~одул"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Уреди"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Затвори"
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_NEWMOD.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_NEWMOD.pushbutton.text"
+msgid "~New..."
+msgstr "~Нов..."
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_NEWDLG.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_NEWDLG.pushbutton.text"
+msgid "~New..."
+msgstr "~Нов..."
+
+#: moduldlg.src#RID_TP_MODULS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_MODULS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Избриши"
+
+#: moduldlg.src#RID_TP_DLGS.RID_STR_LIB.fixedtext.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_STR_LIB.fixedtext.text"
+msgid "Dialog"
+msgstr "Дијалог"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Уреди"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Затвори"
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_NEWMOD.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_NEWMOD.pushbutton.text"
+msgid "~New..."
+msgstr "~Нов..."
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_NEWDLG.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_NEWDLG.pushbutton.text"
+msgid "~New..."
+msgstr "~Нов..."
+
+#: moduldlg.src#RID_TP_DLGS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_DLGS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Избриши"
+
+#: moduldlg.src#RID_TP_LIBS.RID_STR_BASICS.fixedtext.text
+msgid "L~ocation"
+msgstr "Л~окација"
+
+#: moduldlg.src#RID_TP_LIBS.RID_STR_LIB.fixedtext.text
+msgid "~Library"
+msgstr "Биб~лиотека"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_EDIT.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Уреди"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_CLOSE.cancelbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Затвори"
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_PASSWORD.pushbutton.text
+msgid "~Password..."
+msgstr "~Лозинка..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_NEWLIB.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_NEWLIB.pushbutton.text"
+msgid "~New..."
+msgstr "~Нова..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_APPEND.pushbutton.text
+msgid "~Import..."
+msgstr "Внес~и..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_EXPORT.pushbutton.text
+msgid "E~xport..."
+msgstr "И~знеси..."
+
+#: moduldlg.src#RID_TP_LIBS.RID_PB_DELETE.pushbutton.text
+msgctxt "moduldlg.src#RID_TP_LIBS.RID_PB_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr "~Избриши"
+
+#: moduldlg.src#RID_DLG_LIBS.RID_FL_OPTIONS.fixedline.text
+msgid "Options"
+msgstr "Опции"
+
+#: moduldlg.src#RID_DLG_LIBS.RID_CB_REF.checkbox.text
+msgid "Insert as reference (read-only)"
+msgstr "Вметни како референца (само за читање)"
+
+#: moduldlg.src#RID_DLG_LIBS.RID_CB_REPL.checkbox.text
+msgid "Replace existing libraries"
+msgstr "Замени постојни библиотеки"
+
+#: 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 "~Име:"
+
+#: moduldlg.src#RID_DLG_EXPORT.RB_EXPORTASPACKAGE.radiobutton.text
+msgid "Export as ~extension"
+msgstr "Изнеси како ~екстензија"
+
+#: 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 "Изнеси како BASIC-библиотека"
+
+#: moduldlg.src#RID_DLG_EXPORT.modaldialog.text
+msgid "Export Basic library"
+msgstr "Изнесување Basic-библиотека"
+
+#: moduldlg.src#RID_STR_EXPORTPACKAGE.string.text
+msgid "Export library as extension"
+msgstr "Изнеси ја библиотеката како екстензија"
+
+#: moduldlg.src#RID_STR_EXPORTBASIC.string.text
+msgctxt "moduldlg.src#RID_STR_EXPORTBASIC.string.text"
+msgid "Export as BASIC library"
+msgstr "Изнеси како BASIC-библиотека"
+
+#: moduldlg.src#RID_STR_PACKAGE_BUNDLE.string.text
+msgid "Extension"
+msgstr "Екстензија"
+
+#: basidesh.src#RID_STR_FILTER_ALLFILES.string.text
+msgid "<All>"
+msgstr "<Сите>"
+
+#: basidesh.src#RID_STR_NOMODULE.string.text
+msgid "< No Module >"
+msgstr "< Нема модул >"
+
+#: basidesh.src#RID_STR_WRONGPASSWORD.string.text
+msgid "Incorrect Password"
+msgstr "Неправилна лозинка"
+
+#: basidesh.src#RID_STR_OPEN.string.text
+msgid "Load"
+msgstr "Вчитување"
+
+#: basidesh.src#RID_STR_SAVE.string.text
+msgid "Save"
+msgstr "Зачувување"
+
+#: 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 ""
+"Изворниот текст е премногу голем и не може ниту да се компилира ниту да се сними.\n"
+"Избришете некои од коментарите или пренесете некои методи во друг модул."
+
+#: basidesh.src#RID_STR_ERROROPENSTORAGE.string.text
+msgid "Error opening file"
+msgstr "Грешка при отворање на датотеката"
+
+#: basidesh.src#RID_STR_ERROROPENLIB.string.text
+msgid "Error loading library"
+msgstr "Грешка при вчитување на библиотеката"
+
+#: basidesh.src#RID_STR_NOLIBINSTORAGE.string.text
+msgid "The file does not contain any BASIC libraries"
+msgstr "Датотеката не содржи ниедна BASIC-библиотека"
+
+#: basidesh.src#RID_STR_BADSBXNAME.string.text
+msgid "Invalid Name"
+msgstr "Невалидно име"
+
+#: basidesh.src#RID_STR_LIBNAMETOLONG.string.text
+msgid "A library name can have up to 30 characters."
+msgstr "Името на библиотека може да има до 30 знаци."
+
+#: basidesh.src#RID_STR_ERRORCHOOSEMACRO.string.text
+msgid "Macros from other documents are not accessible."
+msgstr "Макроата од другите документи не се достапни."
+
+#: basidesh.src#RID_STR_LIBISREADONLY.string.text
+msgid "This library is read-only."
+msgstr "Оваа библиотека е само за читање."
+
+#: basidesh.src#RID_STR_REPLACELIB.string.text
+msgid "'XX' cannot be replaced."
+msgstr "„XX“ не може да биде заменета."
+
+#: basidesh.src#RID_STR_IMPORTNOTPOSSIBLE.string.text
+msgid "'XX' cannot be added."
+msgstr "„XX“ не може да биде додадена."
+
+#: basidesh.src#RID_STR_NOIMPORT.string.text
+msgid "'XX' was not added."
+msgstr "„XX“ не беше додадена."
+
+#: basidesh.src#RID_STR_ENTERPASSWORD.string.text
+msgid "Enter password for 'XX'"
+msgstr "Внесете лозинка за „XX“"
+
+#: basidesh.src#RID_STR_SBXNAMEALLREADYUSED.string.text
+msgid "Name already exists"
+msgstr "Името веќе постои"
+
+#: basidesh.src#RID_STR_SIGNED.string.text
+msgid "(Signed)"
+msgstr "(Потпишано)"
+
+#: basidesh.src#RID_STR_SBXNAMEALLREADYUSED2.string.text
+msgid "Object with same name already exists"
+msgstr "Веќе постои објект со истото име"
+
+#: basidesh.src#RID_STR_FILEEXISTS.string.text
+msgid "The 'XX' file already exists"
+msgstr "Датотеката „XX“ веќе постои"
+
+#: 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 ""
+"Поради безбедосни причини, не можете да го извршите ова макро.\n"
+"\n"
+"За повеќе информации, проверете ги поставувањата за безбедност."
+
+#: basidesh.src#RID_STR_COMPILEERROR.string.text
+msgid "Compile Error: "
+msgstr "Грешка при компилирање: "
+
+#: basidesh.src#RID_STR_RUNTIMEERROR.string.text
+msgid "Runtime Error: #"
+msgstr "Грешка при извршување: бр. "
+
+#: basidesh.src#RID_STR_SEARCHNOTFOUND.string.text
+msgid "Search key not found"
+msgstr "Клучот за пребарување не е најден"
+
+#: basidesh.src#RID_STR_SEARCHFROMSTART.string.text
+msgid "Search to last module complete. Continue at first module?"
+msgstr "Заврши пребарувањето до последниот модул. Да продолжам од првиот модул?"
+
+#: basidesh.src#RID_STR_SEARCHREPLACES.string.text
+msgid "Search key replaced XX times"
+msgstr "Клучот за пребарување е заменет XX пати"
+
+#: basidesh.src#RID_STR_COULDNTREAD.string.text
+msgid "The file could not be read"
+msgstr "Датотеката не можеше да биде прочитана"
+
+#: basidesh.src#RID_STR_COULDNTWRITE.string.text
+msgid "The file could not be saved"
+msgstr "Датотеката не можеше да биде зачувана"
+
+#: basidesh.src#RID_STR_CANNOTCHANGENAMESTDLIB.string.text
+msgid "The name of the default library cannot be changed."
+msgstr "Името на стандардната библиотека не може да биде изменето."
+
+#: basidesh.src#RID_STR_CANNOTCHANGENAMEREFLIB.string.text
+msgid "The name of a referenced library cannot be changed."
+msgstr "Името на референцираната библиотека не може да биде изменето."
+
+#: basidesh.src#RID_STR_CANNOTUNLOADSTDLIB.string.text
+msgid "The default library cannot be deactivated"
+msgstr "Стандардната библиотека не може да биде деактивирана"
+
+#: basidesh.src#RID_STR_GENERATESOURCE.string.text
+msgid "Generating source"
+msgstr "Генерирам извор"
+
+#: basidesh.src#RID_STR_FILENAME.string.text
+msgid "File name:"
+msgstr "Име на датотека:"
+
+#: basidesh.src#RID_STR_APPENDLIBS.string.text
+msgid "Import Libraries"
+msgstr "Внеси библиотеки"
+
+#: basidesh.src#RID_STR_QUERYDELMACRO.string.text
+msgid "Do you want to delete the macro XX?"
+msgstr "Дали сакате да го избришете макрото XX?"
+
+#: basidesh.src#RID_STR_QUERYDELDIALOG.string.text
+msgid "Do you want to delete the XX dialog?"
+msgstr "Дали сакате да го избришете дијалогот XX?"
+
+#: basidesh.src#RID_STR_QUERYDELLIB.string.text
+msgid "Do you want to delete the XX library?"
+msgstr "Дали сакате да ја избришете библиотеката XX?"
+
+#: basidesh.src#RID_STR_QUERYDELLIBREF.string.text
+msgid "Do you want to delete the reference to the XX library?"
+msgstr "Дали сакате да ја избришете референцата до библиотеката XX?"
+
+#: basidesh.src#RID_STR_QUERYDELMODULE.string.text
+msgid "Do you want to delete the XX module?"
+msgstr "Дали сакате да го избришете модулот XX?"
+
+#: basidesh.src#RID_STR_OBJNOTFOUND.string.text
+msgid "Object or method not found"
+msgstr "Објектот или методот не е најден"
+
+#: basidesh.src#RID_STR_BASIC.string.text
+msgid "BASIC"
+msgstr "BASIC"
+
+#: basidesh.src#RID_STR_LINE.string.text
+msgid "Ln"
+msgstr "лин"
+
+#: basidesh.src#RID_STR_COLUMN.string.text
+msgid "Col"
+msgstr "кол"
+
+#: basidesh.src#RID_STR_DOC.string.text
+msgid "Document"
+msgstr "Документ"
+
+#: basidesh.src#RID_BASICIDE_OBJECTBAR.string.text
+msgid "Macro Bar"
+msgstr "Лента за макроа"
+
+#: basidesh.src#RID_STR_CANNOTCLOSE.string.text
+msgid "The window cannot be closed while BASIC is running."
+msgstr "Прозорецот не може да биде затворен додека се извршува BASIC."
+
+#: basidesh.src#RID_STR_REPLACESTDLIB.string.text
+msgid "The default library cannot be replaced."
+msgstr "Стандардната библиотека не може да биде заменета."
+
+#: basidesh.src#RID_STR_REFNOTPOSSIBLE.string.text
+msgid "Reference to 'XX' not possible."
+msgstr "Не е можна референца кон „XX“."
+
+#: basidesh.src#RID_STR_WATCHNAME.string.text
+msgid "Watch"
+msgstr "Следење"
+
+#: basidesh.src#RID_STR_WATCHVARIABLE.string.text
+msgid "Variable"
+msgstr "Променлива"
+
+#: basidesh.src#RID_STR_WATCHVALUE.string.text
+msgid "Value"
+msgstr "Вредност"
+
+#: basidesh.src#RID_STR_WATCHTYPE.string.text
+msgid "Type"
+msgstr "Тип"
+
+#: basidesh.src#RID_STR_STACKNAME.string.text
+msgid "Call Stack"
+msgstr "Стек за повици"
+
+#: basidesh.src#RID_STR_INITIDE.string.text
+msgid "BASIC Initialization"
+msgstr "Иницијализација на BASIC"
+
+#: basidesh.src#RID_STR_STDMODULENAME.string.text
+msgid "Module"
+msgstr "Модул"
+
+#: basidesh.src#RID_STR_STDDIALOGNAME.string.text
+msgctxt "basidesh.src#RID_STR_STDDIALOGNAME.string.text"
+msgid "Dialog"
+msgstr "Дијалог"
+
+#: basidesh.src#RID_STR_STDLIBNAME.string.text
+msgid "Library"
+msgstr "Библиотека"
+
+#: basidesh.src#RID_STR_NEWLIB.string.text
+msgid "New Library"
+msgstr "Нова библиотека"
+
+#: basidesh.src#RID_STR_NEWMOD.string.text
+msgid "New Module"
+msgstr "Нов модул"
+
+#: basidesh.src#RID_STR_NEWDLG.string.text
+msgid "New Dialog"
+msgstr "Нов дијалог"
+
+#: basidesh.src#RID_STR_ALL.string.text
+msgid "All"
+msgstr "Сите"
+
+#: basidesh.src#RID_STR_PAGE.string.text
+msgid "Page"
+msgstr "Страница"
+
+#: basidesh.src#RID_STR_MACRONAMEREQ.string.text
+msgid "A name must be entered."
+msgstr "Мора да биде внесено име."
+
+#: basidesh.src#RID_STR_WILLSTOPPRG.string.text
+msgid ""
+"You will have to restart the program after this edit.\n"
+"Continue?"
+msgstr ""
+"Ќе мора повторно да ја рестартирате програмата по ова уредување.\n"
+"Продолжувате?"
+
+#: basidesh.src#RID_STR_SEARCHALLMODULES.string.text
+msgid "Do you want to replace the text in all active modules?"
+msgstr "Дали сакате да го замените текстот во сите активни модули?"
+
+#: basidesh.src#RID_IMGBTN_REMOVEWATCH.imagebutton.text
+msgid "-"
+msgstr "-"
+
+#: basidesh.src#RID_IMGBTN_REMOVEWATCH.imagebutton.quickhelptext
+msgid "Remove Watch"
+msgstr "Отстрани следење"
+
+#: basidesh.src#RID_STR_REMOVEWATCH.string.text
+msgid "Watch:"
+msgstr "Следи:"
+
+#: basidesh.src#RID_STR_STACK.string.text
+msgid "Calls: "
+msgstr "Повици: "
+
+#: basidesh.src#RID_STR_USERMACROS.string.text
+msgid "My Macros"
+msgstr "Мои макроа"
+
+#: basidesh.src#RID_STR_USERDIALOGS.string.text
+msgid "My Dialogs"
+msgstr "Мои дијалози"
+
+#: basidesh.src#RID_STR_USERMACROSDIALOGS.string.text
+msgid "My Macros & Dialogs"
+msgstr "Мои макроа и дијалози"
+
+#: basidesh.src#RID_STR_SHAREMACROS.string.text
+msgid "%PRODUCTNAME Macros"
+msgstr "Макроа за %PRODUCTNAME"
+
+#: basidesh.src#RID_STR_SHAREDIALOGS.string.text
+msgid "%PRODUCTNAME Dialogs"
+msgstr "Дијалози за %PRODUCTNAME"
+
+#: basidesh.src#RID_STR_SHAREMACROSDIALOGS.string.text
+msgid "%PRODUCTNAME Macros & Dialogs"
+msgstr "Макроа и дијалози за %PRODUCTNAME"
+
+#: basidesh.src#RID_POPUP_BRKPROPS.RID_ACTIV.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_BRKPROPS.RID_ACTIV.menuitem.text"
+msgid "Active"
+msgstr "Активно"
+
+#: basidesh.src#RID_POPUP_BRKPROPS.RID_BRKPROPS.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_BRKPROPS.RID_BRKPROPS.menuitem.text"
+msgid "Properties..."
+msgstr "Својства..."
+
+#: basidesh.src#RID_POPUP_BRKPROPS.menu.text
+msgid "Properties"
+msgstr "Својства"
+
+#: basidesh.src#RID_POPUP_BRKDLG.RID_BRKDLG.menuitem.text
+msgid "Manage Breakpoints..."
+msgstr "Менаџирај точки на прекин..."
+
+#: basidesh.src#RID_POPUP_BRKDLG.menu.text
+msgctxt "basidesh.src#RID_POPUP_BRKDLG.menu.text"
+msgid "Manage Breakpoints"
+msgstr "Менаџирање точки на прекин"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.SID_BASICIDE_NEWMODULE.menuitem.text
+msgid "BASIC Module"
+msgstr "BASIC-модул"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.SID_BASICIDE_NEWDIALOG.menuitem.text
+msgid "BASIC Dialog"
+msgstr "BASIC-дијалог"
+
+#: basidesh.src#RID_POPUP_TABBAR.RID_INSERT.menuitem.text
+msgid "Insert"
+msgstr "Вметни"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_DELETECURRENT.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_DELETECURRENT.menuitem.text"
+msgid "Delete"
+msgstr "Избриши"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_RENAMECURRENT.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_RENAMECURRENT.menuitem.text"
+msgid "Rename"
+msgstr "Преименувај"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_HIDECURPAGE.menuitem.text
+msgid "Hide"
+msgstr "Скриј"
+
+#: basidesh.src#RID_POPUP_TABBAR.SID_BASICIDE_MODULEDLG.menuitem.text
+msgid "Modules..."
+msgstr "Модули..."
+
+#: basidesh.src#RID_POPUP_DLGED.SID_SHOW_PROPERTYBROWSER.menuitem.text
+msgctxt "basidesh.src#RID_POPUP_DLGED.SID_SHOW_PROPERTYBROWSER.menuitem.text"
+msgid "Properties..."
+msgstr "Својства..."
+
+#: basidesh.src#RID_STR_QUERYREPLACEMACRO.string.text
+msgid "Do you want to overwrite the XX macro?"
+msgstr "Дали сакате да го пребришете макрото XX?"
+
+#: basidesh.src#RID_STR_TRANSLATION_NOTLOCALIZED.string.text
+msgid "<Not localized>"
+msgstr "<Не е локализирано>"
+
+#: basidesh.src#RID_STR_TRANSLATION_DEFAULT.string.text
+msgid "[Default Language]"
+msgstr "[Стандарден јазик]"
+
+#: basidesh.src#RID_STR_DOCUMENT_OBJECTS.string.text
+msgid "Document Objects"
+msgstr ""
+
+#: basidesh.src#RID_STR_USERFORMS.string.text
+#, fuzzy
+msgid "Forms"
+msgstr ""
+"#-#-#-#-# shells.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формулари\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форми\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форми\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форми\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форми"
+
+#: basidesh.src#RID_STR_NORMAL_MODULES.string.text
+msgctxt "basidesh.src#RID_STR_NORMAL_MODULES.string.text"
+msgid "Modules"
+msgstr "Модули"
+
+#: basidesh.src#RID_STR_CLASS_MODULES.string.text
+msgid "Class Modules"
+msgstr ""
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_RENAME.string.text
+msgctxt "basidesh.src#RID_STR_DLGIMP_CLASH_RENAME.string.text"
+msgid "Rename"
+msgstr "Преименувај"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_REPLACE.string.text
+msgid "Replace"
+msgstr "Замени"
+
+#: basidesh.src#RID_STR_DLGIMP_CLASH_TITLE.string.text
+msgid "Dialog Import - Name already used"
+msgstr ""
+
+#: 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 ""
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_ADD.string.text
+msgid "Add"
+msgstr "Додај"
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_OMIT.string.text
+msgid "Omit"
+msgstr ""
+
+#: basidesh.src#RID_STR_DLGIMP_MISMATCH_TITLE.string.text
+msgid "Dialog Import - Language Mismatch"
+msgstr ""
+
+#: 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 ""
+
+#: basidesh.src#RID_STR_GETLINE.string.text
+msgid "Goto Line"
+msgstr ""
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.1.itemlist.text
+#, fuzzy
+msgid "Print range"
+msgstr ""
+"#-#-#-#-# pagedlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Опсег за печатење\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Опсег за печатење\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Опсег на печатење"
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.2.itemlist.text
+msgid "All ~Pages"
+msgstr ""
+
+#: basicprint.src#RID_PRINTDLG_STRLIST.3.itemlist.text
+msgid "Pa~ges"
+msgstr ""
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_NEW.pushbutton.text
+msgid "New"
+msgstr "Нова"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_DEL.pushbutton.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_PB_DEL.pushbutton.text"
+msgid "Delete"
+msgstr "Избриши"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_CHKB_ACTIVE.checkbox.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_CHKB_ACTIVE.checkbox.text"
+msgid "Active"
+msgstr "Активно"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_FT_PASS.fixedtext.text
+msgid "Pass Count:"
+msgstr "Број на поминувања:"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.RID_FT_BRKPOINTS.fixedtext.text
+msgid "Breakpoints"
+msgstr "Точки на прекин"
+
+#: brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.modaldialog.text
+msgctxt "brkdlg.src#RID_BASICIDE_BREAKPOINTDLG.modaldialog.text"
+msgid "Manage Breakpoints"
+msgstr "Менаџирање точки на прекин"
+
+#: objdlg.src#RID_BASICIDE_OBJCAT.RID_TB_TOOLBOX.TBITEM_SHOW.toolboxitem.text
+msgid "Show"
+msgstr "Прикажи"
+
+#: objdlg.src#RID_BASICIDE_OBJCAT.dockingwindow.text
+msgid "Object Catalog"
+msgstr ""
+
+#: objdlg.src#RID_STR_TLB_MACROS.string.text
+#, fuzzy
+msgid "Objects Tree"
+msgstr "Објекти"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_DESCR.fixedtext.text
+msgctxt "moptions.src#RID_MACROOPTIONS.RID_FT_DESCR.fixedtext.text"
+msgid "Description"
+msgstr "Опис"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FL_HELP.fixedline.text
+msgid "Help information"
+msgstr "Информации за помошта"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_HELPID.fixedtext.text
+msgid "Help ID"
+msgstr "Ид. на помошта"
+
+#: moptions.src#RID_MACROOPTIONS.RID_FT_HELPNAME.fixedtext.text
+msgid "Help file name"
+msgstr "Име на датотека за помош"
+
+#: moptions.src#RID_MACROOPTIONS.modaldialog.text
+msgctxt "moptions.src#RID_MACROOPTIONS.modaldialog.text"
+msgid "Description"
+msgstr "Опис"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACROSIN.fixedtext.text
+msgid "Existing macros ~in:"
+msgstr "Постојни макроа ~во:"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACRONAME.fixedtext.text
+msgid "~Macro name"
+msgstr "Име на ~макро"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_MACROFROM.fixedtext.text
+msgid "Macro ~from"
+msgstr "~Макро од"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_SAVEMACRO.fixedtext.text
+msgid "Save m~acro in"
+msgstr "Зачувај м~акро во"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_TXT_DESCRIPTION.fixedtext.text
+msgid "De~scription"
+msgstr "Опи~с"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_RUN.pushbutton.text
+msgid "R~un"
+msgstr "И~зврши"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_CLOSE.cancelbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr "Затвори"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_ASSIGN.pushbutton.text
+msgid "~Assign..."
+msgstr "~Додели..."
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_EDIT.pushbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_EDIT.pushbutton.text"
+msgid "~Edit"
+msgstr "~Уреди"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_NEWLIB.pushbutton.text
+msgid "New ~Library"
+msgstr "Нова биб~лиотека"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_NEWMOD.pushbutton.text
+msgid "New M~odule"
+msgstr "Нов м~одул"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_DEL.pushbutton.text
+msgctxt "macrodlg.src#RID_MACROCHOOSER.RID_PB_DEL.pushbutton.text"
+msgid "~Delete"
+msgstr "~Избриши"
+
+#: macrodlg.src#RID_MACROCHOOSER.RID_PB_ORG.pushbutton.text
+msgid "~Organizer..."
+msgstr "~Организатор..."
+
+#: macrodlg.src#RID_MACROCHOOSER.modaldialog.text
+msgid "%PRODUCTNAME Basic Macros"
+msgstr "BASIC-макроа од %PRODUCTNAME"
+
+#: macrodlg.src#RID_STR_STDMACRONAME.string.text
+msgid "Macro"
+msgstr "Макро"
+
+#: macrodlg.src#RID_STR_BTNDEL.string.text
+msgctxt "macrodlg.src#RID_STR_BTNDEL.string.text"
+msgid "~Delete"
+msgstr "~Избриши"
+
+#: macrodlg.src#RID_STR_BTNNEW.string.text
+msgid "~New"
+msgstr "~Ново"
+
+#: macrodlg.src#RID_STR_CLOSE.string.text
+msgctxt "macrodlg.src#RID_STR_CLOSE.string.text"
+msgid "Close"
+msgstr "Затвори"
+
+#: macrodlg.src#RID_STR_CHOOSE.string.text
+msgid "Choose"
+msgstr "Избери"
+
+#: macrodlg.src#RID_STR_RUN.string.text
+msgid "Run"
+msgstr "Изврши"
+
+#: macrodlg.src#RID_STR_RECORD.string.text
+msgid "~Save"
+msgstr "~Зачувај"
diff --git a/source/mk/basctl/source/dlged.po b/source/mk/basctl/source/dlged.po
new file mode 100644
index 00000000000..8adb181c1d3
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Достапни јазици"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_ADD_LANG.pushbutton.text
+msgid "Add..."
+msgstr "Додај..."
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_DEL_LANG.pushbutton.text
+msgid "Delete"
+msgstr "Избриши"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_MAKE_DEFAULT.pushbutton.text
+msgid "Default"
+msgstr "Стандарден"
+
+#: 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 "Стандардниот јазик се користи ако нема достапна локализација за корисничкиот интерфејс. Исто така сите пораки од стандардниот јазик се копираат во ресурсите на новододадените јазици."
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.PB_CLOSE.okbutton.text
+msgid "~Close"
+msgstr "~Затвори"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_DEF_LANG.string.text
+msgid "[Default Language]"
+msgstr "[Стандарден јазик]"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_DELETE.string.text
+msgid "~Delete"
+msgstr "~Избриши"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.STR_CREATE_LANG.string.text
+msgid "<Press 'Add' to create language resources>"
+msgstr "<Притиснете „Додај“ за да креирате ресурси за јазик>"
+
+#: managelang.src#RID_DLG_MANAGE_LANGUAGE.modaldialog.text
+msgid "Manage User Interface Languages [$1]"
+msgstr "Менаџирање на јазици за кориснички интерфејси [$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 ""
+"Ќе ги избришете ресурсите за избраниот јазик(ци). Сите пораки за овој јазик(ци) ќе бидат избришани.\n"
+"\n"
+"Дали сакате да ги избришете ресурсите за избраниот јазик(ци)?"
+
+#: managelang.src#RID_QRYBOX_LANGUAGE.querybox.title
+msgid "Delete Language Resources"
+msgstr "Бришење ресурси за јазик"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.FT_DEF_LANGUAGE.fixedtext.text
+msgid "Default language"
+msgstr "Стандарден јазик"
+
+#: 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 "Изберете јазик за да го дефинирате стандардниот јазик за корисничкиот интерфејс. Сите пораки што се тековно активни ќе бидат доделени на ресурсите што ќе се креираат за избраниот јазик."
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_TITLE.string.text
+msgid "Add User Interface Languages"
+msgstr "Додавање јазици за кориснички интерфејси"
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.STR_ADDLANG_LABEL.string.text
+msgid "Available Languages"
+msgstr "Достапни јазици"
+
+#: 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 "Изберете јазици за додавање. За овие јазици ќе бидат креирани ресурси во библиотеката. Пораките од тековниот јазик за корисничкиот интерфејс ќе бидат копирани во новите ресурси."
+
+#: managelang.src#RID_DLG_SETDEF_LANGUAGE.modaldialog.text
+msgid "Set Default User Interface Language"
+msgstr "Поставување стандарден јазик"
+
+#: dlgresid.src#RID_STR_BRWTITLE_PROPERTIES.string.text
+msgid "Properties: "
+msgstr "Својства: "
+
+#: dlgresid.src#RID_STR_BRWTITLE_NO_PROPERTIES.string.text
+msgid "No Control marked"
+msgstr "Не е означена контрола"
+
+#: dlgresid.src#RID_STR_BRWTITLE_MULTISELECT.string.text
+msgid "Multiselection"
+msgstr "Повеќекратен избор"
diff --git a/source/mk/basic/source/classes.po b/source/mk/basic/source/classes.po
new file mode 100644
index 00000000000..9bb3d508063
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Синтаксичка грешка."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_GOSUB___ERRCODE_RES_MASK.string.text
+msgid "Return without Gosub."
+msgstr "Враќање без Gosub."
+
+#: sb.src#RID_BASIC_START.SbERR_REDO_FROM_START___ERRCODE_RES_MASK.string.text
+msgid "Incorrect entry; please retry."
+msgstr "Невалиден елемент. Обидете се повторно."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ARGUMENT___ERRCODE_RES_MASK.string.text
+msgid "Invalid procedure call."
+msgstr "Невалиден повик на процедура."
+
+#: sb.src#RID_BASIC_START.SbERR_MATH_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Overflow."
+msgstr "Преполнување."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_MEMORY___ERRCODE_RES_MASK.string.text
+msgid "Not enough memory."
+msgstr "Нема доволно меморија."
+
+#: sb.src#RID_BASIC_START.SbERR_ALREADY_DIM___ERRCODE_RES_MASK.string.text
+msgid "Array already dimensioned."
+msgstr "Низата е веќе димензионирана."
+
+#: sb.src#RID_BASIC_START.SbERR_OUT_OF_RANGE___ERRCODE_RES_MASK.string.text
+msgid "Index out of defined range."
+msgstr "Индексот е надвор од дефинираниот опсег."
+
+#: sb.src#RID_BASIC_START.SbERR_DUPLICATE_DEF___ERRCODE_RES_MASK.string.text
+msgid "Duplicate definition."
+msgstr "Двојна дефиниција."
+
+#: sb.src#RID_BASIC_START.SbERR_ZERODIV___ERRCODE_RES_MASK.string.text
+msgid "Division by zero."
+msgstr "Делење со нула."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_UNDEFINED___ERRCODE_RES_MASK.string.text
+msgid "Variable not defined."
+msgstr "Променливата не е дефинирана."
+
+#: sb.src#RID_BASIC_START.SbERR_CONVERSION___ERRCODE_RES_MASK.string.text
+msgid "Data type mismatch."
+msgstr "Несовпаѓање на типот на податоци."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PARAMETER___ERRCODE_RES_MASK.string.text
+msgid "Invalid parameter."
+msgstr "Невалиден параметар."
+
+#: sb.src#RID_BASIC_START.SbERR_USER_ABORT___ERRCODE_RES_MASK.string.text
+msgid "Process interrupted by user."
+msgstr "Процесот е прекинат од корисникот."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RESUME___ERRCODE_RES_MASK.string.text
+msgid "Resume without error."
+msgstr "Продолжи без грешка."
+
+#: sb.src#RID_BASIC_START.SbERR_STACK_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Not enough stack memory."
+msgstr "Нема доволно стек-меморија."
+
+#: sb.src#RID_BASIC_START.SbERR_PROC_UNDEFINED___ERRCODE_RES_MASK.string.text
+msgid "Sub-procedure or function procedure not defined."
+msgstr "Потпроцедурата или функциската процедура не е дефинирана."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DLL_LOAD___ERRCODE_RES_MASK.string.text
+msgid "Error loading DLL file."
+msgstr "Грешка при вчитувањето на DLL-датотека."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DLL_CALL___ERRCODE_RES_MASK.string.text
+msgid "Wrong DLL call convention."
+msgstr "Погрешна конвенција при DLL-повик."
+
+#: sb.src#RID_BASIC_START.SbERR_INTERNAL_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Internal error $(ARG1)."
+msgstr "Внатрешна грешка $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CHANNEL___ERRCODE_RES_MASK.string.text
+msgid "Invalid file name or file number."
+msgstr "Невалидно име на датотека или број на датотека."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "File not found."
+msgstr "Датотеката не е пронајдена."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_FILE_MODE___ERRCODE_RES_MASK.string.text
+msgid "Incorrect file mode."
+msgstr "Неправилен режим на датотека."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_ALREADY_OPEN___ERRCODE_RES_MASK.string.text
+msgid "File already open."
+msgstr "Датотеката е веќе отворена."
+
+#: sb.src#RID_BASIC_START.SbERR_IO_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Device I/O error."
+msgstr "В/И грешка на уред."
+
+#: sb.src#RID_BASIC_START.SbERR_FILE_EXISTS___ERRCODE_RES_MASK.string.text
+msgid "File already exists."
+msgstr "Датотеката веќе постои."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RECORD_LENGTH___ERRCODE_RES_MASK.string.text
+msgid "Incorrect record length."
+msgstr "Неправилна должина на запис."
+
+#: sb.src#RID_BASIC_START.SbERR_DISK_FULL___ERRCODE_RES_MASK.string.text
+msgid "Disk or hard drive full."
+msgstr "Дискот или тврдиот диск е полн."
+
+#: sb.src#RID_BASIC_START.SbERR_READ_PAST_EOF___ERRCODE_RES_MASK.string.text
+msgid "Reading exceeds EOF."
+msgstr "Читањето преминува EOF."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_RECORD_NUMBER___ERRCODE_RES_MASK.string.text
+msgid "Incorrect record number."
+msgstr "Неправилен број на запис."
+
+#: sb.src#RID_BASIC_START.SbERR_TOO_MANY_FILES___ERRCODE_RES_MASK.string.text
+msgid "Too many files."
+msgstr "Премногу датотеки."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_DEVICE___ERRCODE_RES_MASK.string.text
+msgid "Device not available."
+msgstr "Уредот не е достапен."
+
+#: sb.src#RID_BASIC_START.SbERR_ACCESS_DENIED___ERRCODE_RES_MASK.string.text
+msgid "Access denied."
+msgstr "Пристапот е одбиен."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_READY___ERRCODE_RES_MASK.string.text
+msgid "Disk not ready."
+msgstr "Дискот не е подготвен."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IMPLEMENTED___ERRCODE_RES_MASK.string.text
+msgid "Not implemented."
+msgstr "Не е имплементирано."
+
+#: sb.src#RID_BASIC_START.SbERR_DIFFERENT_DRIVE___ERRCODE_RES_MASK.string.text
+msgid "Renaming on different drives impossible."
+msgstr "Преименувањето на различни дискови не е можно."
+
+#: sb.src#RID_BASIC_START.SbERR_ACCESS_ERROR___ERRCODE_RES_MASK.string.text
+msgid "Path/File access error."
+msgstr "Грешка при пристап до патека/датотека."
+
+#: sb.src#RID_BASIC_START.SbERR_PATH_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Path not found."
+msgstr "Патеката не е пронајдена."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object variable not set."
+msgstr "Променливата на објект не е поставена."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PATTERN___ERRCODE_RES_MASK.string.text
+msgid "Invalid string pattern."
+msgstr "Невалидна шема на низа."
+
+#: sb.src#RID_BASIC_START.SBERR_IS_NULL___ERRCODE_RES_MASK.string.text
+msgid "Use of zero not permitted."
+msgstr "Употребата на нула не е дозволена."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_ERROR___ERRCODE_RES_MASK.string.text
+msgid "DDE Error."
+msgstr "DDE-грешка."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_WAITINGACK___ERRCODE_RES_MASK.string.text
+msgid "Awaiting response to DDE connection."
+msgstr "Очекувам одговор на DDE-врска."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_OUTOFCHANNELS___ERRCODE_RES_MASK.string.text
+msgid "No DDE channels available."
+msgstr "Нема достапни DDE-канали."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_RESPONSE___ERRCODE_RES_MASK.string.text
+msgid "No application responded to DDE connect initiation."
+msgstr "Нема апликација што одговорила на иницирање на DDE-врска."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_MULT_RESPONSES___ERRCODE_RES_MASK.string.text
+msgid "Too many applications responded to DDE connect initiation."
+msgstr "Премногу апликации одговорија на иницирање на DDE-врска."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_CHANNEL_LOCKED___ERRCODE_RES_MASK.string.text
+msgid "DDE channel locked."
+msgstr "DDE-каналот е заклучен."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NOTPROCESSED___ERRCODE_RES_MASK.string.text
+msgid "External application cannot execute DDE operation."
+msgstr "Надворешната апликација не може да изврши DDE-операција."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_TIMEOUT___ERRCODE_RES_MASK.string.text
+msgid "Timeout while waiting for DDE response."
+msgstr "Времето истече при чекање DDE-одговор."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_USER_INTERRUPT___ERRCODE_RES_MASK.string.text
+msgid "User pressed ESCAPE during DDE operation."
+msgstr "Корисникот притисна ESCAPE при DDE-операција."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_BUSY___ERRCODE_RES_MASK.string.text
+msgid "External application busy."
+msgstr "Надворешната апликација е зафатена."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_DATA___ERRCODE_RES_MASK.string.text
+msgid "DDE operation without data."
+msgstr "DDE-операција без податоци."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_WRONG_DATA_FORMAT___ERRCODE_RES_MASK.string.text
+msgid "Data are in wrong format."
+msgstr "Податоците се во погрешен формат."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_PARTNER_QUIT___ERRCODE_RES_MASK.string.text
+msgid "External application has been terminated."
+msgstr "Надворешната апликација беше прекината."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_CONV_CLOSED___ERRCODE_RES_MASK.string.text
+msgid "DDE connection interrupted or modified."
+msgstr "DDE-врската е прекината или изменета."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_NO_CHANNEL___ERRCODE_RES_MASK.string.text
+msgid "DDE method invoked with no channel open."
+msgstr "DDE-методот е повикан без отворен канал."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_INVALID_LINK___ERRCODE_RES_MASK.string.text
+msgid "Invalid DDE link format."
+msgstr "Невалиден формат на DDE-врска."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_QUEUE_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "DDE message has been lost."
+msgstr "DDE-пораката беше изгубена."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_LINK_ALREADY_EST___ERRCODE_RES_MASK.string.text
+msgid "Paste link already performed."
+msgstr "Врската е веќе вметната."
+
+#: 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 "Режимот на врска не може да се постави поради врска со невалидно име."
+
+#: sb.src#RID_BASIC_START.SbERR_DDE_DLL_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "DDE requires the DDEML.DLL file."
+msgstr "На DDE му е потребна датотеката DDEML.DLL."
+
+#: sb.src#RID_BASIC_START.SbERR_CANNOT_LOAD___ERRCODE_RES_MASK.string.text
+msgid "Module cannot be loaded; invalid format."
+msgstr "Модулот не може да се вчита. Невалиден формат."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_INDEX___ERRCODE_RES_MASK.string.text
+msgid "Invalid object index."
+msgstr "Невалиден индекс на објектот."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_ACTIVE_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object is not available."
+msgstr "Објектот не е достапен."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PROP_VALUE___ERRCODE_RES_MASK.string.text
+msgid "Incorrect property value."
+msgstr "Неточна вредност на својството."
+
+#: sb.src#RID_BASIC_START.SbERR_PROP_READONLY___ERRCODE_RES_MASK.string.text
+msgid "This property is read-only."
+msgstr "Ова својство е само за читање."
+
+#: sb.src#RID_BASIC_START.SbERR_PROP_WRITEONLY___ERRCODE_RES_MASK.string.text
+msgid "This property is write only."
+msgstr "Ова својство е само за запишување."
+
+#: sb.src#RID_BASIC_START.SbERR_INVALID_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Invalid object reference."
+msgstr "Невалидна референца на објектот."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_METHOD___ERRCODE_RES_MASK.string.text
+msgid "Property or method not found: $(ARG1)."
+msgstr "Својството или методот не се пронајдени."
+
+#: sb.src#RID_BASIC_START.SbERR_NEEDS_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Object required."
+msgstr "Потребен е објект."
+
+#: sb.src#RID_BASIC_START.SbERR_INVALID_USAGE_OBJECT___ERRCODE_RES_MASK.string.text
+msgid "Invalid use of an object."
+msgstr "Невалидна употреба на објект."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_OLE___ERRCODE_RES_MASK.string.text
+msgid "OLE Automation is not supported by this object."
+msgstr "OLE-автоматизацијата не е поддржана од овој објект."
+
+#: 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 "Ова својство или метод не се поддржани од овој објект."
+
+#: sb.src#RID_BASIC_START.SbERR_OLE_ERROR___ERRCODE_RES_MASK.string.text
+msgid "OLE Automation Error."
+msgstr "Грешка во OLE-автоматизацијата."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ACTION___ERRCODE_RES_MASK.string.text
+msgid "This action is not supported by given object."
+msgstr "Ова дејство не е поддржано од даден објект."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_NAMED_ARGS___ERRCODE_RES_MASK.string.text
+msgid "Named arguments are not supported by given object."
+msgstr "Именуваните аргументи не се поддржани од даден објект."
+
+#: 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 "Тековното поставувањето на локалот не е поддржано од даден објект."
+
+#: sb.src#RID_BASIC_START.SbERR_NAMED_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Named argument not found."
+msgstr "Именуваниот аргумент не е пронајден."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_OPTIONAL___ERRCODE_RES_MASK.string.text
+msgid "Argument is not optional."
+msgstr "Аргументот не е изборен."
+
+#: 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 "Невалиден број аргументи."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_A_COLL___ERRCODE_RES_MASK.string.text
+msgid "Object is not a list."
+msgstr "Објектот не е листа."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_ORDINAL___ERRCODE_RES_MASK.string.text
+msgid "Invalid ordinal number."
+msgstr "Невалиден реден број."
+
+#: sb.src#RID_BASIC_START.SbERR_DLLPROC_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Specified DLL function not found."
+msgstr "Наведената DLL-функција не е пронајдена."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CLIPBD_FORMAT___ERRCODE_RES_MASK.string.text
+msgid "Invalid clipboard format."
+msgstr "Невалиден формат на табла со исечоци."
+
+#: sb.src#RID_BASIC_START.SbERR_PROPERTY_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Object does not have this property."
+msgstr "Објектот го нема ова својство."
+
+#: sb.src#RID_BASIC_START.SbERR_METHOD_NOT_FOUND___ERRCODE_RES_MASK.string.text
+msgid "Object does not have this method."
+msgstr "Објектот го нема овој метод."
+
+#: sb.src#RID_BASIC_START.SbERR_ARG_MISSING___ERRCODE_RES_MASK.string.text
+msgid "Required argument lacking."
+msgstr "Недостига потребниот аргумент."
+
+#: 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 "Невалиден број аргументи."
+
+#: sb.src#RID_BASIC_START.SbERR_METHOD_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Error executing a method."
+msgstr "Грешка при извршувањето на метод."
+
+#: sb.src#RID_BASIC_START.SbERR_SETPROP_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Unable to set property."
+msgstr "Не може да се постави својството."
+
+#: sb.src#RID_BASIC_START.SbERR_GETPROP_FAILED___ERRCODE_RES_MASK.string.text
+msgid "Unable to determine property."
+msgstr "Не е можно да се одреди својството."
+
+#: sb.src#RID_BASIC_START.SbERR_UNEXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Unexpected symbol: $(ARG1)."
+msgstr "Неочекуван симбол: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Expected: $(ARG1)."
+msgstr "Очекувано: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_SYMBOL_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Symbol expected."
+msgstr "Се очекуваше симбол."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Variable expected."
+msgstr "Се очекуваше променлива."
+
+#: sb.src#RID_BASIC_START.SbERR_LABEL_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Label expected."
+msgstr "Се очекуваше ознака."
+
+#: sb.src#RID_BASIC_START.SbERR_LVALUE_EXPECTED___ERRCODE_RES_MASK.string.text
+msgid "Value cannot be applied."
+msgstr "Вредноста не може да се употреби."
+
+#: sb.src#RID_BASIC_START.SbERR_VAR_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Variable $(ARG1) already defined."
+msgstr "Променливата $(ARG1) е веќе дефинирана."
+
+#: sb.src#RID_BASIC_START.SbERR_PROC_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Sub procedure or function procedure $(ARG1) already defined."
+msgstr "Потпроцедурата или функциската процедура $(ARG1) е веќе дефинирана."
+
+#: sb.src#RID_BASIC_START.SbERR_LABEL_DEFINED___ERRCODE_RES_MASK.string.text
+msgid "Label $(ARG1) already defined."
+msgstr "Ознаката $(ARG1) е веќе дефинирана."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_VAR___ERRCODE_RES_MASK.string.text
+msgid "Variable $(ARG1) not found."
+msgstr "Променливата $(ARG1) не е пронајдена."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_ARRAY___ERRCODE_RES_MASK.string.text
+msgid "Array or procedure $(ARG1) not found."
+msgstr "Низата или процедурата $(ARG1) не е пронајдена."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_PROC___ERRCODE_RES_MASK.string.text
+msgid "Procedure $(ARG1) not found."
+msgstr "Процедурата $(ARG1) не е пронајдена."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_LABEL___ERRCODE_RES_MASK.string.text
+msgid "Label $(ARG1) undefined."
+msgstr "Ознаката $(ARG1) не е дефинирана."
+
+#: sb.src#RID_BASIC_START.SbERR_UNDEF_TYPE___ERRCODE_RES_MASK.string.text
+msgid "Unknown data type $(ARG1)."
+msgstr "Непознат тип податоци $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_EXIT___ERRCODE_RES_MASK.string.text
+msgid "Exit $(ARG1) expected."
+msgstr "Беше очекуван излез $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_BLOCK___ERRCODE_RES_MASK.string.text
+msgid "Statement block still open: $(ARG1) missing."
+msgstr "Блокот со израз е сѐ уште отворен: недостасува $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_BRACKETS___ERRCODE_RES_MASK.string.text
+msgid "Parentheses do not match."
+msgstr "Заградите не се совпаѓаат."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_DECLARATION___ERRCODE_RES_MASK.string.text
+msgid "Symbol $(ARG1) already defined differently."
+msgstr "Симболот $(ARG1) е веќе дефиниран поинаку."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_PARAMETERS___ERRCODE_RES_MASK.string.text
+msgid "Parameters do not correspond to procedure."
+msgstr "Параметрите не соодветствуваат на процедурата."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_CHAR_IN_NUMBER___ERRCODE_RES_MASK.string.text
+msgid "Invalid character in number."
+msgstr "Невалиден знак во бројот."
+
+#: sb.src#RID_BASIC_START.SbERR_MUST_HAVE_DIMS___ERRCODE_RES_MASK.string.text
+msgid "Array must be dimensioned."
+msgstr "Низата мора да биде димензионирана."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_IF___ERRCODE_RES_MASK.string.text
+msgid "Else/Endif without If."
+msgstr "Else/Endif без If."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IN_SUBR___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1) not allowed within a procedure."
+msgstr "$(ARG1) не е дозволено внатре во процедура."
+
+#: sb.src#RID_BASIC_START.SbERR_NOT_IN_MAIN___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1) not allowed outside a procedure."
+msgstr "$(ARG1) не е дозволено надвор од процедура."
+
+#: sb.src#RID_BASIC_START.SbERR_WRONG_DIMS___ERRCODE_RES_MASK.string.text
+msgid "Dimension specifications do not match."
+msgstr "Спецификациите за димензионирање не се совпаѓаат."
+
+#: sb.src#RID_BASIC_START.SbERR_BAD_OPTION___ERRCODE_RES_MASK.string.text
+msgid "Unknown option: $(ARG1)."
+msgstr "Непозната опција: $(ARG1)."
+
+#: sb.src#RID_BASIC_START.SbERR_CONSTANT_REDECLARED___ERRCODE_RES_MASK.string.text
+msgid "Constant $(ARG1) redefined."
+msgstr "Константата $(ARG1) е редефинирана."
+
+#: sb.src#RID_BASIC_START.SbERR_PROG_TOO_LARGE___ERRCODE_RES_MASK.string.text
+msgid "Program too large."
+msgstr "Програмата е преголема."
+
+#: sb.src#RID_BASIC_START.SbERR_NO_STRINGS_ARRAYS___ERRCODE_RES_MASK.string.text
+msgid "Strings or arrays not permitted."
+msgstr "Не се дозволени низи и матрици."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_EXCEPTION___ERRCODE_RES_MASK.string.text
+msgid "An exception occurred $(ARG1)."
+msgstr "Се појави исклучок $(ARG1)."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_ARRAY_FIX___ERRCODE_RES_MASK.string.text
+msgid "This array is fixed or temporarily locked."
+msgstr "Оваа матрица е фиксна или привремено заклучена."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_STRING_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Out of string space."
+msgstr "Нема веќе простор за низата."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_EXPR_TOO_COMPLEX___ERRCODE_RES_MASK.string.text
+msgid "Expression Too Complex."
+msgstr "Изразот е премногу сложен."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_OPER_NOT_PERFORM___ERRCODE_RES_MASK.string.text
+msgid "Can't perform requested operation."
+msgstr "Не можам да ја извршам бараната операција."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_TOO_MANY_DLL___ERRCODE_RES_MASK.string.text
+msgid "Too many DLL application clients."
+msgstr "Премногу клиенти за DLL апликацијата."
+
+#: sb.src#RID_BASIC_START.ERRCODE_BASIC_LOOP_NOT_INIT___ERRCODE_RES_MASK.string.text
+msgid "For loop not initialized."
+msgstr "Не е иницијализирано за повторување."
+
+#: 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 "Макрото што се извршуваше беше прекинато."
+
+#: sb.src#IDS_SBERR_STOREREF.string.text
+msgid "Reference will not be saved: "
+msgstr "Референцата нема да бидат зачувана: "
+
+#: sb.src#ERRCODE_BASMGR_LIBLOAD___ERRCODE_RES_MASK.string.text
+msgid "Error loading library '$(ARG1)'."
+msgstr "Грешка при вчитувањето на библиотеката „$(ARG1)“."
+
+#: sb.src#ERRCODE_BASMGR_LIBSAVE___ERRCODE_RES_MASK.string.text
+msgid "Error saving library: '$(ARG1)'."
+msgstr "Грешка при зачувувањето на библиотеката: „$(ARG1)“."
+
+#: sb.src#ERRCODE_BASMGR_MGROPEN___ERRCODE_RES_MASK.string.text
+msgid "The BASIC from the file '$(ARG1)' could not be initialized."
+msgstr "Не може да биде иницијализиран BASIC од датотеката „$(ARG1)“."
+
+#: sb.src#ERRCODE_BASMGR_MGRSAVE___ERRCODE_RES_MASK.string.text
+msgid "Error saving BASIC: '$(ARG1)'."
+msgstr "Грешка при зачувување на BASIC: „$(ARG1)“."
+
+#: sb.src#ERRCODE_BASMGR_REMOVELIB___ERRCODE_RES_MASK.string.text
+msgid "Error removing library."
+msgstr "Грешка при отстранувањето на библиотеката."
+
+#: sb.src#ERRCODE_BASMGR_UNLOADLIB___ERRCODE_RES_MASK.string.text
+msgid "The library could not be removed from memory."
+msgstr "Библиотеката не може да се отстрани од меморијата."
diff --git a/source/mk/basic/source/sbx.po b/source/mk/basic/source/sbx.po
new file mode 100644
index 00000000000..3ed35b6388a
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Вкл."
+
+#: format.src#STR_BASICKEY_FORMAT_OFF.string.text
+msgid "Off"
+msgstr "Искл."
+
+#: format.src#STR_BASICKEY_FORMAT_TRUE.string.text
+msgid "True"
+msgstr "Точно"
+
+#: format.src#STR_BASICKEY_FORMAT_FALSE.string.text
+msgid "False"
+msgstr "Неточно"
+
+#: format.src#STR_BASICKEY_FORMAT_YES.string.text
+msgid "Yes"
+msgstr "Да"
+
+#: format.src#STR_BASICKEY_FORMAT_NO.string.text
+msgid "No"
+msgstr "Не"
+
+#: format.src#STR_BASICKEY_FORMAT_CURRENCY.string.text
+msgid "@0.00 $;@(0.00 $)"
+msgstr "@0.00 ден.;@(0.00 ден.)"
diff --git a/source/mk/chart2/source/controller/dialogs.po b/source/mk/chart2/source/controller/dialogs.po
new file mode 100644
index 00000000000..30580ec8442
--- /dev/null
+++ b/source/mk/chart2/source/controller/dialogs.po
@@ -0,0 +1,1790 @@
+#. 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 14:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Вертикално напластени"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FT_DEGREES.fixedtext.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FT_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Степени"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FL_ALIGN.fixedline.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FL_ALIGN.fixedline.text"
+msgid "Text orientation"
+msgstr "Ориентација на текст"
+
+#: tp_TitleRotation.src#TP_ALIGNMENT.FT_TEXTDIR.fixedtext.text
+msgctxt "tp_TitleRotation.src#TP_ALIGNMENT.FT_TEXTDIR.fixedtext.text"
+msgid "Te~xt direction"
+msgstr "На~сока на текст"
+
+#: Strings_ChartTypes.src#STR_TYPE_COLUMN.string.text
+msgid "Column"
+msgstr "Колона"
+
+#: Strings_ChartTypes.src#STR_TYPE_BAR.string.text
+msgid "Bar"
+msgstr "Лента"
+
+#: Strings_ChartTypes.src#STR_TYPE_AREA.string.text
+msgctxt "Strings_ChartTypes.src#STR_TYPE_AREA.string.text"
+msgid "Area"
+msgstr "Област"
+
+#: Strings_ChartTypes.src#STR_TYPE_PIE.string.text
+msgid "Pie"
+msgstr "Пита"
+
+#: Strings_ChartTypes.src#STR_PIE_EXPLODED.string.text
+msgid "Exploded Pie Chart"
+msgstr "Поделена пита"
+
+#: Strings_ChartTypes.src#STR_DONUT_EXPLODED.string.text
+msgid "Exploded Donut Chart"
+msgstr "Поделен прстен"
+
+#: Strings_ChartTypes.src#STR_DONUT.string.text
+msgid "Donut"
+msgstr "Прстен"
+
+#: Strings_ChartTypes.src#STR_TYPE_LINE.string.text
+msgctxt "Strings_ChartTypes.src#STR_TYPE_LINE.string.text"
+msgid "Line"
+msgstr "Линија"
+
+#: Strings_ChartTypes.src#STR_TYPE_XY.string.text
+msgid "XY (Scatter)"
+msgstr "XY (сооднос)"
+
+#: Strings_ChartTypes.src#STR_POINTS_AND_LINES.string.text
+msgid "Points and Lines"
+msgstr "Точки и линии"
+
+#: Strings_ChartTypes.src#STR_POINTS_ONLY.string.text
+msgid "Points Only"
+msgstr "Само точки"
+
+#: Strings_ChartTypes.src#STR_LINES_ONLY.string.text
+msgid "Lines Only"
+msgstr "Само линии"
+
+#: Strings_ChartTypes.src#STR_LINES_3D.string.text
+msgid "3D Lines"
+msgstr "3Д-линии"
+
+#: Strings_ChartTypes.src#STR_TYPE_COMBI_COLUMN_LINE.string.text
+msgid "Column and Line"
+msgstr "Колона и линија"
+
+#: Strings_ChartTypes.src#STR_LINE_COLUMN.string.text
+msgid "Columns and Lines"
+msgstr "Колони и линии"
+
+#: Strings_ChartTypes.src#STR_LINE_STACKEDCOLUMN.string.text
+msgid "Stacked Columns and Lines"
+msgstr "Напластени колони и линии"
+
+#: Strings_ChartTypes.src#STR_TYPE_NET.string.text
+msgid "Net"
+msgstr "Мрежа"
+
+#: Strings_ChartTypes.src#STR_TYPE_STOCK.string.text
+msgid "Stock"
+msgstr "Капитал"
+
+#: Strings_ChartTypes.src#STR_STOCK_1.string.text
+msgid "Stock Chart 1"
+msgstr "Графикон на капитал 1"
+
+#: Strings_ChartTypes.src#STR_STOCK_2.string.text
+msgid "Stock Chart 2"
+msgstr "Графикон на капитал 2"
+
+#: Strings_ChartTypes.src#STR_STOCK_3.string.text
+msgid "Stock Chart 3"
+msgstr "Графикон на капитал 3"
+
+#: Strings_ChartTypes.src#STR_STOCK_4.string.text
+msgid "Stock Chart 4"
+msgstr "Графикон на капитал 4"
+
+#: Strings_ChartTypes.src#STR_NORMAL.string.text
+msgid "Normal"
+msgstr "Нормално"
+
+#: Strings_ChartTypes.src#STR_STACKED.string.text
+msgid "Stacked"
+msgstr "Напластено"
+
+#: Strings_ChartTypes.src#STR_PERCENT.string.text
+msgid "Percent Stacked"
+msgstr "Проценти напластено"
+
+#: Strings_ChartTypes.src#STR_DEEP.string.text
+msgctxt "Strings_ChartTypes.src#STR_DEEP.string.text"
+msgid "Deep"
+msgstr "Во длабочина"
+
+#: Strings_ChartTypes.src#STR_FILLED.string.text
+msgid "Filled"
+msgstr ""
+
+#: Strings_ChartTypes.src#STR_TYPE_BUBBLE.string.text
+msgid "Bubble"
+msgstr ""
+
+#: Strings_ChartTypes.src#STR_BUBBLE_1.string.text
+msgid "Bubble Chart"
+msgstr ""
+
+#: Strings.src#STR_DLG_CHART_WIZARD.string.text
+msgid "Chart Wizard"
+msgstr "Волшебник за графикони"
+
+#: Strings.src#STR_DLG_SMOOTH_LINE_PROPERTIES.string.text
+msgid "Smooth Lines"
+msgstr "Мазни линии"
+
+#: Strings.src#STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE.string.text
+msgid "Number Format for Percentage Value"
+msgstr "Формат на број за процентуална вредност"
+
+#: Strings.src#STR_PAGE_CHARTTYPE.string.text
+msgid "Chart Type"
+msgstr "Тип на графикон"
+
+#: Strings.src#STR_PAGE_DATA_RANGE.string.text
+msgid "Data Range"
+msgstr "Опсег на податоците"
+
+#: Strings.src#STR_PAGE_CHART_ELEMENTS.string.text
+msgid "Chart Elements"
+msgstr "Елементи на графиконот"
+
+#: Strings.src#STR_PAGE_CHART_LOCATION.string.text
+msgid "Chart Location"
+msgstr "Локација на графиконот"
+
+#: Strings.src#STR_PAGE_LINE.string.text
+msgctxt "Strings.src#STR_PAGE_LINE.string.text"
+msgid "Line"
+msgstr "Линија"
+
+#: Strings.src#STR_PAGE_BORDER.string.text
+msgid "Borders"
+msgstr "Рабови"
+
+#: Strings.src#STR_PAGE_AREA.string.text
+msgctxt "Strings.src#STR_PAGE_AREA.string.text"
+msgid "Area"
+msgstr "Област"
+
+#: Strings.src#STR_PAGE_TRANSPARENCY.string.text
+msgid "Transparency"
+msgstr "Проѕирност"
+
+#: Strings.src#STR_PAGE_FONT.string.text
+msgctxt "Strings.src#STR_PAGE_FONT.string.text"
+msgid "Font"
+msgstr ""
+
+#: Strings.src#STR_PAGE_FONT_EFFECTS.string.text
+msgctxt "Strings.src#STR_PAGE_FONT_EFFECTS.string.text"
+msgid "Font Effects"
+msgstr "Ефекти на фонт"
+
+#: Strings.src#STR_PAGE_NUMBERS.string.text
+msgid "Numbers"
+msgstr "Броеви"
+
+#: Strings.src#STR_PAGE_POSITION.string.text
+msgctxt "Strings.src#STR_PAGE_POSITION.string.text"
+msgid "Position"
+msgstr "Позиција"
+
+#: Strings.src#STR_BUTTON_UP.string.text
+msgid "Up"
+msgstr "Нагоре"
+
+#: Strings.src#STR_BUTTON_DOWN.string.text
+msgid "Down"
+msgstr "Надолу"
+
+#: Strings.src#STR_PAGE_LAYOUT.string.text
+msgid "Layout"
+msgstr "Изглед"
+
+#: Strings.src#STR_PAGE_OPTIONS.string.text
+msgid "Options"
+msgstr "Опции"
+
+#: Strings.src#STR_PAGE_SCALE.string.text
+msgctxt "Strings.src#STR_PAGE_SCALE.string.text"
+msgid "Scale"
+msgstr "Размер"
+
+#: Strings.src#STR_PAGE_POSITIONING.string.text
+msgid "Positioning"
+msgstr "Позиционирање"
+
+#: Strings.src#STR_PAGE_TRENDLINE_TYPE.string.text
+msgid "Type"
+msgstr "Тип"
+
+#: Strings.src#STR_PAGE_XERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_XERROR_BARS.string.text"
+msgid "X Error Bars"
+msgstr "Y ленти за грешки"
+
+#: Strings.src#STR_PAGE_YERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_YERROR_BARS.string.text"
+msgid "Y Error Bars"
+msgstr "Y ленти за грешки"
+
+#: Strings.src#STR_PAGE_ZERROR_BARS.string.text
+#, fuzzy
+msgctxt "Strings.src#STR_PAGE_ZERROR_BARS.string.text"
+msgid "Z Error Bars"
+msgstr "Y ленти за грешки"
+
+#: Strings.src#STR_PAGE_ALIGNMENT.string.text
+msgctxt "Strings.src#STR_PAGE_ALIGNMENT.string.text"
+msgid "Alignment"
+msgstr "Порамнување"
+
+#: Strings.src#STR_PAGE_PERSPECTIVE.string.text
+msgid "Perspective"
+msgstr "Перспектива"
+
+#: Strings.src#STR_PAGE_APPEARANCE.string.text
+msgid "Appearance"
+msgstr "Изглед"
+
+#: Strings.src#STR_PAGE_ILLUMINATION.string.text
+msgid "Illumination"
+msgstr "Осветлување"
+
+#: Strings.src#STR_PAGE_ASIAN.string.text
+msgctxt "Strings.src#STR_PAGE_ASIAN.string.text"
+msgid "Asian Typography"
+msgstr ""
+
+#: Strings.src#STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS.string.text
+msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
+msgstr "Средно вредносна линија со вредност %AVERAGE_VALUE и стандардна девијација %STD_DEVIATION"
+
+#: Strings.src#STR_OBJECT_AXIS.string.text
+msgid "Axis"
+msgstr "Оска"
+
+#: Strings.src#STR_OBJECT_AXIS_X.string.text
+msgid "X Axis"
+msgstr "Х-оска"
+
+#: Strings.src#STR_OBJECT_AXIS_Y.string.text
+msgid "Y Axis"
+msgstr "Y-оска"
+
+#: Strings.src#STR_OBJECT_AXIS_Z.string.text
+msgid "Z Axis"
+msgstr "Z-оска"
+
+#: Strings.src#STR_OBJECT_SECONDARY_X_AXIS.string.text
+#, fuzzy
+msgid "Secondary X Axis"
+msgstr "Секундарна Y оска"
+
+#: Strings.src#STR_OBJECT_SECONDARY_Y_AXIS.string.text
+#, fuzzy
+msgid "Secondary Y Axis"
+msgstr "Секундарна Y оска"
+
+#: Strings.src#STR_OBJECT_AXES.string.text
+msgctxt "Strings.src#STR_OBJECT_AXES.string.text"
+msgid "Axes"
+msgstr "Оски"
+
+#: Strings.src#STR_OBJECT_GRIDS.string.text
+msgctxt "Strings.src#STR_OBJECT_GRIDS.string.text"
+msgid "Grids"
+msgstr "Мрежи"
+
+#: Strings.src#STR_OBJECT_GRID.string.text
+msgid "Grid"
+msgstr "Мрежа"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_X.string.text
+msgid "X Axis Major Grid"
+msgstr "Главна мрежа на X-оска"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_Y.string.text
+msgid "Y Axis Major Grid"
+msgstr "Главна мрежа на Y-оска"
+
+#: Strings.src#STR_OBJECT_GRID_MAJOR_Z.string.text
+msgid "Z Axis Major Grid"
+msgstr "Главна мрежа на Z-оска"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_X.string.text
+msgid "X Axis Minor Grid"
+msgstr "Споредна мрежа на X-оска"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_Y.string.text
+msgid "Y Axis Minor Grid"
+msgstr "Споредна мрежа на Y-оска"
+
+#: Strings.src#STR_OBJECT_GRID_MINOR_Z.string.text
+msgid "Z Axis Minor Grid"
+msgstr "Споредна мрежа на Z-оска"
+
+#: Strings.src#STR_OBJECT_LEGEND.string.text
+msgid "Legend"
+msgstr "Легенда"
+
+#: Strings.src#STR_OBJECT_TITLE.string.text
+msgid "Title"
+msgstr "Наслов"
+
+#: Strings.src#STR_OBJECT_TITLES.string.text
+msgid "Titles"
+msgstr "Наслови"
+
+#: Strings.src#STR_OBJECT_TITLE_MAIN.string.text
+msgid "Main Title"
+msgstr "Главен наслов"
+
+#: Strings.src#STR_OBJECT_TITLE_SUB.string.text
+msgid "Subtitle"
+msgstr "Поднаслов"
+
+#: Strings.src#STR_OBJECT_TITLE_X_AXIS.string.text
+msgid "X Axis Title"
+msgstr "Наслов на X-оската"
+
+#: Strings.src#STR_OBJECT_TITLE_Y_AXIS.string.text
+msgid "Y Axis Title"
+msgstr "Наслов на Y-оската"
+
+#: Strings.src#STR_OBJECT_TITLE_Z_AXIS.string.text
+msgid "Z Axis Title"
+msgstr "Наслов на Z-оската"
+
+#: Strings.src#STR_OBJECT_TITLE_SECONDARY_X_AXIS.string.text
+msgid "Secondary X Axis Title"
+msgstr "Наслов на секундарната X оска "
+
+#: Strings.src#STR_OBJECT_TITLE_SECONDARY_Y_AXIS.string.text
+msgid "Secondary Y Axis Title"
+msgstr "Наслов на секундарната Y Оска"
+
+#: Strings.src#STR_OBJECT_LABEL.string.text
+msgid "Label"
+msgstr "Ознака"
+
+#: Strings.src#STR_OBJECT_DATALABELS.string.text
+msgid "Data Labels"
+msgstr "Ознаки на податоците"
+
+#: Strings.src#STR_OBJECT_DATAPOINT.string.text
+msgid "Data Point"
+msgstr "Податочна точка"
+
+#: Strings.src#STR_OBJECT_DATAPOINTS.string.text
+msgid "Data Points"
+msgstr "Податочни точки"
+
+#: Strings.src#STR_OBJECT_LEGEND_SYMBOL.string.text
+msgid "Legend Key"
+msgstr "Клуч за легендата"
+
+#: Strings.src#STR_OBJECT_DATASERIES.string.text
+msgctxt "Strings.src#STR_OBJECT_DATASERIES.string.text"
+msgid "Data Series"
+msgstr "Низи податоци"
+
+#: Strings.src#STR_OBJECT_DATASERIES_PLURAL.string.text
+msgctxt "Strings.src#STR_OBJECT_DATASERIES_PLURAL.string.text"
+msgid "Data Series"
+msgstr "Низи податоци"
+
+#: Strings.src#STR_OBJECT_CURVE.string.text
+msgid "Trend Line"
+msgstr "Линија на тренд"
+
+#: Strings.src#STR_OBJECT_CURVES.string.text
+msgid "Trend Lines"
+msgstr "Линии на тренд"
+
+#: Strings.src#STR_OBJECT_CURVE_WITH_PARAMETERS.string.text
+msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
+msgstr "Линија на тренд %FORMULA со точност R² = %RSQUARED"
+
+#: Strings.src#STR_OBJECT_AVERAGE_LINE.string.text
+msgid "Mean Value Line"
+msgstr "Линија на средна вредност"
+
+#: Strings.src#STR_OBJECT_CURVE_EQUATION.string.text
+msgctxt "Strings.src#STR_OBJECT_CURVE_EQUATION.string.text"
+msgid "Equation"
+msgstr "Равенка"
+
+#: 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 ленти за грешки"
+
+#: 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 ленти за грешки"
+
+#: 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 ленти за грешки"
+
+#: Strings.src#STR_OBJECT_STOCK_LOSS.string.text
+msgid "Stock Loss"
+msgstr "Негативно отстапување"
+
+#: Strings.src#STR_OBJECT_STOCK_GAIN.string.text
+msgid "Stock Gain"
+msgstr "Позитивно отстапување"
+
+#: Strings.src#STR_OBJECT_PAGE.string.text
+msgid "Chart Area"
+msgstr "Област на графикон"
+
+#: Strings.src#STR_OBJECT_DIAGRAM.string.text
+msgid "Chart"
+msgstr "Графикон"
+
+#: Strings.src#STR_OBJECT_DIAGRAM_WALL.string.text
+msgid "Chart Wall"
+msgstr "Ѕид на графиконот"
+
+#: Strings.src#STR_OBJECT_DIAGRAM_FLOOR.string.text
+msgid "Chart Floor"
+msgstr "Под на графиконот"
+
+#: Strings.src#STR_OBJECT_SHAPE.string.text
+msgid "Drawing Object"
+msgstr ""
+
+#: Strings.src#STR_TIP_SELECT_RANGE.string.text
+msgid "Select data range"
+msgstr "Изберете опсег на податоци"
+
+#: Strings.src#STR_TIP_CHOOSECOLOR.string.text
+msgid "Select a color using the color dialog"
+msgstr "Изберете боја преку дијалогот за бои"
+
+#: Strings.src#STR_TIP_LIGHTSOURCE_X.string.text
+msgid "Light Source %LIGHTNUMBER"
+msgstr "Извор на светлина %LIGHTNUMBER"
+
+#: Strings.src#STR_TIP_DATASERIES.string.text
+msgid "Data Series '%SERIESNAME'"
+msgstr "Низи податоци „%SERIESNAME“"
+
+#: Strings.src#STR_TIP_DATAPOINT_INDEX.string.text
+msgid "Data Point %POINTNUMBER"
+msgstr "Податочна точка %POINTNUMBER"
+
+#: Strings.src#STR_TIP_DATAPOINT_VALUES.string.text
+msgid "Values: %POINTVALUES"
+msgstr "Вредности: %POINTVALUES"
+
+#: Strings.src#STR_TIP_DATAPOINT.string.text
+msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+msgstr "Податочна точка %POINTNUMBER, низи податоци %SERIESNUMBER, вредности: %POINTVALUES"
+
+#: Strings.src#STR_STATUS_DATAPOINT_MARKED.string.text
+msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+msgstr "Избрана е податочната точка %POINTNUMBER во низите податоци %SERIESNUMBER, вредности: %POINTVALUES"
+
+#: Strings.src#STR_STATUS_OBJECT_MARKED.string.text
+msgid "%OBJECTNAME selected"
+msgstr "Избрано е %OBJECTNAME"
+
+#: Strings.src#STR_STATUS_PIE_SEGMENT_EXPLODED.string.text
+msgid "Pie exploded by %PERCENTVALUE percent"
+msgstr "Пита поделена на %PERCENTVALUE проценти"
+
+#: Strings.src#STR_OBJECT_FOR_SERIES.string.text
+msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
+msgstr ""
+
+#: Strings.src#STR_OBJECT_FOR_ALL_SERIES.string.text
+msgid "%OBJECTNAME for all Data Series"
+msgstr ""
+
+#: Strings.src#STR_ACTION_EDIT_CHARTTYPE.string.text
+msgid "Edit chart type"
+msgstr "Уреди го типот на графикон"
+
+#: Strings.src#STR_ACTION_EDIT_DATA_RANGES.string.text
+msgid "Edit data ranges"
+msgstr "Уреди ги опсезите со податоци"
+
+#: Strings.src#STR_ACTION_EDIT_3D_VIEW.string.text
+msgid "Edit 3D view"
+msgstr "Уреди 3Д-преглед"
+
+#: Strings.src#STR_ACTION_EDIT_CHART_DATA.string.text
+msgid "Edit chart data"
+msgstr "Уреди ги податоците на графиконот"
+
+#: Strings.src#STR_ACTION_TOGGLE_LEGEND.string.text
+msgid "Legend on/off"
+msgstr "Легенда вкл./искл."
+
+#: Strings.src#STR_ACTION_TOGGLE_GRID_HORZ.string.text
+msgid "Horizontal grid on/off"
+msgstr "Хоризонтална мрежа вкл./искл."
+
+#: Strings.src#STR_ACTION_SCALE_TEXT.string.text
+msgid "Scale Text"
+msgstr "Размер на текст"
+
+#: Strings.src#STR_ACTION_REARRANGE_CHART.string.text
+msgid "Automatic Layout"
+msgstr "Автоматски изглед"
+
+#: Strings.src#STR_ACTION_NOTPOSSIBLE.string.text
+msgid "This function cannot be completed with the selected objects."
+msgstr "Оваа функција не може да биде довршена со избраните објекти."
+
+#: Strings.src#STR_ACTION_EDIT_TEXT.string.text
+#, fuzzy
+msgid "Edit text"
+msgstr "Уреди текст на %1"
+
+#: Strings.src#STR_COLUMN_LABEL.string.text
+msgid "Column %COLUMNNUMBER"
+msgstr "Колона %COLUMNNUMBER"
+
+#: Strings.src#STR_ROW_LABEL.string.text
+msgid "Row %ROWNUMBER"
+msgstr "Ред %ROWNUMBER"
+
+#: Strings.src#STR_DATA_ROLE_LABEL.string.text
+msgid "Name"
+msgstr "Име"
+
+#: Strings.src#STR_DATA_ROLE_X.string.text
+msgid "X-Values"
+msgstr "X-вредности"
+
+#: Strings.src#STR_DATA_ROLE_Y.string.text
+msgid "Y-Values"
+msgstr "Y-вредности"
+
+#: Strings.src#STR_DATA_ROLE_SIZE.string.text
+msgid "Bubble Sizes"
+msgstr ""
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR.string.text
+msgid "X-Error-Bars"
+msgstr "X-ленти-за-грешка"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR_POSITIVE.string.text
+msgid "Positive X-Error-Bars"
+msgstr "Ленти за грешки на позитивен Х"
+
+#: Strings.src#STR_DATA_ROLE_X_ERROR_NEGATIVE.string.text
+msgid "Negative X-Error-Bars"
+msgstr "Ленти за грешки на негативен Х"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR.string.text
+msgid "Y-Error-Bars"
+msgstr "Y-ленти-за-грешка"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR_POSITIVE.string.text
+msgid "Positive Y-Error-Bars"
+msgstr "Ленти за грешки на позитивен Y"
+
+#: Strings.src#STR_DATA_ROLE_Y_ERROR_NEGATIVE.string.text
+msgid "Negative Y-Error-Bars"
+msgstr "Ленти за грешки на негативен Y"
+
+#: Strings.src#STR_DATA_ROLE_FIRST.string.text
+msgid "Open Values"
+msgstr "Вредности на отворање"
+
+#: Strings.src#STR_DATA_ROLE_LAST.string.text
+msgid "Close Values"
+msgstr "Вредности на затворање"
+
+#: Strings.src#STR_DATA_ROLE_MIN.string.text
+msgid "Low Values"
+msgstr "Ниски вредности"
+
+#: Strings.src#STR_DATA_ROLE_MAX.string.text
+msgid "High Values"
+msgstr "Високи вредности"
+
+#: Strings.src#STR_DATA_ROLE_CATEGORIES.string.text
+msgid "Categories"
+msgstr "Категории"
+
+#: Strings.src#STR_DATA_UNNAMED_SERIES.string.text
+msgid "Unnamed Series"
+msgstr "Неименувани серии"
+
+#: Strings.src#STR_DATA_UNNAMED_SERIES_WITH_INDEX.string.text
+msgid "Unnamed Series %NUMBER"
+msgstr "Неименувани серии %NUMBER"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_SERIES.string.text
+msgid "Select Range for %VALUETYPE of %SERIESNAME"
+msgstr "Избери опсег за %VALUETYPE од %SERIESNAME"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_CATEGORIES.string.text
+msgid "Select Range for Categories"
+msgstr "Избирање опсег за категории"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_DATALABELS.string.text
+msgid "Select Range for data labels"
+msgstr "Избирање опсег за ознаките на податоците"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS.string.text
+msgid "Select Range for Positive Error Bars"
+msgstr "Избери опсег за позитивните ленти за грешки"
+
+#: Strings.src#STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS.string.text
+msgid "Select Range for Negative Error Bars"
+msgstr "Избери опсег за негативните ленти за грешки"
+
+#: Strings.src#STR_DATA_EDITOR_INCORRECT_INPUT.string.text
+msgid ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialog?"
+msgstr ""
+"Вашиот последен внес беше неточен.\n"
+"Да ја игнорирам оваа промена и да го затворам дијалогот?"
+
+#: Strings.src#STR_TEXT_DIRECTION_LTR.string.text
+msgid "Left-to-right"
+msgstr "Одлево надесно"
+
+#: Strings.src#STR_TEXT_DIRECTION_RTL.string.text
+msgid "Right-to-left"
+msgstr "Оддесно налево"
+
+#: Strings.src#STR_TEXT_DIRECTION_SUPER.string.text
+msgid "Use superordinate object settings"
+msgstr "Користи поставувања за надредениот објект"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_SCHOW_DESCR.checkbox.text
+msgid "Sho~w labels"
+msgstr "Прика~жи ознаки"
+
+#: 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 "Ориентација на текст"
+
+#: 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 "~Вертикално напластени"
+
+#: 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 "~Степени"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_TEXTFLOW.fixedline.text
+msgid "Text flow"
+msgstr "Тек на текст"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_TEXTOVERLAP.checkbox.text
+msgid "O~verlap"
+msgstr "П~реклопување"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.CB_AXIS_LABEL_TEXTBREAK.checkbox.text
+msgid "~Break"
+msgstr "Пре~лом"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.FL_AXIS_LABEL_ORDER.fixedline.text
+msgid "Order"
+msgstr "Редослед"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_SIDEBYSIDE.radiobutton.text
+msgid "~Tile"
+msgstr "Пл~очка"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_UPDOWN.radiobutton.text
+msgid "St~agger odd"
+msgstr "Прво ~непарни"
+
+#: tp_AxisLabel.src#TP_AXIS_LABEL.RB_AXIS_LABEL_DOWNUP.radiobutton.text
+msgid "Stagger ~even"
+msgstr "Прво п~арни"
+
+#: 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 "А~втоматски"
+
+#: 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 "На~сока на текст"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_CAPTION_FOR_WIZARD.fixedtext.text
+msgid "Customize data ranges for individual data series"
+msgstr "Приспособување на опсезите на податоци за индивидуалните серии"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_SERIES.fixedtext.text
+msgid "Data ~series"
+msgstr "~Серии податоци"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_ROLE.fixedtext.text
+msgid "~Data ranges"
+msgstr "Опсези на по~датоците"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_RANGE.fixedtext.text
+msgid "Ran~ge for %VALUETYPE"
+msgstr "Опсе~г за %VALUETYPE"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_CATEGORIES.fixedtext.text
+msgid "~Categories"
+msgstr "~Категории"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.FT_DATALABELS.fixedtext.text
+msgid "Data ~labels"
+msgstr "О~знаки на податоците"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.BTN_ADD.pushbutton.text
+msgid "~Add"
+msgstr "~Додај"
+
+#: tp_DataSource.src#TP_DATA_SOURCE.BTN_REMOVE.pushbutton.text
+msgid "~Remove"
+msgstr "Отст~рани"
+
+#: tp_ChartType.src#TP_CHARTTYPE.FT_CHARTTYPE.fixedtext.text
+msgid "Choose a chart type"
+msgstr "Изберете тип на графикон"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_X_AXIS_CATEGORIES.checkbox.text
+msgid "X axis with Categories"
+msgstr "X-оска со категории"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_3D_LOOK.checkbox.text
+msgid "~3D Look"
+msgstr "~3Д-изглед"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_STACKED.checkbox.text
+msgid "~Stack series"
+msgstr "Напласти ~серии"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Y.radiobutton.text
+msgid "On top"
+msgstr "На врв"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Y_PERCENT.radiobutton.text
+msgid "Percent"
+msgstr "Процент"
+
+#: tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Z.radiobutton.text
+msgctxt "tp_ChartType.src#TP_CHARTTYPE.RB_STACK_Z.radiobutton.text"
+msgid "Deep"
+msgstr "Во длабочина"
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_SPLINES.checkbox.text
+msgid "S~mooth lines"
+msgstr "~Мазни линии"
+
+#: tp_ChartType.src#TP_CHARTTYPE.PB_SPLINE_DIALOG.pushbutton.text
+msgid "Properties..."
+msgstr "Својства..."
+
+#: tp_ChartType.src#TP_CHARTTYPE.CB_XVALUE_SORTING.checkbox.text
+msgid "~Sort by X values"
+msgstr "По~дреди по X-вредности"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.RB_SPLINES_CUBIC.radiobutton.text
+msgid "Cubic spline"
+msgstr "Кубен сплајн"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.RB_SPLINES_B.radiobutton.text
+msgid "B-Spline"
+msgstr "B-сплајн"
+
+#: tp_ChartType.src#DLG_SPLINE_PROPERTIES.FT_SPLINE_RESOLUTION.fixedtext.text
+msgid "~Resolution"
+msgstr "~Резолуција"
+
+#: 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 "Избирање опсег на податоци"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.FT_RANGE.fixedtext.text
+msgid "~Data range"
+msgstr "Опсег на по~датоци"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.RB_DATAROWS.radiobutton.text
+msgid "Data series in ~rows"
+msgstr "Серии податоци во ~редови"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.RB_DATACOLS.radiobutton.text
+msgid "Data series in ~columns"
+msgstr "Серии податоци во ~колони"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.CB_FIRST_ROW_ASLABELS.checkbox.text
+msgid "~First row as label"
+msgstr "Пр~виот ред како ознака"
+
+#: tp_RangeChooser.src#TP_RANGECHOOSER.CB_FIRST_COLUMN_ASLABELS.checkbox.text
+msgid "F~irst column as label"
+msgstr "Прв~ата колона како ознака"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.1.fixedline.text
+msgid "Align data series to"
+msgstr "Порамни ги низите податоци кон"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RBT_OPT_AXIS_1.radiobutton.text
+msgid "Primary Y axis"
+msgstr "примарна Y-оска"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RBT_OPT_AXIS_2.radiobutton.text
+msgid "Secondary Y axis"
+msgstr "Секундарна Y оска"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.GB_BAR.fixedline.text
+msgid "Settings"
+msgstr "Поставувања"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_OVERLAP.fixedtext.text
+msgid "~Overlap"
+msgstr "Прекл~опи"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_GAP.fixedtext.text
+msgid "~Spacing"
+msgstr "~Растојание"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_CONNECTOR.checkbox.text
+msgid "Connection lines"
+msgstr "Линии за поврзување"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.CB_BARS_SIDE_BY_SIDE.checkbox.text
+msgid "Show ~bars side by side"
+msgstr "Прикажи ~решетки една до друга"
+
+#: 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 ""
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.FT_MISSING_VALUES.fixedtext.text
+msgid "Plot missing values"
+msgstr ""
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_DONT_PAINT.radiobutton.text
+msgid "~Leave gap"
+msgstr "~Остави празнина"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_ASSUME_ZERO.radiobutton.text
+msgid "~Assume zero"
+msgstr "~Претпоставува нула"
+
+#: tp_SeriesToAxis.src#TP_OPTIONS.RB_CONTINUE_LINE.radiobutton.text
+msgid "~Continue line"
+msgstr "~Продолжи линија"
+
+#: 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 ""
+
+#: tp_3D_SceneGeometry.src#CUSTOMUNITTEXT_DEGREE.#define.text
+msgid " degrees"
+msgstr " степени"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.CBX_RIGHT_ANGLED_AXES.checkbox.text
+msgid "~Right-angled axes"
+msgstr "~Десно-аголни оски"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_X_ROTATION.fixedtext.text
+msgid "~X rotation"
+msgstr "~X-ротација"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_Y_ROTATION.fixedtext.text
+msgid "~Y rotation"
+msgstr "~Y-ротација"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.FT_Z_ROTATION.fixedtext.text
+msgid "~Z rotation"
+msgstr "~Z-ротација"
+
+#: tp_3D_SceneGeometry.src#TP_3D_SCENEGEOMETRY.CBX_PERSPECTIVE.checkbox.text
+msgid "~Perspective"
+msgstr "П~ерспектива"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.FL_TYPE.fixedline.text
+msgid "Regression Type"
+msgstr "Тип на регресија"
+
+#: 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 "~Нема"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_LINEAR.radiobutton.text
+msgid "~Linear"
+msgstr "~Линеарно"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_LOGARITHMIC.radiobutton.text
+msgid "L~ogarithmic"
+msgstr "Л~огаритмично"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_EXPONENTIAL.radiobutton.text
+msgid "E~xponential"
+msgstr "E~кспоненцијално"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.RB_POWER.radiobutton.text
+msgid "~Power"
+msgstr "~Степен"
+
+#: 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 "Равенка"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.CB_SHOW_EQUATION.checkbox.text
+msgid "Show ~equation"
+msgstr "Прикажи ~равенка"
+
+#: res_Trendline_tmpl.hrc#RESOURCE_TRENDLINE_availablewidth__yoffset_.CB_SHOW_CORRELATION_COEFF.checkbox.text
+msgid "Show ~coefficient of determination (R²)"
+msgstr "Прикажи коефициент на ~корелација (R²)"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.1.stringlist.text
+msgid "Days"
+msgstr "Денови"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.2.stringlist.text
+msgid "Months"
+msgstr "Месеци"
+
+#: tp_Scale.src#STR_LIST_TIME_UNIT.3.stringlist.text
+msgid "Years"
+msgstr "Години"
+
+#: tp_Scale.src#TP_SCALE.FL_SCALE.fixedline.text
+msgctxt "tp_Scale.src#TP_SCALE.FL_SCALE.fixedline.text"
+msgid "Scale"
+msgstr "Размер"
+
+#: tp_Scale.src#TP_SCALE.CBX_REVERSE.checkbox.text
+msgid "~Reverse direction"
+msgstr "~Обратна насока"
+
+#: tp_Scale.src#TP_SCALE.CBX_LOGARITHM.checkbox.text
+msgid "~Logarithmic scale"
+msgstr "Логаритамска ~скала"
+
+#: tp_Scale.src#TP_SCALE.TXT_AXIS_TYPE.fixedtext.text
+msgid "T~ype"
+msgstr "~Тип"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.1.stringlist.text
+msgid "Automatic"
+msgstr "Автоматски"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.2.stringlist.text
+msgid "Text"
+msgstr "Текст"
+
+#: tp_Scale.src#TP_SCALE.LB_AXIS_TYPE.3.stringlist.text
+#, fuzzy
+msgid "Date"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# pagedlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Број\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# analysis.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# resource.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум"
+
+#: tp_Scale.src#TP_SCALE.TXT_MIN.fixedtext.text
+msgid "~Minimum"
+msgstr "~Минимум"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_MIN.checkbox.text
+msgid "~Automatic"
+msgstr "~Автоматски"
+
+#: tp_Scale.src#TP_SCALE.TXT_MAX.fixedtext.text
+msgid "Ma~ximum"
+msgstr "Ма~ксимум"
+
+#: 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 "А~втоматски"
+
+#: tp_Scale.src#TP_SCALE.TXT_TIME_RESOLUTION.fixedtext.text
+#, fuzzy
+msgid "R~esolution"
+msgstr "~Резолуција"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_TIME_RESOLUTION.checkbox.text
+#, fuzzy
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_TIME_RESOLUTION.checkbox.text"
+msgid "Automat~ic"
+msgstr "Автома~тски"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_MAIN.fixedtext.text
+#, fuzzy
+msgid "Ma~jor interval"
+msgstr "Главен ~интервал:"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_STEP_MAIN.checkbox.text
+msgid "Au~tomatic"
+msgstr "Ав~томатски"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_HELP_COUNT.fixedtext.text
+#, fuzzy
+msgid "Minor inter~val count"
+msgstr "Пре~бројување на споредни интервали:"
+
+#: tp_Scale.src#TP_SCALE.TXT_STEP_HELP.fixedtext.text
+#, fuzzy
+msgid "Minor inter~val"
+msgstr "Главен ~интервал:"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_STEP_HELP.checkbox.text
+msgid "Aut~omatic"
+msgstr "А~втоматски"
+
+#: tp_Scale.src#TP_SCALE.TXT_ORIGIN.fixedtext.text
+#, fuzzy
+msgid "Re~ference value"
+msgstr "Вредност на ~референца :"
+
+#: tp_Scale.src#TP_SCALE.CBX_AUTO_ORIGIN.checkbox.text
+#, fuzzy
+msgctxt "tp_Scale.src#TP_SCALE.CBX_AUTO_ORIGIN.checkbox.text"
+msgid "Automat~ic"
+msgstr "Автома~тски"
+
+#: 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 "Оски"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_PRIMARY_GRID.fixedline.text
+msgid "Major grids"
+msgstr "Главни мрежи"
+
+#: 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 "~Х-оска"
+
+#: 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-оска"
+
+#: 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-оска"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_SECONDARY_AXIS.fixedline.text
+msgid "Secondary axes"
+msgstr "Секундарни оски"
+
+#: dlg_InsertAxis_Grid.src#DLG_AXIS_OR_GRID.FL_SECONDARY_GRID.fixedline.text
+msgid "Minor grids"
+msgstr "Споредни мрежи"
+
+#: Strings_Statistic.src#STR_INDICATE_BOTH.string.text
+msgid "Negative and Positive"
+msgstr "Негатив и позитив"
+
+#: Strings_Statistic.src#STR_INDICATE_DOWN.string.text
+msgid "Negative"
+msgstr "Негативно"
+
+#: Strings_Statistic.src#STR_INDICATE_UP.string.text
+msgid "Positive"
+msgstr "Позитивно"
+
+#: Strings_Statistic.src#STR_CONTROLTEXT_ERROR_BARS_FROM_DATA.string.text
+msgid "From Data Table"
+msgstr "Од податочна табела"
+
+#: Strings_Statistic.src#STR_REGRESSION_LINEAR.string.text
+#, fuzzy
+msgid "Linear (%SERIESNAME)"
+msgstr "Низи податоци „%SERIESNAME“"
+
+#: Strings_Statistic.src#STR_REGRESSION_LOG.string.text
+#, fuzzy
+msgid "Logarithmic (%SERIESNAME)"
+msgstr "Низи податоци „%SERIESNAME“"
+
+#: Strings_Statistic.src#STR_REGRESSION_EXP.string.text
+msgid "Exponential (%SERIESNAME)"
+msgstr ""
+
+#: Strings_Statistic.src#STR_REGRESSION_POWER.string.text
+#, fuzzy
+msgid "Power (%SERIESNAME)"
+msgstr "Низи податоци „%SERIESNAME“"
+
+#: Strings_Statistic.src#STR_REGRESSION_MEAN.string.text
+#, fuzzy
+msgid "Mean (%SERIESNAME)"
+msgstr "Низи податоци „%SERIESNAME“"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.1.stringlist.text
+msgid "Space"
+msgstr "Празно место"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.2.stringlist.text
+msgid "Comma"
+msgstr "Запирка"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.3.stringlist.text
+msgid "Semicolon"
+msgstr "Точка запирка"
+
+#: res_TextSeparator.src#LB_TEXT_SEPARATOR.4.stringlist.text
+msgid "New line"
+msgstr "Нова линија"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.1.stringlist.text
+msgid "Box"
+msgstr "Кутија"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.2.stringlist.text
+msgid "Cylinder"
+msgstr "Цилиндар"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.3.stringlist.text
+msgid "Cone"
+msgstr "Конус"
+
+#: res_BarGeometry.src#LB_BAR_GEOMETRY.4.stringlist.text
+msgid "Pyramid"
+msgstr "Пирамида"
+
+#: tp_3D_SceneIllumination.src#TP_3D_SCENEILLUMINATION.FT_LIGHTSOURCE.fixedtext.text
+msgid "~Light source"
+msgstr "~Извор на светлина"
+
+#: tp_3D_SceneIllumination.src#TP_3D_SCENEILLUMINATION.FT_AMBIENTLIGHT.fixedtext.text
+msgid "~Ambient light"
+msgstr "~Амбиент. светло"
+
+#: tp_3D_SceneIllumination.src#STR_LIGHT_PREVIEW.string.text
+#, fuzzy
+msgid "Light Preview"
+msgstr "Преглед пред печатење"
+
+#: dlg_DataSource.src#DLG_DATA_SOURCE.tabdialog.text
+msgid "Data Ranges"
+msgstr "Опсези на податоците"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_ROW.toolboxitem.text
+msgid "Insert Row"
+msgstr "Вметни ред"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_COL.toolboxitem.text
+msgid "Insert Series"
+msgstr "Вметни серии"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_INSERT_TEXT_COL.toolboxitem.text
+msgid "Insert Text Column"
+msgstr ""
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_DELETE_ROW.toolboxitem.text
+msgid "Delete Row"
+msgstr "Избриши ред"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_DELETE_COL.toolboxitem.text
+msgid "Delete Series"
+msgstr "Избриши серии"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_SWAP_COL.toolboxitem.text
+msgid "Move Series Right"
+msgstr "Премести серии надесно"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.TBX_DATA.TBI_DATA_SWAP_ROW.toolboxitem.text
+msgid "Move Row Down"
+msgstr "Премести ред надолу"
+
+#: dlg_DataEditor.src#DLG_DIAGRAM_DATA.modaldialog.text
+msgid "Data Table"
+msgstr "Табела со податоци"
+
+#: Strings_Scale.src#STR_INVALID_NUMBER.string.text
+msgid "Numbers are required. Check your input."
+msgstr "Потребни се броеви. Проверете го Вашиот внес."
+
+#: Strings_Scale.src#STR_STEP_GT_ZERO.string.text
+msgid "The major interval requires a positive number. Check your input."
+msgstr "За главниот интервал е потребен позитивен број. Проверете го Вашиот внес."
+
+#: Strings_Scale.src#STR_BAD_LOGARITHM.string.text
+msgid "The logarithmic scale requires positive numbers. Check your input."
+msgstr "За логаритамскиот размер се потребни позитивни броеви. Проверете го Вашиот внес."
+
+#: Strings_Scale.src#STR_MIN_GREATER_MAX.string.text
+msgid "The minimum must be lower than the maximum. Check your input."
+msgstr "Минимумот мора да биде помал од максимумот. Проверете го Вашиот внес."
+
+#: Strings_Scale.src#STR_INVALID_INTERVALS.string.text
+#, fuzzy
+msgid "The major interval needs to be greater than the minor interval. Check your input."
+msgstr "За главниот интервал е потребен позитивен број. Проверете го Вашиот внес."
+
+#: Strings_Scale.src#STR_INVALID_TIME_UNIT.string.text
+#, fuzzy
+msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
+msgstr "За главниот интервал е потребен позитивен број. Проверете го Вашиот внес."
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.1.stringlist.text
+msgid "Best fit"
+msgstr "Постави најдобро"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.2.stringlist.text
+msgid "Center"
+msgstr "Центар"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.3.stringlist.text
+msgid "Above"
+msgstr "Над"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.4.stringlist.text
+msgid "Top left"
+msgstr "Горе лево"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.5.stringlist.text
+msgid "Left"
+msgstr "Лево"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.6.stringlist.text
+msgid "Bottom left"
+msgstr "Доле лево"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.7.stringlist.text
+msgid "Below"
+msgstr "Под"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.8.stringlist.text
+msgid "Bottom right"
+msgstr "Доле десно"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.9.stringlist.text
+msgid "Right"
+msgstr "Десно"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.10.stringlist.text
+msgid "Top right"
+msgstr "Горе десно"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.11.stringlist.text
+msgid "Inside"
+msgstr "Внатре"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.12.stringlist.text
+msgid "Outside"
+msgstr "Надвор"
+
+#: res_DataLabel_tmpl.hrc#WORKAROUND.13.stringlist.text
+msgid "Near origin"
+msgstr "Близу до изворот"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_VALUE_AS_NUMBER.checkbox.text
+msgid "Show value as ~number"
+msgstr "Прикажи вредност како ~број"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.PB_NUMBERFORMAT.pushbutton.text
+msgid "Number ~format..."
+msgstr "~Формат на број..."
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_VALUE_AS_PERCENTAGE.checkbox.text
+msgid "Show value as ~percentage"
+msgstr "Прикажи вредност како ~процент"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.PB_PERCENT_NUMBERFORMAT.pushbutton.text
+msgid "Percentage f~ormat..."
+msgstr "Ф~ормат на процент..."
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_CATEGORY.checkbox.text
+msgid "Show ~category"
+msgstr "Прикажи ~категорија"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.CB_SYMBOL.checkbox.text
+msgid "Show ~legend key"
+msgstr "Прикажи копче за ~легенда"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FT_LABEL_PLACEMENT.fixedtext.text
+msgid "Place~ment"
+msgstr "Поста~веност"
+
+#: res_DataLabel_tmpl.hrc#RESOURCE_DATALABEL__xpos__ypos__.FL_LABEL_ROTATE.fixedline.text
+msgid "Rotate Text"
+msgstr ""
+
+#: 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 "~Степени"
+
+#: 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 "На~сока на текст"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_STD_PARAGRAPH.pageitem.text
+msgid "Indents & Spacing"
+msgstr "Вовлекувања и растојание"
+
+#: 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 "Порамнување"
+
+#: 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 ""
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.1.RID_SVXPAGE_TABULATOR.pageitem.text
+msgid "Tab"
+msgstr "Табулатор"
+
+#: dlg_ShapeParagraph.src#DLG_SHAPE_PARAGRAPH.tabdialog.text
+msgid "Paragraph"
+msgstr "Пасус"
+
+#: 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 ""
+
+#: 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 "Ефекти на фонт"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.1.RID_SVXPAGE_CHAR_POSITION.pageitem.text
+msgid "Font Position"
+msgstr "Позиција на фонт"
+
+#: dlg_ShapeFont.src#DLG_SHAPE_FONT.tabdialog.text
+msgid "Character"
+msgstr "Знак"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.FT_SCHEME.fixedtext.text
+msgid "Sche~me"
+msgstr "Ше~ма"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_SHADING.checkbox.text
+msgid "~Shading"
+msgstr "~Сенчање"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_OBJECTLINES.checkbox.text
+msgid "~Object borders"
+msgstr "Рабови на ~објектот"
+
+#: tp_3D_SceneAppearance.src#TP_3D_SCENEAPPEARANCE.CB_ROUNDEDEDGE.checkbox.text
+msgid "~Rounded edges"
+msgstr "З~аоблени агли"
+
+#: 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 ~оска"
+
+#: 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 ос~ка"
+
+#: res_SecondaryAxisCheckBoxes_tmpl.hrc#SECONDARYAXISCHECKBOXES__xpos__ypos__xOffset__yOffset__.CB_Z_SECONDARY.checkbox.text
+msgid "Z axi~s"
+msgstr "Z оска"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_MAINTITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Наслов"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FT_SUBTITLE.fixedtext.text
+msgid "~Subtitle"
+msgstr "~Поднаслов"
+
+#: 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 "Оски"
+
+#: 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-оска"
+
+#: 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-оска"
+
+#: 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 оска"
+
+#: res_Titlesx_tmpl.hrc#TITLES__xpos__ypos__availableWidth__indentLabel__fixedLinesHeight__.FL_SECONDARY_AXES.fixedline.text
+msgid "Secondary Axes"
+msgstr "Секундарни оски"
+
+#: 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 ~оска"
+
+#: 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 ос~ка"
+
+#: tp_Wizard_TitlesAndObjects.src#TP_WIZARD_TITLEANDOBJECTS.FT_TITLEDESCRIPTION.fixedtext.text
+msgid "Choose titles, legend, and grid settings"
+msgstr "Изберете наслови, легенда и поставувања за мрежа"
+
+#: tp_Wizard_TitlesAndObjects.src#TP_WIZARD_TITLEANDOBJECTS.FL_GRIDS.fixedline.text
+msgid "Display grids"
+msgstr "Прикажи мрежи"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.CB_CLOCKWISE.checkbox.text
+msgid "~Clockwise direction"
+msgstr "~Во насока на стрелките на часовникот"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FL_STARTING_ANGLE.fixedline.text
+msgid "Starting angle"
+msgstr "Почетен агол"
+
+#: tp_PolarOptions.src#TP_POLAROPTIONS.FT_ROTATION_DEGREES.fixedtext.text
+msgctxt "tp_PolarOptions.src#TP_POLAROPTIONS.FT_ROTATION_DEGREES.fixedtext.text"
+msgid "~Degrees"
+msgstr "~Степени"
+
+#: 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 ""
+
+#: 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 ""
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.1.stringlist.text
+msgid "Standard Error"
+msgstr "Стандардна грешка"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.2.stringlist.text
+msgid "Standard Deviation"
+msgstr "Стандардна девијација"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.3.stringlist.text
+msgid "Variance"
+msgstr "Варијанса"
+
+#: res_ErrorBar_tmpl.hrc#WORKAROUND.4.stringlist.text
+msgid "Error Margin"
+msgstr "Маргина на грешки"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_ERROR.fixedline.text
+msgid "Error Category"
+msgstr "Категорија за грешки"
+
+#: 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 "~Нема"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_CONST.radiobutton.text
+msgid "~Constant Value"
+msgstr "~Константна вредност"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_PERCENT.radiobutton.text
+msgid "~Percentage"
+msgstr "~Процент"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_RANGE.radiobutton.text
+msgid "Cell ~Range"
+msgstr "~Опсег на ќелии"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_PARAMETERS.fixedline.text
+msgid "Parameters"
+msgstr "Параметри"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FT_POSITIVE.fixedtext.text
+msgid "P~ositive (+)"
+msgstr "По~зитивно (+)"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FT_NEGATIVE.fixedtext.text
+msgid "~Negative (-)"
+msgstr "~Негативно (-)"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.CB_SYN_POS_NEG.checkbox.text
+msgid "Same value for both"
+msgstr "Иста вредност за двете"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.FL_INDICATE.fixedline.text
+msgid "Error Indicator"
+msgstr "Индикатор на грешки"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_BOTH.radiobutton.text
+msgid "Positive ~and Negative"
+msgstr "Позитивно ~и негативно"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_POSITIVE.radiobutton.text
+msgid "Pos~itive"
+msgstr "Пози~тивно"
+
+#: res_ErrorBar_tmpl.hrc#RESOURCE_ERRORBARS_availablewidth__yoffset_.RB_NEGATIVE.radiobutton.text
+msgid "Ne~gative"
+msgstr "Не~гативно"
+
+#: tp_LegendPosition.src#TP_LEGEND_POS.GRP_LEGEND.fixedline.text
+msgctxt "tp_LegendPosition.src#TP_LEGEND_POS.GRP_LEGEND.fixedline.text"
+msgid "Position"
+msgstr "Позиција"
+
+#: 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 "Ориентација на текст"
+
+#: 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 "На~сока на текст"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDDISPLAY__xpos___ypos__.CBX_SHOWLEGEND.checkbox.text
+msgid "~Display legend"
+msgstr "Прикажи ~легенда"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_LEFT.radiobutton.text
+msgid "~Left"
+msgstr "~Лево"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_RIGHT.radiobutton.text
+msgid "~Right"
+msgstr "~Десно"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_TOP.radiobutton.text
+msgid "~Top"
+msgstr "~Горе"
+
+#: res_LegendPosition_tmpl.hrc#RESOURCE_LEGENDPOSITION__xpos___ypos__.RBT_BOTTOM.radiobutton.text
+msgid "~Bottom"
+msgstr "Д~олу"
+
+#: dlg_View3D.src#DLG_3D_VIEW.tabdialog.text
+msgid "3D View"
+msgstr "3Д-преглед"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_AXIS_LINE.fixedline.text
+msgid "Axis line"
+msgstr "Линија на оска"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_CROSSES_OTHER_AXIS_AT.fixedtext.text
+msgid "~Cross other axis at"
+msgstr "Направи ~пресек на оската кај"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.1.stringlist.text
+msgid "Start"
+msgstr "Почеток"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.2.stringlist.text
+msgid "End"
+msgstr "Крај"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.3.stringlist.text
+msgid "Value"
+msgstr "Вредност"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT.4.stringlist.text
+msgid "Category"
+msgstr "Категорија"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_AXIS_BETWEEN_CATEGORIES.checkbox.text
+msgid "Axis ~between categories"
+msgstr "Оска поме~ѓу категории"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_LABELS.fixedline.text
+msgid "Labels"
+msgstr "Налепници"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_PLACE_LABELS.fixedtext.text
+msgid "~Place labels"
+msgstr "~Постави налепници"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.1.stringlist.text
+msgid "Near axis"
+msgstr "Блиску до оската"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.2.stringlist.text
+msgid "Near axis (other side)"
+msgstr "Блиску до оската (од другата страна)"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.3.stringlist.text
+msgid "Outside start"
+msgstr "Надворешен почеток"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_LABELS.4.stringlist.text
+msgid "Outside end"
+msgstr "Надворешен крај"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_AXIS_LABEL_DISTANCE.fixedtext.text
+msgid "~Distance"
+msgstr "Рас~тојание"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_TICKS.fixedline.text
+msgid "Interval marks"
+msgstr "Ознаки на интервал"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_MAJOR.fixedtext.text
+msgid "Major:"
+msgstr "Главен:"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_TICKS_INNER.checkbox.text
+msgid "~Inner"
+msgstr "~Внатрешно"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_TICKS_OUTER.checkbox.text
+msgid "~Outer"
+msgstr "~Надворешно"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_MINOR.fixedtext.text
+msgid "Minor:"
+msgstr "Спореден:"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_INNER.checkbox.text
+msgid "I~nner"
+msgstr "Внат~решно"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_OUTER.checkbox.text
+msgid "O~uter"
+msgstr "Надв~орешни"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FT_PLACE_TICKS.fixedtext.text
+msgid "Place ~marks"
+msgstr "Смести ~ознаки"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.1.stringlist.text
+msgid "At labels"
+msgstr "На налепници"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.2.stringlist.text
+msgid "At axis"
+msgstr "На оски"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.LB_PLACE_TICKS.3.stringlist.text
+msgid "At axis and labels"
+msgstr "На оски и налепници"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_GRIDS.fixedline.text
+msgctxt "tp_AxisPositions.src#TP_AXIS_POSITIONS.FL_GRIDS.fixedline.text"
+msgid "Grids"
+msgstr "Мрежи"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MAJOR_GRID.checkbox.text
+msgid "Show major ~grid"
+msgstr "Прикажи главна ~мрежа"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.PB_MAJOR_GRID.pushbutton.text
+msgid "Mo~re..."
+msgstr "По~веќе..."
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.CB_MINOR_GRID.checkbox.text
+msgid "~Show minor grid"
+msgstr "~Прикажи споредна мрежа"
+
+#: tp_AxisPositions.src#TP_AXIS_POSITIONS.PB_MINOR_GRID.pushbutton.text
+msgid "Mor~e..."
+msgstr "По~веќе..."
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_SIMPLE.string.text
+msgid "Simple"
+msgstr "Едноставно"
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_REALISTIC.string.text
+msgid "Realistic"
+msgstr "Реалистично"
+
+#: Strings_AdditionalControls.src#STR_3DSCHEME_CUSTOM.string.text
+msgid "Custom"
+msgstr "Сопствено"
+
+#: Strings_AdditionalControls.src#STR_BAR_GEOMETRY.string.text
+msgid "Shape"
+msgstr "Облик"
+
+#: Strings_AdditionalControls.src#STR_NUMBER_OF_LINES.string.text
+msgid "~Number of lines"
+msgstr "~Број на линии"
+
+#: Strings_AdditionalControls.src#STR_TEXT_SEPARATOR.string.text
+msgid "Separator"
+msgstr "Разделувач"
diff --git a/source/mk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..d2c0512e687
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..4a23bca1dbd
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..ad172a66fff
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..46d2912e345
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..b96e95792f1
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..9fef697076c
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..8b5d1ddcf31
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..4f4ffc6705a
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..1e8219dff56
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..63104249cea
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/mozab2/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..80c0fb1c326
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..b282a5fd465
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..82a155b6532
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/mk/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
new file mode 100644
index 00000000000..67bd8a2e801
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po b/source/mk/connectivity/registry/tdeab/org/openofffice/Office/DataAccess.po
new file mode 100644
index 00000000000..ea221827cef
--- /dev/null
+++ b/source/mk/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: mk\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/mk/connectivity/source/resource.po b/source/mk/connectivity/source/resource.po
new file mode 100644
index 00000000000..753cc558877
--- /dev/null
+++ b/source/mk/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:22+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Операцијата за снимање беше забранета."
+
+#: conn_error_message.src#256___2_200___0.string.text
+msgid "The statement contains a cyclic reference to one or more sub queries."
+msgstr "Исказот содржи циклична референца до едно или повеќе потпребарувања."
+
+#: conn_error_message.src#256___2_300___0.string.text
+msgid "The name must not contain any slashes ('/')."
+msgstr "Името не смее да содржи коси црти („/“)."
+
+#: conn_error_message.src#256___2_301___0.string.text
+msgid "$1$ is no SQL conform identifier."
+msgstr "$1$ не е идентификатор соодветен со SQL."
+
+#: conn_error_message.src#256___2_302___0.string.text
+msgid "Query names must not contain quote characters."
+msgstr "Имињата на прашањата не смеат да содржат наводници."
+
+#: conn_error_message.src#256___2_303___0.string.text
+msgid "The name '$1$' is already in use in the database."
+msgstr "Името „$1$“ веќе се користи во базата на податоци."
+
+#: conn_error_message.src#256___2_304___0.string.text
+msgid "No connection to the database exists."
+msgstr ""
+
+#: conn_error_message.src#256___2_500___0.string.text
+msgid "No $1$ exists."
+msgstr ""
+
+#: conn_error_message.src#256___2_550___0.string.text
+msgid "Unable to display the complete table content. Please apply a filter."
+msgstr ""
+
+#. 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 ""
+
+#. 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 ""
+
+#: conn_shared_res.src#STR_OE_ADDRESSBOOK.string.text
+msgid "Outlook Express Addressbook"
+msgstr ""
+
+#: conn_shared_res.src#STR_OUTLOOK_MAPI_ADDRESSBOOK.string.text
+msgid "Outlook (MAPI) Addressbook"
+msgstr ""
+
+#: conn_shared_res.src#STR_NO_TABLE_CREATION_SUPPORT.string.text
+msgid "Creating tables is not supported for this kind of address books."
+msgstr "Креирањето табели не е поддржано за овој вид адресари."
+
+#: conn_shared_res.src#STR_MOZILLA_IS_RUNNING.string.text
+msgid "Cannot create new address books while Mozilla is running."
+msgstr "Не можам да креирам адресари додека работи Mozilla."
+
+#: 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 "Не можеше да биде преземен елемент од адресарот; настана непозната грешка."
+
+#: 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 "Не можеше да биде преземено име на директориум од адресарот; настана непозната грешка."
+
+#: conn_shared_res.src#STR_TIMEOUT_WAITING.string.text
+msgid "Timed out while waiting for the result."
+msgstr "Истече времето додека се чекаше резултатот."
+
+#: conn_shared_res.src#STR_ERR_EXECUTING_QUERY.string.text
+msgid "An error occurred while executing the query."
+msgstr "Настана грешка при извршувањето на прашањето."
+
+#: 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 "Не може да направите измени на адресарот на mozilla додека работи mozilla."
+
+#: 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 беше изменет надвор од овој процес и не може да се измени во оваа состојба."
+
+#: conn_shared_res.src#STR_CANT_FIND_ROW.string.text
+msgid "Can't find the requested row."
+msgstr "Не можам да го најдам бараниот ред."
+
+#: conn_shared_res.src#STR_CANT_FIND_CARD_FOR_ROW.string.text
+msgid "Can't find the card for the requested row."
+msgstr "Не можам да ја најдам картичката за бараниот ред."
+
+#: 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 "Прашањето не може да се изврши. Му треба барем една табела."
+
+#: conn_shared_res.src#STR_NO_COUNT_SUPPORT.string.text
+msgid "The driver does not support the 'COUNT' function."
+msgstr "Управувачот не ја поддржува функцијата 'PREBROJ'."
+
+#: conn_shared_res.src#STR_STMT_TYPE_NOT_SUPPORTED.string.text
+msgid "This statement type not supported by this database driver."
+msgstr "Овој тип на исказ не е подржан од овој управувач со база на податоци."
+
+#: conn_shared_res.src#STR_UNSPECIFIED_ERROR.string.text
+#, fuzzy
+msgid "An unknown error occurred."
+msgstr "Се случи непозната грешка."
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_COULD_NOT_LOAD_LIB.string.text
+msgid "The library '$libname$' could not be loaded."
+msgstr "Библиотеката '$libname$' не може да се вчита."
+
+#: conn_shared_res.src#STR_ERROR_REFRESH_ROW.string.text
+#, fuzzy
+msgid "An error occurred while refreshing the current row."
+msgstr "Се случи грешка при освежувањето на тековниот ред."
+
+#: conn_shared_res.src#STR_ERROR_GET_ROW.string.text
+#, fuzzy
+msgid "An error occurred while getting the current row."
+msgstr "Се случи грешка при преземањето на тековниот ред."
+
+#: conn_shared_res.src#STR_CAN_NOT_CANCEL_ROW_UPDATE.string.text
+msgid "The row update can not be canceled."
+msgstr "Ажурирањето на редот не може да се откаже."
+
+#: conn_shared_res.src#STR_CAN_NOT_CREATE_ROW.string.text
+msgid "A new row can not be created."
+msgstr "Не може да се создаде нов ред."
+
+#: 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 "Прашањето не може да се изврши. 'IS NULL' може да се користи со име на колона."
+
+#: conn_shared_res.src#STR_ILLEGAL_MOVEMENT.string.text
+#, fuzzy
+msgid "Illegal cursor movement occurred."
+msgstr "Се случи неправилно движење со курсорот."
+
+#: conn_shared_res.src#STR_COMMIT_ROW.string.text
+msgid "Please commit row '$position$' before update rows or insert new rows."
+msgstr "Ве молам применете го редот '$position$' пред да го ажурирате редот или да внесете нов ред."
+
+#: conn_shared_res.src#STR_INVALID_ROW_UPDATE.string.text
+msgid "The update call can not be executed. The row is invalid."
+msgstr "Повикот за ажурирање не може да се изврши. Редот е невалиден"
+
+#: conn_shared_res.src#STR_ROW_CAN_NOT_SAVE.string.text
+msgid "The current row can not be saved."
+msgstr "Тековниот ред не може да се зачува."
+
+#: conn_shared_res.src#STR_NO_HOSTNAME.string.text
+msgid "No hostname was provided."
+msgstr "Не беше наведено име на сервер."
+
+#: conn_shared_res.src#STR_NO_BASEDN.string.text
+msgid "No Base DN was provided."
+msgstr "Не беше наведено базно DN."
+
+#: conn_shared_res.src#STR_COULD_NOT_CONNECT_LDAP.string.text
+msgid "The connection to the LDAP server could not be established."
+msgstr "Поврзувањето со LDAP-серверот не можеше да биде воспоставено."
+
+#: conn_shared_res.src#STR_NO_CONNECTION_GIVEN.string.text
+msgid "It doesn't exist a connection to the database."
+msgstr "Не постои врска до базата на податоци."
+
+#: 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 "Пробавте да поставите параметар на позицијата '$pos$' но таму има само '$count$' дозволени параметар/три. Една од можните причините е бидејќи својството \"ParameterNameSubstitution\" не е поставено на TRUE во изворот на податоците."
+
+#: conn_shared_res.src#STR_INPUTSTREAM_WRONG_LEN.string.text
+msgid "End of InputStream reached before satisfying length specified when InputStream was set."
+msgstr "Стигнато е до крајот на влезниот поток пред да се задоволи должината специфицирана кога влезниот поток беше конфигуриран."
+
+#: conn_shared_res.src#STR_NO_INPUTSTREAM.string.text
+msgid "The input stream was not set."
+msgstr "Влезниот поток не е поставен."
+
+#: conn_shared_res.src#STR_NO_ELEMENT_NAME.string.text
+msgid "There is no element named '$name$'."
+msgstr "Нема елемент именуван како '$name$'."
+
+#: conn_shared_res.src#STR_INVALID_BOOKMARK.string.text
+msgid "Invalid bookmark value"
+msgstr "Неправилна вредност за обележувач"
+
+#: conn_shared_res.src#STR_PRIVILEGE_NOT_GRANTED.string.text
+msgid "Privilege not granted: Only table privileges can be granted."
+msgstr "Привилегијата не беше одобрена. Може да се одобрат само привилегии за табела."
+
+#: conn_shared_res.src#STR_PRIVILEGE_NOT_REVOKED.string.text
+msgid "Privilege not revoked: Only table privileges can be revoked."
+msgstr "Привилегијата не беше повлечена. Само привилегии за табели може да се повлечат."
+
+#: conn_shared_res.src#STR_UNKNOWN_COLUMN_NAME.string.text
+msgid "The column name '$columnname$' is unknown."
+msgstr "Името на колоната '$columnname$' е непознато."
+
+#: conn_shared_res.src#STR_ERRORMSG_SEQUENCE.string.text
+msgid "Function sequence error."
+msgstr "Грешка во функцијата на секвенцата."
+
+#: conn_shared_res.src#STR_INVALID_INDEX.string.text
+msgid "Invalid descriptor index."
+msgstr "Невалиден индекс на дескрипорот."
+
+#: conn_shared_res.src#STR_UNSUPPORTED_FUNCTION.string.text
+msgid "The driver does not support the function '$functionname$'."
+msgstr "Управувачот не ја поддржува функцијата '$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 "Управувачот не ја поддржува функционалноста за '$featurename$'. Не е имплементирано."
+
+#: conn_shared_res.src#STR_FORMULA_WRONG.string.text
+msgid "The formula for TypeInfoSettings is wrong!"
+msgstr "Формулата за TypeInfoSettings е погрешна!"
+
+#: 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 "Низата „$string$“ го надминува максималниот број од $maxlen$ знаци кога ќе се конвертира во одредишното множество знаци „$charset$“."
+
+#: conn_shared_res.src#STR_CANNOT_CONVERT_STRING.string.text
+msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
+msgstr "Низата „$string$“ не може да се конвертира со множеството знаци „$charset$“."
+
+#: conn_shared_res.src#STR_URI_SYNTAX_ERROR.string.text
+msgid "The connection URL is invalid."
+msgstr "URL за поврзување е невалидно."
+
+#: conn_shared_res.src#STR_QUERY_TOO_COMPLEX.string.text
+msgid "The query can not be executed. It is too complex."
+msgstr "Барањето не може да се изврши. Премногу е сложено."
+
+#: conn_shared_res.src#STR_OPERATOR_TOO_COMPLEX.string.text
+msgid "The query can not be executed. The operator is too complex."
+msgstr "Барањето не може да се изврши. Операцијата е премногу сложена."
+
+#: 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 "Барањето не може да се изврши. „Е КАКО“ може да се користи само со име на колона."
+
+#: 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 "барањето не може да се изврши. „Е КАКО“ може да се користи само со аргумент на низата."
+
+#: 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 "Барањето не може да се изврши. „Е КАКО“ е премногу сложено."
+
+#: 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 "Барањето не може да се изврши. „Е КАКО“ исказот содржи џокер-израз во средината."
+
+#: 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 "Прашањето не може да се изврши. „Е КАКО“ исказот содржи премногу џокери."
+
+#: conn_shared_res.src#STR_INVALID_COLUMNNAME.string.text
+msgid "The column name '$columnname$' is not valid."
+msgstr "Името на колоната '$columnname$' не е валидно."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_SELECTION.string.text
+msgid "The statement contains an invalid selection of columns."
+msgstr "Исказот содржи невалидна селекција на колони."
+
+#: conn_shared_res.src#STR_COLUMN_NOT_UPDATEABLE.string.text
+msgid "The column at position '$position$' could not be updated."
+msgstr "Позицијата на колоната '$position$' не може да се ажурира."
+
+#: conn_shared_res.src#STR_COULD_NOT_LOAD_FILE.string.text
+msgid "The file $filename$ could not be loaded."
+msgstr "Датотеката $filename$ не може да се вчита."
+
+#: 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 ""
+"Обидот да се вчита датотеката резултира со следнава порака за грешка ($exception_type$):\n"
+"\n"
+"$error_message$"
+
+#: conn_shared_res.src#STR_TYPE_NOT_CONVERT.string.text
+msgid "The type could not be converted."
+msgstr "Типот не може да се претвори."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_DESCRIPTOR_ERROR.string.text
+msgid "Could not append column: invalid column descriptor."
+msgstr "Не можам да прикачам колона: невалиден опишувач на колона."
+
+#: conn_shared_res.src#STR_INVALID_GROUP_DESCRIPTOR_ERROR.string.text
+msgid "Could not create group: invalid object descriptor."
+msgstr "Не можам да создадам група: невалиден опишувач на објект."
+
+#: conn_shared_res.src#STR_INVALID_INDEX_DESCRIPTOR_ERROR.string.text
+msgid "Could not create index: invalid object descriptor."
+msgstr "Не можам да создадам индекс: невалиден опишувач на објектот."
+
+#: conn_shared_res.src#STR_INVALID_KEY_DESCRIPTOR_ERROR.string.text
+msgid "Could not create key: invalid object descriptor."
+msgstr "Не можам да создадам клуч: невалиден опишувач на објектот."
+
+#: conn_shared_res.src#STR_INVALID_TABLE_DESCRIPTOR_ERROR.string.text
+msgid "Could not create table: invalid object descriptor."
+msgstr "Не можам да создадам табела: невалиден опишувач на објектот."
+
+#: conn_shared_res.src#STR_INVALID_USER_DESCRIPTOR_ERROR.string.text
+msgid "Could not create user: invalid object descriptor."
+msgstr "Не можам да создадам корисник: невалиден опишувач на објектот."
+
+#: conn_shared_res.src#STR_INVALID_VIEW_DESCRIPTOR_ERROR.string.text
+msgid "Could not create view: invalid object descriptor."
+msgstr "Не можам да создадам преглед: невалиден опишувач на објектот."
+
+#: conn_shared_res.src#STR_VIEW_NO_COMMAND_ERROR.string.text
+msgid "Could not create view: no command object."
+msgstr "Не можам да создадам преглед: нема команден објект."
+
+#: 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 "Не може да се создаде конекција. Можеби неопходниот давател на податоци не е инсталиран."
+
+#: 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 "Индексот не може да се избрише. Се случи непозната грешка при пристапот до датотечниот систем."
+
+#: 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 "Индексот не можеше да се создаде. Дозволено е само една колона по индекс."
+
+#: 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 "Индексот не можеше да се создаде. Вредностите не се уникатни."
+
+#: conn_shared_res.src#STR_COULD_NOT_CREATE_INDEX.string.text
+msgid "The index could not be created. An unknown error appeared."
+msgstr "Индексот не можеше да се создаде. Се случи непозната грешка."
+
+#: 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 "Индексот не можеше да се создаде. Датотеката '$filename$' се користи од друг индекс."
+
+#: 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 ""
+
+#: conn_shared_res.src#STR_SQL_NAME_ERROR.string.text
+msgid "The name '$name$' doesn't match SQL naming constraints."
+msgstr "Името '$name$' не се совпаѓа со SQL ограничувањата за имиња."
+
+#: conn_shared_res.src#STR_COULD_NOT_DELETE_FILE.string.text
+msgid "The file $filename$ could not be deleted."
+msgstr "Датотеката $filename$ не може да се избрише."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_TYPE.string.text
+msgid "Invalid column type for column '$columnname$'."
+msgstr "Невалиден тип на колона за колоната '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_PRECISION.string.text
+msgid "Invalid precision for column '$columnname$'."
+msgstr "Невалидна прецизност на колоната '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_PRECISION_SCALE.string.text
+msgid "Precision is less than scale for column '$columnname$'."
+msgstr "Прецизноста е помала од размерот на колоната '$columnname$'."
+
+#: conn_shared_res.src#STR_INVALID_COLUMN_NAME_LENGTH.string.text
+msgid "Invalid column name length for column '$columnname$'."
+msgstr "Невалидна должина на името на колоната за колоната '$columnname$'."
+
+#: conn_shared_res.src#STR_DUPLICATE_VALUE_IN_COLUMN.string.text
+msgid "Duplicate value found in column '$columnname$'."
+msgstr "Најдена е дупла вредност во колоната '$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 ""
+"Колоната '$columnname$'.беѓе дефинирана како „Децимален“ тип, макс. должина е $precision$ знаци (со $scale$ децимални места).\n"
+"\n"
+"Одредената вредност $value$ е подолга од дозволениот број на бројки."
+
+#: 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 "Колоната '$columnname$' не може да се промени. Можеби датотечниот систем е заштитен од пишување."
+
+#: 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 "Колоната '$columnname$' не може да се ажурира. Вредноста е невалидна за таа колона."
+
+#: 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 "Колоната '$columnname$' не може да се додаде. Можеби датотечниот систем е заштитен од пишување."
+
+#: 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 "Колоната на позицијата '$position$' не може да се отфрли. Можеби датотечниот систем е заштитен од пишување."
+
+#: 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 "Табелата '$tablename$' не може да се отфрли. Можеби датотечниот систем е заштитен од пишување."
+
+#: conn_shared_res.src#STR_COULD_NOT_ALTER_TABLE.string.text
+msgid "The table could not be altered."
+msgstr "Колоната не може да се промени."
+
+#: conn_shared_res.src#STR_INVALID_DBASE_FILE.string.text
+msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
+msgstr "Датотеката '$filename$' е невалидна (или непрепознатлива) dBase датотека."
+
+#: conn_shared_res.src#STR_CANNOT_OPEN_BOOK.string.text
+msgid "Cannot open Evolution address book."
+msgstr ""
+
+#: conn_shared_res.src#STR_SORT_BY_COL_ONLY.string.text
+msgid "Can only sort by table columns."
+msgstr ""
+
+#: 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 "Прашањето не може да се изврши. Премногу е сложено. Подржано е само „PREBROJ(*)“."
+
+#: conn_shared_res.src#STR_QUERY_INVALID_BETWEEN.string.text
+msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
+msgstr "Прашањето не може да се изврши. Аргументите 'BETWEEN' не се исправни."
+
+#: conn_shared_res.src#STR_QUERY_FUNCTION_NOT_SUPPORTED.string.text
+msgid "The query can not be executed. The function is not supported."
+msgstr "Прашањето не можеше да се изврши. Функцијата не е подржана."
+
+#: conn_shared_res.src#STR_TABLE_READONLY.string.text
+msgid "The table can not be changed. It is read only."
+msgstr "Табелата не може да се промени. Таа е само за читање."
+
+#: conn_shared_res.src#STR_DELETE_ROW.string.text
+msgid "The row could not be deleted. The option \"Display inactive records\" is set."
+msgstr "Редот не може да се избрише. Поставена е опцијата „Прикажи неактивни записи“."
+
+#: conn_shared_res.src#STR_ROW_ALREADY_DELETED.string.text
+msgid "The row could not be deleted. It is already deleted."
+msgstr "Редот не може да се избрише. Веќе е избришан."
+
+#: conn_shared_res.src#STR_QUERY_MORE_TABLES.string.text
+msgid "The query can not be executed. It contains more than one table."
+msgstr "Прашањето не може да се изврши. Содржи повеќе од една табела."
+
+#: conn_shared_res.src#STR_QUERY_NO_TABLE.string.text
+msgid "The query can not be executed. It contains no valid table."
+msgstr "Прашањето не може да се изврши. Не содржи валидна табела."
+
+#: conn_shared_res.src#STR_QUERY_NO_COLUMN.string.text
+msgid "The query can not be executed. It contains no valid columns."
+msgstr "Прашањето не може да се изврши. Не содржи валидни колони."
+
+#: conn_shared_res.src#STR_INVALID_PARA_COUNT.string.text
+msgid "The count of the given parameter values doesn't match the parameters."
+msgstr "Бројот на дадените вредности на параметарот не се совпаѓа со параматрите."
+
+#: 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 "URL-то '$URL$' не е валидно. Не може да се воспостави конекција."
+
+#: conn_shared_res.src#STR_NO_CLASSNAME.string.text
+msgid "The driver class '$classname$' could not be loaded."
+msgstr "Класата на управувачот $classname$' не може да се вчита."
+
+#: conn_shared_res.src#STR_NO_JAVA.string.text
+msgid "No Java installation could be found. Please check your installation."
+msgstr "Не може да се најде инсталација на Java. Ве молиме проверете ја вашата инсталација."
+
+#: conn_shared_res.src#STR_NO_RESULTSET.string.text
+msgid "The execution of the query doesn't return a valid result set."
+msgstr "Извршувањето на прашањето не врати валиден сет од резултати."
+
+#: conn_shared_res.src#STR_NO_ROWCOUNT.string.text
+msgid "The execution of the update statement doesn't effect any rows."
+msgstr "Извршувањето на изјавата за ажурирање немаше ефект на ниеден ред."
+
+#: conn_shared_res.src#STR_NO_CLASSNAME_PATH.string.text
+msgid "The additional driver class path is '$classpath$'."
+msgstr "Патеката за дополнителна класа на управувач е '$classpath$'."
+
+#: conn_shared_res.src#STR_UNKNOWN_PARA_TYPE.string.text
+msgid "The type of parameter at position '$position$' is unknown."
+msgstr "Типот на параметарот на позицијата '$position$' не непознат."
+
+#: conn_shared_res.src#STR_UNKNOWN_COLUMN_TYPE.string.text
+msgid "The type of column at position '$position$' is unknown."
+msgstr "Типот на колоната на позицијата '$position$' е непознат."
+
+#: conn_shared_res.src#STR_NO_KDE_INST.string.text
+msgid "No suitable KDE installation was found."
+msgstr "Нема најдено одговарачка инсталација на KDE."
+
+#: 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 $major$.$minor$ или понова за да се пристапи на адресарот на KDE."
+
+#: 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 "најдената верзија на KDE е премногу нова. Само KDE со верзија $major$.$minor$ е познато дека работи со овој производ.\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 ""
+"Ако сте сигурни дека вашата верзија на KDE работи, можете да го извшите следново макро од Basic за да ја оневозможите оваа проверка на верзијата: \n"
+"\n"
+
+#: conn_shared_res.src#STR_PARA_ONLY_PREPARED.string.text
+msgid "Parameters can appear only in prepared statements."
+msgstr "Параметрите може да се појават само во припремени изјави."
+
+#: conn_shared_res.src#STR_NO_TABLE.string.text
+msgid "No such table!"
+msgstr "Нема таква табела!"
+
+#: conn_shared_res.src#STR_NO_MAC_OS_FOUND.string.text
+msgid "No suitable Mac OS installation was found."
+msgstr "Не е најдена одговарачка инсталација на Mac OS."
+
+#: conn_shared_res.src#STR_NO_STROAGE.string.text
+msgid "The connection can not be established. No storage or URL was given."
+msgstr "Конекцијата не може да се воспостави. Не беше дадено место за складирање или URL."
+
+#: 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 "Даденото URL не содржи валидна патека до локалниот датотечен систем. Ве молиме проверете ја локацијата на датотеката на вашата база на податоци."
+
+#: conn_shared_res.src#STR_NO_TABLE_CONTAINER.string.text
+#, fuzzy
+msgid "An error occurred while obtaining the connection's table container."
+msgstr "Се случи грешка при добивањето на контејнерот на табелата за конекција."
+
+#: conn_shared_res.src#STR_NO_TABLE_EDITOR_DIALOG.string.text
+#, fuzzy
+msgid "An error occurred while creating the table editor dialog."
+msgstr "Се случи грешка при креирањето на дијалогот за уредувачот на табела."
+
+#: conn_shared_res.src#STR_NO_TABLENAME.string.text
+msgid "There is no table named '$tablename$'."
+msgstr "Не постои табела со име '$tablename$'."
+
+#: conn_shared_res.src#STR_NO_DOCUMENTUI.string.text
+msgid "The provided DocumentUI is not allowed to be NULL."
+msgstr "Даденото DocumentUI не е дозволено да биде NULA."
diff --git a/source/mk/cui/source/customize.po b/source/mk/cui/source/customize.po
new file mode 100644
index 00000000000..2d98353c7d7
--- /dev/null
+++ b/source/mk/cui/source/customize.po
@@ -0,0 +1,892 @@
+#. 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-12 00:39+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.STR_EVENT.string.text
+#, fuzzy
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.STR_EVENT.string.text"
+msgid "Event"
+msgstr "Настани"
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.STR_ASSMACRO.string.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.STR_ASSMACRO.string.text"
+msgid "Assigned Action"
+msgstr ""
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.FT_ASSIGN.fixedtext.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.FT_ASSIGN.fixedtext.text"
+msgid "Assign:"
+msgstr ""
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN.pushbutton.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN.pushbutton.text"
+msgid "M~acro..."
+msgstr ""
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_ASSIGN_COMPONENT.pushbutton.text
+msgid "Com~ponent..."
+msgstr ""
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.PB_DELETE.pushbutton.text
+msgctxt "macropg.src#RID_SVXPAGE_MACROASSIGN.PB_DELETE.pushbutton.text"
+msgid "~Remove"
+msgstr ""
+
+#: macropg.src#RID_SVXPAGE_MACROASSIGN.tabpage.text
+msgid "Assign action"
+msgstr ""
+
+#: macropg.src#RID_SVXDLG_ASSIGNCOMPONENT.FT_METHOD.fixedtext.text
+msgid "Component method name"
+msgstr ""
+
+#: macropg.src#RID_SVXDLG_ASSIGNCOMPONENT.modaldialog.text
+msgid "Assign Component"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_STARTAPP.string.text
+msgid "Start Application"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEAPP.string.text
+msgid "Close Application"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_NEWDOC.string.text
+msgid "New Document"
+msgstr "Нов документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEDOC.string.text
+msgid "Document closed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_PREPARECLOSEDOC.string.text
+msgid "Document is going to be closed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_OPENDOC.string.text
+msgid "Open Document"
+msgstr "Отвори документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOC.string.text
+msgid "Save Document"
+msgstr "Зачувување документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOC.string.text
+#, fuzzy
+msgid "Save Document As"
+msgstr "Зачувување документ"
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOCDONE.string.text
+msgid "Document has been saved"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOCDONE.string.text
+msgid "Document has been saved as"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_ACTIVATEDOC.string.text
+msgid "Activate Document"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_DEACTIVATEDOC.string.text
+msgid "Deactivate Document"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_PRINTDOC.string.text
+msgid "Print Document"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_MODIFYCHANGED.string.text
+msgid "'Modified' status was changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_MAILMERGE.string.text
+msgid "Printing of form letters started"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_MAILMERGE_END.string.text
+msgid "Printing of form letters finished"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_FIELDMERGE.string.text
+msgid "Merging of form fields started"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_FIELDMERGE_FINISHED.string.text
+msgid "Merging of form fields finished"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_PAGECOUNTCHANGE.string.text
+msgid "Changing the page count"
+msgstr "Менување на бројот на страниците"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED.string.text
+msgid "Loaded a sub component"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED.string.text
+msgid "Closed a sub component"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEPARAMETER.string.text
+msgid "Fill parameters"
+msgstr "Параметри на пополнување"
+
+#: macropg.src#RID_SVXSTR_EVENT_ACTIONPERFORMED.string.text
+msgid "Execute action"
+msgstr "При иницирање"
+
+#: macropg.src#RID_SVXSTR_EVENT_AFTERUPDATE.string.text
+msgid "After updating"
+msgstr "По ажурирање"
+
+#: macropg.src#RID_SVXSTR_EVENT_BEFOREUPDATE.string.text
+msgid "Before updating"
+msgstr "Пред ажурирање"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEROWCHANGE.string.text
+msgid "Before record action"
+msgstr "Пред дејство врз запис"
+
+#: macropg.src#RID_SVXSTR_EVENT_ROWCHANGE.string.text
+msgid "After record action"
+msgstr "По дејство врз запис"
+
+#: macropg.src#RID_SVXSTR_EVENT_CONFIRMDELETE.string.text
+msgid "Confirm deletion"
+msgstr "Потврди бришење"
+
+#: macropg.src#RID_SVXSTR_EVENT_ERROROCCURRED.string.text
+msgid "Error occurred"
+msgstr "Се појави грешка"
+
+#: macropg.src#RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED.string.text
+msgid "While adjusting"
+msgstr "Додека се приспособува"
+
+#: macropg.src#RID_SVXSTR_EVENT_FOCUSGAINED.string.text
+msgid "When receiving focus"
+msgstr "При примање на фокусот"
+
+#: macropg.src#RID_SVXSTR_EVENT_FOCUSLOST.string.text
+msgid "When losing focus"
+msgstr "При губење на фокусот"
+
+#: macropg.src#RID_SVXSTR_EVENT_ITEMSTATECHANGED.string.text
+msgid "Item status changed"
+msgstr "Статусот на ставката е променет"
+
+#: macropg.src#RID_SVXSTR_EVENT_KEYTYPED.string.text
+msgid "Key pressed"
+msgstr "Притиснат тастер"
+
+#: macropg.src#RID_SVXSTR_EVENT_KEYUP.string.text
+msgid "Key released"
+msgstr "Отпуштен тастер"
+
+#: macropg.src#RID_SVXSTR_EVENT_LOADED.string.text
+msgid "When loading"
+msgstr "При вчитување"
+
+#: macropg.src#RID_SVXSTR_EVENT_RELOADING.string.text
+msgid "Before reloading"
+msgstr "Пред превчитување"
+
+#: macropg.src#RID_SVXSTR_EVENT_RELOADED.string.text
+msgid "When reloading"
+msgstr "При превчитување"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEDRAGGED.string.text
+msgid "Mouse moved while key pressed"
+msgstr "Глувчето е поместено додека бил притиснат тастер"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEENTERED.string.text
+msgid "Mouse inside"
+msgstr "Глувчето е внатре"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEEXITED.string.text
+msgid "Mouse outside"
+msgstr "Глувчето е надвор"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEMOVED.string.text
+msgid "Mouse moved"
+msgstr "Глувчето е поместено"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSEPRESSED.string.text
+#, fuzzy
+msgid "Mouse button pressed"
+msgstr ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Притиснато е копче од глувчето\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Копчето на глувчето е притиснато"
+
+#: macropg.src#RID_SVXSTR_EVENT_MOUSERELEASED.string.text
+msgid "Mouse button released"
+msgstr "Копчето на глувчето е ослободено"
+
+#: macropg.src#RID_SVXSTR_EVENT_POSITIONING.string.text
+msgid "Before record change"
+msgstr "Пред промена на записот"
+
+#: macropg.src#RID_SVXSTR_EVENT_POSITIONED.string.text
+msgid "After record change"
+msgstr "По промена на запис"
+
+#: macropg.src#RID_SVXSTR_EVENT_RESETTED.string.text
+msgid "After resetting"
+msgstr "По ресетирање"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVERESETTED.string.text
+msgid "Prior to reset"
+msgstr "Пред ресетирање"
+
+#: macropg.src#RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED.string.text
+msgid "Approve action"
+msgstr "Пред почнување"
+
+#: macropg.src#RID_SVXSTR_EVENT_SUBMITTED.string.text
+msgid "Before submitting"
+msgstr "Пред предавање"
+
+#: macropg.src#RID_SVXSTR_EVENT_TEXTCHANGED.string.text
+msgid "Text modified"
+msgstr "Текстот е изменет"
+
+#: macropg.src#RID_SVXSTR_EVENT_UNLOADING.string.text
+msgid "Before unloading"
+msgstr "Пред одвчитување"
+
+#: macropg.src#RID_SVXSTR_EVENT_UNLOADED.string.text
+msgid "When unloading"
+msgstr "При одвчитување"
+
+#: macropg.src#RID_SVXSTR_EVENT_CHANGED.string.text
+msgid "Changed"
+msgstr "Променето"
+
+#: macropg.src#RID_SVXSTR_EVENT_CREATEDOC.string.text
+msgid "Document created"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_LOADDOCFINISHED.string.text
+msgid "Document loading finished"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEDOCFAILED.string.text
+msgid "Saving of document failed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SAVEASDOCFAILED.string.text
+msgid "'Save as' has failed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOC.string.text
+msgid "Storing or exporting copy of document"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOCDONE.string.text
+msgid "Document copy has been created"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_COPYTODOCFAILED.string.text
+msgid "Creating of document copy failed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_VIEWCREATED.string.text
+msgid "View created"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_PREPARECLOSEVIEW.string.text
+msgid "View is going to be closed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_CLOSEVIEW.string.text
+msgid "View closed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_TITLECHANGED.string.text
+msgid "Document title changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_MODECHANGED.string.text
+msgid "Document mode changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_VISAREACHANGED.string.text
+msgid "Visible area changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_STORAGECHANGED.string.text
+msgid "Document has got a new storage"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_LAYOUT_FINISHED.string.text
+msgid "Document layout finished"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_SELECTIONCHANGED.string.text
+msgid "Selection changed"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_DOUBLECLICK.string.text
+msgid "Double click"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_RIGHTCLICK.string.text
+msgid "Right click"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_CALCULATE.string.text
+msgid "Formulas calculated"
+msgstr ""
+
+#: macropg.src#RID_SVXSTR_EVENT_CONTENTCHANGED.string.text
+msgid "Content changed"
+msgstr ""
+
+#: 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 ""
+
+#: selector.src#STR_SELECTOR_ADD_COMMANDS.string.text
+msgid "Add Commands"
+msgstr ""
+
+#: selector.src#STR_SELECTOR_MACROS.string.text
+msgctxt "selector.src#STR_SELECTOR_MACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr ""
+
+#: selector.src#STR_SELECTOR_CATEGORIES.string.text
+msgctxt "selector.src#STR_SELECTOR_CATEGORIES.string.text"
+msgid "~Category"
+msgstr ""
+
+#: selector.src#STR_SELECTOR_COMMANDS.string.text
+#, fuzzy
+msgctxt "selector.src#STR_SELECTOR_COMMANDS.string.text"
+msgid "Commands"
+msgstr "Наредба"
+
+#: selector.src#STR_SELECTOR_ADD.string.text
+msgid "Add"
+msgstr "Додај"
+
+#: selector.src#STR_SELECTOR_RUN.string.text
+msgid "Run"
+msgstr "Изврши"
+
+#: selector.src#STR_SELECTOR_CLOSE.string.text
+msgid "Close"
+msgstr "Затвори"
+
+#: 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 ""
+
+#: selector.src#STR_BASICMACROS.string.text
+msgctxt "selector.src#STR_BASICMACROS.string.text"
+msgid "BASIC Macros"
+msgstr ""
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.TXT_SELECTOR_CATEGORIES.fixedtext.text
+msgid "Library"
+msgstr "Библиотека"
+
+#: 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 ""
+
+#: 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 ""
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.TXT_SELECTOR_COMMANDS.fixedtext.text
+msgid "Macro name"
+msgstr ""
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.GRP_SELECTOR_DESCRIPTION.fixedline.text
+msgctxt "selector.src#RID_DLG_SCRIPTSELECTOR.GRP_SELECTOR_DESCRIPTION.fixedline.text"
+msgid "Description"
+msgstr ""
+
+#: selector.src#RID_DLG_SCRIPTSELECTOR.modelessdialog.text
+msgid "Macro Selector"
+msgstr ""
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_MENUS.pageitem.text
+msgid "Menus"
+msgstr ""
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_KEYBOARD.pageitem.text
+msgid "Keyboard"
+msgstr "Тастатура"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_TOOLBARS.pageitem.text
+msgid "Toolbars"
+msgstr ""
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.1.RID_SVXPAGE_EVENTS.pageitem.text
+msgid "Events"
+msgstr "Настани"
+
+#: cfg.src#RID_SVXDLG_CUSTOMIZE.tabdialog.text
+msgid "Customize"
+msgstr ""
+
+#: cfg.src#TEXT_MENU.#define.text
+msgid "Menu"
+msgstr ""
+
+#: cfg.src#TEXT_BEGIN_GROUP.#define.text
+msgid "Begin a Group"
+msgstr ""
+
+#: cfg.src#TEXT_RENAME.#define.text
+msgid "Rename..."
+msgstr "Преименувај..."
+
+#: cfg.src#TEXT_DELETE.#define.text
+msgctxt "cfg.src#TEXT_DELETE.#define.text"
+msgid "Delete..."
+msgstr ""
+
+#: cfg.src#TEXT_DELETE_NODOTS.#define.text
+msgid "Delete"
+msgstr "Избриши"
+
+#: cfg.src#TEXT_MOVE.#define.text
+msgid "Move..."
+msgstr ""
+
+#: cfg.src#TEXT_DEFAULT_STYLE.#define.text
+msgid "Restore Default Settings"
+msgstr ""
+
+#: cfg.src#TEXT_DEFAULT_COMMAND.#define.text
+msgid "Restore Default Command"
+msgstr ""
+
+#: cfg.src#TEXT_TEXT_ONLY.#define.text
+msgid "Text only"
+msgstr ""
+
+#: cfg.src#TEXT_TOOLBAR_NAME.#define.text
+msgid "Toolbar Name"
+msgstr ""
+
+#: cfg.src#TEXT_SAVE_IN.#define.text
+msgctxt "cfg.src#TEXT_SAVE_IN.#define.text"
+msgid "Save In"
+msgstr ""
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENUS.fixedline.text
+msgid "%PRODUCTNAME %MODULENAME Menus"
+msgstr ""
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_NEW.pushbutton.text
+msgid "New..."
+msgstr "Нов..."
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENU_SEPARATOR.fixedline.text
+msgid "Menu Content"
+msgstr ""
+
+#: cfg.src#RID_SVXPAGE_MENUS.GRP_MENU_ENTRIES.fixedtext.text
+msgid "Entries"
+msgstr ""
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_ADD_COMMANDS.pushbutton.text
+msgid "Add..."
+msgstr "Додај..."
+
+#: cfg.src#RID_SVXPAGE_MENUS.BTN_CHANGE_ENTRY.menubutton.text
+msgid "Modify"
+msgstr "Измени"
+
+#: cfg.src#RID_SVXPAGE_MENUS.FT_DESCRIPTION.fixedtext.text
+msgctxt "cfg.src#RID_SVXPAGE_MENUS.FT_DESCRIPTION.fixedtext.text"
+msgid "Description"
+msgstr ""
+
+#: cfg.src#MODIFY_ENTRY.ID_ADD_SUBMENU.menuitem.text
+msgid "Add Submenu..."
+msgstr ""
+
+#: cfg.src#MODIFY_TOOLBAR.ID_ICONS_ONLY.menuitem.text
+msgid "Icons Only"
+msgstr ""
+
+#: cfg.src#MODIFY_TOOLBAR.ID_ICONS_AND_TEXT.menuitem.text
+msgid "Icons & Text"
+msgstr ""
+
+#: cfg.src#MODIFY_TOOLBAR_CONTENT.ID_CHANGE_SYMBOL.menuitem.text
+msgid "Change Icon..."
+msgstr ""
+
+#: cfg.src#MODIFY_TOOLBAR_CONTENT.ID_RESET_SYMBOL.menuitem.text
+msgid "Reset Icon"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_NEW_MENU.string.text
+msgid "New Menu %n"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_NEW_TOOLBAR.string.text
+msgid "New Toolbar %n"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_MOVE_MENU.string.text
+msgid "Move Menu"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_ADD_SUBMENU.string.text
+msgid "Add Submenu"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_SUBMENU_NAME.string.text
+msgid "Submenu name"
+msgstr ""
+
+#: 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 ""
+
+#: cfg.src#MD_MENU_ORGANISER.TXT_MENU_NAME.fixedtext.text
+msgid "Menu name"
+msgstr ""
+
+#: cfg.src#MD_MENU_ORGANISER.TXT_MENU.fixedtext.text
+msgid "Menu position"
+msgstr ""
+
+#: cfg.src#MD_MENU_ORGANISER.modaldialog.text
+msgid "New Menu"
+msgstr ""
+
+#: cfg.src#MD_NEW_TOOLBAR.modaldialog.text
+msgid "Name"
+msgstr "Име"
+
+#: cfg.src#MD_ICONSELECTOR.FT_SYMBOLS.fixedtext.text
+msgid "Icons"
+msgstr "Икони"
+
+#: cfg.src#MD_ICONSELECTOR.BTN_IMPORT.pushbutton.text
+msgid "Import..."
+msgstr ""
+
+#: cfg.src#MD_ICONSELECTOR.BTN_DELETE.pushbutton.text
+msgctxt "cfg.src#MD_ICONSELECTOR.BTN_DELETE.pushbutton.text"
+msgid "Delete..."
+msgstr ""
+
+#: 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 ""
+
+#: cfg.src#MD_ICONSELECTOR.modaldialog.text
+msgid "Change Icon"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: cfg.src#RID_SVXSTR_DELETE_ICON_CONFIRM.string.text
+msgid "Are you sure to delete the image?"
+msgstr ""
+
+#: 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 ""
+
+#: cfg.src#RID_SVXSTR_REPLACE_ICON_CONFIRM.string.text
+msgid "Confirm Icon Replacement"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_YESTOALL.string.text
+msgid "Yes to All"
+msgstr "Да, за сите"
+
+#: cfg.src#RID_SVXSTR_PRODUCTNAME_TOOLBARS.string.text
+msgid "%PRODUCTNAME %MODULENAME Toolbars"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_TOOLBAR.string.text
+msgid "Toolbar"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_TOOLBAR_CONTENT.string.text
+msgid "Toolbar Content"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_COMMANDS.string.text
+#, fuzzy
+msgctxt "cfg.src#RID_SVXSTR_COMMANDS.string.text"
+msgid "Commands"
+msgstr "Наредба"
+
+#: cfg.src#RID_SVXSTR_COMMAND.string.text
+msgid "Command"
+msgstr "Наредба"
+
+#: cfg.src#QBX_CONFIRM_DELETE_MENU.querybox.text
+msgid "Are you sure you want to delete the '%MENUNAME' menu?"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: cfg.src#IBX_MNUCFG_ALREADY_INCLUDED.infobox.text
+msgid "Function is already included in this popup."
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_LABEL_NEW_NAME.string.text
+msgid "~New name"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_RENAME_MENU.string.text
+msgid "Rename Menu"
+msgstr ""
+
+#: cfg.src#RID_SVXSTR_RENAME_TOOLBAR.string.text
+msgid "Rename Toolbar"
+msgstr ""
+
+#: cfg.src#BUTTON_STR_UP.string.text
+msgid "Up"
+msgstr "Нагоре"
+
+#: cfg.src#BUTTON_STR_DOWN.string.text
+msgid "Down"
+msgstr "Надолу"
+
+#: acccfg.src#PUSHBUTTON_TEXT_SAVE.#define.text
+msgid "~Save..."
+msgstr "~Зачувај..."
+
+#: acccfg.src#PUSHBUTTON_TEXT_RESET.#define.text
+msgid "R~eset"
+msgstr ""
+
+#: acccfg.src#PUSHBUTTON_TEXT_LOAD.#define.text
+msgid "~Load..."
+msgstr "~Вчитај..."
+
+#: acccfg.src#PUSHBUTTON_TEXT_REMOVE.#define.text
+#, fuzzy
+msgid "~Delete"
+msgstr ""
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"И~збриши\n"
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Из~бриши\n"
+"#-#-#-#-# ucbexplorer.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# schedule.po (PACKAGE VERSION) #-#-#-#-#\n"
+"И~збриши\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# extension.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Из~бриши\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши\n"
+"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Избриши"
+
+#: acccfg.src#PUSHBUTTON_TEXT_CHANGE.#define.text
+#, fuzzy
+msgid "~Modify"
+msgstr ""
+"#-#-#-#-# envelp.po (PACKAGE VERSION) #-#-#-#-#\n"
+"И~змени\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Измени\n"
+"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Измени"
+
+#: acccfg.src#PUSHBUTTON_TEXT_NEW.#define.text
+#, fuzzy
+msgid "~New"
+msgstr ""
+"#-#-#-#-# dbui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нова\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нов\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново\n"
+"#-#-#-#-# ucbexplorer.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нов\n"
+"#-#-#-#-# msi_languages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нов\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нов\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново"
+
+#: acccfg.src#FIXEDTEXT_TEXT_GROUP.#define.text
+msgctxt "acccfg.src#FIXEDTEXT_TEXT_GROUP.#define.text"
+msgid "~Category"
+msgstr ""
+
+#: acccfg.src#FIXEDTEXT_TEXT_FUNCTION.#define.text
+#, fuzzy
+msgid "Function"
+msgstr "Функции"
+
+#: acccfg.src#GROUPBOX_TEXT_FUNCTIONS.#define.text
+msgid "Functions"
+msgstr "Функции"
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.GRP_ACC_KEYBOARD.fixedline.text
+msgid "Shortcut keys"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.TXT_ACC_KEY.fixedtext.text
+msgid "~Keys"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_LOADACCELCONFIG.string.text
+msgid "Load Keyboard Configuration"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_SAVEACCELCONFIG.string.text
+msgid "Save Keyboard Configuration"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_KEYBOARD.STR_FILTERNAME_CFG.string.text
+msgid "Configuration"
+msgstr "Конфигурација"
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_MYMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_MYMACROS.string.text"
+msgid "My Macros"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_PRODMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_PRODMACROS.string.text"
+msgid "%PRODUCTNAME Macros"
+msgstr ""
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_BASICMACROS.string.text
+msgctxt "acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_BASICMACROS.string.text"
+msgid "BASIC Macros"
+msgstr ""
+
+#: 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 ""
+
+#: acccfg.src#RID_SVXPAGE_CONFIGGROUPBOX.STR_GROUP_STYLES.string.text
+msgid "Styles"
+msgstr "Стилови"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.STR_EVENT.string.text
+#, fuzzy
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.STR_EVENT.string.text"
+msgid "Event"
+msgstr "Настани"
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.STR_ASSMACRO.string.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.STR_ASSMACRO.string.text"
+msgid "Assigned Action"
+msgstr ""
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.TXT_SAVEIN.fixedtext.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.TXT_SAVEIN.fixedtext.text"
+msgid "Save In"
+msgstr ""
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.FT_ASSIGN.fixedtext.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.FT_ASSIGN.fixedtext.text"
+msgid "Assign:"
+msgstr ""
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.PB_ASSIGN.pushbutton.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.PB_ASSIGN.pushbutton.text"
+msgid "M~acro..."
+msgstr ""
+
+#: eventdlg.src#RID_SVXPAGE_EVENTS.PB_DELETE.pushbutton.text
+msgctxt "eventdlg.src#RID_SVXPAGE_EVENTS.PB_DELETE.pushbutton.text"
+msgid "~Remove"
+msgstr ""
diff --git a/source/mk/cui/source/dialogs.po b/source/mk/cui/source/dialogs.po
new file mode 100644
index 00000000000..cfc68bcbe27
--- /dev/null
+++ b/source/mk/cui/source/dialogs.po
@@ -0,0 +1,2544 @@
+#. 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: 2011-12-15 15:00+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 ""
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.MB_LANGUAGE.menubutton.text
+msgid "~Language"
+msgstr "~Јазик"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_THES_ALTERNATIVES.fixedtext.text
+msgid "~Alternatives"
+msgstr ""
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_REPL.fixedtext.text
+msgid "~Replace with"
+msgstr "~Замени со"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.BTN_THES_OK.okbutton.text
+msgid "Replace"
+msgstr "Замени"
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.STR_ERR_TEXTNOTFOUND.string.text
+msgid "No alternatives found."
+msgstr ""
+
+#: thesdlg.src#RID_SVXDLG_THESAURUS.modaldialog.text
+msgid "Thesaurus"
+msgstr "Тезаурус"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.GRP_LINKTYPE.fixedline.text
+msgid "Hyperlink type"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.RB_LINKTYP_INTERNET.radiobutton.text
+msgid "~Web"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.RB_LINKTYP_FTP.radiobutton.text
+msgid "~FTP"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_TARGET_HTML.fixedtext.text
+msgid "Tar~get"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_LOGIN.fixedtext.text
+msgid "~Login name"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_PASSWD.fixedtext.text
+msgid "~Password"
+msgstr "~Лозинка"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.CBX_ANONYMOUS.checkbox.text
+msgid "Anonymous ~user"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_BROWSE.imagebutton.text
+msgid "WWW Browser"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FORM.fixedtext.text
+#, fuzzy
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "Форма"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_INTERNET.tabpage.text"
+msgid "Hyperlink"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.GRP_MAILNEWS.fixedline.text
+msgid "Mail & news"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_MAIL.radiobutton.text
+msgid "~E-mail"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.RB_LINKTYP_NEWS.radiobutton.text
+msgid "~News"
+msgstr ""
+
+#: 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 "~Тема"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FORM.fixedtext.text
+#, fuzzy
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "Форма"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_MAIL.tabpage.text"
+msgid "Hyperlink"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_DOCUMENT.fixedline.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_DOCUMENT.fixedline.text"
+msgid "Document"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_PATH_DOC.fixedtext.text
+msgid "~Path"
+msgstr "~Патека"
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.GRP_TARGET.fixedline.text
+msgid "Target in document"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_TARGET_DOC.fixedtext.text
+msgid "Targ~et"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FORM.fixedtext.text
+#, fuzzy
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "Форма"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_DOCUMENT.tabpage.text"
+msgid "Hyperlink"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.GRP_NEWDOCUMENT.fixedline.text
+msgid "New document"
+msgstr "Нов документ"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.RB_EDITNOW.radiobutton.text
+msgid "Edit ~now"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.RB_EDITLATER.radiobutton.text
+msgid "Edit ~later"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_PATH_NEWDOC.fixedtext.text
+msgid "~File"
+msgstr "~Датотека"
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_DOCUMENT_TYPES.fixedtext.text
+msgid "File ~type"
+msgstr "~Тип датотека"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FORM.fixedtext.text
+#, fuzzy
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.FT_FORM.fixedtext.text"
+msgid "F~orm"
+msgstr "Форма"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.text"
+msgid "Events"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.BTN_SCRIPT.imagebutton.quickhelptext"
+msgid "Events"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.tabpage.text
+msgctxt "hyperdlg.src#RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.tabpage.text"
+msgid "Hyperlink"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXDLG_NEWHYPERLINK.modaldialog.text
+msgctxt "hyperdlg.src#RID_SVXDLG_NEWHYPERLINK.modaldialog.text"
+msgid "Hyperlink"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_APPLYBUT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPDLG_APPLYBUT.string.text"
+msgid "Apply"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_CLOSEBUT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPDLG_CLOSEBUT.string.text"
+msgid "Close"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT1.string.text
+msgid "Mouse over object"
+msgstr "Глушецот над објектот"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT2.string.text
+msgid "Trigger hyperlink"
+msgstr "Активирај хиперврска"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_MACROACT3.string.text
+msgid "Mouse leaves object"
+msgstr "Глушецот го напушта објектот"
+
+#: hyperdlg.src#RID_SVXSTR_HYPDLG_NOVALIDFILENAME.string.text
+msgid "Please type in a valid file name."
+msgstr ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLINETTP.string.text
+msgid "Internet"
+msgstr "Интернет"
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLINETTP_HELP.string.text
+msgid "This is where you create a hyperlink to a Web page or FTP server connection."
+msgstr ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLMAILTP.string.text
+msgid "Mail & News"
+msgstr ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCTP.string.text"
+msgid "Document"
+msgstr ""
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_HLDOCNTP.string.text
+msgid "New Document"
+msgstr "Нов документ"
+
+#: 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 ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_FORM_BUTTON.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_FORM_BUTTON.string.text"
+msgid "Button"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_FROM_TEXT.string.text
+msgctxt "hyperdlg.src#RID_SVXSTR_HYPERDLG_FROM_TEXT.string.text"
+msgid "Text"
+msgstr ""
+
+#: hyperdlg.src#RID_SVXSTR_HYPERDLG_QUERYOVERWRITE.string.text
+#, fuzzy
+msgid "The file already exists. Overwrite?"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датотеката веќе постои. Дали ќе запишете врз неа?\n"
+"#-#-#-#-# office.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датотеката веќе постои. Дали запишувате врз неа?\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датотеката веќе постои. Да ја препишам?"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_FONT.fixedtext.text
+msgid "~Font"
+msgstr "~Фонт"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_SUBSET.fixedtext.text
+msgid "~Subset"
+msgstr "~Подмножество"
+
+#: charmap.src#RID_SVXDLG_CHARMAP.FT_SYMBOLE.fixedtext.text
+msgid "Characters:"
+msgstr ""
+
+#: charmap.src#RID_SVXDLG_CHARMAP.BTN_DELETE.pushbutton.text
+msgctxt "charmap.src#RID_SVXDLG_CHARMAP.BTN_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr ""
+
+#: charmap.src#RID_SVXDLG_CHARMAP.modaldialog.text
+msgid "Special Characters"
+msgstr ""
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_APPLY.pushbutton.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_APPLY.pushbutton.text"
+msgid "Apply"
+msgstr ""
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_CLOSE.pushbutton.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.BT_CLOSE.pushbutton.text"
+msgid "Close"
+msgstr ""
+
+#: hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.modaldialog.text
+msgctxt "hlmarkwn.src#RID_SVXFLOAT_HYPERLINK_MARKWND.modaldialog.text"
+msgid "Target in Document"
+msgstr ""
+
+#: hlmarkwn.src#RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES.string.text
+msgid "Targets do not exist in the document."
+msgstr ""
+
+#: hlmarkwn.src#RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN.string.text
+msgid "Couldn't open the document."
+msgstr ""
+
+#: hlmarkwn.src#STR_MARK_TREE.string.text
+msgid "Mark Tree"
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_TXT_SCRIPTS.fixedtext.text
+msgid "~Macros"
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_CTRL_SCRIPTSBOX.STR_MYMACROS.string.text
+msgid "My Macros"
+msgstr "Мои макроа"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_CTRL_SCRIPTSBOX.STR_PRODMACROS.string.text
+msgid "%PRODUCTNAME Macros"
+msgstr "Макроа за %PRODUCTNAME"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_RUN.pushbutton.text
+msgid "R~un"
+msgstr "И~зврши"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CLOSE.cancelbutton.text
+msgctxt "scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_CREATE.pushbutton.text
+msgid "~Create..."
+msgstr "~Креирај..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_EDIT.pushbutton.text
+#, fuzzy
+msgid "~Edit"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Уреди\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Уреди\n"
+"#-#-#-#-# docvw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Уреди\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Уреди\n"
+"#-#-#-#-# Office.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Уреди\n"
+"#-#-#-#-# plugapp.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Уреди\n"
+"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Уреди\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Уреди\n"
+"#-#-#-#-# msi_languages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ур~еди"
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_RENAME.pushbutton.text
+msgid "Rename..."
+msgstr "Преименувај..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.SF_PB_DEL.pushbutton.text
+msgid "~Delete..."
+msgstr "~Избриши..."
+
+#: scriptdlg.src#RID_DLG_SCRIPTORGANIZER.modaldialog.text
+msgid "%MACROLANG Macros"
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_NEWLIB.FT_NEWLIB.fixedtext.text
+msgid "Enter the name for the new library."
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_NEWLIB.string.text
+msgctxt "scriptdlg.src#RID_DLG_NEWLIB.STR_NEWLIB.string.text"
+msgid "Create Library"
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_NEWMACRO.string.text
+msgid "Create Macro"
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_FT_NEWMACRO.string.text
+msgid "Enter the name for the new macro."
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_RENAME.string.text
+msgid "Rename"
+msgstr "Преименувај"
+
+#: scriptdlg.src#RID_DLG_NEWLIB.STR_FT_RENAME.string.text
+msgid "Enter the new name for the selected object."
+msgstr ""
+
+#: scriptdlg.src#RID_DLG_NEWLIB.modaldialog.text
+msgctxt "scriptdlg.src#RID_DLG_NEWLIB.modaldialog.text"
+msgid "Create Library"
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_DELQUERY.string.text
+msgid "Do you want to delete the following object?"
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_DELQUERY_TITLE.string.text
+msgid "Confirm Deletion"
+msgstr "Потврда за бришење"
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILED.string.text
+msgid "The selected object could not be deleted."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILEDPERM.string.text
+msgid " You do not have permission to delete this object."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_DELFAILED_TITLE.string.text
+msgid "Error Deleting Object"
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILED.string.text
+msgid "The object could not be created."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILEDDUP.string.text
+msgid " Object with the same name already exists."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILEDPERM.string.text
+msgid " You do not have permission to create this object."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_CREATEFAILED_TITLE.string.text
+msgid "Error Creating Object"
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILED.string.text
+msgid "The object could not be renamed."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILEDPERM.string.text
+msgid " You do not have permission to rename this object."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_RENAMEFAILED_TITLE.string.text
+msgid "Error Renaming Object"
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_TITLE.string.text
+#, fuzzy
+msgid "%PRODUCTNAME Error"
+msgstr "Макроа за %PRODUCTNAME"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED.string.text
+msgid "The scripting language %LANGUAGENAME is not supported."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_RUNNING.string.text
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_EXCEPTION_RUNNING.string.text
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_AT_LINE.string.text
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_EXCEPTION_AT_LINE.string.text
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr ""
+
+#: scriptdlg.src#RID_SVXSTR_FRAMEWORK_ERROR_RUNNING.string.text
+msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr ""
+
+#: 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 ""
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_TYPE_LABEL.string.text
+#, fuzzy
+msgctxt "scriptdlg.src#RID_SVXSTR_ERROR_TYPE_LABEL.string.text"
+msgid "Type:"
+msgstr "Тип"
+
+#: scriptdlg.src#RID_SVXSTR_ERROR_MESSAGE_LABEL.string.text
+msgid "Message:"
+msgstr ""
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.FT_COLUMNS.fixedtext.text
+msgid "Number of columns:"
+msgstr ""
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.FT_ROWS.fixedtext.text
+msgid "Number of rows:"
+msgstr ""
+
+#: newtabledlg.src#RID_SVX_NEWTABLE_DLG.modaldialog.text
+msgid "Insert Table"
+msgstr "Вметнување табела"
+
+#: 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 ""
+
+#: gallery.src#RID_SVXTABDLG_GALLERY.tabdialog.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERY.tabdialog.text"
+msgid "Properties of "
+msgstr ""
+
+#: 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 ""
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERYTHEME_FILES.pageitem.text
+#, fuzzy
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.1.RID_SVXTABPAGE_GALLERYTHEME_FILES.pageitem.text"
+msgid "Files"
+msgstr "~Датотека"
+
+#: gallery.src#RID_SVXTABDLG_GALLERYTHEME.tabdialog.text
+msgctxt "gallery.src#RID_SVXTABDLG_GALLERYTHEME.tabdialog.text"
+msgid "Properties of "
+msgstr ""
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_TYPE.fixedtext.text
+#, fuzzy
+msgctxt "gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_TYPE.fixedtext.text"
+msgid "Type:"
+msgstr "Тип"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_PATH.fixedtext.text
+msgid "Location:"
+msgstr "Локација:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_CONTENT.fixedtext.text
+#, fuzzy
+msgid "Contents:"
+msgstr "Содржина"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERY_GENERAL.FT_MS_CHANGEDATE.fixedtext.text
+msgid "Modified:"
+msgstr "Изменето:"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.FT_FILETYPE.fixedtext.text
+#, fuzzy
+msgid "~File type"
+msgstr "~Тип датотека"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_SEARCH.pushbutton.text
+msgid "~Find Files..."
+msgstr ""
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKE.pushbutton.text
+msgctxt "gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKE.pushbutton.text"
+msgid "~Add"
+msgstr ""
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_TAKEALL.pushbutton.text
+msgid "A~dd All"
+msgstr ""
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.CBX_PREVIEW.checkbox.text
+#, fuzzy
+msgid "Pr~eview"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пр~еглед\n"
+"#-#-#-#-# office.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Преглед"
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_MADDIN1.pushbutton.text
+msgid "Maddin1"
+msgstr ""
+
+#: gallery.src#RID_SVXTABPAGE_GALLERYTHEME_FILES.BTN_MADDIN2.pushbutton.text
+msgid "Maddin2"
+msgstr ""
+
+#: gallery.src#RID_SVXDLG_GALLERY_TITLE.FL_TITLE.fixedline.text
+#, fuzzy
+msgid "Title"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# dbui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Титула\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# template.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Титула\n"
+"#-#-#-#-# res.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Титула\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TITLE.modaldialog.text
+msgid "Enter Title"
+msgstr ""
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.FL_SEARCH_DIR.fixedline.text
+msgid "Directory"
+msgstr ""
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.FL_SEARCH_TYPE.fixedline.text
+#, fuzzy
+msgid "File type"
+msgstr "~Тип датотека"
+
+#: gallery.src#RID_SVXDLG_GALLERY_SEARCH_PROGRESS.modaldialog.text
+#, fuzzy
+msgid "Find"
+msgstr ""
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Барање\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Најди"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.FL_TAKE_PROGRESS.fixedline.text
+#, fuzzy
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.FL_TAKE_PROGRESS.fixedline.text"
+msgid "File"
+msgstr "~Датотека"
+
+#: gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.modaldialog.text
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_TAKE_PROGRESS.modaldialog.text"
+msgid "Apply"
+msgstr ""
+
+#: gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.FL_ACTUALIZE_PROGRESS.fixedline.text
+#, fuzzy
+msgctxt "gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.FL_ACTUALIZE_PROGRESS.fixedline.text"
+msgid "File"
+msgstr "~Датотека"
+
+#: gallery.src#RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS.modaldialog.text
+#, fuzzy
+msgid "Update"
+msgstr ""
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ажурирај\n"
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ажурирање\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ажурирај\n"
+"#-#-#-#-# engine3d.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ажурирај"
+
+#: gallery.src#RID_SVXDLG_GALLERY_THEMEID.FL_ID.fixedline.text
+msgid "ID"
+msgstr "Ид."
+
+#: gallery.src#RID_SVXDLG_GALLERY_THEMEID.modaldialog.text
+msgid "Theme ID"
+msgstr ""
+
+#: gallery.src#RID_SVXSTR_GALLERY_NOFILES.string.text
+msgid "<No Files>"
+msgstr ""
+
+#: gallery.src#RID_SVXSTR_GALLERY_SEARCH.string.text
+msgid "Do you want to update the file list?"
+msgstr ""
+
+#: gallery.src#RID_SVXSTR_GALLERYPROPS_OBJECT.string.text
+msgid "Object;Objects"
+msgstr ""
+
+#: gallery.src#RID_SVXSTR_GALLERY_READONLY.string.text
+#, fuzzy
+msgid "(read-only)"
+msgstr ""
+"#-#-#-#-# view.po (PACKAGE VERSION) #-#-#-#-#\n"
+" (само за читање)\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+" (Само за читање)"
+
+#: gallery.src#RID_SVXSTR_GALLERY_ALLFILES.string.text
+msgid "<All Files>"
+msgstr ""
+
+#: gallery.src#RID_SVXSTR_GALLERY_ID_EXISTS.string.text
+msgid "This ID already exists..."
+msgstr ""
+
+#: tbxform.src#RID_SVX_DLG_INPUTRECORDNO.1.fixedtext.text
+msgid "go to record"
+msgstr ""
+
+#: tbxform.src#RID_SVX_DLG_INPUTRECORDNO.modaldialog.text
+msgid "Record Number"
+msgstr ""
+
+#: 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 ""
+
+#: showcols.src#RID_SVX_DLG_SHOWGRIDCOLUMNS.modaldialog.text
+msgid "Show columns"
+msgstr ""
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.FL_MULTIPATH.fixedline.text
+msgid "Paths"
+msgstr "Патеки"
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.FT_RADIOBUTTON.fixedtext.text
+msgid "Mark the default path for new files."
+msgstr ""
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.BTN_ADD_MULTIPATH.pushbutton.text
+#, fuzzy
+msgid "~Add..."
+msgstr ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додади...\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај..."
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.BTN_DEL_MULTIPATH.pushbutton.text
+msgctxt "multipat.src#RID_SVXDLG_MULTIPATH.BTN_DEL_MULTIPATH.pushbutton.text"
+msgid "~Delete"
+msgstr ""
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.STR_HEADER_PATHS.string.text
+msgid "Path list"
+msgstr ""
+
+#: multipat.src#RID_SVXDLG_MULTIPATH.modaldialog.text
+msgid "Select Paths"
+msgstr ""
+
+#: multipat.src#RID_MULTIPATH_DBL_ERR.string.text
+msgid "The path %1 already exists."
+msgstr ""
+
+#: multipat.src#RID_SVXSTR_FILE_TITLE.string.text
+msgid "Select files"
+msgstr ""
+
+#: multipat.src#RID_SVXSTR_FILE_HEADLINE.string.text
+#, fuzzy
+msgctxt "multipat.src#RID_SVXSTR_FILE_HEADLINE.string.text"
+msgid "Files"
+msgstr "~Датотека"
+
+#: multipat.src#RID_SVXSTR_ARCHIVE_TITLE.string.text
+msgid "Select Archives"
+msgstr ""
+
+#: multipat.src#RID_SVXSTR_ARCHIVE_HEADLINE.string.text
+msgid "Archives"
+msgstr ""
+
+#: multipat.src#RID_SVXSTR_MULTIFILE_DBL_ERR.string.text
+msgid "The file %1 already exists."
+msgstr ""
+
+#: svuidlg.src#MD_PASTE_OBJECT.FT_SOURCE.fixedtext.text
+msgid "Source:"
+msgstr "Извор:"
+
+#: svuidlg.src#MD_PASTE_OBJECT.RB_PASTE.radiobutton.text
+msgid "~Insert as"
+msgstr ""
+
+#: svuidlg.src#MD_PASTE_OBJECT.RB_PASTE_LINK.radiobutton.text
+msgid "Link to"
+msgstr "Врска до"
+
+#: svuidlg.src#MD_PASTE_OBJECT.CB_DISPLAY_AS_ICON.checkbox.text
+msgid "~As icon"
+msgstr ""
+
+#: svuidlg.src#MD_PASTE_OBJECT.PB_CHANGE_ICON.pushbutton.text
+msgid "~Other Icon..."
+msgstr ""
+
+#: svuidlg.src#MD_PASTE_OBJECT.FL_CHOICE.fixedline.text
+msgid "Selection"
+msgstr "Избор"
+
+#: svuidlg.src#MD_PASTE_OBJECT.S_OBJECT.string.text
+msgid "Object"
+msgstr "Објект"
+
+#: svuidlg.src#MD_PASTE_OBJECT.modaldialog.text
+#, fuzzy
+msgid "Paste Special"
+msgstr ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Специјално вметнување\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни специјално"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES.fixedtext.text"
+msgid "Source file"
+msgstr ""
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_LINKS.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_LINKS.fixedtext.text"
+msgid "Element:"
+msgstr ""
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE.fixedtext.text
+msgid "Type"
+msgstr "Тип"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_STATUS.fixedtext.text
+msgid "Status"
+msgstr "Статус"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.1.cancelbutton.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.1.cancelbutton.text"
+msgid "~Close"
+msgstr ""
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_UPDATE_NOW.pushbutton.text
+#, fuzzy
+msgid "~Update"
+msgstr ""
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ажурирај\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"А~журирај\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ажурирај\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ажурирај\n"
+"#-#-#-#-# classes.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ажурирај"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_OPEN_SOURCE.pushbutton.text
+msgid "~Open"
+msgstr "~Отвори"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_CHANGE_SOURCE.pushbutton.text
+msgid "~Modify..."
+msgstr "~Измени..."
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.PB_BREAK_LINK.pushbutton.text
+msgid "~Break Link"
+msgstr ""
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_FILES2.fixedtext.text"
+msgid "Source file"
+msgstr ""
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_SOURCE2.fixedtext.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_SOURCE2.fixedtext.text"
+msgid "Element:"
+msgstr ""
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE2.fixedtext.text
+#, fuzzy
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.FT_TYPE2.fixedtext.text"
+msgid "Type:"
+msgstr "Тип"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.FT_UPDATE.fixedtext.text
+#, fuzzy
+msgid "Update:"
+msgstr ""
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ажурирај\n"
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ажурирање\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ажурирај\n"
+"#-#-#-#-# engine3d.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ажурирај"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.RB_AUTOMATIC.radiobutton.text
+#, fuzzy
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.RB_AUTOMATIC.radiobutton.text"
+msgid "~Automatic"
+msgstr "Автоматски"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.RB_MANUAL.radiobutton.text
+#, fuzzy
+msgid "Ma~nual"
+msgstr "Рачно"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_AUTOLINK.string.text
+msgid "Automatic"
+msgstr "Автоматски"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_MANUALLINK.string.text
+msgid "Manual"
+msgstr "Рачно"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_BROKENLINK.string.text
+msgid "Not available"
+msgstr ""
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_GRAPHICLINK.string.text
+msgid "Graphic"
+msgstr "Графички"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_BUTTONCLOSE.string.text
+msgctxt "svuidlg.src#MD_UPDATE_BASELINKS.STR_BUTTONCLOSE.string.text"
+msgid "~Close"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.STR_WAITINGLINK.string.text
+msgid "Waiting"
+msgstr "Чека"
+
+#: svuidlg.src#MD_UPDATE_BASELINKS.modaldialog.text
+msgid "Edit Links"
+msgstr ""
+
+#: svuidlg.src#MD_LINKEDIT.2.fixedtext.text
+msgid "Exchange source:"
+msgstr ""
+
+#: svuidlg.src#MD_LINKEDIT.ED_FULL_SOURCE_NAME.edit.text
+#, fuzzy
+msgid "Edit"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Уреди\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Уреди\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Уреди\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Уреди\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Уреди\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Уредување"
+
+#: svuidlg.src#MD_LINKEDIT.modaldialog.text
+msgid "Modify Link"
+msgstr "Измена на врска"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.RB_NEW_OBJECT.radiobutton.text
+msgid "~Create new"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.RB_OBJECT_FROMFILE.radiobutton.text
+msgid "Create from ~file"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.BTN_FILEPATH.pushbutton.text
+msgctxt "svuidlg.src#MD_INSERT_OLEOBJECT.BTN_FILEPATH.pushbutton.text"
+msgid "~Search..."
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.CB_FILELINK.checkbox.text
+msgid "~Link to file"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.GB_OBJECT.fixedline.text
+msgid "Object type"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.STR_FILE.string.text
+#, fuzzy
+msgctxt "svuidlg.src#MD_INSERT_OLEOBJECT.STR_FILE.string.text"
+msgid "File"
+msgstr "~Датотека"
+
+#: svuidlg.src#MD_INSERT_OLEOBJECT.modaldialog.text
+msgid "Insert OLE Object"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.BTN_FILEURL.pushbutton.text
+#, fuzzy
+msgid "~Browse..."
+msgstr ""
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Прелистај\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пре~листај...\n"
+"#-#-#-#-# miscdlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пр~елистај...\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пр~елистај...\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"П~релистај...\n"
+"#-#-#-#-# xsltdialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"П~релистај..."
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_FILEURL.fixedline.text
+msgid "File / URL"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_PLUGINS_OPTIONS.fixedline.text
+#, fuzzy
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_PLUGIN.GB_PLUGINS_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "О~пции"
+
+#: svuidlg.src#MD_INSERT_OBJECT_PLUGIN.modaldialog.text
+msgid "Insert Plug-in"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.FT_CLASSFILE.fixedtext.text
+msgid "~Class"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.FT_CLASSLOCATION.fixedtext.text
+msgid "Class ~Location"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.BTN_CLASS.pushbutton.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.BTN_CLASS.pushbutton.text"
+msgid "~Search..."
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_CLASS.fixedline.text
+#, fuzzy
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_CLASS.fixedline.text"
+msgid "File"
+msgstr "~Датотека"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_APPLET_OPTIONS.fixedline.text
+#, fuzzy
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_APPLET.GB_APPLET_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "О~пции"
+
+#: svuidlg.src#MD_INSERT_OBJECT_APPLET.modaldialog.text
+msgid "Insert Applet"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_FRAMENAME.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_FRAMENAME.fixedtext.text"
+msgid "~Name"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_URL.fixedtext.text
+msgid "~Contents"
+msgstr "~Содржина"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGON.radiobutton.text
+msgid "~On"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGOFF.radiobutton.text
+#, fuzzy
+msgid "O~ff"
+msgstr "Искл."
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_SCROLLINGAUTO.radiobutton.text
+msgid "Au~tomatic"
+msgstr "Ав~томатски"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_SCROLLING.fixedline.text
+msgid "Scroll bar"
+msgstr "Лента за движење"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_FRMBORDER_ON.radiobutton.text
+msgid "On"
+msgstr "Вкл."
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.RB_FRMBORDER_OFF.radiobutton.text
+msgid "Off"
+msgstr "Искл."
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_BORDER.fixedline.text
+msgid "Border"
+msgstr "Раб"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINWIDTH.fixedtext.text
+msgctxt "svuidlg.src#MD_INSERT_OBJECT_IFRAME.FT_MARGINWIDTH.fixedtext.text"
+msgid "~Width"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.CB_MARGINWIDTHDEFAULT.checkbox.text
+#, fuzzy
+msgid "~Default"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Стандардни\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Стандардно\n"
+"#-#-#-#-# drawfunc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стан~дардно\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Стандардно\n"
+"#-#-#-#-# pdf.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стан~дардно"
+
+#: 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 ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.CB_MARGINHEIGHTDEFAULT.checkbox.text
+#, fuzzy
+msgid "Defa~ult"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Стандардни\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Стандардно\n"
+"#-#-#-#-# drawfunc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стан~дардно\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Стандардно\n"
+"#-#-#-#-# pdf.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стан~дардно"
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.GB_MARGIN.fixedline.text
+msgid "Spacing to contents"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.modaldialog.text
+msgid "Floating Frame Properties"
+msgstr ""
+
+#: svuidlg.src#MD_INSERT_OBJECT_IFRAME.string.text
+msgid "Select File for Floating Frame"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.LINK_EXPLAIN.fixedtext.text
+msgid "More..."
+msgstr "Повеќе..."
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_NOTINDICT.fixedtext.text
+msgid "~Not in dictionary"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_SUGGESTION.fixedtext.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_SUGGESTION.fixedtext.text"
+msgid "~Suggestions"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.CB_CHECK_GRAMMAR.checkbox.text
+msgid "Check ~grammar"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNORE.pushbutton.text
+msgid "~Ignore Once"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNOREALL.pushbutton.text
+msgid "I~gnore All"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_IGNORERULE.pushbutton.text
+msgid "I~gnore Rule"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.MB_ADDTODICT.menubutton.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.MB_ADDTODICT.menubutton.text"
+msgid "~Add"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_ADDTODICT.pushbutton.text
+msgctxt "SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_ADDTODICT.pushbutton.text"
+msgid "~Add"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CHANGE.pushbutton.text
+msgid "~Change"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CHANGEALL.pushbutton.text
+msgid "Change A~ll"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_AUTOCORR.pushbutton.text
+msgid "AutoCor~rect"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_OPTIONS.pushbutton.text
+#, fuzzy
+msgid "O~ptions..."
+msgstr "Опции..."
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_UNDO.pushbutton.text
+msgid "~Undo"
+msgstr "~Отповикај"
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.PB_CLOSE.pushbutton.text
+msgid "Cl~ose"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_RESUME.string.text
+msgid "Resu~me"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_NOSUGGESTIONS.string.text
+msgid "(no suggestions)"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING.string.text
+msgid "Spelling: $LANGUAGE ($LOCATION)"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING_AND_GRAMMAR.string.text
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.ST_SPELLING_AND_GRAMMAR_VENDORNAME.string.text
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION) [$VendorName]"
+msgstr ""
+
+#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.modelessdialog.text
+msgid "Spellcheck: "
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_MOSAIC.modaldialog.text
+msgid "Mosaic"
+msgstr "Мозаик"
+
+#: 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 ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.DLG_FILTERSOLARIZE_FT_THRESHOLD.fixedtext.text
+msgid "Threshold ~value"
+msgstr ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.DLG_FILTERSOLARIZE_CBX_INVERT.checkbox.text
+#, fuzzy
+msgid "~Invert"
+msgstr ""
+"#-#-#-#-# envelp.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# schedule.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметн~и"
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SOLARIZE.modaldialog.text
+msgid "Solarization"
+msgstr "Соларизација"
+
+#: 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 ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.DLG_FILTERSEPIA_FT_SEPIA.fixedtext.text
+msgid "Aging degree"
+msgstr ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_SEPIA.modaldialog.text
+msgid "Aging"
+msgstr "Стареење"
+
+#: 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 ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.DLG_FILTERPOSTER_FT_POSTER.fixedtext.text
+msgid "Poster colors"
+msgstr ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_POSTER.modaldialog.text
+msgid "Posterize"
+msgstr "Како постер"
+
+#: 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 ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.DLG_FILTEREMBOSS_FT_LIGHT.fixedtext.text
+msgid "Light source"
+msgstr ""
+
+#: grfflt.src#RID_SVX_GRFFILTER_DLG_EMBOSS.modaldialog.text
+msgid "Relief"
+msgstr "Релјеф"
+
+#: dlgname.src#RID_SVXDLG_NAME.modaldialog.text
+msgctxt "dlgname.src#RID_SVXDLG_NAME.modaldialog.text"
+msgid "Name"
+msgstr ""
+
+#: 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 ""
+
+#: dlgname.src#RID_SVXDLG_OBJECT_NAME.modaldialog.text
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_NAME.modaldialog.text"
+msgid "Name"
+msgstr ""
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_TITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Наслов"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_DESC.fixedtext.text
+#, fuzzy
+msgctxt "dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.NTD_FT_DESC.fixedtext.text"
+msgid "~Description"
+msgstr "Опис"
+
+#: dlgname.src#RID_SVXDLG_OBJECT_TITLE_DESC.modaldialog.text
+msgid "Description"
+msgstr "Опис"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
+#, fuzzy
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
+msgid "Font"
+msgstr "~Фонт"
+
+#: 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 ""
+
+#: 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 ""
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_CHAR_TWOLINES.pageitem.text
+#, fuzzy
+msgid "Asian Layout"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Азиски распоред на тастатурата\n"
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Азиски изглед"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_STD_PARAGRAPH.pageitem.text
+msgid "Indents & Spacing"
+msgstr "Вовлекувања и растојание"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_ALIGN_PARAGRAPH.pageitem.text
+msgid "Alignment"
+msgstr "Порамнување"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_EXT_PARAGRAPH.pageitem.text
+msgid "Text Flow"
+msgstr "Тек на текст"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.1.RID_SVXPAGE_PARA_ASIAN.pageitem.text
+msgid "Asian Typography"
+msgstr "Азиска типографија"
+
+#: 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 ""
+
+#: srchxtra.src#RID_SVXDLG_SEARCHFORMAT.tabdialog.text
+msgid "Text Format"
+msgstr ""
+
+#: srchxtra.src#RID_SVXDLG_SEARCHATTR.FL_ATTR.fixedtext.text
+msgid "~Options"
+msgstr "О~пции"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHATTR.modaldialog.text
+msgid "Attributes"
+msgstr "Атрибути"
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_OTHER.fixedtext.text
+msgid "~Exchange characters"
+msgstr ""
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_LONGER.fixedtext.text
+msgid "~Add characters"
+msgstr ""
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FT_SHORTER.fixedtext.text
+msgid "~Remove characters"
+msgstr ""
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.CB_RELAX.checkbox.text
+msgid "~Combine"
+msgstr ""
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FL_SIMILARITY.fixedline.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.FL_SIMILARITY.fixedline.text"
+msgid "Settings"
+msgstr ""
+
+#: srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.modaldialog.text
+msgctxt "srchxtra.src#RID_SVXDLG_SEARCHSIMILARITY.modaldialog.text"
+msgid "Similarity Search"
+msgstr ""
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_NAME.pageitem.text
+#, fuzzy
+msgctxt "sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_CHAR_NAME.pageitem.text"
+msgid "Font"
+msgstr "~Фонт"
+
+#: 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 ""
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.RID_SVXPAGE_BORDER.pageitem.text
+#, fuzzy
+msgid "Borders"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рабови\n"
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рабови\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рабови\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рабови\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рабови\n"
+"#-#-#-#-# help.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рамки\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рабови"
+
+#: 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 ""
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.1.pushbutton.text
+msgid "Return"
+msgstr ""
+
+#: sdrcelldlg.src#RID_SVX_FORMAT_CELLS_DLG.tabdialog.text
+msgid "Format Cells"
+msgstr "Форматирање ќелии"
+
+#: 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 ""
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_NAME.fixedtext.text
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_NAME.fixedtext.text"
+msgid "~Name"
+msgstr ""
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_URLDESCRIPTION.fixedtext.text
+msgid "Alternative ~text"
+msgstr ""
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_DESCRIPTION.fixedtext.text
+#, fuzzy
+msgctxt "cuiimapdlg.src#RID_SVXDLG_IMAPURL.FT_DESCRIPTION.fixedtext.text"
+msgid "~Description"
+msgstr "Опис"
+
+#: cuiimapdlg.src#RID_SVXDLG_IMAPURL.modaldialog.text
+msgid "Properties"
+msgstr "Својства"
+
+#: insrc.src#DLG_INS_ROW_COL.CB_POS_BEFORE.radiobutton.text
+msgid "~Before"
+msgstr "П~ред"
+
+#: insrc.src#DLG_INS_ROW_COL.CB_POS_AFTER.radiobutton.text
+msgid "A~fter"
+msgstr "П~о"
+
+#: insrc.src#DLG_INS_ROW_COL.FL_INS.fixedline.text
+#, fuzzy
+msgid "Insert"
+msgstr ""
+"#-#-#-#-# envelp.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# schedule.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметн~и"
+
+#: insrc.src#DLG_INS_ROW_COL.FL_POS.fixedline.text
+msgctxt "insrc.src#DLG_INS_ROW_COL.FL_POS.fixedline.text"
+msgid "Position"
+msgstr ""
+
+#: insrc.src#DLG_INS_ROW_COL.FT_COUNT.fixedtext.text
+msgid "~Number"
+msgstr "~Број"
+
+#: insrc.src#DLG_INS_ROW_COL.STR_ROW.string.text
+msgid "Insert Rows"
+msgstr "Вметни редови"
+
+#: 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 ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.FT_WORD.fixedtext.text
+msgctxt "hyphen.src#RID_SVXDLG_HYPHENATE.FT_WORD.fixedtext.text"
+msgid "~Word"
+msgstr ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CUT.okbutton.text
+msgid "H~yphenate"
+msgstr ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CONTINUE.pushbutton.text
+msgid "~Skip"
+msgstr ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_DELETE.pushbutton.text
+#, fuzzy
+msgid "~Remove"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Отст~рани\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани"
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_ALL.pushbutton.text
+msgid "Hyphenate ~All"
+msgstr ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CANCEL.cancelbutton.text
+msgctxt "hyphen.src#RID_SVXDLG_HYPHENATE.BTN_HYPH_CANCEL.cancelbutton.text"
+msgid "~Close"
+msgstr ""
+
+#: hyphen.src#RID_SVXDLG_HYPHENATE.modaldialog.text
+msgid "Hyphenation"
+msgstr "Разделување"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_SEARCHFOR.fixedline.text
+msgid "Search for"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORTEXT.radiobutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORTEXT.radiobutton.text"
+msgid "~Text"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORNULL.radiobutton.text
+msgid "Field content is ~NULL"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SEARCHFORNOTNULL.radiobutton.text
+msgid "Field content is not NU~LL"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_WHERE.fixedline.text
+msgid "Where to search"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_FORM.fixedtext.text
+msgid "Form"
+msgstr "Форма"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_ALLFIELDS.radiobutton.text
+msgid "All Fields"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.RB_SINGLEFIELD.radiobutton.text
+msgid "Single field"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_OPTIONS.fixedline.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.FL_OPTIONS.fixedline.text"
+msgid "Settings"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_POSITION.fixedtext.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_POSITION.fixedtext.text"
+msgid "Position"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_USEFORMATTER.checkbox.text
+msgid "Apply field format"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_CASE.checkbox.text
+#, fuzzy
+msgid "Match case"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Разликување мали/големи букви\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Разликувај мали/големи букви"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_BACKWARD.checkbox.text
+msgid "Search backwards"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_STARTOVER.checkbox.text
+msgid "From Beginning"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_WILDCARD.checkbox.text
+msgid "Wildcard expression"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_REGULAR.checkbox.text
+msgid "Regular expression"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_APPROX.checkbox.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_APPROX.checkbox.text"
+msgid "Similarity Search"
+msgstr ""
+
+#: 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 "Совпаѓање на ширина на знаци"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.CB_SOUNDSLIKECJK.checkbox.text
+msgid "Sounds like (Japanese)"
+msgstr "Звучи како (јапонски)"
+
+#: 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
+#, fuzzy
+msgid "State"
+msgstr ""
+"#-#-#-#-# dbui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Држава\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Земја\n"
+"#-#-#-#-# Office.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Држава\n"
+"#-#-#-#-# template.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Земја\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Земја\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Земја"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.FT_RECORDLABEL.fixedtext.text
+msgid "Record :"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.PB_SEARCH.pushbutton.text
+msgid "Search"
+msgstr "Барај"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.1.cancelbutton.text
+msgctxt "fmsearch.src#RID_SVXDLG_SEARCHFORM.1.cancelbutton.text"
+msgid "~Close"
+msgstr ""
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.1.helpbutton.text
+#, fuzzy
+msgid "~Help"
+msgstr ""
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Помош\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Помош\n"
+"#-#-#-#-# importwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"По~мош\n"
+"#-#-#-#-# euro.po (PACKAGE VERSION) #-#-#-#-#\n"
+"По~мош\n"
+"#-#-#-#-# extension.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Помош\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"По~мош\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Помош"
+
+#: fmsearch.src#RID_SVXDLG_SEARCHFORM.modaldialog.text
+msgid "Record Search"
+msgstr ""
+
+#: fmsearch.src#RID_STR_SEARCH_ANYWHERE.string.text
+msgid "anywhere in the field"
+msgstr ""
+
+#: fmsearch.src#RID_STR_SEARCH_BEGINNING.string.text
+msgid "beginning of field"
+msgstr ""
+
+#: fmsearch.src#RID_STR_SEARCH_END.string.text
+msgid "end of field"
+msgstr ""
+
+#: fmsearch.src#RID_STR_SEARCH_WHOLE.string.text
+msgid "entire field"
+msgstr ""
+
+#: fmsearch.src#RID_STR_FROM_TOP.string.text
+msgid "From top"
+msgstr "Од горе"
+
+#: fmsearch.src#RID_STR_FROM_BOTTOM.string.text
+msgid "From bottom"
+msgstr "Од долу"
+
+#: fmsearch.src#RID_SVXERR_SEARCH_NORECORD.errorbox.text
+msgid "No records corresponding to your data found."
+msgstr ""
+
+#: fmsearch.src#RID_SVXERR_SEARCH_GENERAL_ERROR.errorbox.text
+msgid "An unknown error occurred. The search could not be finished."
+msgstr ""
+
+#: fmsearch.src#RID_STR_OVERFLOW_FORWARD.string.text
+msgid "Overflow, search continued at the beginning"
+msgstr ""
+
+#: fmsearch.src#RID_STR_OVERFLOW_BACKWARD.string.text
+msgid "Overflow, search continued at the end"
+msgstr ""
+
+#: fmsearch.src#RID_STR_SEARCH_COUNTING.string.text
+msgid "counting records"
+msgstr ""
+
+#: zoom.src#RID_SVXDLG_ZOOM.FL_ZOOM.fixedline.text
+msgid "Zoom factor"
+msgstr ""
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_OPTIMAL.radiobutton.text
+msgid "~Optimal"
+msgstr "~Оптимално"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_WHOLE_PAGE.radiobutton.text
+msgid "~Fit width and height"
+msgstr ""
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_PAGE_WIDTH.radiobutton.text
+msgid "Fit ~width"
+msgstr "Приспособи кон ~ширина"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_USER.radiobutton.text
+msgid "~Variable"
+msgstr "~Променливо"
+
+#: zoom.src#RID_SVXDLG_ZOOM.FL_VIEWLAYOUT.fixedline.text
+msgid "View layout"
+msgstr ""
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_AUTOMATIC.radiobutton.text
+#, fuzzy
+msgctxt "zoom.src#RID_SVXDLG_ZOOM.BTN_AUTOMATIC.radiobutton.text"
+msgid "~Automatic"
+msgstr "Автоматски"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_SINGLE.radiobutton.text
+msgid "~Single page"
+msgstr "~Една страница"
+
+#: zoom.src#RID_SVXDLG_ZOOM.BTN_COLUMNS.radiobutton.text
+msgid "~Columns"
+msgstr "~Колони"
+
+#: zoom.src#RID_SVXDLG_ZOOM.CHK_BOOK.checkbox.text
+msgid "~Book mode"
+msgstr ""
+
+#: zoom.src#RID_SVXDLG_ZOOM.modaldialog.text
+msgid "Zoom & View Layout"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FL_FILE_ENCRYPTION.fixedline.text
+msgid "File encryption password"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_TO_OPEN.fixedtext.text
+msgid "~Enter password to open"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FL_FILE_SHARING_OPTIONS.fixedline.text
+msgid "File sharing password"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.CB_OPEN_READONLY.checkbox.text
+msgid "Open file read-only"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.FT_PASSWD_TO_MODIFY.fixedtext.text
+msgid "Enter password to allow editing"
+msgstr ""
+
+#: 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 ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_PASSWD_MUST_BE_CONFIRMED.string.text
+msgid "Password must be confirmed"
+msgstr ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_MORE_OPTIONS.string.text
+msgid "More ~Options"
+msgstr "Повеќе ~опции"
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.STR_FEWER_OPTIONS.string.text
+msgid "Fewer ~Options"
+msgstr "Помалку ~опции"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: passwdomdlg.src#RID_DLG_PASSWORD_TO_OPEN_MODIFY.modaldialog.text
+msgid "Set Password"
+msgstr ""
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FT_COUNT.fixedtext.text
+msgid "~Split cell into"
+msgstr ""
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FL_COUNT.fixedline.text
+msgid "Split"
+msgstr "Раздели"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.RB_HORZ.imageradiobutton.text
+msgid "H~orizontally"
+msgstr ""
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.CB_PROP.checkbox.text
+msgid "~Into equal proportions"
+msgstr ""
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.RB_VERT.imageradiobutton.text
+msgid "~Vertically"
+msgstr "~Вертикално"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.FL_DIR.fixedline.text
+msgid "Direction"
+msgstr "Насока"
+
+#: splitcelldlg.src#RID_SVX_SPLITCELLDLG.modaldialog.text
+msgid "Split Cells"
+msgstr "Раздели ќелии"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.PB_FIND.pushbutton.text
+msgid "~Find"
+msgstr "~Најди"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.FT_FORMAT.fixedtext.text
+#, fuzzy
+msgid "Format"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форматирање\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формат\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формат\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формат\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форматирај\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форматирање\n"
+"#-#-#-#-# template.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формат"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_SIMPLE_CONVERSION.radiobutton.text
+msgid "~Hangul/Hanja"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_BRACKETED.radiobutton.text
+msgid "Hanja (Han~gul)"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_BRACKETED.radiobutton.text
+msgid "Hang~ul (Hanja)"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_ABOVE.radiobutton.text
+msgid "Hangu~l"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANGUL_HANJA_BELOW.radiobutton.text
+msgid "Hang~ul"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_ABOVE.radiobutton.text
+msgid "Han~ja"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.RB_HANJA_HANGUL_BELOW.radiobutton.text
+msgid "Ha~nja"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.FT_CONVERSION.fixedtext.text
+msgid "Conversion"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_HANGUL_ONLY.checkbox.text
+msgid "Hangul ~only"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_HANJA_ONLY.checkbox.text
+msgid "Hanja onl~y"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.CB_REPLACE_BY_CHARACTER.checkbox.text
+msgid "Replace b~y character"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.STR_HANGUL.string.text
+msgid "Hangul"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.STR_HANJA.string.text
+msgid "Hanja"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA.modaldialog.text
+#, fuzzy
+msgid "Hangul/Hanja Conversion"
+msgstr ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Конверзија хангулски/ханџа\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Конверзија Хангулски/Ханџа"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FT_USERDEFDICT.fixedtext.text
+msgid "User-defined dictionaries"
+msgstr "Кориснички дефинирани речници"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FL_OPTIONS.fixedline.text
+#, fuzzy
+msgctxt "hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "О~пции"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_IGNOREPOST.checkbox.text
+msgid "Ignore post-positional word"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_SHOWRECENTLYFIRST.checkbox.text
+msgid "Show recently used entries first"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.CB_AUTOREPLACEUNIQUE.checkbox.text
+msgid "Replace all unique entries automatically"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_NEW.pushbutton.text
+msgid "New..."
+msgstr "Нов..."
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.PB_HHO_EDIT.pushbutton.text
+msgid "Edit..."
+msgstr "Уреди..."
+
+#: 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 ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_OPT.modaldialog.text
+msgid "Hangul/Hanja Options"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.FL_NEWDICT.fixedline.text
+msgid "Dictionary"
+msgstr ""
+
+#: 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 ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_NEWDICT.modaldialog.text
+msgid "New Dictionary"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.STR_EDITHINT.string.text
+msgid "[Enter text here]"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_BOOK.fixedtext.text
+msgid "Book"
+msgstr "Книга"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_ORIGINAL.fixedtext.text
+msgid "Original"
+msgstr "Оригинал"
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.FT_SUGGESTIONS.fixedtext.text
+msgid "Suggestions (max. 8)"
+msgstr ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.PB_HHE_NEW.pushbutton.text
+#, fuzzy
+msgid "New"
+msgstr ""
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нов\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Нова"
+
+#: 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 ""
+
+#: 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 ""
+
+#: hangulhanjadlg.src#RID_SVX_MDLG_HANGULHANJA_EDIT.modaldialog.text
+msgid "Edit Custom Dictionary"
+msgstr ""
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.FT_WORD.fixedtext.text
+#, fuzzy
+msgid "Origi~nal"
+msgstr "Оригинал"
+
+#: 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 ""
+
+#: 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 ""
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_IGNORE.pushbutton.text
+msgid "~Ignore"
+msgstr "~Игнорирај"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_IGNOREALL.pushbutton.text
+msgid "Always I~gnore"
+msgstr ""
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_CHANGE.pushbutton.text
+msgid "~Replace"
+msgstr "~Замени"
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_CHANGEALL.pushbutton.text
+msgid "Always R~eplace"
+msgstr ""
+
+#: commonlingui.src#RID_SVX_WND_COMMON_LINGU.BTN_OPTIONS.pushbutton.text
+msgid "Options..."
+msgstr "Опции..."
+
+#: 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 ""
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_LASTEDITLABEL.fixedtext.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.FT_LASTEDITLABEL.fixedtext.text"
+msgid "Author"
+msgstr ""
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_EDIT.fixedtext.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.FT_EDIT.fixedtext.text"
+msgid "~Text"
+msgstr ""
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FL_POSTIT.fixedline.text
+msgid "Contents"
+msgstr "Содржина"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.FT_AUTHOR.fixedtext.text
+#, fuzzy
+msgid "~Insert"
+msgstr ""
+"#-#-#-#-# envelp.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Вметни\n"
+"#-#-#-#-# schedule.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметн~и"
+
+#: postdlg.src#RID_SVXDLG_POSTIT.BTN_AUTHOR.pushbutton.text
+msgctxt "postdlg.src#RID_SVXDLG_POSTIT.BTN_AUTHOR.pushbutton.text"
+msgid "Author"
+msgstr ""
+
+#: 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 ""
diff --git a/source/mk/cui/source/options.po b/source/mk/cui/source/options.po
new file mode 100644
index 00000000000..e06dc684e5c
--- /dev/null
+++ b/source/mk/cui/source/options.po
@@ -0,0 +1,3169 @@
+#. 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 14:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME.fixedtext.text
+msgid "First/Last ~name/Initials"
+msgstr "Име/Пре~зиме/Иницијали"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME_RUSS.fixedtext.text
+msgid "Last Name/First name/Father's name/Initials"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_NAME_EASTERN.fixedtext.text
+#, fuzzy
+msgid "Last/First ~name/Initials"
+msgstr "Име/Пре~зиме/Иницијали"
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_STREET.fixedtext.text
+msgid "~Street"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_STREET_RUSS.fixedtext.text
+msgid "Street/Apartment number"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_CITY.fixedtext.text
+msgid "Zip/City"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_COUNTRY.fixedtext.text
+msgid "Country/Region"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_TITLEPOS.fixedtext.text
+msgid "~Title/Position"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_PHONE.fixedtext.text
+msgid "Tel. (Home/Work)"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.FT_FAXMAIL.fixedtext.text
+msgid "Fa~x / E-mail"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.GB_ADDRESS.fixedline.text
+msgid "Address "
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.CB_USEDATA.checkbox.text
+msgid "Use data for document properties"
+msgstr ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.STR_US_STATE.string.text
+msgid "City/State/Zip"
+msgstr ""
+
+#: 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 ""
+
+#: optgenrl.src#RID_SFXPAGE_GENERAL.tabpage.text
+msgctxt "optgenrl.src#RID_SFXPAGE_GENERAL.tabpage.text"
+msgid "User Data"
+msgstr ""
+
+#: 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 ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FL_WARNINGS.fixedline.text
+msgid "Security warnings"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FI_WARNINGS.fixedtext.text
+msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_SAVESENDDOCS.checkbox.text
+msgid "When saving or sending"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_SIGNDOCS.checkbox.text
+msgid "When signing"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_PRINTDOCS.checkbox.text
+msgid "When printing"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_CREATEPDF.checkbox.text
+msgid "When creating PDF files"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.FL_OPTIONS.fixedline.text
+msgid "Security options"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_REMOVEINFO.checkbox.text
+msgid "Remove personal information on saving"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_RECOMMENDPWD.checkbox.text
+msgid "Recommend password protection on saving"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.CB_CTRLHYPERLINK.checkbox.text
+msgid "Ctrl-click required to follow hyperlinks"
+msgstr ""
+
+#: securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.modaldialog.text
+msgctxt "securityoptions.src#RID_SVXDLG_SECURITY_OPTIONS.modaldialog.text"
+msgid "Security options and warnings"
+msgstr ""
+
+#: optsave.src#TEXT_SAVEPAGE.#define.text
+msgctxt "optsave.src#TEXT_SAVEPAGE.#define.text"
+msgid "Save"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_LOAD.fixedline.text
+msgid "Load"
+msgstr "Вчитување"
+
+#: optsave.src#RID_SFXPAGE_SAVE.CB_LOAD_SETTINGS.checkbox.text
+msgid "Load user-specific settings with the document"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.CB_LOAD_DOCPRINTER.checkbox.text
+msgid "Load printer settings with the document"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.GB_SAVE.fixedline.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.GB_SAVE.fixedline.text"
+msgid "Save"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_DOCINFO.checkbox.text
+msgid "~Edit document properties before saving"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_BACKUP.checkbox.text
+msgid "Al~ways create backup copy"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_AUTOSAVE.checkbox.text
+msgid "Save ~AutoRecovery information every"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_MINUTE.fixedtext.text
+msgid "Minutes"
+msgstr "Минути"
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_RELATIVE_FSYS.checkbox.text
+msgid "Save URLs relative to file system"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_RELATIVE_INET.checkbox.text
+msgid "Save URLs relative to internet"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.FL_FILTER.fixedline.text
+msgid "Default file format and ODF settings"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_ODF_VERSION.fixedtext.text
+msgid "ODF format version"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.1.stringlist.text
+msgid "1.0/1.1"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_ODF_VERSION.2.stringlist.text
+msgid "1.2"
+msgstr ""
+
+#: 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 ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_NOPRETTYPRINTING.checkbox.text
+msgid "Size optimization for ODF format"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.BTN_WARNALIENFORMAT.checkbox.text
+msgid "Warn when not saving in ODF or default format"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_APP.fixedtext.text
+msgid "D~ocument type"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.FT_FILTER.fixedtext.text
+msgid "Always sa~ve as"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.1.stringlist.text
+msgid "Text document"
+msgstr "Текстуален документ"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.2.stringlist.text
+msgid "HTML document"
+msgstr "HTML-документ"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.3.stringlist.text
+msgid "Master document"
+msgstr "Главен документ"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.4.stringlist.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.LB_APP.4.stringlist.text"
+msgid "Spreadsheet"
+msgstr ""
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.5.stringlist.text
+msgid "Presentation"
+msgstr "Презентација"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.6.stringlist.text
+#, fuzzy
+msgid "Drawing"
+msgstr ""
+"#-#-#-#-# shells.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Цртање\n"
+"#-#-#-#-# utlui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Цртеж\n"
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Цртеж\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Цртеж\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Цртеж\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Цртеж\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Цртеж\n"
+"#-#-#-#-# draw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Цртеж"
+
+#: optsave.src#RID_SFXPAGE_SAVE.LB_APP.7.stringlist.text
+msgctxt "optsave.src#RID_SFXPAGE_SAVE.LB_APP.7.stringlist.text"
+msgid "Formula"
+msgstr ""
+
+#. EN-US, the term 'extended' must not be translated.
+#: optsave.src#RID_SFXPAGE_SAVE.FT_WARN.fixedtext.text
+msgid "Not using ODF 1.2 Extended may cause information to be lost."
+msgstr ""
+
+#: optsave.src#RID_SVXDLG_FILTER_WARNING.FT_FILTER_WARNING.fixedtext.text
+msgid "Using \"%1\" as default file format may cause information loss.\n"
+msgstr ""
+
+#: readonlyimage.src#RID_SVXSTR_READONLY_CONFIG_TIP.string.text
+msgid "This setting is protected by the Administrator"
+msgstr "Ова поставување е заштитено од администраторот"
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_MOZPLUGIN.CB_MOZPLUGIN_CODE.checkbox.text
+msgid "~Display documents in browser"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.GB_SETTINGS.fixedline.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.GB_SETTINGS.fixedline.text"
+msgid "Settings"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_PROXYMODE.fixedtext.text
+msgid "Proxy s~erver"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.1.stringlist.text
+msgid "None"
+msgstr "Нема"
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.LB_PROXYMODE.3.stringlist.text
+msgid "Manual"
+msgstr "Рачно"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ST_PROXY_FROM_BROWSER.string.text
+msgid "Use browser settings"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTP_PROXY.fixedtext.text
+msgid "HT~TP proxy"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTP_PORT.fixedtext.text
+msgid "~Port"
+msgstr "~Порта"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_HTTPS_PROXY.fixedtext.text
+msgid "HTTP~S proxy"
+msgstr ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_FTP_PROXY.fixedtext.text
+msgid "~FTP proxy"
+msgstr ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_SOCKS_PROXY.fixedtext.text
+msgid "~SOCKS proxy"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_SOCKS_PORT.fixedtext.text
+msgid "Po~rt"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.FT_NOPROXYFOR.fixedtext.text
+msgid "~No proxy for:"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.ED_NOPROXYDESC.fixedtext.text
+msgid "Separator ;"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.GB_DNS.fixedline.text
+msgid "DNS server"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.RB_DNS_AUTO.radiobutton.text
+msgid "~Automatic"
+msgstr "~Автоматски"
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.RB_DNS_MANUAL.radiobutton.text
+#, fuzzy
+msgid "~Manual"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Рачно\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Р~ачно"
+
+#: 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 ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_PROXY.tabpage.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_PROXY.tabpage.text"
+msgid "Proxy"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_SECURITYOPTIONS.pushbutton.text
+msgid "Options..."
+msgstr "Опции..."
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_PASSWORDS.fixedline.text
+msgid "Passwords for web connections"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.CB_SEC_SAVEPASSWORDS.checkbox.text
+msgid "Persistently save passwords for web connections"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_CONNECTIONS.pushbutton.text
+msgid "Connections..."
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.CB_SEC_MASTERPASSWORD.checkbox.text
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_MASTERPASSWORD.pushbutton.text
+msgid "Master Password..."
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.FL_SEC_MACROSEC.fixedline.text
+msgid "Macro security"
+msgstr ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.PB_SEC_MACROSEC.pushbutton.text
+msgid "Macro Security..."
+msgstr ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXPAGE_INET_SECURITY.tabpage.text
+msgctxt "optinet2.src#RID_SVXPAGE_INET_SECURITY.tabpage.text"
+msgid "Security"
+msgstr ""
+
+#: optinet2.src#RID_SVXERR_OPT_PROXYPORTS.errorbox.text
+msgid ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+msgstr ""
+
+#: 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 ""
+
+#: optinet2.src#RID_SVXDLG_OPT_JAVASCRIPT_DISABLE.CB_JSCPT_DISABLE.checkbox.text
+msgid "~Don't show warning again"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.FL_MAIL.fixedline.text
+msgid "Sending documents as e-mail attachments"
+msgstr ""
+
+#: optinet2.src#RID_SVXPAGE_INET_MAIL.FT_MAILERURL.fixedtext.text
+msgid "~E-mail program"
+msgstr ""
+
+#: 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 ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONT1.fixedtext.text
+msgid "~Font"
+msgstr "~Фонт"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONT2.fixedtext.text
+msgid "Re~place with"
+msgstr "За~мени со"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.TBX_SUBSTNEWDEL.BT_SUBSTAPPLY.toolboxitem.text
+msgid "Apply"
+msgstr "Примени"
+
+#: 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 ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FL_SOURCEVIEW.fixedline.text
+msgid "Font settings for HTML, Basic and SQL sources"
+msgstr ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTNAME.fixedtext.text
+#, fuzzy
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTNAME.fixedtext.text"
+msgid "Fonts"
+msgstr "Фонт"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.CB_NONPROP.checkbox.text
+msgid "Non-proportional fonts only"
+msgstr ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.FT_FONTHEIGHT.fixedtext.text
+msgid "~Size"
+msgstr "~Големина"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER1.string.text
+msgid "Always"
+msgstr ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER2.string.text
+msgid "Screen only"
+msgstr ""
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER3.string.text
+msgid "Font"
+msgstr "Фонт"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_HEADER4.string.text
+msgid "Replace with"
+msgstr "Замени со"
+
+#: fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_AUTOMATIC.string.text
+#, fuzzy
+msgctxt "fontsubs.src#RID_SVX_FONT_SUBSTITUTION.STR_AUTOMATIC.string.text"
+msgid "Automatic"
+msgstr "~Автоматски"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.FT_DICTNAME.fixedtext.text
+msgid "~Name"
+msgstr "~Име"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.FT_DICTLANG.fixedtext.text
+#, fuzzy
+msgctxt "optdict.src#RID_SFXDLG_NEWDICT.FT_DICTLANG.fixedtext.text"
+msgid "~Language"
+msgstr "Јазик"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.BTN_EXCEPT.checkbox.text
+msgid "~Exception (-)"
+msgstr ""
+
+#: optdict.src#RID_SFXDLG_NEWDICT.GB_NEWDICT.fixedline.text
+#, fuzzy
+msgid "Dictionary"
+msgstr "Речници"
+
+#: optdict.src#RID_SFXDLG_NEWDICT.modaldialog.text
+msgid "New Dictionary"
+msgstr ""
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_BOOK.fixedtext.text
+msgid "~Book"
+msgstr ""
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_DICTLANG.fixedtext.text
+#, fuzzy
+msgctxt "optdict.src#RID_SFXDLG_EDITDICT.FT_DICTLANG.fixedtext.text"
+msgid "~Language"
+msgstr "Јазик"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_WORD.fixedtext.text
+msgid "~Word"
+msgstr ""
+
+#: optdict.src#RID_SFXDLG_EDITDICT.FT_REPLACE.fixedtext.text
+msgid "Replace ~By:"
+msgstr ""
+
+#: optdict.src#RID_SFXDLG_EDITDICT.PB_NEW_REPLACE.pushbutton.text
+#, fuzzy
+msgid "~New"
+msgstr ""
+"#-#-#-#-# dbui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нова\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нов\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново\n"
+"#-#-#-#-# ucbexplorer.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нов\n"
+"#-#-#-#-# msi_languages.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нов\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нов\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ново"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.PB_DELETE_REPLACE.pushbutton.text
+msgctxt "optdict.src#RID_SFXDLG_EDITDICT.PB_DELETE_REPLACE.pushbutton.text"
+msgid "~Delete"
+msgstr ""
+
+#: optdict.src#RID_SFXDLG_EDITDICT.STR_MODIFY.string.text
+msgid "~Replace"
+msgstr "~Замени"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.BTN_EDITCLOSE.cancelbutton.text
+#, fuzzy
+msgid "~Close"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"За~твори\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# importwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"За~твори\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори"
+
+#: optdict.src#RID_SFXDLG_EDITDICT.modaldialog.text
+msgid "Edit Custom Dictionary"
+msgstr ""
+
+#: optdict.src#RID_SVXSTR_OPT_DOUBLE_DICTS.string.text
+msgid ""
+"The specified name already exists.\n"
+"Please enter a new name."
+msgstr ""
+
+#: optdict.src#RID_SFXQB_SET_LANGUAGE.querybox.text
+msgid "Do you want to change the '%1' dictionary language?"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE1.fixedtext.text
+msgid "Size ~1"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE2.fixedtext.text
+msgid "Size ~2"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE3.fixedtext.text
+msgid "Size ~3"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE4.fixedtext.text
+msgid "Size ~4"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE5.fixedtext.text
+msgid "Size ~5"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE6.fixedtext.text
+msgid "Size ~6"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.FT_SIZE7.fixedtext.text
+msgid "Size ~7"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_FONTSIZE.fixedline.text
+msgid "Font sizes"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_IMPORT.fixedline.text
+#, fuzzy
+msgid "Import"
+msgstr ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Внеси\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Внесување\n"
+"#-#-#-#-# xsltdialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Внесување"
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_NUMBERS_ENGLISH_US.checkbox.text
+msgid "~Use '%ENGLISHUSLOCALE' locale for numbers"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_UNKNOWN_TAGS.checkbox.text
+msgid "~Import unknown HTML tags as fields"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.CB_IGNORE_FONTNAMES.checkbox.text
+msgid "Ignore ~font settings"
+msgstr ""
+
+#: opthtml.src#RID_OFAPAGE_HTMLOPT.GB_EXPORT.fixedline.text
+#, fuzzy
+msgid "Export"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Изнесување\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Изнеси\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Изнесување\n"
+"#-#-#-#-# xsltdialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Изнесување"
+
+#: opthtml.src#CB_STARBASIC_WARNING.checkbox.text
+msgid "Display ~warning"
+msgstr ""
+
+#: opthtml.src#CB_PRINT_EXTENSION.checkbox.text
+msgid "~Print layout"
+msgstr ""
+
+#: opthtml.src#CB_LOCAL_GRF.checkbox.text
+msgid "~Copy local graphics to Internet"
+msgstr ""
+
+#: opthtml.src#FT_CHARSET.fixedtext.text
+msgid "Character set"
+msgstr "Множество знаци"
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.FL_DEFTXTDIRECTION.fixedline.text
+msgid "Default text direction"
+msgstr ""
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.RB_TXTDIR_LEFT2RIGHT.radiobutton.text
+msgid "~Left-to-right"
+msgstr ""
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.RB_TXTDIR_RIGHT2LEFT.radiobutton.text
+msgid "~Right-to-left"
+msgstr ""
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.FL_SHEETVIEW.fixedline.text
+msgid "Sheet view"
+msgstr ""
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.CB_SHTVW_RIGHT2LEFT.checkbox.text
+msgid "Right-~to-left"
+msgstr ""
+
+#: internationaloptions.src#RID_OFA_TP_INTERNATIONAL.CB_SHTVW_CURRENTDOCONLY.checkbox.text
+msgid "~Current document only"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FL_COLORSCHEME.fixedline.text
+msgid "Color scheme"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FT_COLORSCHEME.fixedtext.text
+msgid "Scheme"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_SAVESCHEME.pushbutton.text
+msgid "Save..."
+msgstr "Зачувај..."
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_DELETESCHEME.pushbutton.text
+msgctxt "optcolor.src#RID_SVXPAGE_COLORCONFIG.PB_DELETESCHEME.pushbutton.text"
+msgid "Delete"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.FL_CUSTOMCOLORS.fixedline.text
+msgid "Custom colors"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_ON.string.text
+msgid "On"
+msgstr "Вкл."
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_UIELEM.string.text
+msgid "User interface elements"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_COLSET.string.text
+msgid "Color setting"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.ST_PREVIEW.string.text
+msgid "Preview"
+msgstr "Преглед"
+
+#: 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 ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DOCCOLOR.fixedtext.text
+msgid "Document background"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_DOCBOUND.checkbox.text
+msgid "Text boundaries"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_APPBACKGROUND.fixedtext.text
+msgid "Application background"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_OBJECTBOUNDARIES.checkbox.text
+msgid "Object boundaries"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_TABLEBOUNDARIES.checkbox.text
+msgid "Table boundaries"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_FONTCOLOR.fixedtext.text
+#, fuzzy
+msgid "Font color"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на фонт\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на фонтот\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на фонт\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на фонт"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_LINKS.checkbox.text
+msgid "Unvisited links"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_LINKSVISITED.checkbox.text
+msgid "Visited links"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SPELL.fixedtext.text
+msgid "AutoSpellcheck"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SMARTTAGS.fixedtext.text
+msgid "Smart Tags"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_SHADOWCOLOR.checkbox.text
+#, fuzzy
+msgid "Shadows"
+msgstr "Сенка"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITER.fixedtext.text
+#, fuzzy
+msgid "Text Document"
+msgstr ""
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текстуален документ\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"ODF текстуален документ\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текстуален документ\n"
+"#-#-#-#-# writer.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Текстуален документ"
+
+#: 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 "Мрежа"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERFIELDSHADINGS.checkbox.text
+msgid "Field shadings"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERIDXSHADINGS.checkbox.text
+msgid "Index and table shadings"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERSCRIPTINDICATOR.fixedtext.text
+msgid "Script indicator"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.CB_WRITERSECTIONBOUNDARIES.checkbox.text
+msgid "Section boundaries"
+msgstr ""
+
+#: 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 ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_WRITERDIRECTCURSOR.fixedtext.text
+msgid "Direct cursor"
+msgstr "Директен покажувач"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTML.fixedtext.text
+msgid "HTML Document"
+msgstr "HTML-документ"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLSGML.fixedtext.text
+msgid "SGML syntax highlighting"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLCOMMENT.fixedtext.text
+msgid "Comment highlighting"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLKEYWORD.fixedtext.text
+msgid "Keyword highlighting"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_HTMLUNKNOWN.fixedtext.text
+msgid "Text"
+msgstr "Текст"
+
+#: 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 ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCGRID.fixedtext.text
+msgid "Grid lines"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAK.fixedtext.text
+msgid "Page breaks"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAKMANUAL.fixedtext.text
+msgid "Manual page breaks"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCPAGEBREAKAUTO.fixedtext.text
+msgid "Automatic page breaks"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCDETECTIVE.fixedtext.text
+msgid "Detective"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCDETECTIVEERROR.fixedtext.text
+msgid "Detective error"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCREFERENCE.fixedtext.text
+msgid "References"
+msgstr "Референци"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_CALCNOTESBACKGROUND.fixedtext.text
+msgid "Notes background"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_DRAW.fixedtext.text
+msgid "Drawing / Presentation"
+msgstr ""
+
+#: 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 "Мрежа"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASIC.fixedtext.text
+msgid "Basic Syntax Highlighting"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICKEYWORD.fixedtext.text
+msgid "Reserved expression"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_BASICERROR.fixedtext.text
+msgid "Error"
+msgstr "Грешка"
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQL_COMMAND.fixedtext.text
+msgid "SQL Syntax Highlighting"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLKEYWORD.fixedtext.text
+msgid "Keyword"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.FT_SQLPARAMETER.fixedtext.text
+msgid "Parameter"
+msgstr ""
+
+#: 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 ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_EXTENSION.string.text
+msgid "Colorsettings of the Extensions"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_SPELL_CHECK_HIGHLIGHTING.string.text
+msgid "Spell check highlighting"
+msgstr ""
+
+#: optcolor.src#RID_SVXPAGE_COLORCONFIG.CT_COLORCONFIG.WN_SCROLL.ST_GRAMMAR_CHECK_HIGHLIGHTING.string.text
+msgid "Grammar check highlighting"
+msgstr ""
+
+#: optcolor.src#RID_SVXQB_DELETE_COLOR_CONFIG.querybox.text
+#, fuzzy
+msgid "Do you really want to delete the color scheme?"
+msgstr "Дали навистина сакате да го избришете корисникот?"
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_DELETE.string.text
+msgid "Color Scheme Deletion"
+msgstr ""
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_SAVE1.string.text
+msgid "Save scheme"
+msgstr ""
+
+#: optcolor.src#RID_SVXSTR_COLOR_CONFIG_SAVE2.string.text
+msgid "Name of color scheme"
+msgstr ""
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.FL_CHART_COLOR_LIST.fixedline.text
+msgid "Chart colors"
+msgstr ""
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.FL_COLOR_BOX.fixedline.text
+msgid "Color table"
+msgstr ""
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_ADD_CHART_COLOR.pushbutton.text
+#, fuzzy
+msgid "~Add"
+msgstr "~Додај"
+
+#: 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 ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Отст~рани\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_RESET_TO_DEFAULT.pushbutton.text
+#, fuzzy
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.PB_RESET_TO_DEFAULT.pushbutton.text"
+msgid "~Default"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандарден\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Преддефиниран\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно"
+
+#: optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.tabpage.text
+msgctxt "optchart.src#RID_OPTPAGE_CHART_DEFCOLORS.tabpage.text"
+msgid "Default Colors"
+msgstr ""
+
+#: optchart.src#RID_SVXSTR_DIAGRAM_ROW.string.text
+msgid "Data Series $(ROW)"
+msgstr ""
+
+#: optchart.src#RID_OPTQB_COLOR_CHART_DELETE.querybox.text
+#, fuzzy
+msgid "Do you really want to delete the chart color?"
+msgstr "Дали навистина сакате да го избришете корисникот?"
+
+#: optchart.src#RID_OPTSTR_COLOR_CHART_DELETE.string.text
+#, fuzzy
+msgid "Chart Color Deletion"
+msgstr "Потврда за бришење"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_KERNING.fixedline.text
+msgid "Kerning"
+msgstr "Растојание меѓу парови знаци"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_CHAR_KERNING.radiobutton.text
+msgid "~Western characters only"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_CHAR_PUNCT.radiobutton.text
+msgid "Western ~text and Asian punctuation"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_CHAR_DIST.fixedline.text
+msgid "Character spacing"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_NO_COMP.radiobutton.text
+msgid "~No compression"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_PUNCT_COMP.radiobutton.text
+msgid "~Compress punctuation only"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.RB_PUNCT_KANA_COMP.radiobutton.text
+msgid "Compress ~punctuation and Japanese Kana"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.GB_START_END.fixedline.text
+msgid "First and last characters"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_LANGUAGE.fixedtext.text
+#, fuzzy
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_LANGUAGE.fixedtext.text"
+msgid "~Language"
+msgstr "Јазик"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.CB_STANDARD.checkbox.text
+#, fuzzy
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.CB_STANDARD.checkbox.text"
+msgid "~Default"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандарден\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Преддефиниран\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно"
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_START.fixedtext.text
+msgid "Not at start of line:"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_END.fixedtext.text
+msgid "Not at end of line:"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.FT_HINT.fixedtext.text
+msgid "Without user-defined line break symbols"
+msgstr ""
+
+#: optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.tabpage.text
+msgctxt "optasian.src#RID_SVXPAGE_ASIAN_LAYOUT.tabpage.text"
+msgid "Proxy"
+msgstr ""
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE.modaldialog.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE.modaldialog.text"
+msgid "Options"
+msgstr "О~пции"
+
+#: 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 ""
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.4.itemlist.text
+msgid "Memory"
+msgstr ""
+
+#: 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 ""
+
+#: 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 "Печатење"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.7.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.7.itemlist.text"
+msgid "Paths"
+msgstr "Патека"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.8.itemlist.text
+msgid "Colors"
+msgstr "Бои"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.9.itemlist.text
+#, fuzzy
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.9.itemlist.text"
+msgid "Fonts"
+msgstr "Фонт"
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.11.itemlist.text
+msgid "Appearance"
+msgstr "Изглед"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.12.itemlist.text
+msgid "Accessibility"
+msgstr ""
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.14.itemlist.text
+msgid "Network Identity"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS.15.itemlist.text
+msgid "Online Update"
+msgstr "Мрежно ажурирање"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.1.itemlist.text
+msgid "Language Settings"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.2.itemlist.text
+#, fuzzy
+msgid "Languages"
+msgstr "Јазик"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.3.itemlist.text
+msgid "Writing Aids"
+msgstr ""
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_LANGUAGE_OPTIONS.5.itemlist.text
+#, fuzzy
+msgid "Asian Layout"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Азиски распоред на тастатурата\n"
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Азиски изглед"
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.1.itemlist.text
+msgid "Internet"
+msgstr "Интернет"
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.3.itemlist.text
+msgid "E-mail"
+msgstr "Е-пошта"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_INET_DLG.4.itemlist.text"
+msgid "Browser Plug-in"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "Мрежа"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.6.itemlist.text
+msgid "Basic Fonts (Western)"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.7.itemlist.text
+msgid "Basic Fonts (Asian)"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.8.itemlist.text
+msgid "Basic Fonts (CTL)"
+msgstr ""
+
+#: 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 "Печатење"
+
+#: 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 ""
+
+#: 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 "Промени"
+
+#: 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
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.13.itemlist.text"
+msgid "Compatibility"
+msgstr ""
+
+#: 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 "Циркуларна е-пошта"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.1.itemlist.text
+#, fuzzy
+msgid "%PRODUCTNAME Writer/Web"
+msgstr "%PRODUCTNAME Writer"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "Мрежа"
+
+#: 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 "Печатење"
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.7.itemlist.text
+msgid "Background"
+msgstr "Подлога"
+
+#: 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 ""
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.3.itemlist.text
+#, fuzzy
+msgid "Defaults"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандарден\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Преддефиниран\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.4.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.4.itemlist.text"
+msgid "View"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.5.itemlist.text
+msgid "International"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.6.itemlist.text
+msgid "Calculate"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.7.itemlist.text"
+msgid "Formula"
+msgstr ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.8.itemlist.text
+msgid "Sort Lists"
+msgstr "Листи за подредување"
+
+#: 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 "Промени"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text
+msgctxt "treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS.10.itemlist.text"
+msgid "Compatibility"
+msgstr ""
+
+#: 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 "Мрежа"
+
+#: 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 "Печатење"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "Мрежа"
+
+#: 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 "Печатење"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "Мрежа"
+
+#: 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 "Печатење"
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS.1.itemlist.text
+msgid "Charts"
+msgstr "Графикони"
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.1.itemlist.text
+msgid "Load/Save"
+msgstr ""
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_FILTER_DLG.3.itemlist.text
+msgid "VBA Properties"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS.3.itemlist.text
+msgid "Databases"
+msgstr ""
+
+#: treeopt.src#RID_RIDER_SLL_SITE.string.text
+msgid "Site certificates"
+msgstr ""
+
+#: treeopt.src#RID_RIDER_SLL_PERSONAL.string.text
+msgid "Personal certificates"
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.FL_JAVA.fixedline.text
+msgid "Java options"
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.CB_JAVA_ENABLE.checkbox.text
+msgid "~Use a Java runtime environment"
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.FT_JAVA_FOUND.fixedtext.text
+msgid "~Java runtime environments (JRE) already installed:"
+msgstr ""
+
+#: 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 ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додади...\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај..."
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_PARAMETER.pushbutton.text
+msgid "~Parameters..."
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.PB_CLASSPATH.pushbutton.text
+msgid "~Class Path..."
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_INSTALLED_IN.string.text
+msgid "Location: "
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_ACCESSIBILITY.string.text
+msgid "with accessibility support"
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_ADDDLGTEXT.string.text
+msgid "Select a Java Runtime Environment"
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_VENDOR.string.text
+msgid "Vendor"
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_VERSION.string.text
+msgid "Version"
+msgstr "Верзија"
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.STR_HEADER_FEATURES.string.text
+msgid "Features"
+msgstr ""
+
+#: optjava.src#RID_SVXPAGE_OPTIONS_JAVA.tabpage.text
+msgctxt "optjava.src#RID_SVXPAGE_OPTIONS_JAVA.tabpage.text"
+msgid "Java"
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_PARAMETER.fixedtext.text
+msgid "Java start ~parameter"
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_ASSIGN.pushbutton.text
+msgid "~Assign"
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_ASSIGNED.fixedtext.text
+msgid "Assig~ned start parameters"
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.FT_EXAMPLE.fixedtext.text
+msgid "For example: -Dmyprop=c:\\program files\\java"
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_REMOVE.pushbutton.text
+#, fuzzy
+msgctxt "optjava.src#RID_SVXDLG_JAVA_PARAMETER.PB_REMOVE.pushbutton.text"
+msgid "~Remove"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Отст~рани\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани"
+
+#: optjava.src#RID_SVXDLG_JAVA_PARAMETER.modaldialog.text
+msgid "Java Start Parameters"
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.FT_PATH.fixedtext.text
+msgid "A~ssigned folders and archives"
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_ADDARCHIVE.pushbutton.text
+msgid "~Add Archive..."
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_ADDPATH.pushbutton.text
+msgid "Add ~Folder"
+msgstr ""
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_REMOVE_PATH.pushbutton.text
+#, fuzzy
+msgctxt "optjava.src#RID_SVXDLG_JAVA_CLASSPATH.PB_REMOVE_PATH.pushbutton.text"
+msgid "~Remove"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Отст~рани\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани"
+
+#: optjava.src#RID_SVXDLG_JAVA_CLASSPATH.modaldialog.text
+msgid "Class Path"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "Отповикај"
+
+#: optmemory.src#OFA_TP_MEMORY.FT_UNDO.fixedtext.text
+msgid "Number of steps"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.GB_GRAPHICCACHE.fixedline.text
+msgid "Graphics cache"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE.fixedtext.text
+msgid "Use for %PRODUCTNAME"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE_UNIT.fixedtext.text
+msgctxt "optmemory.src#OFA_TP_MEMORY.FT_GRAPHICCACHE_UNIT.fixedtext.text"
+msgid "MB"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE.fixedtext.text
+msgid "Memory per object"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE_UNIT.fixedtext.text
+msgctxt "optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTCACHE_UNIT.fixedtext.text"
+msgid "MB"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTTIME.fixedtext.text
+msgid "Remove from memory after"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.FT_GRAPHICOBJECTTIME_UNIT.fixedtext.text
+msgid "hh:mm"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.GB_OLECACHE.fixedline.text
+msgid "Cache for inserted objects"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.FT_OLECACHE.fixedtext.text
+msgid "Number of objects"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.FL_QUICKLAUNCH.fixedline.text
+msgid "%PRODUCTNAME Quickstarter"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.CB_QUICKLAUNCH.checkbox.text
+msgid "Load %PRODUCTNAME during system start-up"
+msgstr ""
+
+#: optmemory.src#OFA_TP_MEMORY.STR_QUICKLAUNCH_UNX.string.text
+msgid "Enable systray Quickstarter"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FL_MISCELLANEOUS.fixedline.text
+msgid "Miscellaneous options"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ACCESSIBILITY_TOOL.checkbox.text
+msgid "Support ~assistive technology tools (program restart required)"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_TEXTSELECTION.checkbox.text
+msgid "Use te~xt selection cursor in read-only text documents"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ANIMATED_GRAPHICS.checkbox.text
+msgid "Allow animated ~graphics"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_ANIMATED_TEXTS.checkbox.text
+msgid "Allow animated ~text"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_TIPHELP.checkbox.text
+msgid "~Help tips disappear after "
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FT_TIPHELP.fixedtext.text
+msgid "seconds"
+msgstr "секунди"
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.FL_HC_OPTIONS.fixedline.text
+msgid "Options for high contrast appearance"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_AUTO_DETECT_HC.checkbox.text
+msgid "Automatically ~detect high contrast mode of operating system"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_AUTOMATIC_FONT_COLOR.checkbox.text
+msgid "Use automatic font ~color for screen display"
+msgstr ""
+
+#: optaccessibility.src#RID_SVXPAGE_ACCESSIBILITYCONFIG.CB_PAGE_PREVIEWS.checkbox.text
+msgid "~Use system colors for page previews"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_SEQUENCECHECKING.fixedline.text
+msgid "Sequence checking"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_SEQUENCECHECKING.checkbox.text
+msgid "Use se~quence checking"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_RESTRICTED.checkbox.text
+msgid "Restricted"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.CB_TYPE_REPLACE.checkbox.text
+msgid "~Type and replace"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_CURSORCONTROL.fixedline.text
+msgid "Cursor control"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FT_MOVEMENT.fixedtext.text
+msgid "Movement"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.RB_MOVEMENT_LOGICAL.radiobutton.text
+msgid "Lo~gical"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.RB_MOVEMENT_VISUAL.radiobutton.text
+msgid "~Visual"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FL_GENERAL.fixedline.text
+msgid "General options"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.FT_NUMERALS.fixedtext.text
+msgid "~Numerals"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.1.stringlist.text
+msgid "Arabic"
+msgstr "арапски"
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.2.stringlist.text
+msgid "Hindi"
+msgstr "Индуски"
+
+#: 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 ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS.4.stringlist.text
+msgid "Context"
+msgstr ""
+
+#: optctl.src#RID_SVXPAGE_OPTIONS_CTL.tabpage.text
+msgctxt "optctl.src#RID_SVXPAGE_OPTIONS_CTL.tabpage.text"
+msgid "Complex Text Layout"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FL_POOLING.fixedline.text
+msgid "Connection pool"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.CB_POOL_CONNS.checkbox.text
+msgid "Connection pooling enabled"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_DRIVERS.fixedtext.text
+msgid "Drivers known in %PRODUCTNAME"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_DRIVERLABEL.fixedtext.text
+msgid "Current driver:"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.CB_DRIVERPOOLING.checkbox.text
+msgid "Enable pooling for this driver"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.FT_TIMEOUT.fixedtext.text
+msgid "Timeout (seconds)"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_DRIVER_NAME.string.text
+msgid "Driver name"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_POOLED_FLAG.string.text
+msgid "Pool"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_POOL_TIMEOUT.string.text
+msgid "Timeout"
+msgstr ""
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_YES.string.text
+msgid "Yes"
+msgstr "Да"
+
+#: connpooloptions.src#RID_OFAPAGE_CONNPOOLOPTIONS.STR_NO.string.text
+#, fuzzy
+msgid "No"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Не\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Не\n"
+"#-#-#-#-# tabledesign.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Не\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Не\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Не\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Не\n"
+"#-#-#-#-# sbx.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Не\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Не\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"не"
+
+#: optgdlg.src#OFA_TP_MISC.FL_HELP.fixedline.text
+msgctxt "optgdlg.src#OFA_TP_MISC.FL_HELP.fixedline.text"
+msgid "Help"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.CB_TOOLTIP.checkbox.text
+msgid "~Tips"
+msgstr "~Совети"
+
+#: optgdlg.src#OFA_TP_MISC.CB_EXTHELP.checkbox.text
+msgid "~Extended tips"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.FT_HELPFORMAT.fixedtext.text
+msgid "Help ~formatting"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.1.stringlist.text
+#, fuzzy
+msgid "Default"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандарден\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Преддефиниран\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно"
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.2.stringlist.text
+msgid "High Contrast #1"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.3.stringlist.text
+msgid "High Contrast #2"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.4.stringlist.text
+msgid "High Contrast Black"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.LB_HELPFORMAT.5.stringlist.text
+msgid "High Contrast White"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.CB_HELPAGENT.checkbox.text
+msgid "~Help Agent"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.PB_HELPAGENT_RESET.pushbutton.text
+msgid "~Reset Help Agent"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.FL_FILEDLG.fixedline.text
+msgid "Open/Save dialogs"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.CB_FILEDLG.checkbox.text
+msgid "~Use %PRODUCTNAME dialogs"
+msgstr ""
+
+#: 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 ""
+
+#: optgdlg.src#OFA_TP_MISC.CB_PRINTDLG.checkbox.text
+msgid "Use %PRODUCTNAME ~dialogs"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.FL_DOCSTATUS.fixedline.text
+msgid "Document status"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.CB_DOCSTATUS.checkbox.text
+msgid "~Printing sets \"document modified\" status"
+msgstr ""
+
+#: 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 ""
+
+#: optgdlg.src#OFA_TP_MISC.FT_INTERPRET.fixedtext.text
+msgid "Interpret as years between"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_MISC.FT_TOYEAR.fixedtext.text
+msgid "and "
+msgstr "и "
+
+#: 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 ""
+
+#: optgdlg.src#OFA_TP_VIEW.FT_WINDOWSIZE.fixedtext.text
+msgid "Sc~aling"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FT_ICONSIZESTYLE.fixedtext.text
+msgid "Icon size and style"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.STR_ICONSIZE.string.text
+msgid "Icon size"
+msgstr "Големина на икона"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text
+#, fuzzy
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.1.stringlist.text"
+msgid "Automatic"
+msgstr "~Автоматски"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.2.stringlist.text
+msgid "Small"
+msgstr "Мала"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSIZE.3.stringlist.text
+msgid "Large"
+msgstr "Голема"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text
+#, fuzzy
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.1.stringlist.text"
+msgid "Automatic"
+msgstr "~Автоматски"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.2.stringlist.text
+msgid "Galaxy (default)"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.3.stringlist.text
+msgid "High Contrast"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.4.stringlist.text
+msgid "Industrial"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.5.stringlist.text
+msgid "Crystal"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.6.stringlist.text
+msgid "Tango"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.7.stringlist.text
+msgid "Oxygen"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_ICONSTYLE.8.stringlist.text
+msgid "Classic"
+msgstr ""
+
+#: 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 ""
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONTANTIALIASING.checkbox.text
+msgid "Screen font antialiasing"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_LABEL.fixedtext.text
+msgid "from"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FT_POINTLIMIT_UNIT.fixedtext.text
+msgid "Pixels"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FL_MENU.fixedline.text
+msgid "Menu"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MENU_ICONS.fixedtext.text
+msgid "Icons in menus"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.1.stringlist.text
+#, fuzzy
+msgctxt "optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.1.stringlist.text"
+msgid "Automatic"
+msgstr "~Автоматски"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.2.stringlist.text
+msgid "Hide"
+msgstr "Скриј"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MENU_ICONS.3.stringlist.text
+#, fuzzy
+msgid "Show"
+msgstr ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Покажи\n"
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Прикажи\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Прикажи\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Прикажи\n"
+"#-#-#-#-# impress.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Прикажи"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_FONTLISTS.fixedline.text
+#, fuzzy
+msgid "Font Lists"
+msgstr "Листи за подредување"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONT_SHOW.checkbox.text
+msgid "Show p~review of fonts"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.CB_FONT_HISTORY.checkbox.text
+msgid "Show font h~istory"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FL_RENDERING.fixedline.text
+msgid "Graphics output"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.CB_USE_HARDACCELL.checkbox.text
+msgid "Use hardware acceleration"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.CB_USE_ANTIALIASE.checkbox.text
+msgid "Use Anti-Aliasing"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FL_MOUSE.fixedline.text
+msgid "Mouse"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEPOS.fixedtext.text
+msgid "Mouse positioning"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.1.stringlist.text
+msgid "Default button"
+msgstr "Стандардно копче"
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.2.stringlist.text
+msgid "Dialog center"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEPOS.3.stringlist.text
+msgid "No automatic positioning"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.FT_MOUSEMIDDLE.fixedtext.text
+msgid "Middle mouse button"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.1.stringlist.text
+msgid "No function"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.2.stringlist.text
+msgid "Automatic scrolling"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_VIEW.LB_MOUSEMIDDLE.3.stringlist.text
+msgid "Paste clipboard"
+msgstr "Вметни од табла со исечоци"
+
+#: optgdlg.src#OFA_TP_VIEW.FL_SELECTION.fixedline.text
+msgid "Selection"
+msgstr "Избор"
+
+#: optgdlg.src#OFA_TP_VIEW.CB_SELECTION.checkbox.text
+msgid "Transparency"
+msgstr "Проѕирност"
+
+#: 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 ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_USERINTERFACE.fixedtext.text
+msgid "~User interface"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_LOCALESETTING.fixedtext.text
+msgid "Locale setting"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_DECIMALSEPARATOR.fixedtext.text
+msgid "Decimal separator key"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_DECIMALSEPARATOR.checkbox.text
+msgid "~Same as locale setting ( %1 )"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_CURRENCY.fixedtext.text
+msgid "~Default currency"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_LINGU_LANG.fixedline.text
+msgid "Default languages for documents"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_WEST_LANG.fixedtext.text
+msgid "Western"
+msgstr "западни"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_ASIAN_LANG.fixedtext.text
+msgid "Asian"
+msgstr "Азиски"
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FT_COMPLEX_LANG.fixedtext.text
+msgid "C~TL"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_CURRENT_DOC.checkbox.text
+msgid "For the current document only"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.FL_ENHANCED.fixedline.text
+msgid "Enhanced language support"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_ASIANSUPPORT.checkbox.text
+msgid "E~nabled for Asian languages"
+msgstr ""
+
+#: optgdlg.src#OFA_TP_LANGUAGES.CB_CTLSUPPORT.checkbox.text
+msgid "Ena~bled for complex text layout (CTL)"
+msgstr ""
+
+#: 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 ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_WORD.fixedline.text
+msgid "Microsoft Word 97/2000/XP"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_CODE.checkbox.text
+msgid "Load Basic ~code"
+msgstr ""
+
+#: 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 ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_WBAS_STG.checkbox.text
+msgid "Save ~original Basic code"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_EXCEL.fixedline.text
+msgid "Microsoft Excel 97/2000/XP"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_CODE.checkbox.text
+msgid "Lo~ad Basic code"
+msgstr ""
+
+#: 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 ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_EBAS_STG.checkbox.text
+msgid "Sa~ve original Basic code"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.GB_PPOINT.fixedline.text
+msgid "Microsoft PowerPoint 97/2000/XP"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_PBAS_CODE.checkbox.text
+msgid "Load Ba~sic code"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT.CB_PBAS_STG.checkbox.text
+msgid "Sav~e original Basic code"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_HEADER1.string.text
+msgid "[L]"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_HEADER2.string.text
+msgid "[S]"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER1_EXPLANATION.fixedtext.text
+msgid "[L]: Load and convert the object"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.FT_HEADER2_EXPLANATION.fixedtext.text
+msgid "[S]: Convert and save the object"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_MATH.string.text
+msgid "MathType to %PRODUCTNAME Math or reverse"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_WRITER.string.text
+msgid "WinWord to %PRODUCTNAME Writer or reverse"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_CALC.string.text
+msgid "Excel to %PRODUCTNAME Calc or reverse"
+msgstr ""
+
+#: optfltr.src#RID_OFAPAGE_MSFILTEROPT2.ST_CHG_IMPRESS.string.text
+msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
+msgstr ""
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_TYPE.fixedtext.text
+msgid "Registered name"
+msgstr ""
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.FT_PATH.fixedtext.text
+msgid "Database file"
+msgstr ""
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_NEW.pushbutton.text"
+msgid "~New..."
+msgstr ""
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_EDIT.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr ""
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_DELETE.pushbutton.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.BTN_DELETE.pushbutton.text"
+msgid "~Delete"
+msgstr ""
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.GB_STD.fixedline.text"
+msgid "Registered databases"
+msgstr ""
+
+#: dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text
+msgctxt "dbregister.src#RID_SFXPAGE_DBREGISTER.tabpage.text"
+msgid "Registered databases"
+msgstr ""
+
+#: 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 ""
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај...\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додади...\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Додај..."
+
+#: 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 "Рачно"
+
+#: 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
+#, fuzzy
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.FL_EDIT_MODULES_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr "О~пции"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.FT_EDIT_MODULES_LANGUAGE.fixedtext.text
+msgid "Language"
+msgstr "Јазик"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_UP.pushbutton.text
+msgid "Move Up"
+msgstr "Помести нагоре"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_DOWN.pushbutton.text
+msgid "Move Down"
+msgstr "Помести надолу"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_EDIT_MODULES_PRIO_BACK.pushbutton.text
+msgid "~Back"
+msgstr ""
+
+#: 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 ""
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_OK.okbutton.text
+#, fuzzy
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.PB_OK.okbutton.text"
+msgid "Close"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"За~твори\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# importwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"За~твори\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_SPELL.string.text
+msgid "Spelling"
+msgstr ""
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_HYPH.string.text
+msgctxt "optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_HYPH.string.text"
+msgid "Hyphenation"
+msgstr ""
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_THES.string.text
+msgid "Thesaurus"
+msgstr "Тезаурус"
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.ST_GRAMMAR.string.text
+msgid "Grammar"
+msgstr ""
+
+#: optlingu.src#RID_SVXDLG_EDIT_MODULES.modaldialog.text
+msgid "Edit Modules"
+msgstr ""
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_PRE_BREAK_DLG.string.text
+msgid "Characters before break"
+msgstr ""
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_POST_BREAK_DLG.string.text
+msgid "Characters after break"
+msgstr ""
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.STR_NUM_MIN_WORDLEN_DLG.string.text
+msgid "Minimal word length"
+msgstr ""
+
+#: optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.modaldialog.text
+msgctxt "optlingu.src#RID_SVXDLG_LNG_ED_NUM_PREBREAK.modaldialog.text"
+msgid "Hyphenation"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FL_LINGUISTIC.fixedline.text
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FL_LINGUISTIC.fixedline.text"
+msgid "Writing aids"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_MODULES.fixedtext.text
+#, fuzzy
+msgid "Available language modules"
+msgstr "Достапни јазици"
+
+#: 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 ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_DICS.fixedtext.text
+#, fuzzy
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_DICS.fixedtext.text"
+msgid "User-defined dictionaries"
+msgstr "Кориснички дефинирани речници"
+
+#: 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 ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_DICS_EDIT_DIC.pushbutton.text
+msgid "Ed~it..."
+msgstr ""
+
+#: 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 ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.FT_LINGU_OPTIONS.fixedtext.text
+msgid "~Options"
+msgstr "О~пции"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.PB_LINGU_OPTIONS_EDIT.pushbutton.text
+msgid "Edi~t..."
+msgstr ""
+
+#: 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 ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_CAPITAL_WORDS.string.text
+msgid "Check uppercase words"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_WORDS_WITH_DIGITS.string.text
+msgid "Check words with numbers "
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_CAPITALIZATION.string.text
+msgid "Check capitalization"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_SPELL_SPECIAL.string.text
+msgid "Check special regions"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_SPELL_AUTO.string.text
+msgid "Check spelling as you type"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_GRAMMAR_AUTO.string.text
+msgid "Check grammar as you type"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_MIN_WORDLEN.string.text
+msgid "Minimal number of characters for hyphenation: "
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_PRE_BREAK.string.text
+msgid "Characters before line break: "
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_NUM_POST_BREAK.string.text
+msgid "Characters after line break: "
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_HYPH_AUTO.string.text
+msgid "Hyphenate without inquiry"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_HYPH_SPECIAL.string.text
+msgid "Hyphenate special regions"
+msgstr ""
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_MODULES_EDIT.string.text
+#, fuzzy
+msgid "Edit Available language modules"
+msgstr "Достапни јазици"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_DICS_EDIT_DIC.string.text
+#, fuzzy
+msgid "Edit User-defined dictionaries"
+msgstr "Кориснички дефинирани речници"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.STR_LINGU_OPTIONS_EDIT.string.text
+#, fuzzy
+msgid "Edit Options"
+msgstr "Опции за печатење"
+
+#: optlingu.src#RID_SFXPAGE_LINGU.tabpage.text
+#, fuzzy
+msgctxt "optlingu.src#RID_SFXPAGE_LINGU.tabpage.text"
+msgid "Options"
+msgstr "О~пции"
+
+#: optlingu.src#RID_SFXQB_DELDICT.querybox.text
+msgid "Do you want to delete the dictionary?"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.FL_TREAT_AS_EQUAL.fixedline.text
+msgid "Treat as equal"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_CASE.checkbox.text
+msgid "~uppercase/lowercase"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_FULL_HALF_WIDTH.checkbox.text
+msgid "~full-width/half-width forms"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_HIRAGANA_KATAKANA.checkbox.text
+msgid "~hiragana/katakana"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_CONTRACTIONS.checkbox.text
+msgid "~contractions (yo-on, sokuon)"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_MINUS_DASH_CHOON.checkbox.text
+msgid "~minus/dash/cho-on"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_REPEAT_CHAR_MARKS.checkbox.text
+msgid "'re~peat character' marks"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_VARIANT_FORM_KANJI.checkbox.text
+msgid "~variant-form kanji (itaiji)"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_OLD_KANA_FORMS.checkbox.text
+msgid "~old Kana forms"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_DIZI_DUZU.checkbox.text
+msgid "~di/zi, du/zu"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_BAVA_HAFA.checkbox.text
+msgid "~ba/va, ha/fa"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_TSITHICHI_DHIZI.checkbox.text
+msgid "~tsi/thi/chi, dhi/zi"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_HYUFYU_BYUVYU.checkbox.text
+msgid "h~yu/fyu, byu/vyu"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_SESHE_ZEJE.checkbox.text
+msgid "~se/she, ze/je"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_IAIYA.checkbox.text
+msgid "~ia/iya (piano/piyano)"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_KIKU.checkbox.text
+msgid "~ki/ku (tekisuto/tekusuto)"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_MATCH_PROLONGED_SOUNDMARK.checkbox.text
+msgid "Prolon~ged vowels (ka-/kaa)"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.FL_IGNORE.fixedline.text
+msgid "Ignore"
+msgstr "Игнорирај"
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_PUNCTUATION.checkbox.text
+msgid "Pu~nctuation characters"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_WHITESPACES.checkbox.text
+msgid "~Whitespace characters"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.CB_IGNORE_MIDDLE_DOT.checkbox.text
+msgid "Midd~le dots"
+msgstr ""
+
+#: optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.tabpage.text
+msgctxt "optjsearch.src#RID_SVXPAGE_JSEARCH_OPTIONS.tabpage.text"
+msgid "Searching in Japanese"
+msgstr ""
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.FT_URL.fixedtext.text
+msgid "~Database file"
+msgstr ""
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.PB_BROWSEFILE.pushbutton.text
+#, fuzzy
+msgid "~Browse..."
+msgstr ""
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Прелистај\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пре~листај...\n"
+"#-#-#-#-# miscdlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пр~елистај...\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пр~елистај...\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"П~релистај...\n"
+"#-#-#-#-# xsltdialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"П~релистај..."
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.FT_NAME.fixedtext.text
+msgid "Registered ~name"
+msgstr ""
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.STR_EDIT_LINK.string.text
+msgid "Edit Database Link"
+msgstr ""
+
+#: doclinkdialog.src#DLG_DOCUMENTLINK.STR_NEW_LINK.string.text
+msgid "Create Database Link"
+msgstr ""
+
+#: doclinkdialog.src#STR_LINKEDDOC_DOESNOTEXIST.string.text
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist."
+msgstr ""
+
+#: doclinkdialog.src#STR_LINKEDDOC_NO_SYSTEM_FILE.string.text
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+msgstr ""
+
+#: doclinkdialog.src#STR_NAME_CONFLICT.string.text
+msgid ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+msgstr ""
+
+#: doclinkdialog.src#QUERY_DELETE_CONFIRM.querybox.text
+msgid "Do you want to delete the entry?"
+msgstr ""
+
+#: optpath.src#RID_SFXPAGE_PATH.FT_TYPE.fixedtext.text
+msgid "Type"
+msgstr "Тип"
+
+#: optpath.src#RID_SFXPAGE_PATH.FT_PATH.fixedtext.text
+msgid "Path"
+msgstr "Патека"
+
+#: optpath.src#RID_SFXPAGE_PATH.BTN_PATH.pushbutton.text
+msgctxt "optpath.src#RID_SFXPAGE_PATH.BTN_PATH.pushbutton.text"
+msgid "~Edit..."
+msgstr ""
+
+#: optpath.src#RID_SFXPAGE_PATH.BTN_STANDARD.pushbutton.text
+#, fuzzy
+msgctxt "optpath.src#RID_SFXPAGE_PATH.BTN_STANDARD.pushbutton.text"
+msgid "~Default"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандарден\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Преддефиниран\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно"
+
+#: optpath.src#RID_SFXPAGE_PATH.GB_STD.fixedline.text
+msgid "Paths used by %PRODUCTNAME"
+msgstr ""
+
+#: optpath.src#RID_SFXPAGE_PATH.STR_MULTIPATHDLG.string.text
+msgid "Edit Paths: %1"
+msgstr ""
+
+#: optpath.src#RID_SFXPAGE_PATH.tabpage.text
+#, fuzzy
+msgctxt "optpath.src#RID_SFXPAGE_PATH.tabpage.text"
+msgid "Paths"
+msgstr "Патека"
+
+#: 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 ""
+
+#: optpath.src#RID_SVXSTR_KEY_CONFIG_DIR.string.text
+msgid "Configuration"
+msgstr "Конфигурација"
+
+#: optpath.src#RID_SVXSTR_KEY_WORK_PATH.string.text
+msgid "My Documents"
+msgstr "Мои документи"
+
+#: optpath.src#RID_SVXSTR_KEY_GRAPHICS_PATH.string.text
+#, fuzzy
+msgid "Graphics"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика\n"
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика\n"
+"#-#-#-#-# fmtui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика\n"
+"#-#-#-#-# navipi.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика\n"
+"#-#-#-#-# extension.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика\n"
+"#-#-#-#-# res.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графики\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Графика"
+
+#: optpath.src#RID_SVXSTR_KEY_BITMAP_PATH.string.text
+msgid "Icons"
+msgstr "Икони"
+
+#: optpath.src#RID_SVXSTR_KEY_PALETTE_PATH.string.text
+msgid "Palettes"
+msgstr "Палети"
+
+#: optpath.src#RID_SVXSTR_KEY_BACKUP_PATH.string.text
+msgid "Backups"
+msgstr "Резерви"
+
+#: optpath.src#RID_SVXSTR_KEY_MODULES_PATH.string.text
+msgid "Modules"
+msgstr "Модули"
+
+#: optpath.src#RID_SVXSTR_KEY_TEMPLATE_PATH.string.text
+msgid "Templates"
+msgstr "Обрасци"
+
+#: optpath.src#RID_SVXSTR_KEY_GLOSSARY_PATH.string.text
+msgid "AutoText"
+msgstr "Автоматски текст"
+
+#: optpath.src#RID_SVXSTR_KEY_DICTIONARY_PATH.string.text
+msgid "Dictionaries"
+msgstr "Речници"
+
+#: optpath.src#RID_SVXSTR_KEY_HELP_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_HELP_DIR.string.text"
+msgid "Help"
+msgstr ""
+
+#: optpath.src#RID_SVXSTR_KEY_GALLERY_DIR.string.text
+msgid "Gallery"
+msgstr "Галерија"
+
+#: optpath.src#RID_SVXSTR_KEY_STORAGE_DIR.string.text
+msgid "Message Storage"
+msgstr "Склад за пораки"
+
+#: optpath.src#RID_SVXSTR_KEY_TEMP_PATH.string.text
+msgid "Temporary files"
+msgstr "Привремени датотеки"
+
+#: optpath.src#RID_SVXSTR_KEY_PLUGINS_PATH.string.text
+msgid "Plug-ins"
+msgstr "Приклучоци"
+
+#: optpath.src#RID_SVXSTR_KEY_FAVORITES_DIR.string.text
+msgid "Folder Bookmarks"
+msgstr "Обележувачи на папки"
+
+#: optpath.src#RID_SVXSTR_KEY_FILTER_PATH.string.text
+msgid "Filters"
+msgstr "Филтри"
+
+#: optpath.src#RID_SVXSTR_KEY_ADDINS_PATH.string.text
+msgid "Add-ins"
+msgstr "Дополнувања"
+
+#: optpath.src#RID_SVXSTR_KEY_USERCONFIG_PATH.string.text
+msgid "User Configuration"
+msgstr "Корисничка конфигурација"
+
+#: optpath.src#RID_SVXSTR_KEY_USERDICTIONARY_DIR.string.text
+#, fuzzy
+msgctxt "optpath.src#RID_SVXSTR_KEY_USERDICTIONARY_DIR.string.text"
+msgid "User-defined dictionaries"
+msgstr "Кориснички дефинирани речници"
+
+#: optpath.src#RID_SVXSTR_KEY_AUTOCORRECT_DIR.string.text
+msgid "AutoCorrect"
+msgstr "Автоматска корекција"
+
+#: optpath.src#RID_SVXSTR_KEY_LINGUISTIC_DIR.string.text
+msgctxt "optpath.src#RID_SVXSTR_KEY_LINGUISTIC_DIR.string.text"
+msgid "Writing aids"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FL_OPTIONS.fixedline.text
+msgid "Online Update Options"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.CB_AUTOCHECK.checkbox.text
+msgid "~Check for updates automatically"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYDAY.radiobutton.text
+msgid "Every Da~y"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYWEEK.radiobutton.text
+msgid "Every ~Week"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.RB_EVERYMONTH.radiobutton.text
+msgid "Every ~Month"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FT_LASTCHECKED.fixedtext.text
+msgid "Last checked: %DATE%, %TIME%"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.PB_CHECKNOW.pushbutton.text
+msgid "Check ~now"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.CB_AUTODOWNLOAD.checkbox.text
+msgid "~Download updates automatically"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.FT_DESTPATHLABEL.fixedtext.text
+msgid "Download destination:"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.PB_CHANGEPATH.pushbutton.text
+msgid "Ch~ange..."
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.STR_NEVERCHECKED.string.text
+msgid "Last checked: Not yet"
+msgstr ""
+
+#: optupdt.src#RID_SVXPAGE_ONLINEUPDATE.tabpage.text
+#, fuzzy
+msgid "OnlineUpdate"
+msgstr "Мрежно ажурирање"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.FI_NEVERSHOWN.fixedtext.text
+msgid "Web login information (passwords are never shown)"
+msgstr ""
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_REMOVE.pushbutton.text
+msgid "Remove"
+msgstr "Отстрани"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_REMOVEALL.pushbutton.text
+msgid "Remove All"
+msgstr ""
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CHANGE.pushbutton.text
+msgid "Change Password..."
+msgstr ""
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CLOSE.cancelbutton.text
+#, fuzzy
+msgctxt "webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.PB_CLOSE.cancelbutton.text"
+msgid "Close"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# doc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"За~твори\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# importwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"За~твори\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Затвори"
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.STR_WEBSITE.string.text
+msgid "Website"
+msgstr ""
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.STR_USERNAME.string.text
+msgid "User name"
+msgstr ""
+
+#: webconninfo.src#RID_SVXDLG_WEBCONNECTION_INFO.modaldialog.text
+msgid "Stored Web Connection Information"
+msgstr ""
diff --git a/source/mk/cui/source/tabpages.po b/source/mk/cui/source/tabpages.po
new file mode 100644
index 00000000000..cf2b195b5dd
--- /dev/null
+++ b/source/mk/cui/source/tabpages.po
@@ -0,0 +1,5798 @@
+#. 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 14:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Настан"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_ASSMACRO.string.text
+msgid "Assigned macro"
+msgstr ""
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.FT_LABEL4LB_MACROS.fixedtext.text
+#, fuzzy
+msgid "~Existing macros\n"
+msgstr "Постојни макроа ~во:"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.PB_ASSIGN.pushbutton.text
+msgid "~Assign"
+msgstr ""
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.PB_DELETE.pushbutton.text
+#, fuzzy
+msgid "~Remove"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Отст~рани\n"
+"#-#-#-#-# Custom.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани\n"
+"#-#-#-#-# gui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Отстрани"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.STR_MACROS.string.text
+msgid "Macros"
+msgstr "Макроа"
+
+#: macroass.src#RID_SVXPAGE_EVENTASSIGN.tabpage.text
+msgid "Assign Macro"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_POSITION.fixedline.text
+#, fuzzy
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "По~зиција"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_SIZE.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_WIDTH.fixedtext.text"
+msgid "Wi~dth"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_HEIGHT.fixedtext.text
+#, fuzzy
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "~Висина"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_PROTECT.fixedline.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_PROTECT.fixedline.text"
+msgid "Protect"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_POSPROTECT.tristatebox.text
+#, fuzzy
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_POSPROTECT.tristatebox.text"
+msgid "Position"
+msgstr "По~зиција"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_SIZEPROTECT.tristatebox.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_SIZEPROTECT.tristatebox.text"
+msgid "~Size"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ADJUST.fixedline.text
+msgid "Adapt"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_AUTOGROW_WIDTH.tristatebox.text
+msgid "~Fit width to text"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.TSB_AUTOGROW_HEIGHT.tristatebox.text
+msgid "Fit ~height to text"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ANCHOR.fixedline.text
+#, fuzzy
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.FL_ANCHOR.fixedline.text"
+msgid "Anchor"
+msgstr "~Котва"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_ANCHOR.fixedtext.text
+msgid "~Anchor"
+msgstr "~Котва"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.1.stringlist.text
+#, fuzzy
+msgid "To paragraph"
+msgstr "На ~пасус"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.2.stringlist.text
+#, fuzzy
+msgid "As character"
+msgstr "~Како знак"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.3.stringlist.text
+#, fuzzy
+msgid "To page"
+msgstr "На ~страница"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR.4.stringlist.text
+#, fuzzy
+msgid "To frame"
+msgstr "Во ~рамка"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.FT_ORIENT.fixedtext.text
+msgid "P~osition"
+msgstr "По~зиција"
+
+#: 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 ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.2.stringlist.text
+msgid "Above"
+msgstr "Над"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.3.stringlist.text
+#, fuzzy
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.3.stringlist.text"
+msgid "Centered"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.LB_ORIENT.4.stringlist.text
+msgid "Below"
+msgstr "Под"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: transfrm.src#RID_SVXPAGE_POSITION_SIZE.tabpage.text
+msgctxt "transfrm.src#RID_SVXPAGE_POSITION_SIZE.tabpage.text"
+msgid "Position and Size"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FL_POSITION.fixedline.text
+msgid "Pivot point"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_POSPRESETS.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_POSPRESETS.fixedtext.text"
+msgid "Default settings"
+msgstr ""
+
+#: 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 ""
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FL_ANGLE.fixedline.text
+msgid "Rotation angle"
+msgstr "Агол на ротација"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLE.fixedtext.text
+#, fuzzy
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "Агол"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.MTR_FLD_ANGLE.metricfield.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLEPRESETS.fixedtext.text
+msgctxt "transfrm.src#RID_SVXPAGE_ANGLE.FT_ANGLEPRESETS.fixedtext.text"
+msgid "Default settings"
+msgstr ""
+
+#: 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
+#, fuzzy
+msgid "Rotation Angle"
+msgstr "Агол на ротација"
+
+#: transfrm.src#RID_SVXPAGE_ANGLE.tabpage.text
+msgid "Angle"
+msgstr "Агол"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FL_RADIUS.fixedline.text
+msgid "Corner radius"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FT_RADIUS.fixedtext.text
+msgid "~Radius"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FL_SLANT.fixedline.text
+msgid "Slant"
+msgstr "Закосеност"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.FT_ANGLE.fixedtext.text
+#, fuzzy
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.FT_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "Агол"
+
+#: transfrm.src#RID_SVXPAGE_SLANT.MTR_FLD_ANGLE.metricfield.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr ""
+
+#: transfrm.src#RID_SVXPAGE_SLANT.tabpage.text
+msgctxt "transfrm.src#RID_SVXPAGE_SLANT.tabpage.text"
+msgid "Slant & Corner Radius"
+msgstr ""
+
+#: transfrm.src#_POS_SIZE_TEXT.#define.text
+msgctxt "transfrm.src#_POS_SIZE_TEXT.#define.text"
+msgid "Position and Size"
+msgstr ""
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.TAB_CONTROL.RID_SVXPAGE_ANGLE.pageitem.text
+msgid "Rotation"
+msgstr "Ротација"
+
+#: 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 ""
+
+#: transfrm.src#RID_SVXDLG_TRANSFORM.tabdialog.text
+msgctxt "transfrm.src#RID_SVXDLG_TRANSFORM.tabdialog.text"
+msgid "Position and Size"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: bbdlg.src#RID_SVXDLG_BBDLG.tabdialog.text
+msgid "Border / Background"
+msgstr ""
+
+#: backgrnd.src#UNLINKED_IMAGE.#define.text
+#, fuzzy
+msgid "Unlinked graphic"
+msgstr "Поврзани графики"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_SELECTOR.fixedtext.text
+msgid "A~s"
+msgstr ""
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.1.stringlist.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.1.stringlist.text"
+msgid "Color"
+msgstr ""
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_SELECTOR.2.stringlist.text
+msgid "Graphic"
+msgstr "Графички"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_TBL_DESC.fixedtext.text
+msgid "F~or"
+msgstr ""
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.1.stringlist.text
+msgid "Cell"
+msgstr "Ќелија"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_TBL_BOX.2.stringlist.text
+msgid "Row"
+msgstr "Ред"
+
+#: 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 ""
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.1.stringlist.text
+msgid "Paragraph"
+msgstr "Пасус"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.2.stringlist.text
+#, fuzzy
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.LB_PARA_BOX.2.stringlist.text"
+msgid "Character"
+msgstr "Знак"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_BGDCOLOR.fixedline.text
+#, fuzzy
+msgid "Background color"
+msgstr ""
+"#-#-#-#-# inspection.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на позадина\n"
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлогата\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлогата\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлога"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_COL_TRANS.fixedtext.text
+#, fuzzy
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.FT_COL_TRANS.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Без проѕирност"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_FILE.fixedline.text
+msgid "File"
+msgstr "Датотека"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_BROWSE.pushbutton.text
+#, fuzzy
+msgid "~Browse..."
+msgstr ""
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Прелистај\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пре~листај...\n"
+"#-#-#-#-# miscdlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пр~елистај...\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Пр~елистај...\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"П~релистај...\n"
+"#-#-#-#-# xsltdialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"П~релистај..."
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_LINK.checkbox.text
+#, fuzzy
+msgid "~Link"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Врска\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"По~врзи\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Врска\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Врска\n"
+"#-#-#-#-# office.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Врска"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_POSITION.fixedline.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.GB_POSITION.fixedline.text"
+msgid "Type"
+msgstr ""
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_POSITION.radiobutton.text
+#, fuzzy
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_POSITION.radiobutton.text"
+msgid "~Position"
+msgstr "По~зиција"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_AREA.radiobutton.text
+msgid "Ar~ea"
+msgstr ""
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_TILE.radiobutton.text
+#, fuzzy
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_TILE.radiobutton.text"
+msgid "~Tile"
+msgstr "~Наслов"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.FL_GRAPH_TRANS.fixedline.text
+#, fuzzy
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.FL_GRAPH_TRANS.fixedline.text"
+msgid "Transparency"
+msgstr "~Без проѕирност"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.BTN_PREVIEW.checkbox.text
+msgid "Pre~view"
+msgstr "Пре~глед"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.STR_BROWSE.string.text
+#, fuzzy
+msgid "Find graphics"
+msgstr "Поврзани графики"
+
+#: backgrnd.src#RID_SVXPAGE_BACKGROUND.tabpage.text
+msgctxt "backgrnd.src#RID_SVXPAGE_BACKGROUND.tabpage.text"
+msgid "Background"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_PICK_BULLET.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_BULLET.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr ""
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_PICK_NUM.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_NUM.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.FL_VALUES.fixedline.text
+msgctxt "numpages.src#RID_SVXPAGE_PICK_BMP.FL_VALUES.fixedline.text"
+msgid "Selection"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.CB_LINKED.checkbox.text
+#, fuzzy
+msgid "~Link graphics"
+msgstr "Поврзани графики"
+
+#: numpages.src#RID_SVXPAGE_PICK_BMP.FT_ERROR.fixedtext.text
+msgid "The Gallery theme 'Bullets' is empty (no graphics)."
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_LEVEL.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_LEVEL.fixedtext.text"
+msgid "Level"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FL_FORMAT.fixedline.text
+#, fuzzy
+msgid "Format"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форматирање\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формат\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формат\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формат\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форматирај\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Форматирање\n"
+"#-#-#-#-# template.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Формат"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_FMT.fixedtext.text
+msgid "~Numbering"
+msgstr "~Нумерирање"
+
+#: 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 "А, Б, В, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.3.stringlist.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.3.stringlist.text"
+msgid "a, b, c, ..."
+msgstr "А, Б, В, ..."
+
+#: 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
+msgid "A, .., AA, .., AAA, ..."
+msgstr "А, .., АА, .., ААА, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.7.stringlist.text
+msgid "a, .., aa, .., aaa, ..."
+msgstr "а, .., аа, .., ааа, ..."
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.8.stringlist.text
+msgid "Bullet"
+msgstr "Точка"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.9.stringlist.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.9.stringlist.text"
+msgid "Graphics"
+msgstr "Графички"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.10.stringlist.text
+msgid "Linked graphics"
+msgstr "Поврзани графики"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.11.stringlist.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.11.stringlist.text"
+msgid "None"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Без белешки\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.12.stringlist.text
+msgid "Native Numbering"
+msgstr "Локално нумерирање"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.13.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
+msgstr "А, Б, .., Аа, Аб, ... (бугарско)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.14.stringlist.text
+msgid "а, б, .., аа, аб, ... (Bulgarian)"
+msgstr "а, б, .., аа, аб, ... (бугарско)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.15.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
+msgstr "А, Б, .., Аа, Бб, ... (бугарско)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.16.stringlist.text
+msgid "а, б, .., аа, бб, ... (Bulgarian)"
+msgstr "а, б, .., аа, бб, ... (бугарско)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.17.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Russian)"
+msgstr "А, Б, .., Аа, Аб, ... (руско)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.18.stringlist.text
+msgid "а, б, .., аа, аб, ... (Russian)"
+msgstr "а, б, .., аа, аб, ... (руско)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.19.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Russian)"
+msgstr "А, Б, .., Аа, Бб, ... (руско)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.20.stringlist.text
+msgid "а, б, .., аа, бб, ... (Russian)"
+msgstr "а, б, .., аа, бб, ... (руско)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.21.stringlist.text
+msgid "А, Б, .., Аа, Аб, ... (Serbian)"
+msgstr "А, Б, .., Аа, Аб, ... (Српски)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.22.stringlist.text
+msgid "а, б, .., аа, аб, ... (Serbian)"
+msgstr "а, б, .., аа, аб, ... (Српски)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.23.stringlist.text
+msgid "А, Б, .., Аа, Бб, ... (Serbian)"
+msgstr "А, Б, .., Аа, Бб, ... (Српски)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.24.stringlist.text
+msgid "а, б, .., аа, бб, ... (Serbian)"
+msgstr "а, б, .., аа, бб, ... (Српски)"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.25.stringlist.text
+msgid "Α, Β, Γ, ... (Greek Upper Letter)"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_FMT.26.stringlist.text
+msgid "α, β, γ, ... (Greek Lower Letter)"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_PREFIX.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_PREFIX.fixedtext.text"
+msgid "Before"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SUFFIX.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SUFFIX.fixedtext.text"
+msgid "After"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_CHARFMT.fixedtext.text
+msgid "~Character Style"
+msgstr ""
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BUL_REL_SIZE.fixedtext.text
+msgid "~Relative size"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALL_LEVEL.fixedtext.text
+msgid "Show sublevels"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_START.fixedtext.text
+msgid "Start at"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALIGN.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ALIGN.fixedtext.text"
+msgid "~Alignment"
+msgstr ""
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.2.stringlist.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ALIGN.2.stringlist.text"
+msgid "Centered"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.STR_BULLET.string.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.STR_BULLET.string.text"
+msgid "Character"
+msgstr "Знак"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BITMAP.fixedtext.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_BITMAP.fixedtext.text"
+msgid "Graphics"
+msgstr "Графички"
+
+#: 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 ""
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.menubutton.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.MB_BITMAP.menubutton.text"
+msgid "Select..."
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SIZE.fixedtext.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_SIZE.fixedtext.text"
+msgid "Width"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_MULT.fixedtext.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_MULT.fixedtext.text"
+msgid "Height"
+msgstr "~Висина"
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ORIENT.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_OPTIONS.FT_ORIENT.fixedtext.text"
+msgid "Alignment"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.1.stringlist.text
+msgid "Top of baseline"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.2.stringlist.text
+msgid "Center of baseline"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.LB_ORIENT.3.stringlist.text
+msgid "Bottom of baseline"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.FL_SAME_LEVEL.fixedline.text
+msgid "All levels"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.CB_SAME_LEVEL.checkbox.text
+msgid "~Consecutive numbering"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_OPTIONS.ST_POPUP_EMPTY_ENTRY.string.text
+msgid "There are no graphics in the 'Bullets' Gallery theme."
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LEVEL.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LEVEL.fixedtext.text"
+msgid "Level"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FL_POSITION.fixedline.text
+msgid "Position and spacing"
+msgstr "Позиција и растојание"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_BORDERDIST.fixedtext.text
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.FT_BORDERDIST.fixedtext.text"
+msgid "Indent"
+msgstr ""
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.CB_RELATIVE.checkbox.text
+msgid "Relati~ve"
+msgstr "Релати~вно"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_INDENT.fixedtext.text
+msgid "Width of numbering"
+msgstr "Ширина на нумерирањето"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_NUMDIST.fixedtext.text
+msgid "Minimum space numbering <-> text"
+msgstr "Мин. растојание на нумерирање <-> текст"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_ALIGN.fixedtext.text
+msgid "N~umbering alignment"
+msgstr "Порамнување на н~умерирањето"
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.2.stringlist.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.LB_ALIGN.2.stringlist.text"
+msgid "Centered"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: 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 ""
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LABEL_FOLLOWED_BY.fixedtext.text
+msgid "Numbering followed by"
+msgstr "Нумерирање проследено со"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.1.stringlist.text
+msgid "Tab stop"
+msgstr "Запирање на табулаторот"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.2.stringlist.text
+msgid "Space"
+msgstr "Празно место"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.LB_LABEL_FOLLOWED_BY.3.stringlist.text
+msgid "Nothing"
+msgstr "Ништо"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_LISTTAB.fixedtext.text
+msgid "at"
+msgstr "на"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_ALIGNED_AT.fixedtext.text
+msgid "Aligned at"
+msgstr "Порамнет на"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.FT_INDENT_AT.fixedtext.text
+msgid "Indent at"
+msgstr "Вовлекување на"
+
+#: numpages.src#RID_SVXPAGE_NUM_POSITION.PB_STANDARD.pushbutton.text
+#, fuzzy
+msgctxt "numpages.src#RID_SVXPAGE_NUM_POSITION.PB_STANDARD.pushbutton.text"
+msgid "Default"
+msgstr "~Стандарден"
+
+#: numpages.src#RID_STR_EDIT_GRAPHIC.string.text
+#, fuzzy
+msgid "Link"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Поврзи"
+
+#: strings.src#RID_SVXSTR_DESC_GRADIENT.string.text
+#, fuzzy
+msgid "Please enter a name for the gradient:"
+msgstr "Внесете име за новиот тип на почеток на линија:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_GRADIENT.string.text
+msgid "Do you want to delete the gradient?"
+msgstr ""
+
+#: 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 ""
+
+#: strings.src#RID_SVXSTR_DESC_NEW_BITMAP.string.text
+#, fuzzy
+msgid "Please enter a name for the bitmap:"
+msgstr "Внесете име за новиот тип на почеток на линија:"
+
+#: strings.src#RID_SVXSTR_DESC_EXT_BITMAP.string.text
+#, fuzzy
+msgid "Please enter a name for the external bitmap:"
+msgstr "Внесете име за новиот тип на почеток на линија:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_BITMAP.string.text
+msgid "Are you sure you want to delete the bitmap?"
+msgstr ""
+
+#: 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 ""
+
+#: strings.src#RID_SVXSTR_DESC_LINESTYLE.string.text
+#, fuzzy
+msgid "Please enter a name for the line style:"
+msgstr "Внесете име за новиот тип на почеток на линија:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_LINESTYLE.string.text
+msgid "Do you want to delete the line style?"
+msgstr ""
+
+#: 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 ""
+
+#: strings.src#RID_SVXSTR_DESC_HATCH.string.text
+#, fuzzy
+msgid "Please enter a name for the hatching:"
+msgstr "Внесете име за новиот тип на почеток на линија:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_HATCH.string.text
+msgid "Do you want to delete the hatching?"
+msgstr ""
+
+#: 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 ""
+
+#: strings.src#RID_SVXSTR_CHANGE.string.text
+msgid "Modify"
+msgstr "Измени"
+
+#: strings.src#RID_SVXSTR_ADD.string.text
+#, fuzzy
+msgctxt "strings.src#RID_SVXSTR_ADD.string.text"
+msgid "Add"
+msgstr "~Додај"
+
+#: strings.src#RID_SVXSTR_DESC_COLOR.string.text
+#, fuzzy
+msgid "Please enter a name for the new color:"
+msgstr "Внесете име за новиот тип на почеток на линија:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_COLOR.string.text
+msgid "Do you want to delete the color?"
+msgstr ""
+
+#: 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 ""
+
+#: strings.src#RID_SVXSTR_TABLE.string.text
+msgctxt "strings.src#RID_SVXSTR_TABLE.string.text"
+msgid "Table"
+msgstr ""
+
+#: strings.src#RID_SVXSTR_WRITE_DATA_ERROR.string.text
+#, fuzzy
+msgid "The file could not be saved!"
+msgstr "Датотеката не можеше да се вчита!"
+
+#: strings.src#RID_SVXSTR_READ_DATA_ERROR.string.text
+msgid "The file could not be loaded!"
+msgstr "Датотеката не можеше да се вчита!"
+
+#: 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 ""
+
+#: strings.src#RID_SVXSTR_WARN_NAME_DUPLICATE.string.text
+msgid ""
+"The name you have entered already exists. \n"
+"Please choose another name."
+msgstr ""
+
+#: strings.src#RID_SVXSTR_DESC_LINEEND.string.text
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Внесете име за новиот тип на почеток на линија:"
+
+#: strings.src#RID_SVXSTR_ASK_DEL_LINEEND.string.text
+msgid "Do you want to delete the arrowhead?"
+msgstr ""
+
+#: 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 ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_ALIGNMENT.fixedline.text
+msgid "Text alignment"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_HORALIGN.fixedtext.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FT_HORALIGN.fixedtext.text"
+msgid "Hori~zontal"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.1.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.1.stringlist.text"
+msgid "Default"
+msgstr "~Стандарден"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.2.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.2.stringlist.text"
+msgid "Left"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.3.stringlist.text
+#, fuzzy
+msgid "Center"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.4.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.4.stringlist.text"
+msgid "Right"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.5.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.5.stringlist.text"
+msgid "Justified"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.6.stringlist.text
+msgid "Filled"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_HORALIGN.7.stringlist.text"
+msgid "Distributed"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_INDENT.fixedtext.text
+msgid "I~ndent"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_VERALIGN.fixedtext.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FT_VERALIGN.fixedtext.text"
+msgid "~Vertical"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.1.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.1.stringlist.text"
+msgid "Default"
+msgstr "~Стандарден"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.2.stringlist.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.2.stringlist.text"
+msgid "Top"
+msgstr "~до"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.3.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.3.stringlist.text"
+msgid "Middle"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.4.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.4.stringlist.text"
+msgid "Bottom"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.5.stringlist.text"
+msgid "Justified"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.LB_VERALIGN.6.stringlist.text"
+msgid "Distributed"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_ORIENTATION.fixedline.text
+msgid "Text orientation"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_TXTSTACKED.tristatebox.text
+msgid "Ve~rtically stacked"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_DEGREES.fixedtext.text
+msgid "De~grees"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_BORDER_LOCK.fixedtext.text
+msgid "Re~ference edge"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_ASIAN_VERTICAL.tristatebox.text
+msgid "Asian layout ~mode"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FL_WRAP.fixedline.text
+#, fuzzy
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.FL_WRAP.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_WRAP.tristatebox.text
+msgid "~Wrap text automatically"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_HYPH.tristatebox.text
+msgid "Hyphenation ~active"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.BTN_SHRINK.tristatebox.text
+msgid "~Shrink to fit cell size"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.FT_TEXTFLOW.fixedtext.text
+#, fuzzy
+msgid "Te~xt direction"
+msgstr "~Насока на текст"
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_BOTTOMLOCK.string.text
+msgid "Text Extension From Lower Cell Border"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_TOPLOCK.string.text
+msgid "Text Extension From Upper Cell Border"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.STR_CELLLOCK.string.text
+msgid "Text Extension Inside Cell"
+msgstr ""
+
+#: align.src#RID_SVXPAGE_ALIGNMENT.tabpage.text
+msgctxt "align.src#RID_SVXPAGE_ALIGNMENT.tabpage.text"
+msgid "Alignment"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_WEST.fixedline.text
+msgid "Western text font"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_EAST.fixedline.text
+msgid "Asian text font"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_CTL.fixedline.text
+msgid "CTL font"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.WIN_CHAR_PREVIEW.window.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.WIN_CHAR_PREVIEW.window.text"
+msgid "Example"
+msgstr "Пример"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_COLOR2.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.FL_COLOR2.fixedline.text"
+msgid "Color"
+msgstr ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_NOSTYLE.string.text
+msgid "No %1"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TRANSPARENT.string.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TRANSPARENT.string.text"
+msgid "Transparent"
+msgstr "~Без проѕирност"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_FAMILY.string.text
+#, fuzzy
+msgid "Family"
+msgstr "Тамилски"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_FONT.string.text
+msgid "Font"
+msgstr "Фонт"
+
+#: 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 "Стил"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_NAME.STR_CHARNAME_TYPEFACE.string.text
+#, fuzzy
+msgid "Typeface"
+msgstr ""
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Изглед на фонт\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Изглед на букви"
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_EFFECTS.fixedtext.text
+msgid "~Effects"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.4.stringlist.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.4.stringlist.text"
+msgid "Title"
+msgstr "~Наслов"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EFFECTS2.5.stringlist.text
+msgid "Small capitals"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_RELIEF.fixedtext.text
+msgid "~Relief"
+msgstr ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.2.stringlist.text
+msgid "Embossed"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_RELIEF.3.stringlist.text
+msgid "Engraved"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_OUTLINE.tristatebox.text
+msgid "Out~line"
+msgstr "~Главни црти"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_SHADOW.tristatebox.text
+msgid "Sha~dow"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_BLINKING.tristatebox.text
+msgid "~Blinking"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_CHARHIDDEN.tristatebox.text
+msgid "H~idden"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_OVERLINE.fixedtext.text
+msgid "~Overlining"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_OVERLINE_COLOR.fixedtext.text
+msgid "O~verline color"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_STRIKEOUT.fixedtext.text
+msgid "~Strikethrough"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.5.stringlist.text
+msgid "With /"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_STRIKEOUT.6.stringlist.text
+msgid "With X"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_UNDERLINE.fixedtext.text
+msgid "~Underlining"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_UNDERLINE_COLOR.fixedtext.text
+msgid "U~nderline color"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.CB_INDIVIDUALWORDS.checkbox.text
+msgid "Individual ~words"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_EMPHASIS.fixedtext.text
+msgid "Emp~hasis mark"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.3.stringlist.text
+msgid "Circle"
+msgstr "Круг"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.4.stringlist.text
+msgid "Disc"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_EMPHASIS.5.stringlist.text
+msgid "Accent"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_POSITION.fixedtext.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.FT_POSITION.fixedtext.text"
+msgid "~Position"
+msgstr "По~зиција"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_POSITION.1.stringlist.text
+msgid "Above text"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.LB_POSITION.2.stringlist.text
+msgid "Below text"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.WIN_EFFECTS_PREVIEW.window.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.WIN_EFFECTS_PREVIEW.window.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_TITLE.string.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_TITLE.string.text"
+msgid "Title"
+msgstr "~Наслов"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_SMALL.string.text
+msgid "Small Capitals"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_OUTLINE.string.text
+#, fuzzy
+msgid "Outline"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# fmtui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Главни црти\n"
+"#-#-#-#-# core.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура"
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_EFFECTS_BLINKING.string.text
+msgid "Blinking"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_CHARNAME_TRANSPARENT.string.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_EFFECTS.STR_CHARNAME_TRANSPARENT.string.text"
+msgid "Transparent"
+msgstr "~Без проѕирност"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_POSITION.fixedline.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "По~зиција"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_HIGHPOS.radiobutton.text
+msgid "Superscript"
+msgstr "Горен индекс"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_NORMALPOS.radiobutton.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_NORMALPOS.radiobutton.text"
+msgid "Normal"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_LOWPOS.radiobutton.text
+msgid "Subscript"
+msgstr "Долен индекс"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_HIGHLOW.fixedtext.text
+msgid "~Raise/lower by"
+msgstr ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_FONTSIZE.fixedtext.text
+msgid "Relative font size"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_ROTATION_SCALING.fixedline.text
+msgid "Rotation / scaling"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_SCALING.fixedline.text
+msgid "Scaling"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_0_DEG.radiobutton.text
+msgid "~0 degrees"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_90_DEG.radiobutton.text
+msgid "~90 degrees"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.RB_270_DEG.radiobutton.text
+msgid "~270 degrees"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_FIT_TO_LINE.checkbox.text
+msgid "Fit to line"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FT_SCALE_WIDTH.fixedtext.text
+msgid "Scale ~width"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_KERNING2.fixedline.text
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.FL_KERNING2.fixedline.text"
+msgid "Spacing"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.1.stringlist.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.1.stringlist.text"
+msgid "Default"
+msgstr "~Стандарден"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.2.stringlist.text
+msgid "Expanded"
+msgstr "раширен"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.LB_KERNING2.3.stringlist.text
+msgid "Condensed"
+msgstr "збиен"
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.CB_PAIRKERNING.checkbox.text
+msgid "~Pair kerning"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_POSITION.WIN_POS_PREVIEW.window.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_POSITION.WIN_POS_PREVIEW.window.text"
+msgid "Example"
+msgstr "Пример"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FL_SWITCHON.fixedline.text
+msgid "Double-lined"
+msgstr "Двојно подвлечено"
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.CB_TWOLINES.checkbox.text
+msgid "~Write in double lines"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FL_ENCLOSE.fixedline.text
+msgid "Enclosing character"
+msgstr ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FT_STARTBRACKET.fixedtext.text
+msgid "I~nitial character"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.FT_ENDBRACKET.fixedtext.text
+#, fuzzy
+msgid "Final charact~er"
+msgstr "Знак за пополнување"
+
+#: 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 ""
+
+#: 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 ""
+
+#: chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.WIN_TWOLINES_PREVIEW.window.text
+#, fuzzy
+msgctxt "chardlg.src#RID_SVXPAGE_CHAR_TWOLINES.WIN_TWOLINES_PREVIEW.window.text"
+msgid "Example"
+msgstr "Пример"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_REPLACE.pageitem.text
+msgid "Replace"
+msgstr "Замени"
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.1.RID_OFAPAGE_AUTOCORR_EXCEPT.pageitem.text
+msgid "Exceptions"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.FT_LANG.fixedtext.text
+msgid "Replacements and exceptions for language:"
+msgstr ""
+
+#: autocdlg.src#RID_OFA_AUTOCORR_DLG.tabdialog.text
+msgid "AutoCorrect"
+msgstr "Автоматска корекција"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_USE_REPLACE.string.text
+msgid "Use replacement table"
+msgstr "Користи табела за замена"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CPTL_STT_WORD.string.text
+msgid "Correct TWo INitial CApitals"
+msgstr "Коригирај ДВе ПОчетни ГОлеми БУкви"
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_CPTL_STT_SENT.string.text
+msgid "Capitalize first letter of every sentence"
+msgstr ""
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_BOLD_UNDER.string.text
+msgid "Automatic *bold* and _underline_"
+msgstr ""
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.STR_NO_DBL_SPACES.string.text
+msgid "Ignore double spaces"
+msgstr ""
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_DETECT_URL.string.text
+msgid "URL Recognition"
+msgstr ""
+
+#: autocdlg.src#COMMON_CLB_ENTRIES.ST_DASH.string.text
+msgid "Replace dashes"
+msgstr "Замени цртички"
+
+#: 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 "Поставувања"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.PB_EDIT.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.PB_EDIT.pushbutton.text"
+msgid "~Edit..."
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER1.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER1.string.text"
+msgid "[M]"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER2.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_HEADER2.string.text"
+msgid "[T]"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.FT_HEADER1_EXPLANATION.fixedtext.text
+msgid "[M]: Replace while modifying existing text"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.FT_HEADER2_EXPLANATION.fixedtext.text
+msgid "[T]: AutoFormat/AutoCorrect while typing"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_DEL_EMPTY_PARA.string.text
+msgid "Remove blank paragraphs"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_USER_STYLE.string.text
+msgid "Replace Custom Styles"
+msgstr "Замени сопствени стилови"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_BULLET.string.text
+msgid "Replace bullets with: "
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.ST_RIGHT_MARGIN.string.text
+msgid "Combine single line paragraphs if length greater than"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_NUM.string.text
+msgid "Apply numbering - symbol: "
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_BORDER.string.text
+msgid "Apply border"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_TABLE.string.text
+msgid "Create table"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOFMT_APPLY.STR_REPLACE_TEMPLATES.string.text
+msgid "Apply Styles"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: autocdlg.src#RID_OFADLG_PRCNT_SET.FL_PRCNT.fixedline.text
+msgid "Minimum size"
+msgstr ""
+
+#: autocdlg.src#RID_OFADLG_PRCNT_SET.modaldialog.text
+msgid "Combine"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_SHORT.fixedtext.text
+#, fuzzy
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_SHORT.fixedtext.text"
+msgid "Repla~ce"
+msgstr "Замени"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.FT_REPLACE.fixedtext.text
+msgid "~With:"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.CB_TEXT_ONLY.checkbox.text
+msgid "~Text only"
+msgstr "~Само текст"
+
+#: 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 ""
+
+#: 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 ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_REPLACE.STR_MODIFY.string.text
+msgid "~Replace"
+msgstr "~Замени"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.FL_ABBREV.fixedline.text
+msgid "Abbreviations (no subsequent capital)"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWABBREV.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWABBREV.pushbutton.text"
+msgid "~New"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELABBREV.pushbutton.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELABBREV.pushbutton.text"
+msgid "~Delete"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.CB_AUTOABBREV.checkbox.text
+msgid "~AutoInclude"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.FL_DOUBLECAPS.fixedline.text
+#, fuzzy
+msgid "Words with TWo INitial CApitals"
+msgstr "Коригирај ДВе ПОчетни ГОлеми БУкви"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_NEWDOUBLECAPS.pushbutton.text
+msgid "Ne~w"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.PB_DELDOUBLECAPS.pushbutton.text
+msgid "Dele~te"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.CB_AUTOCAPS.checkbox.text
+msgid "A~utoInclude"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_NEWABBREV.string.text
+#, fuzzy
+msgid "New abbreviations"
+msgstr "Скратеница"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_DELABBREV.string.text
+#, fuzzy
+msgid "Delete abbreviations"
+msgstr "Опции при бришење"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_NEWDOUBLECAPS.string.text
+msgid "New words with two initial capitals"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_EXCEPT.STR_PB_DELDOUBLECAPS.string.text
+msgid "Delete words with two initial capitals"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER1.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER1.string.text"
+msgid "[M]"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER2.string.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_HEADER2.string.text"
+msgid "[T]"
+msgstr ""
+
+#: 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 ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_ORDINAL.string.text
+msgid "Format ordinal numbers suffixes (1st -> 1^st)"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FL_SINGLE.fixedline.text
+msgid "Single quotes"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_SGL_TYPO.checkbox.text
+#, fuzzy
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_SGL_TYPO.checkbox.text"
+msgid "Repla~ce"
+msgstr "Замени"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_SGL_STARTQUOTE.fixedtext.text
+msgid "~Start quote:"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_SGL_ENDQUOTE.fixedtext.text
+msgid "~End quote:"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_SGL_STD.pushbutton.text
+#, fuzzy
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_SGL_STD.pushbutton.text"
+msgid "~Default"
+msgstr "~Стандарден"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FL_DOUBLE.fixedline.text
+msgid "Double quotes"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.CB_TYPO.checkbox.text
+#, fuzzy
+msgid "Repl~ace"
+msgstr "Замени"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_STARTQUOTE.fixedtext.text
+msgid "Start q~uote:"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.FT_ENDQUOTE.fixedtext.text
+msgid "E~nd quote:"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.PB_DBL_STD.pushbutton.text
+msgid "De~fault"
+msgstr "~Стандарден"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_CHANGE_START.string.text
+msgid "Start quote"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_CHANGE_END.string.text
+msgid "End quote"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_STANDARD.string.text
+#, fuzzy
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.ST_STANDARD.string.text"
+msgid "Default"
+msgstr "~Стандарден"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_STD.string.text
+#, fuzzy
+msgid "Single quotes default"
+msgstr "Постави ~стандардно"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_STD.string.text
+#, fuzzy
+msgid "Double quotes default"
+msgstr "Двојна стрелка во лево"
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_START.string.text
+msgid "Start quote of single quotes"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_START.string.text
+msgid "Start quote of double quotes"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_SGL_END.string.text
+msgid "End quote of single quotes"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.STR_PB_DBL_END.string.text
+msgid "End quote of double quotes"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCORR_QUOTE.tabpage.text"
+msgid "Localized Options"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_ACTIV.checkbox.text
+msgid "Enable word ~completion"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_APPEND_SPACE.checkbox.text
+msgid "~Append space"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_AS_TIP.checkbox.text
+msgid "~Show as tip"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.CB_COLLECT.checkbox.text
+msgid "C~ollect words"
+msgstr ""
+
+#: 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 ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_EXPAND_KEY.fixedtext.text
+msgid "Acc~ept with"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_MIN_WORDLEN.fixedtext.text
+msgid "Mi~n. word length"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.FT_MAX_ENTRIES.fixedtext.text
+msgid "~Max. entries"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.PB_ENTRIES.pushbutton.text
+msgid "~Delete Entry"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_AUTOCOMPLETE_OPTIONS.tabpage.text"
+msgid "Word Completion"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.CB_SMARTTAGS.checkbox.text
+msgid "Label text with smart tags"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.FT_SMARTTAGS.fixedtext.text
+msgid "Currently installed smart tags"
+msgstr ""
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.PB_SMARTTAGS.pushbutton.text
+msgid "Properties..."
+msgstr "Својства..."
+
+#: autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.tabpage.text
+msgctxt "autocdlg.src#RID_OFAPAGE_SMARTTAG_OPTIONS.tabpage.text"
+msgid "Smart Tags"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FL_PAPER_SIZE.fixedline.text
+msgid "Paper format"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_FORMAT.fixedtext.text
+msgid "~Format"
+msgstr "~Форматирај"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_PAPER_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_HEIGHT.fixedtext.text
+msgid "~Height"
+msgstr "~Висина"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_ORIENTATION.fixedtext.text
+msgid "Orientation"
+msgstr "Ориентација"
+
+#: page.src#RID_SVXPAGE_PAGE.RB_PORTRAIT.radiobutton.text
+msgid "~Portrait"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.RB_LANDSCAPE.radiobutton.text
+msgid "L~andscape"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TEXT_FLOW.fixedtext.text
+msgid "~Text direction"
+msgstr "~Насока на текст"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAPER_TRAY.fixedtext.text
+msgid "Paper ~tray"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FL_MARGIN.fixedline.text
+msgid "Margins"
+msgstr "Маргини"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_LEFT_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_LEFT_MARGIN.fixedtext.text"
+msgid "~Left"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FT_RIGHT_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_RIGHT_MARGIN.fixedtext.text"
+msgid "~Right"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TOP_MARGIN.fixedtext.text
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_TOP_MARGIN.fixedtext.text"
+msgid "~Top"
+msgstr "~до"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_BOTTOM_MARGIN.fixedtext.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.FT_BOTTOM_MARGIN.fixedtext.text"
+msgid "~Bottom"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FL_LAYOUT.fixedline.text
+msgid "Layout settings"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FT_PAGELAYOUT.fixedtext.text
+msgid "Page layout"
+msgstr "Изглед на страница"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.1.stringlist.text
+msgid "Right and left"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.2.stringlist.text
+msgid "Mirrored"
+msgstr "Огледално"
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.3.stringlist.text
+msgid "Only right"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.LB_LAYOUT.4.stringlist.text
+msgid "Only left"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FT_NUMBER_FORMAT.fixedtext.text
+msgid "For~mat"
+msgstr "~Формат"
+
+#: 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 "А, Б, В, ..."
+
+#: page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.2.stringlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.2.stringlist.text"
+msgid "a, b, c, ..."
+msgstr "А, Б, В, ..."
+
+#: 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
+#, fuzzy
+msgctxt "page.src#RID_SVXPAGE_PAGE.LB_NUMBER_FORMAT.6.stringlist.text"
+msgid "None"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Без белешки\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема"
+
+#: page.src#RID_SVXPAGE_PAGE.FT_TBL_ALIGN.fixedtext.text
+msgid "Table alignment"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.CB_HORZ.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_HORZ.checkbox.text"
+msgid "Hori~zontal"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.CB_VERT.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_VERT.checkbox.text"
+msgid "~Vertical"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.CB_ADAPT.checkbox.text
+msgid "~Fit object to paper format"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.CB_REGISTER.checkbox.text
+msgctxt "page.src#RID_SVXPAGE_PAGE.CB_REGISTER.checkbox.text"
+msgid "Register-true"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.FT_REGISTER.fixedtext.text
+msgid "Reference ~Style"
+msgstr ""
+
+#: page.src#RID_SVXPAGE_PAGE.STR_INSIDE.string.text
+msgid "I~nner"
+msgstr "Внат~решно"
+
+#: page.src#RID_SVXPAGE_PAGE.STR_OUTSIDE.string.text
+msgid "O~uter"
+msgstr "Надв~орешни"
+
+#: 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 ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.1.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.1.itemlist.text"
+msgid "A6"
+msgstr "А"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.2.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.2.itemlist.text"
+msgid "A5"
+msgstr "А"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.3.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.3.itemlist.text"
+msgid "A4"
+msgstr "А"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.4.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.4.itemlist.text"
+msgid "A3"
+msgstr "А"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.5.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.5.itemlist.text"
+msgid "B6 (ISO)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.6.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.6.itemlist.text"
+msgid "B5 (ISO)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.7.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.7.itemlist.text"
+msgid "B4 (ISO)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.8.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.8.itemlist.text"
+msgid "Letter"
+msgstr "Писмо"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.9.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.9.itemlist.text"
+msgid "Legal"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.10.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.10.itemlist.text"
+msgid "Long Bond"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.11.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.11.itemlist.text"
+msgid "Tabloid"
+msgstr "Табела"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.12.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.12.itemlist.text"
+msgid "B6 (JIS)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.13.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.13.itemlist.text"
+msgid "B5 (JIS)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.14.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.14.itemlist.text"
+msgid "B4 (JIS)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.15.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.15.itemlist.text"
+msgid "16 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.16.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.16.itemlist.text"
+msgid "32 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.17.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.17.itemlist.text"
+msgid "Big 32 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.18.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.18.itemlist.text"
+msgid "User"
+msgstr "~Корисник"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.19.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.19.itemlist.text"
+msgid "DL Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.20.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.20.itemlist.text"
+msgid "C6 Envelope"
+msgstr "Плик"
+
+#: 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 "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.22.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.22.itemlist.text"
+msgid "C5 Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.23.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_STD.23.itemlist.text"
+msgid "C4 Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.24.itemlist.text
+msgid "#6 3/4 (Personal) Envelope"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.25.itemlist.text
+msgid "#8 (Monarch) Envelope"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.26.itemlist.text
+#, fuzzy
+msgid "#9 Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.27.itemlist.text
+#, fuzzy
+msgid "#10 Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.28.itemlist.text
+#, fuzzy
+msgid "#11 Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_STD.29.itemlist.text
+#, fuzzy
+msgid "#12 Envelope"
+msgstr "Плик"
+
+#: 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
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.1.itemlist.text"
+msgid "A6"
+msgstr "А"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.2.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.2.itemlist.text"
+msgid "A5"
+msgstr "А"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.3.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.3.itemlist.text"
+msgid "A4"
+msgstr "А"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.4.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.4.itemlist.text"
+msgid "A3"
+msgstr "А"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.5.itemlist.text
+msgid "A2"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.6.itemlist.text
+msgid "A1"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.7.itemlist.text
+msgid "A0"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.8.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.8.itemlist.text"
+msgid "B6 (ISO)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.9.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.9.itemlist.text"
+msgid "B5 (ISO)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.10.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.10.itemlist.text"
+msgid "B4 (ISO)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.11.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.11.itemlist.text"
+msgid "Letter"
+msgstr "Писмо"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.12.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.12.itemlist.text"
+msgid "Legal"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.13.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.13.itemlist.text"
+msgid "Long Bond"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.14.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.14.itemlist.text"
+msgid "Tabloid"
+msgstr "Табела"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.15.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.15.itemlist.text"
+msgid "B6 (JIS)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.16.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.16.itemlist.text"
+msgid "B5 (JIS)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.17.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.17.itemlist.text"
+msgid "B4 (JIS)"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.18.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.18.itemlist.text"
+msgid "16 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.19.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.19.itemlist.text"
+msgid "32 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.20.itemlist.text
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.20.itemlist.text"
+msgid "Big 32 Kai"
+msgstr ""
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.21.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.21.itemlist.text"
+msgid "User"
+msgstr "~Корисник"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.22.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.22.itemlist.text"
+msgid "DL Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.23.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.23.itemlist.text"
+msgid "C6 Envelope"
+msgstr "Плик"
+
+#: 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 "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.25.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.25.itemlist.text"
+msgid "C5 Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.26.itemlist.text
+#, fuzzy
+msgctxt "page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.26.itemlist.text"
+msgid "C4 Envelope"
+msgstr "Плик"
+
+#: page.src#RID_SVXSTRARY_PAPERSIZE_DRAW.27.itemlist.text
+msgid "Dia Slide"
+msgstr ""
+
+#: 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
+#, fuzzy
+msgctxt "measure.src#RID_SVXPAGE_MEASURE.FL_LINE.fixedline.text"
+msgid "Line"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Поврзи"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_LINE_DIST.fixedtext.text
+msgid "Line ~distance"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE_OVERHANG.fixedtext.text
+msgid "Guide ~overhang"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE_DIST.fixedtext.text
+msgid "~Guide distance"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE1_LEN.fixedtext.text
+msgid "~Left guide"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_HELPLINE2_LEN.fixedtext.text
+msgid "~Right guide"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_BELOW_REF_EDGE.tristatebox.text
+msgid "Measure ~below object"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_DECIMALPLACES.fixedtext.text
+msgid "Decimal places"
+msgstr "Децимални места"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FL_LABEL.fixedline.text
+msgid "Legend"
+msgstr "Легенда"
+
+#: measure.src#RID_SVXPAGE_MEASURE.FT_POSITION.fixedtext.text
+msgid "~Text position"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_AUTOPOSV.tristatebox.text
+msgid "~AutoVertical"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_AUTOPOSH.tristatebox.text
+msgid "A~utoHorizontal"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_PARALLEL.tristatebox.text
+msgid "~Parallel to line"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.TSB_SHOW_UNIT.tristatebox.text
+msgid "Show ~meas. units"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.STR_MEASURE_AUTOMATIC.string.text
+msgctxt "measure.src#RID_SVXPAGE_MEASURE.STR_MEASURE_AUTOMATIC.string.text"
+msgid "Automatic"
+msgstr ""
+
+#: measure.src#RID_SVXPAGE_MEASURE.tabpage.text
+msgid "Dimensioning"
+msgstr "Димензионирање"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_EFFECT.fixedline.text
+msgid "Text animation effects"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_EFFECTS.fixedtext.text
+msgid "E~ffect"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.1.stringlist.text
+msgid "No Effect"
+msgstr "Без ефект"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.2.stringlist.text
+msgid "Blink"
+msgstr "Трепнување"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.3.stringlist.text
+msgid "Scroll Through"
+msgstr "Движи низ"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.4.stringlist.text
+msgid "Scroll Back and Forth"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.LB_EFFECT.5.stringlist.text
+msgid "Scroll In"
+msgstr "Движи во"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_DIRECTION.fixedtext.text
+msgid "Direction"
+msgstr "Насока"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_PROPERTIES.fixedline.text
+#, fuzzy
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_START_INSIDE.tristatebox.text
+msgid "S~tart inside"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_STOP_INSIDE.tristatebox.text
+msgid "Text visible when exiting"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_COUNT.fixedtext.text
+msgid "Animation cycles"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_ENDLESS.tristatebox.text
+msgid "~Continuous"
+msgstr "~Непрекинато"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_AMOUNT.fixedtext.text
+#, fuzzy
+msgid "Increment"
+msgstr "Зголемувања"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_PIXEL.tristatebox.text
+msgid "~Pixels"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_AMOUNT.metricfield.text
+msgid " Pixel"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.FT_DELAY.fixedtext.text
+#, fuzzy
+msgid "Delay"
+msgstr ""
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Задоцнување\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Доцнење"
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_AUTO.tristatebox.text
+msgctxt "textanim.src#RID_SVXPAGE_TEXTANIMATION.TSB_AUTO.tristatebox.text"
+msgid "~Automatic"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.MTR_FLD_DELAY.metricfield.text
+msgid " ms"
+msgstr ""
+
+#: textanim.src#RID_SVXPAGE_TEXTANIMATION.tabpage.text
+msgid "Animation"
+msgstr "Анимација"
+
+#: 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 ""
+
+#: textanim.src#RID_SVXDLG_TEXT.1.RID_SVXPAGE_TEXTANIMATION.pageitem.text
+msgid "Text Animation"
+msgstr "Анимација на текст"
+
+#: textanim.src#RID_SVXDLG_TEXT.tabdialog.text
+msgctxt "textanim.src#RID_SVXDLG_TEXT.tabdialog.text"
+msgid "Text"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FL_BORDER.fixedline.text
+msgid "Line arrangement"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FT_DEFAULT.fixedtext.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_DEFAULT.fixedtext.text"
+msgid "~Default"
+msgstr "~Стандарден"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_USERDEF.fixedtext.text
+msgid "~User-defined"
+msgstr "~Кориснички дефинирано"
+
+#: border.src#RID_SVXPAGE_BORDER.FL_LINE.fixedline.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FL_LINE.fixedline.text"
+msgid "Line"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Поврзи"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_STYLE.fixedtext.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_STYLE.fixedtext.text"
+msgid "St~yle"
+msgstr "Стил"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_COLOR.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_COLOR.fixedtext.text"
+msgid "~Color"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FT_LEFT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FT_RIGHT.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_RIGHT.fixedtext.text"
+msgid "Right"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FT_TOP.fixedtext.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~до"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_BOTTOM.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.CB_SYNC.checkbox.text
+msgid "Synchronize"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FL_DISTANCE.fixedline.text
+msgid "Spacing to contents"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWPOS.fixedtext.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_SHADOWPOS.fixedtext.text"
+msgid "~Position"
+msgstr "По~зиција"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWSIZE.fixedtext.text
+#, fuzzy
+msgid "Distan~ce"
+msgstr ""
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рас~тојание\n"
+"#-#-#-#-# engine3d.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Растојание"
+
+#: border.src#RID_SVXPAGE_BORDER.FT_SHADOWCOLOR.fixedtext.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.FT_SHADOWCOLOR.fixedtext.text"
+msgid "C~olor"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FL_SHADOW.fixedline.text
+msgid "Shadow style"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.FL_PROPERTIES.fixedline.text
+#, fuzzy
+msgctxt "border.src#RID_SVXPAGE_BORDER.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: border.src#RID_SVXPAGE_BORDER.CB_MERGEWITHNEXT.checkbox.text
+#, fuzzy
+msgid "~Merge with next paragraph"
+msgstr "~Задржи со следниот пасус"
+
+#: border.src#RID_SVXPAGE_BORDER.CB_MERGEADJACENTBORDERS.checkbox.text
+msgid "~Merge adjacent line styles"
+msgstr ""
+
+#: border.src#RID_SVXPAGE_BORDER.tabpage.text
+msgctxt "border.src#RID_SVXPAGE_BORDER.tabpage.text"
+msgid "Borders"
+msgstr ""
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_NONE.string.text
+msgid "Set No Borders"
+msgstr ""
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_ONLYOUTER.string.text
+msgid "Set Outer Border Only"
+msgstr ""
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERHORI.string.text
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERALL.string.text
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#: border.src#RID_SVXSTR_TABLE_PRESET_OUTERINNER.string.text
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#: border.src#RID_SVXSTR_PARA_PRESET_DIAGONAL.string.text
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#: border.src#RID_SVXSTR_PARA_PRESET_ALL.string.text
+msgid "Set All Four Borders"
+msgstr ""
+
+#: border.src#RID_SVXSTR_PARA_PRESET_LEFTRIGHT.string.text
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#: border.src#RID_SVXSTR_PARA_PRESET_TOPBOTTOM.string.text
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#: border.src#RID_SVXSTR_PARA_PRESET_ONLYLEFT.string.text
+msgid "Set Left Border Only"
+msgstr ""
+
+#: border.src#RID_SVXSTR_HOR_PRESET_ONLYHOR.string.text
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#: border.src#RID_SVXSTR_VER_PRESET_ONLYVER.string.text
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_NONE.string.text
+msgid "No Shadow"
+msgstr "Без сенка"
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT.string.text
+msgid "Cast Shadow to Bottom Right"
+msgstr ""
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_TOPRIGHT.string.text
+msgid "Cast Shadow to Top Right"
+msgstr ""
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT.string.text
+msgid "Cast Shadow to Bottom Left"
+msgstr ""
+
+#: border.src#RID_SVXSTR_SHADOW_STYLE_TOPLEFT.string.text
+msgid "Cast Shadow to Top Left"
+msgstr ""
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_CROP.fixedline.text
+#, fuzzy
+msgid "Crop"
+msgstr ""
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Отсечи\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Отсечи\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Отсекување"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_LEFT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr ""
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_RIGHT.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_RIGHT.fixedtext.text"
+msgid "~Right"
+msgstr ""
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_TOP.fixedtext.text
+#, fuzzy
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~до"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_BOTTOM.fixedtext.text
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr ""
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.RB_SIZECONST.radiobutton.text
+msgid "Keep image si~ze"
+msgstr ""
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.RB_ZOOMCONST.radiobutton.text
+msgid "Keep ~scale"
+msgstr ""
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_ZOOM.fixedline.text
+msgid "Scale"
+msgstr "Размер"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTHZOOM.fixedtext.text
+#, fuzzy
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTHZOOM.fixedtext.text"
+msgid "~Width"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHTZOOM.fixedtext.text
+#, fuzzy
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHTZOOM.fixedtext.text"
+msgid "H~eight"
+msgstr "~Висина"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FL_SIZE.fixedline.text
+msgid "Image size"
+msgstr ""
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHT.fixedtext.text
+#, fuzzy
+msgctxt "grfpage.src#RID_SVXPAGE_GRFCROP.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "~Висина"
+
+#: grfpage.src#RID_SVXPAGE_GRFCROP.PB_ORGSIZE.pushbutton.text
+msgid "~Original Size"
+msgstr "~Оригинална големина"
+
+#. 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 ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_WIDTH.tristatebox.text
+msgid "Fit wi~dth to text"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_HEIGHT.tristatebox.text
+msgid "Fit h~eight to text"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_FIT_TO_SIZE.tristatebox.text
+msgid "~Fit to frame"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_CONTOUR.tristatebox.text
+msgid "~Adjust to contour"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_WORDWRAP_TEXT.tristatebox.text
+msgid "~Word wrap text in shape"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_AUTOGROW_SIZE.tristatebox.text
+msgid "~Resize shape to fit text"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_DISTANCE.fixedline.text
+msgid "Spacing to borders"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_LEFT.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_LEFT.fixedtext.text"
+msgid "~Left"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_RIGHT.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_RIGHT.fixedtext.text"
+msgid "~Right"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_TOP.fixedtext.text
+#, fuzzy
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_TOP.fixedtext.text"
+msgid "~Top"
+msgstr "~до"
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FT_BOTTOM.fixedtext.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.FT_BOTTOM.fixedtext.text"
+msgid "~Bottom"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.FL_POSITION.fixedline.text
+msgid "Text anchor"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.TSB_FULL_WIDTH.tristatebox.text
+msgid "Full ~width"
+msgstr ""
+
+#: textattr.src#RID_SVXPAGE_TEXTATTR.tabpage.text
+msgctxt "textattr.src#RID_SVXPAGE_TEXTATTR.tabpage.text"
+msgid "Text"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_TYPE.fixedtext.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.FT_TYPE.fixedtext.text"
+msgid "~Type"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FL_DELTA.fixedline.text
+msgid "Line skew"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_1.fixedtext.text
+msgid "Line ~1"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_2.fixedtext.text
+msgid "Line ~2"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_LINE_3.fixedtext.text
+msgid "Line ~3"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FL_DISTANCE.fixedline.text
+msgctxt "connect.src#RID_SVXPAGE_CONNECTION.FL_DISTANCE.fixedline.text"
+msgid "Line spacing"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_HORZ_1.fixedtext.text
+msgid "~Begin horizontal"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_HORZ_2.fixedtext.text
+msgid "End ~horizontal"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_VERT_1.fixedtext.text
+msgid "Begin ~vertical"
+msgstr ""
+
+#: connect.src#RID_SVXPAGE_CONNECTION.FT_VERT_2.fixedtext.text
+msgid "~End vertical"
+msgstr ""
+
+#: 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 "Преглед"
+
+#: connect.src#RID_SVXPAGE_CONNECTION.tabpage.text
+msgid "Connector"
+msgstr "Поврзувач"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ABSTAND.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_ABSTAND.fixedtext.text"
+msgid "~Spacing"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_WINKEL.fixedtext.text
+#, fuzzy
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_WINKEL.fixedtext.text"
+msgid "~Angle"
+msgstr "Агол"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.1.stringlist.text
+msgid "Free"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.2.stringlist.text
+msgid "30 Degrees"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.3.stringlist.text
+msgid "45 Degrees"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.4.stringlist.text
+msgid "60 Degrees"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_WINKEL.5.stringlist.text
+msgid "90 Degrees"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ.fixedtext.text
+msgid "~Extension"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.1.stringlist.text
+msgid "Optimal"
+msgstr "Оптимално"
+
+#: 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 ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.3.stringlist.text
+msgid "From left"
+msgstr "Од лево"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.4.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.4.stringlist.text"
+msgid "Horizontal"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.5.stringlist.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.LB_ANSATZ.5.stringlist.text"
+msgid "Vertical"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_UM.fixedtext.text
+msgid "~By"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ_REL.fixedtext.text
+#, fuzzy
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_ANSATZ_REL.fixedtext.text"
+msgid "~Position"
+msgstr "По~зиција"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.FT_LAENGE.fixedtext.text
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.FT_LAENGE.fixedtext.text"
+msgid "~Length"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.CB_LAENGE.checkbox.text
+msgid "~Optimal"
+msgstr "~Оптимално"
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_1.string.text
+msgid "Straight Line"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_2.string.text
+msgid "Angled Line"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_3.string.text
+msgid "Angled Connector Line"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_CAPTTYPE_4.string.text
+msgid "Double-angled line"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_HORZ_LIST.string.text
+msgid "Top;Middle;Bottom"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.STR_VERT_LIST.string.text
+msgid "Left;Middle;Right"
+msgstr ""
+
+#: labdlg.src#RID_SVXPAGE_CAPTION.tabpage.text
+#, fuzzy
+msgctxt "labdlg.src#RID_SVXPAGE_CAPTION.tabpage.text"
+msgid "Callouts"
+msgstr "Балонче"
+
+#: labdlg.src#_POS_SIZE_TEXT.#define.text
+msgctxt "labdlg.src#_POS_SIZE_TEXT.#define.text"
+msgid "Position and Size"
+msgstr ""
+
+#: labdlg.src#RID_SVXDLG_CAPTION.TAB_CONTROL.RID_SVXPAGE_CAPTION.pageitem.text
+msgid "Callout"
+msgstr "Балонче"
+
+#: labdlg.src#RID_SVXDLG_CAPTION.tabdialog.text
+#, fuzzy
+msgctxt "labdlg.src#RID_SVXDLG_CAPTION.tabdialog.text"
+msgid "Callouts"
+msgstr "Балонче"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_HORIZONTAL.fixedline.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_HORIZONTAL.fixedline.text"
+msgid "Horizontal"
+msgstr ""
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_NONE.radiobutton.text
+#, fuzzy
+msgid "~None"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Без белешки\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_LEFT.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_LEFT.radiobutton.text"
+msgid "~Left"
+msgstr ""
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_CENTER.radiobutton.text
+#, fuzzy
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_CENTER.radiobutton.text"
+msgid "~Center"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_DISTANCE.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_DISTANCE.radiobutton.text"
+msgid "~Spacing"
+msgstr ""
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_RIGHT.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_HOR_RIGHT.radiobutton.text"
+msgid "~Right"
+msgstr ""
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_VERTICAL.fixedline.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.FL_VERTICAL.fixedline.text"
+msgid "Vertical"
+msgstr ""
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_NONE.radiobutton.text
+#, fuzzy
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_NONE.radiobutton.text"
+msgid "N~one"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Без белешки\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_TOP.radiobutton.text
+#, fuzzy
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_TOP.radiobutton.text"
+msgid "~Top"
+msgstr "~до"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_CENTER.radiobutton.text
+#, fuzzy
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_CENTER.radiobutton.text"
+msgid "C~enter"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_DISTANCE.radiobutton.text
+msgid "S~pacing"
+msgstr ""
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_BOTTOM.radiobutton.text
+msgctxt "dstribut.src#RID_SVXPAGE_DISTRIBUTE.BTN_VER_BOTTOM.radiobutton.text"
+msgid "~Bottom"
+msgstr ""
+
+#: dstribut.src#RID_SVXPAGE_DISTRIBUTE.tabpage.text
+msgid "Distribution"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_LEFTINDENT.fixedtext.text
+msgid "Before text"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_RIGHTINDENT.fixedtext.text
+msgid "After text"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_FLINEINDENT.fixedtext.text
+msgid "~First line"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_AUTO.checkbox.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_AUTO.checkbox.text"
+msgid "~Automatic"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_INDENT.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FL_INDENT.fixedline.text"
+msgid "Indent"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_TOPDIST.fixedtext.text
+msgid "Ab~ove paragraph"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_BOTTOMDIST.fixedtext.text
+msgid "Below paragraph"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.2.stringlist.text
+msgid "1.5 lines"
+msgstr "1.5 линија"
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.4.stringlist.text
+msgid "Proportional"
+msgstr "Пропорционално"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.5.stringlist.text
+msgid "At least"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.LB_LINEDIST.6.stringlist.text
+msgid "Leading"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.ST_LINEDIST_ABS.string.text
+#, fuzzy
+msgid "Fixed"
+msgstr ""
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Фиксен\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Фиксно"
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.FT_LINEDIST.fixedtext.text
+msgid "of"
+msgstr "од"
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.CB_REGISTER.checkbox.text
+msgid "A~ctivate"
+msgstr ""
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_STD_PARAGRAPH.tabpage.text
+msgid "Indents and Spacing"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_ALIGN.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_ALIGN.fixedline.text"
+msgid "Options"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_LEFTALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_LEFTALIGN.radiobutton.text"
+msgid "~Left"
+msgstr ""
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_CENTERALIGN.radiobutton.text
+#, fuzzy
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_CENTERALIGN.radiobutton.text"
+msgid "~Center"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_JUSTIFYALIGN.radiobutton.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.BTN_JUSTIFYALIGN.radiobutton.text"
+msgid "Justified"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_LASTLINE.fixedtext.text
+msgid "~Last line"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.1.stringlist.text
+#, fuzzy
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.1.stringlist.text"
+msgid "Default"
+msgstr "~Стандарден"
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.3.stringlist.text
+#, fuzzy
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE.3.stringlist.text"
+msgid "Centered"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.CB_EXPAND.checkbox.text
+msgid "~Expand single word"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.CB_SNAP.checkbox.text
+msgid "Snap to text grid (if active)"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_VERTALIGN.fixedline.text
+msgid "Text-to-text"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_VERTALIGN.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_VERTALIGN.fixedtext.text"
+msgid "~Alignment"
+msgstr ""
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.2.stringlist.text
+msgid "Base line"
+msgstr "Основна линија"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.3.stringlist.text
+#, fuzzy
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN.3.stringlist.text"
+msgid "Top"
+msgstr "~до"
+
+#: 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 ""
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_PROPERTIES.fixedline.text
+#, fuzzy
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FL_PROPERTIES.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.FT_TEXTDIRECTION.fixedtext.text
+msgid "Text ~direction"
+msgstr "~Насока на текст"
+
+#: paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.tabpage.text
+msgctxt "paragrph.src#RID_SVXPAGE_ALIGN_PARAGRAPH.tabpage.text"
+msgid "Alignment"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_HYPHEN.tristatebox.text
+#, fuzzy
+msgid "A~utomatically"
+msgstr "Автоматско ажурирање на"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_HYPHENBEFORE.fixedtext.text
+msgid "C~haracters at line end"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_HYPHENAFTER.fixedtext.text
+msgid "Cha~racters at line begin"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_MAXHYPH.fixedtext.text
+msgid "~Maximum number of consecutive hyphens"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_HYPHEN.fixedline.text
+msgid "Hyphenation"
+msgstr "Разделување"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_OPTIONS.fixedline.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FL_BREAKS.fixedline.text
+msgid "Breaks"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_PAGEBREAK.tristatebox.text
+#, fuzzy
+msgid "Insert"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# report.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметнување\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметнување\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKTYPE.fixedtext.text
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKTYPE.fixedtext.text"
+msgid "~Type"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKTYPE.1.stringlist.text
+msgid "Page"
+msgstr "Страница"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.LB_BREAKTYPE.2.stringlist.text
+msgid "Column"
+msgstr "Колона"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKPOSITION.fixedtext.text
+#, fuzzy
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_BREAKPOSITION.fixedtext.text"
+msgid "Position"
+msgstr "По~зиција"
+
+#: 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 ""
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_PAGECOLL.tristatebox.text
+msgid "With Page St~yle"
+msgstr "Со ст~ил на страница"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_PAGENUM.fixedtext.text
+msgid "Page ~number"
+msgstr "~Број на страница"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_KEEPTOGETHER.tristatebox.text
+msgid "~Do not split paragraph"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.CB_KEEPTOGETHER.tristatebox.text
+msgid "~Keep with next paragraph"
+msgstr "~Задржи со следниот пасус"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_ORPHANS.tristatebox.text
+msgid "~Orphan control"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_ORPHANS.fixedtext.text
+#, fuzzy
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_ORPHANS.fixedtext.text"
+msgid "Lines"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Поврзи"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.BTN_WIDOWS.tristatebox.text
+msgid "~Widow control"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_WIDOWS.fixedtext.text
+#, fuzzy
+msgctxt "paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.FT_WIDOWS.fixedtext.text"
+msgid "Lines"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Поврзи"
+
+#: paragrph.src#RID_SVXPAGE_EXT_PARAGRAPH.tabpage.text
+msgid "Text Flow"
+msgstr "Тек на текст"
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.FL_AS_OPTIONS.fixedline.text
+msgid "Line change"
+msgstr ""
+
+#: 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 ""
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_HANG_PUNC.tristatebox.text
+msgid "Allow hanging punctuation"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.CB_AS_SCRIPT_SPACE.tristatebox.text
+msgid "Apply spacing between Asian, Latin and Complex text"
+msgstr ""
+
+#: paragrph.src#RID_SVXPAGE_PARA_ASIAN.tabpage.text
+msgid "Asian Typography"
+msgstr "Азиска типографија"
+
+#: paragrph.src#STR_EXAMPLE.string.text
+#, fuzzy
+msgctxt "paragrph.src#STR_EXAMPLE.string.text"
+msgid "Example"
+msgstr "Пример"
+
+#: paragrph.src#STR_PAGE_STYLE.string.text
+msgid "Page Style"
+msgstr "Стил на страница"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_CATEGORY.fixedtext.text
+msgid "~Category"
+msgstr "~Категорија"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.1.stringlist.text
+msgid "All"
+msgstr "Сите"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.2.stringlist.text
+msgid "User-defined"
+msgstr "Кориснички дефинирано"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.3.stringlist.text
+msgid "Number"
+msgstr "Број"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.4.stringlist.text
+msgid "Percent"
+msgstr "Процент"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.5.stringlist.text
+msgid "Currency"
+msgstr "Валута"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.6.stringlist.text
+#, fuzzy
+msgid "Date"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# pagedlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Број\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# analysis.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# resource.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Датум"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.7.stringlist.text
+msgid "Time"
+msgstr "Време"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.8.stringlist.text
+msgid "Scientific"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.9.stringlist.text
+msgid "Fraction"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.10.stringlist.text
+msgid "Boolean Value"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.11.stringlist.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CATEGORY.11.stringlist.text"
+msgid "Text"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_EDFORMAT.fixedtext.text
+msgid "~Format code"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_FORMAT.fixedtext.text
+#, fuzzy
+msgid "F~ormat"
+msgstr ""
+"#-#-#-#-# envelp.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ф~ормат\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Форматирај\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ф~орматирање\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Фо~рматирај\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ф~ормат\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Форматирај\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ф~ормат"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.LB_CURRENCY.1.stringlist.text
+msgid "Automatically"
+msgstr "Автоматско ажурирање на"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_DECIMALS.fixedtext.text
+msgid "~Decimal places"
+msgstr "~Децимални места"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LEADZEROES.fixedtext.text
+msgid "Leading ~zeroes"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.BTN_NEGRED.checkbox.text
+msgid "~Negative numbers red"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.BTN_THOUSAND.checkbox.text
+msgid "~Thousands separator"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FL_OPTIONS.fixedline.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LANGUAGE.fixedtext.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.FT_LANGUAGE.fixedtext.text"
+msgid "~Language"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.CB_SOURCEFORMAT.checkbox.text
+msgid "So~urce format"
+msgstr ""
+
+#: 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
+#, fuzzy
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.IB_ADD.imagebutton.quickhelptext"
+msgid "Add"
+msgstr "~Додај"
+
+#: 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 "Отстрани"
+
+#: 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 "Уреди белешка"
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.STR_AUTO_ENTRY.string.text
+msgctxt "numfmt.src#RID_SVXPAGE_NUMBERFORMAT.STR_AUTO_ENTRY.string.text"
+msgid "Automatic"
+msgstr ""
+
+#: numfmt.src#RID_SVXPAGE_NUMBERFORMAT.tabpage.text
+msgid "Number Format"
+msgstr ""
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_LTR.string.text
+#, fuzzy
+msgid "Left-to-right"
+msgstr ""
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Одлево надесно\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Одлево-надесно\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Одлево надесно\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Одлево надесно"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_RTL.string.text
+msgid "Right-to-left"
+msgstr "Оддесно налево"
+
+#: frmdirlbox.src#RID_SVXSTR_FRAMEDIR_SUPER.string.text
+msgid "Use superordinate object settings"
+msgstr "Користи поставувања за надредениот објект"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_LTR_HORI.string.text
+msgid "Left-to-right (horizontal)"
+msgstr "Одлево надесно (хоризонтално)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_RTL_HORI.string.text
+msgid "Right-to-left (horizontal)"
+msgstr "Оддесно налево (хоризонтално)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_RTL_VERT.string.text
+#, fuzzy
+msgid "Right-to-left (vertical)"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно кон лево (вертикално)\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Оддесно налево (вертикално)"
+
+#: frmdirlbox.src#RID_SVXSTR_PAGEDIR_LTR_VERT.string.text
+msgid "Left-to-right (vertical)"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_LINE.fixedline.text
+msgid "Line properties"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_STYLE.fixedtext.text
+msgid "~Style"
+msgstr "~Стил"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_COLOR.fixedtext.text
+msgid "Colo~r"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_TRANSPARENT.fixedtext.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_TRANSPARENT.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Без проѕирност"
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_LINE_ENDS.fixedline.text
+#, fuzzy
+msgid "Arrow styles"
+msgstr "Стилови на стрелки"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_STYLE.fixedtext.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_STYLE.fixedtext.text"
+msgid "St~yle"
+msgstr "Стил"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_LINE_ENDS_WIDTH.fixedtext.text"
+msgid "Wi~dth"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_START.tristatebox.text
+#, fuzzy
+msgid "Ce~nter"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_END.tristatebox.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.TSB_CENTER_END.tristatebox.text"
+msgid "C~enter"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: tabline.src#RID_SVXPAGE_LINE.CBX_SYNCHRONIZE.checkbox.text
+msgid "Synchroni~ze ends"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_EDGE_STYLE.fixedline.text
+msgid "Corner style"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_EDGE_STYLE.fixedtext.text
+#, fuzzy
+msgid "Sty~le"
+msgstr "Стил"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.1.stringlist.text
+msgid "Rounded"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.2.stringlist.text
+msgid "- none -"
+msgstr "- нема -"
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.3.stringlist.text
+msgid "Mitered"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.LB_EDGE_STYLE.4.stringlist.text
+msgid "Beveled"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.FL_SYMBOL_FORMAT.fixedline.text
+msgid "Icon"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS_NONE.menuitem.text
+msgid "No Symbol"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.MN_SYMBOLS.menuitem.text
+msgid "Symbols"
+msgstr "Симболи"
+
+#: tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.menubutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP.menubutton.text"
+msgid "Select..."
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_WIDTH.fixedtext.text"
+msgid "Width"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_HEIGHT.fixedtext.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.FT_SYMBOL_HEIGHT.fixedtext.text"
+msgid "Height"
+msgstr "~Висина"
+
+#: 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 ""
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_STYLE.string.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.STR_STYLE.string.text"
+msgid "Style"
+msgstr "Стил"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_LB_START_STYLE.string.text
+#, fuzzy
+msgid "Start style"
+msgstr "Почетен_датум"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_LB_END_STYLE.string.text
+#, fuzzy
+msgid "End style"
+msgstr "Стил на линијата"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_MTR_FLD_START_WIDTH.string.text
+#, fuzzy
+msgid "Start width"
+msgstr "По~чни со"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_MTR_FLD_END_WIDTH.string.text
+#, fuzzy
+msgid "End width"
+msgstr "Ширина на линијата"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_CENTER_START.string.text
+#, fuzzy
+msgid "Start with center"
+msgstr "Стартува од центар"
+
+#: tabline.src#RID_SVXPAGE_LINE.STR_CENTER_END.string.text
+#, fuzzy
+msgid "End with center"
+msgstr "Во средина десно"
+
+#: tabline.src#RID_SVXPAGE_LINE.tabpage.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE.tabpage.text"
+msgid "Lines"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Поврзи"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FL_DEFINITION.fixedline.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FL_DEFINITION.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_TYPE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_TYPE.fixedtext.text"
+msgid "~Type"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_NUMBER.fixedtext.text
+msgid "~Number"
+msgstr "~Број"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_LENGTH.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_LENGTH.fixedtext.text"
+msgid "~Length"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_DISTANCE.fixedtext.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.FT_DISTANCE.fixedtext.text"
+msgid "~Spacing"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.CBX_SYNCHRONIZE.checkbox.text
+msgid "~Fit to line width"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.FT_LINESTYLE.fixedtext.text
+msgid "Line style"
+msgstr "Стил на линијата"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_ADD.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_MODIFY.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.BTN_DELETE.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINE_DEF.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_TYPE.string.text
+#, fuzzy
+msgid "Start type"
+msgstr "Тип на графикон"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_TYPE.string.text
+#, fuzzy
+msgid "End type"
+msgstr "Тип на поле"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_NUM.string.text
+#, fuzzy
+msgid "Start number"
+msgstr "Рестартирај нумерирање"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_NUM.string.text
+#, fuzzy
+msgid "End number"
+msgstr "без нумерирање"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_START_LENGTH.string.text
+#, fuzzy
+msgid "Start length"
+msgstr "Должина на текст"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.STR_END_LENGTH.string.text
+#, fuzzy
+msgid "End length"
+msgstr "Должина на линија"
+
+#: tabline.src#RID_SVXPAGE_LINE_DEF.tabpage.text
+msgid "Define line styles"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FL_TIP.fixedline.text
+msgid "Organize arrow styles"
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FI_TIP.fixedtext.text
+msgid "Add a selected object to create new arrow styles."
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FT_LINE_END_STYLE.fixedtext.text
+#, fuzzy
+msgid "Arrow style"
+msgstr "Стилови на стрелки"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.FT_TITLE.fixedtext.text
+msgid "~Title"
+msgstr "~Наслов"
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_ADD.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_MODIFY.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr ""
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_DELETE.pushbutton.text
+msgctxt "tabline.src#RID_SVXPAGE_LINEEND_DEF.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabline.src#RID_SVXPAGE_LINEEND_DEF.tabpage.text
+msgid "Arrowheads"
+msgstr "Врвови на стрелка"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE.pageitem.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE.pageitem.text"
+msgid "Line"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Поврзи"
+
+#: 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 ""
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINE_DEF.pageitem.text
+msgid "Line Styles"
+msgstr "Стилови на линија"
+
+#: tabline.src#RID_SVXDLG_LINE.TAB_CONTROL.RID_SVXPAGE_LINEEND_DEF.pageitem.text
+msgid "Arrow Styles"
+msgstr "Стилови на стрелки"
+
+#: tabline.src#RID_SVXDLG_LINE.tabdialog.text
+#, fuzzy
+msgctxt "tabline.src#RID_SVXDLG_LINE.tabdialog.text"
+msgid "Line"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Врска\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Поврзи"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABPOS.fixedline.text
+#, fuzzy
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABPOS.fixedline.text"
+msgid "Position"
+msgstr "По~зиција"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABTYPE.fixedline.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.FL_TABTYPE.fixedline.text"
+msgid "Type"
+msgstr ""
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_LEFT.radiobutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_LEFT.radiobutton.text"
+msgid "~Left"
+msgstr ""
+
+#: 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 ""
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_CENTER.radiobutton.text
+#, fuzzy
+msgid "C~entered"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Во средина\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Центар"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_TABTYPE_DECIMAL.radiobutton.text
+msgid "Deci~mal"
+msgstr ""
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FT_TABTYPE_DECCHAR.fixedtext.text
+#, fuzzy
+msgid "~Character"
+msgstr "Знак"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.FL_FILLCHAR.fixedline.text
+msgid "Fill character"
+msgstr "Знак за пополнување"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_NO.radiobutton.text
+#, fuzzy
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_NO.radiobutton.text"
+msgid "N~one"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Без белешки\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_OTHER.radiobutton.text
+#, fuzzy
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_FILLCHAR_OTHER.radiobutton.text"
+msgid "Character"
+msgstr "Знак"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_NEW.pushbutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_NEW.pushbutton.text"
+msgid "~New"
+msgstr ""
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DELALL.pushbutton.text
+msgid "Delete ~All"
+msgstr "Избриши ги ~сите"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DEL.pushbutton.text
+msgctxt "tabstpge.src#RID_SVXPAGE_TABULATOR.BTN_DEL.pushbutton.text"
+msgid "~Delete"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "Знак"
+
+#: tabstpge.src#RID_SVXPAGE_TABULATOR.tabpage.text
+#, fuzzy
+msgid "Tabs"
+msgstr ""
+"#-#-#-#-# fmtui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Табулатори\n"
+"#-#-#-#-# form.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ливчиња"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_SIZE.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr ""
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_WIDTH.fixedtext.text
+#, fuzzy
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_WIDTH.fixedtext.text"
+msgid "~Width"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HEIGHT.fixedtext.text
+#, fuzzy
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HEIGHT.fixedtext.text"
+msgid "H~eight"
+msgstr "~Висина"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_KEEPRATIO.checkbox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_KEEPRATIO.checkbox.text"
+msgid "~Keep ratio"
+msgstr ""
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_ANCHOR.fixedline.text
+#, fuzzy
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_ANCHOR.fixedline.text"
+msgid "Anchor"
+msgstr "~Котва"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOPAGE.radiobutton.text
+msgid "To ~page"
+msgstr "На ~страница"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOPARA.radiobutton.text
+msgid "To paragrap~h"
+msgstr "На ~пасус"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOCHAR.radiobutton.text
+msgid "To cha~racter"
+msgstr "До ~знак"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_ASCHAR.radiobutton.text
+msgid "~As character"
+msgstr "~Како знак"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.RB_TOFRAME.radiobutton.text
+msgid "To ~frame"
+msgstr "Во ~рамка"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_PROTECTION.fixedline.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_PROTECTION.fixedline.text"
+msgid "Protect"
+msgstr ""
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_POSITION.tristatebox.text
+#, fuzzy
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_POSITION.tristatebox.text"
+msgid "Position"
+msgstr "По~зиција"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_SIZE.tristatebox.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_SIZE.tristatebox.text"
+msgid "~Size"
+msgstr ""
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_POSITION.fixedline.text
+#, fuzzy
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "По~зиција"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORI.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORI.fixedtext.text"
+msgid "Hori~zontal"
+msgstr ""
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORIBY.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORIBY.fixedtext.text"
+msgid "b~y"
+msgstr ""
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_HORITO.fixedtext.text
+msgid "~to"
+msgstr "д~о"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_HORIMIRROR.checkbox.text
+msgid "~Mirror on even pages"
+msgstr "~Огледално на парни страници"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERT.fixedtext.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERT.fixedtext.text"
+msgid "~Vertical"
+msgstr ""
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERTBY.fixedtext.text
+#, fuzzy
+msgid "by"
+msgstr ""
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"за\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"од"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.FT_VERTTO.fixedtext.text
+msgid "t~o"
+msgstr "д~о"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.CB_FOLLOW.checkbox.text
+msgid "Follow text flow"
+msgstr "Следи тек на текст"
+
+#: swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.tabpage.text
+msgctxt "swpossizetabpage.src#RID_SVXPAGE_SWPOSSIZE.tabpage.text"
+msgid "Position and Size"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FL_PROP.fixedline.text
+msgid "Transparency mode"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_OFF.radiobutton.text
+msgid "~No transparency"
+msgstr "~Без проѕирност"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_LINEAR.radiobutton.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_LINEAR.radiobutton.text"
+msgid "~Transparency"
+msgstr "~Без проѕирност"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_GRADIENT.radiobutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.RBT_TRANS_GRADIENT.radiobutton.text"
+msgid "Gradient"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.LB_TRGR_GRADIENT_TYPES.5.stringlist.text
+msgid "Quadratic"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_ANGLE.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_ANGLE.fixedtext.text"
+msgid "~Angle"
+msgstr "Агол"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.MTR_TRGR_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.MTR_TRGR_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_BORDER.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_BORDER.fixedtext.text"
+msgid "~Border"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_START_VALUE.fixedtext.text
+msgid "~Start value"
+msgstr "По~чет. вредност"
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.FT_TRGR_END_VALUE.fixedtext.text
+msgid "~End value"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_TRANSPARENCE.tabpage.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_TRANSPARENCE.tabpage.text"
+msgid "Transparency"
+msgstr "~Без проѕирност"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_PROP.fixedline.text
+msgid "Fill"
+msgstr "Пополни"
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.1.stringlist.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.1.stringlist.text"
+msgid "None"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Без белешки\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема\n"
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Нема"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.5.stringlist.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.LB_AREA_TYPE.5.stringlist.text"
+msgid "Bitmap"
+msgstr "Битмапи"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_STEPCOUNT.fixedline.text
+msgid "Increments"
+msgstr "Зголемувања"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_STEPCOUNT.tristatebox.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.TSB_STEPCOUNT.tristatebox.text"
+msgid "A~utomatic"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_AREA.CB_HATCHBCKGRD.checkbox.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.CB_HATCHBCKGRD.checkbox.text"
+msgid "~Background color"
+msgstr ""
+"#-#-#-#-# inspection.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на позадина\n"
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлогата\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлогата\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлога"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_SIZE.fixedline.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FL_SIZE.fixedline.text"
+msgid "Size"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_ORIGINAL.tristatebox.text
+msgid "~Original"
+msgstr "~Оригинал"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_SCALE.tristatebox.text
+msgid "Re~lative"
+msgstr "Ре~лативно"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_X_SIZE.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FT_X_SIZE.fixedtext.text"
+msgid "Wi~dth"
+msgstr ""
+"#-#-#-#-# table.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# frmdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ши~рина\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Ширина"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_Y_SIZE.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FT_Y_SIZE.fixedtext.text"
+msgid "H~eight"
+msgstr "~Висина"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_POSITION.fixedline.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.FL_POSITION.fixedline.text"
+msgid "Position"
+msgstr "По~зиција"
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_X_OFFSET.fixedtext.text
+msgid "~X Offset"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_AREA.FT_Y_OFFSET.fixedtext.text
+msgid "~Y Offset"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_TILE.tristatebox.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.TSB_TILE.tristatebox.text"
+msgid "~Tile"
+msgstr "~Наслов"
+
+#: tabarea.src#RID_SVXPAGE_AREA.TSB_STRETCH.tristatebox.text
+msgid "Auto~Fit"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_AREA.FL_OFFSET.fixedline.text
+msgid "Offset"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_AREA.RBT_ROW.radiobutton.text
+msgid "Ro~w"
+msgstr "Ре~д"
+
+#: tabarea.src#RID_SVXPAGE_AREA.RBT_COLUMN.radiobutton.text
+#, fuzzy
+msgid "Colu~mn"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Кол~она\n"
+"#-#-#-#-# envelp.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Ко~лона\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Колона\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Коло~на"
+
+#: tabarea.src#RID_SVXPAGE_AREA.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_AREA.tabpage.text"
+msgid "Area"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FL_PROP.fixedline.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.TSB_SHOW_SHADOW.tristatebox.text
+msgid "~Use shadow"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_POSITION.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_POSITION.fixedtext.text"
+msgid "~Position"
+msgstr "По~зиција"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_DISTANCE.fixedtext.text
+#, fuzzy
+msgid "~Distance"
+msgstr ""
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Рас~тојание\n"
+"#-#-#-#-# engine3d.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Растојание"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_SHADOW_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_SHADOW_COLOR.fixedtext.text"
+msgid "~Color"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.FT_TRANSPARENT.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.FT_TRANSPARENT.fixedtext.text"
+msgid "~Transparency"
+msgstr "~Без проѕирност"
+
+#: tabarea.src#RID_SVXPAGE_SHADOW.tabpage.text
+msgctxt "tabarea.src#RID_SVXPAGE_SHADOW.tabpage.text"
+msgid "Shadow"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FL_PROP.fixedline.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_DISTANCE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_DISTANCE.fixedtext.text"
+msgid "~Spacing"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_ANGLE.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_ANGLE.fixedtext.text"
+msgid "A~ngle"
+msgstr "Агол"
+
+#: tabarea.src#RID_SVXPAGE_HATCH.MTR_FLD_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.MTR_FLD_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_TYPE.fixedtext.text
+msgid "~Line type"
+msgstr ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.2.stringlist.text
+msgid "Crossed"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.LB_LINE_TYPE.3.stringlist.text
+msgid "Triple"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.FT_LINE_COLOR.fixedtext.text
+msgid "Line ~color"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_HATCH.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_HATCH.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FL_PROP.fixedline.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_PIXEL_EDIT.fixedtext.text
+msgid "Pattern Editor"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_COLOR.fixedtext.text
+#, fuzzy
+msgid "~Foreground color"
+msgstr ""
+"#-#-#-#-# inspection.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на позадина\n"
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлогата\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлогата\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлога"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BACKGROUND_COLOR.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BACKGROUND_COLOR.fixedtext.text"
+msgid "~Background color"
+msgstr ""
+"#-#-#-#-# inspection.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на позадина\n"
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлогата\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлогата\n"
+"#-#-#-#-# accessibility.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Боја на подлога"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.FT_BITMAPS_HIDDEN.fixedtext.text"
+msgid "Bitmap"
+msgstr "Битмапи"
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_IMPORT.pushbutton.text
+#, fuzzy
+msgid "~Import..."
+msgstr ""
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Внеси...\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Внеси...\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Внес~и..."
+
+#: tabarea.src#RID_SVXPAGE_BITMAP.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_BITMAP.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FL_PROP.fixedline.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_TYPE.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_TYPE.fixedtext.text"
+msgid "Ty~pe"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.LB_GRADIENT_TYPES.6.stringlist.text
+msgid "Rectangular"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_ANGLE.fixedtext.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_ANGLE.fixedtext.text"
+msgid "A~ngle"
+msgstr "Агол"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.MTR_ANGLE.metricfield.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.MTR_ANGLE.metricfield.text"
+msgid " degrees"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_BORDER.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.FT_BORDER.fixedtext.text"
+msgid "~Border"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_COLOR_FROM.fixedtext.text
+msgid "~From"
+msgstr "~Од"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.FT_COLOR_TO.fixedtext.text
+msgid "~To"
+msgstr "~до"
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_ADD.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_ADD.pushbutton.text"
+msgid "~Add..."
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_MODIFY.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_MODIFY.pushbutton.text"
+msgid "~Modify..."
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_GRADIENT.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_GRADIENT.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FL_PROP.fixedline.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.FL_PROP.fixedline.text"
+msgid "Properties"
+msgstr "Својства..."
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_NAME.fixedtext.text
+msgid "~Name"
+msgstr "~Име"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_COLOR.fixedtext.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.FT_COLOR.fixedtext.text"
+msgid "C~olor"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.FT_TABLE_NAME.fixedtext.text
+msgid "Color table"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.LB_COLORMODEL.1.stringlist.text
+msgid "RGB"
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.LB_COLORMODEL.2.stringlist.text
+msgid "CMYK"
+msgstr ""
+
+#: 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 "~Додај"
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_WORK_ON.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_WORK_ON.pushbutton.text"
+msgid "~Edit..."
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_DELETE.pushbutton.text
+msgctxt "tabarea.src#RID_SVXPAGE_COLOR.BTN_DELETE.pushbutton.text"
+msgid "~Delete..."
+msgstr ""
+
+#: tabarea.src#RID_SVXPAGE_COLOR.BTN_MODIFY.pushbutton.text
+#, fuzzy
+msgid "~Modify"
+msgstr ""
+"#-#-#-#-# envelp.po (PACKAGE VERSION) #-#-#-#-#\n"
+"И~змени\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Измени\n"
+"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"~Измени"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_TRANSPARENCE.pageitem.text
+#, fuzzy
+msgctxt "tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_TRANSPARENCE.pageitem.text"
+msgid "Transparency"
+msgstr "~Без проѕирност"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: tabarea.src#RID_SVXDLG_AREA.1.RID_SVXPAGE_BITMAP.pageitem.text
+msgid "Bitmaps"
+msgstr "Битмапи"
+
+#: tabarea.src#RID_SVXDLG_AREA.tabdialog.text
+msgctxt "tabarea.src#RID_SVXDLG_AREA.tabdialog.text"
+msgid "Area"
+msgstr ""
+
+#: tabarea.src#STR_LB_HATCHINGSTYLE.string.text
+#, fuzzy
+msgid "Hatching Style"
+msgstr "Шрафура"
+
+#: tabarea.src#STR_CUI_COLORMODEL.string.text
+#, fuzzy
+msgid "Color Mode"
+msgstr "Режим на контура"
diff --git a/source/mk/dbaccess/source/core/resource.po b/source/mk/dbaccess/source/core/resource.po
new file mode 100644
index 00000000000..80e9d46a23b
--- /dev/null
+++ b/source/mk/dbaccess/source/core/resource.po
@@ -0,0 +1,304 @@
+#. 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-12 00:40+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Се обидов да ја отворам табелата $name$."
+
+#: strings.src#RID_STR_CONNECTION_INVALID.string.text
+msgid "No connection could be established."
+msgstr "Не може да се воспостави врска."
+
+#: 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 "Табелата $name$ веќе постои. Не е видлива бидејќи е филтрирана."
+
+#: 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 "Немате пристап за запишување во конфигурациските податоци врз кои се базира објектот."
+
+#: 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 "Не може да се воспостави врска со надворешниот извор на податоци. Се појави непозната грешка. Веројатно управувачот е неисправен."
+
+#: 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 "Не може да се воспостави врска со надворешниот извор на податоци. Не беше пронајден SDBC-управувач на дадениот 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 "Не може да се воспостави врска со надворешниот извор на податоци. Не може да се вчита SDBC-управувачот."
+
+#: strings.src#RID_STR_FORM.string.text
+msgid "Form"
+msgstr "Форма"
+
+#: strings.src#RID_STR_REPORT.string.text
+msgid "Report"
+msgstr "Извештај"
+
+#: 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 "Податочниот извор не беше зачуван. Користете го интерфејсот XStorable за да го зачувате изворот на податоци."
+
+#: strings.src#RID_STR_ONLY_QUERY.string.text
+msgid ""
+"The given command is not a SELECT statement.\n"
+"Only queries are allowed."
+msgstr ""
+"Дадената наредба не е SELECT-израз.\n"
+"Дозволени се само прашања."
+
+#: strings.src#RID_STR_NO_VALUE_CHANGED.string.text
+msgid "No values were modified."
+msgstr "Немаше изменети вредности."
+
+#: strings.src#RID_STR_NO_XROWUPDATE.string.text
+msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
+msgstr "Не можеше да се вметнат вредности. Интерфејсот XRowUpdate не е поддржан од множеството резултати."
+
+#: strings.src#RID_STR_NO_XRESULTSETUPDATE.string.text
+msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
+msgstr "Не можеше да се вметнат вредности. Интерфејсот XResultSetUpdate не е поддржан од множеството резултати."
+
+#: strings.src#RID_STR_NO_UPDATE_MISSING_CONDITION.string.text
+msgid "Values could not be modified, due to a missing condition statement."
+msgstr "Вредностите не можеше да се изменат, поради тоа што недостасува израз за услов."
+
+#: strings.src#RID_STR_NO_COLUMN_ADD.string.text
+msgid "The adding of columns is not supported."
+msgstr "Додавањето колони не е поддржано."
+
+#: strings.src#RID_STR_NO_COLUMN_DROP.string.text
+msgid "The dropping of columns is not supported."
+msgstr "Бришењето колони не е поддржано."
+
+#: strings.src#RID_STR_NO_CONDITION_FOR_PK.string.text
+msgid "The WHERE condition could not be created for the primary key."
+msgstr "Условот WHERE не можеше да се креира за примарниот клуч."
+
+#: strings.src#RID_STR_COLUMN_UNKNOWN_PROP.string.text
+msgid "The column does not support the property '%value'."
+msgstr "Колоната не го поддржува својството „%value“."
+
+#: strings.src#RID_STR_COLUMN_NOT_SEARCHABLE.string.text
+msgid "The column is not searchable!"
+msgstr "Колоната не е пребарлива!"
+
+#: strings.src#RID_STR_NOT_SEQUENCE_INT8.string.text
+msgid "The value of the columns is not of the type Sequence<sal_Int8>."
+msgstr "Вредноста на колоните не е од тип Секвенца<sal_Int8>."
+
+#: strings.src#RID_STR_COLUMN_NOT_VALID.string.text
+msgid "The column is not valid."
+msgstr "Колоната не е валидна."
+
+#: strings.src#RID_STR_COLUMN_MUST_VISIBLE.string.text
+msgid "The column '%name' must be visible as a column."
+msgstr "Колоната „%name“ мора да биде видлива како колона."
+
+#: strings.src#RID_STR_NO_XQUERIESSUPPLIER.string.text
+msgid "The interface XQueriesSupplier is not available."
+msgstr "Интерфејсот XQueriesSupplier не е достапен."
+
+#: strings.src#RID_STR_NOT_SUPPORTED_BY_DRIVER.string.text
+msgid "The driver does not support this function."
+msgstr "Управувачот не ја поддржува оваа функција."
+
+#: strings.src#RID_STR_NO_ABS_ZERO.string.text
+msgid "An 'absolute(0)' call is not allowed."
+msgstr "Не е дозволен повик „absolute(0)“."
+
+#: strings.src#RID_STR_NO_RELATIVE.string.text
+msgid "Relative positioning is not allowed in this state."
+msgstr "Релативното позиционирање не е дозволено во оваа состојба."
+
+#: 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 "Редот не може да биде освежен кога множеството резултати е позиционирано по последниот ред."
+
+#: 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 "Не може да се вметне нов ред ако претходно множеството резултати не се постави на редот за вметнување."
+
+#: strings.src#RID_STR_NO_UPDATEROW.string.text
+msgid "A row cannot be modified in this state"
+msgstr "Редот не може да се измени во оваа состојба"
+
+#: strings.src#RID_STR_NO_DELETEROW.string.text
+msgid "A row cannot be deleted in this state."
+msgstr "Редот не може да се избрише во оваа состојба."
+
+#: strings.src#RID_STR_NO_TABLE_RENAME.string.text
+msgid "The driver does not support table renaming."
+msgstr "Управувачот не поддржува преименување на табели."
+
+#: strings.src#RID_STR_NO_ALTER_COLUMN_DEF.string.text
+msgid "The driver does not support the modification of column descriptions."
+msgstr "Управувачот не поддржува измени на описот на колони."
+
+#: 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 "Управувачот не поддржува измени на описот на колони со менување на името."
+
+#: 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 "Управувачот не поддржува измени на описот на колони со менување на индексот."
+
+#: strings.src#RID_STR_FILE_DOES_NOT_EXIST.string.text
+msgid "The file \"$file$\" does not exist."
+msgstr "Датотеката „$file$“ не постои."
+
+#: strings.src#RID_STR_TABLE_DOES_NOT_EXIST.string.text
+msgid "There exists no table named \"$table$\"."
+msgstr "Не постои табела со име „$table$“."
+
+#: strings.src#RID_STR_QUERY_DOES_NOT_EXIST.string.text
+msgid "There exists no query named \"$table$\"."
+msgstr "Не постои прашање со име \"$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 "Има табели во базата чии имиња се во конфликт со имињата на постојните прашања. За да имате корист од сите прашања и табели, осигурете се дека истите имаат различни имиња."
+
+#: strings.src#RID_STR_COMMAND_LEADING_TO_ERROR.string.text
+msgid ""
+"The SQL command leading to this error is:\n"
+"\n"
+"$command$"
+msgstr ""
+"SQL-наредбата што доведе до оваа грешка е:\n"
+"\n"
+"$command$"
+
+#: strings.src#RID_STR_STATEMENT_WITHOUT_RESULT_SET.string.text
+msgid "The SQL command does not describe a result set."
+msgstr "SQL-наредбата не опишува множество резултати."
+
+#: strings.src#RID_STR_NAME_MUST_NOT_BE_EMPTY.string.text
+msgid "The name must not be empty."
+msgstr "Името не смее да биде празно."
+
+#: strings.src#RID_STR_NO_NULL_OBJECTS_IN_CONTAINER.string.text
+msgid "The container cannot contain NULL objects."
+msgstr "Контејнерот не може да содржи NULL-објекти."
+
+#: strings.src#RID_STR_NAME_ALREADY_USED.string.text
+msgid "There already is an object with the given name."
+msgstr "Веќе постои објект со даденото име."
+
+#: strings.src#RID_STR_OBJECT_CONTAINER_MISMATCH.string.text
+msgid "This object cannot be part of this container."
+msgstr "Овој објект не може да биде дел од овој контејнер."
+
+#: strings.src#RID_STR_OBJECT_ALREADY_CONTAINED.string.text
+msgid "The object already is, with a different name, part of the container."
+msgstr "Објектот е веќе, со различно име, дел од контејнерот."
+
+#: strings.src#RID_STR_NAME_NOT_FOUND.string.text
+msgid "Unable to find the document '$name$'."
+msgstr "Не можам да го пронајдам документот '$name$'."
+
+#: strings.src#RID_STR_ERROR_WHILE_SAVING.string.text
+msgid ""
+"Could not save the document to $location$:\n"
+"$message$"
+msgstr ""
+
+#: strings.src#RID_NO_SUCH_DATA_SOURCE.string.text
+msgid ""
+"Error accessing data source '$name$':\n"
+"$error$"
+msgstr ""
+
+#: strings.src#RID_STR_NO_SUB_FOLDER.string.text
+#, fuzzy
+msgid "There exists no folder named \"$folder$\"."
+msgstr "Не постои табела со име „$table$“."
+
+#: strings.src#RID_STR_NO_DELETE_BEFORE_AFTER.string.text
+msgid "Cannot delete the before-first or after-last row."
+msgstr ""
+
+#: strings.src#RID_STR_NO_DELETE_INSERT_ROW.string.text
+msgid "Cannot delete the insert-row."
+msgstr ""
+
+#: strings.src#RID_STR_RESULT_IS_READONLY.string.text
+msgid "Result set is read only."
+msgstr ""
+
+#: strings.src#RID_STR_NO_DELETE_PRIVILEGE.string.text
+msgid "DELETE privilege not available."
+msgstr ""
+
+#: strings.src#RID_STR_ROW_ALREADY_DELETED.string.text
+msgid "Current row is already deleted."
+msgstr ""
+
+#: strings.src#RID_STR_UPDATE_FAILED.string.text
+#, fuzzy
+msgid "Current row could not be updated."
+msgstr "Врската не можеше да биде ажурирана."
+
+#: strings.src#RID_STR_NO_INSERT_PRIVILEGE.string.text
+msgid "INSERT privilege not available."
+msgstr ""
+
+#: strings.src#RID_STR_INTERNAL_ERROR.string.text
+msgid "Internal error: no statement object provided by the database driver."
+msgstr ""
+
+#: strings.src#RID_STR_EXPRESSION1.string.text
+msgid "Expression1"
+msgstr ""
+
+#: strings.src#RID_STR_NO_SQL_COMMAND.string.text
+msgid "No SQL command was provided."
+msgstr ""
+
+#: strings.src#RID_STR_INVALID_INDEX.string.text
+msgid "Invalid column index."
+msgstr ""
+
+#: strings.src#RID_STR_INVALID_CURSOR_STATE.string.text
+msgid "Invalid cursor state."
+msgstr ""
+
+#: strings.src#RID_STR_CURSOR_BEFORE_OR_AFTER.string.text
+msgid "The cursor points to before the first or after the last row."
+msgstr ""
+
+#: 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 ""
+
+#: strings.src#RID_STR_NO_BOOKMARK_DELETED.string.text
+msgid "The current row is deleted, and thus doesn't have a bookmark."
+msgstr ""
+
+#: strings.src#RID_STR_NO_EMBEDDING.string.text
+msgid "Embedding of database documents is not supported."
+msgstr ""
+
+#: strings.src#RID_STR_CONNECTION_REQUEST.string.text
+msgid "A connection for the following URL was requested \"$name$\"."
+msgstr ""
+
+#: strings.src#RID_STR_MISSING_EXTENSION.string.text
+msgid "The extension is not installed."
+msgstr ""
diff --git a/source/mk/dbaccess/source/ext/macromigration.po b/source/mk/dbaccess/source/ext/macromigration.po
new file mode 100644
index 00000000000..4ab1e6e56bf
--- /dev/null
+++ b/source/mk/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 15:00+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Подготви"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_BACKUP_DBDOC.string.text
+msgid "Backup Document"
+msgstr "Резервен документ"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_MIGRATE.string.text
+msgid "Migrate"
+msgstr "Мигрирај"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_SUMMARY.string.text
+msgctxt "macromigration.src#DLG_MACRO_MIGRATION.STR_STATE_SUMMARY.string.text"
+msgid "Summary"
+msgstr "Резиме"
+
+#: macromigration.src#DLG_MACRO_MIGRATION.modaldialog.text
+msgid "Database Document Macro Migration"
+msgstr "Миграција на макро од документ за база на податоци"
+
+#: macromigration.src#TP_PREPARE.FT_HEADER.fixedtext.text
+msgid "Welcome to the Database Macro Migration Wizard"
+msgstr "Добредојдовте во волшебникот за миграција на макро на база на податоци"
+
+#: 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 ""
+"Овој волшебник ќе ве води низ задачата за миграција на вашите макроа.\n"
+"\n"
+"Откако ќе го завршите, сите макроа коа порано беа вградени во формуларите и извештаите на тековниот документ за база на податоци ќе бидат преместени во самиот документ. Во овој смисол, библиотеките ќе бидат преименувани по потреба.\n"
+"\n"
+"Ако вашите формулари и извештаи содржат референци за овие макроа, тие ќе бидат прилагодени, таму каде што е тоа возможно.\n"
+"\n"
+"Пред да почнеме со миграцијата, сите формулари, извештаи, барања и табели кои припаѓаат на документот море да бидат затворени. Притиснете „Следно“ за да го сторите тоа."
+
+#: 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 "Не можат да се затворат сите објекти. Ве молиме, затворете ги рачно и повторно пуштете го волшебникот."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_HEADER.fixedtext.text
+msgid "Backup your Document"
+msgstr "Направете резервна копија од документот."
+
+#: 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 "За да ви дозволи да одите назад на состојбата пред миграцијата, документот на базата на податоци ќе биде зачуван на локација по ваш избор како резервна копија. Секоја промена направена од волшебникот ќе биде извршена во оригиналниот документ, а резервната копија ќе остане негибната."
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.FT_SAVE_AS_LABEL.fixedtext.text
+msgid "Save To:"
+msgstr "Зачувај во:"
+
+#: macromigration.src#TP_SAVE_DBDOC_AS.PB_BROWSE_SAVE_AS_LOCATION.pushbutton.text
+msgid "Browse ..."
+msgstr "Прелистај ..."
+
+#: 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 "Притиснете „Следно“ за да ја зачувате копијата од вашиот документ и да почнете со миграција."
+
+#: macromigration.src#TP_MIGRATE.FT_HEADER.fixedtext.text
+msgid "Migration Progress"
+msgstr "Прогрес на миграцијата"
+
+#: 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 "Документот на базата на податоци содржи $forms$ формулар(и) и $reports$ извештај(и), кои во моментов се процесираат."
+
+#: macromigration.src#TP_MIGRATE.FT_CURRENT_OBJECT_LABEL.fixedtext.text
+msgid "Current object:"
+msgstr "Тековен објект:"
+
+#: macromigration.src#TP_MIGRATE.FT_CURRENT_PROGRESS_LABEL.fixedtext.text
+msgid "Current progress:"
+msgstr "Тековен прогрес:"
+
+#: macromigration.src#TP_MIGRATE.FT_ALL_PROGRESS_LABEL.fixedtext.text
+msgid "Overall progress:"
+msgstr "Вкупен прогрес:"
+
+#: 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 "документ $current$ од $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 "Сите формулари и извештаи успешно беа процесирани. Притиснете „Следно“ за да добиете детално резиме."
+
+#: macromigration.src#TP_SUMMARY.FT_HEADER.fixedtext.text
+msgctxt "macromigration.src#TP_SUMMARY.FT_HEADER.fixedtext.text"
+msgid "Summary"
+msgstr "Резиме"
+
+#: 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 "Миграцијата беше успешна. Подолу е дневникот на акциите кои беа извршени на вашиот документ."
+
+#: macromigration.src#TP_SUMMARY.STR_UNSUCCESSFUL.string.text
+msgid "The migration was not successful. Examine the migration log below for details."
+msgstr "Миграцијата не беше успешна. Испитајте го дневникот на миграцијата подолу за детали."
+
+#. This refers to a form document inside a database document.
+#: macromigration.src#STR_FORM.string.text
+msgid "Form '$name$'"
+msgstr "Форма '$name$'"
+
+#. This refers to a report document inside a database document.
+#: macromigration.src#STR_REPORT.string.text
+msgid "Report '$name$'"
+msgstr "Извештај '$name$'"
+
+#: macromigration.src#STR_OVERALL_PROGRESS.string.text
+msgctxt "macromigration.src#STR_OVERALL_PROGRESS.string.text"
+msgid "document $current$ of $overall$"
+msgstr "документ $current$ од $overall$"
+
+#: macromigration.src#STR_DATABASE_DOCUMENT.string.text
+msgid "Database Document"
+msgstr "Документ на базата на податоци"
+
+#: macromigration.src#STR_SAVED_COPY_TO.string.text
+msgid "saved copy to $location$"
+msgstr "зачувана копија на $location$"
+
+#: macromigration.src#STR_MOVED_LIBRARY.string.text
+msgid "migrated $type$ library '$old$' to '$new$'"
+msgstr "мигрирана $type$ библиотека '$old$' во '$new$'"
+
+#: macromigration.src#STR_LIBRARY_TYPE_AND_NAME.string.text
+msgid "$type$ library '$library$'"
+msgstr "$type$ библиотека '$library$'"
+
+#: macromigration.src#STR_MIGRATING_LIBS.string.text
+msgid "migrating libraries ..."
+msgstr "мигрирам библиотеки ..."
+
+#: 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 "Јава"
+
+#: macromigration.src#STR_PYTHON.string.text
+msgid "Python"
+msgstr "Python"
+
+#: macromigration.src#STR_DIALOG.string.text
+msgid "dialog"
+msgstr "дијалог"
+
+#: macromigration.src#STR_ERRORS.string.text
+msgid "Error(s)"
+msgstr "Грешка(и)"
+
+#: macromigration.src#STR_WARNINGS.string.text
+msgid "Warnings"
+msgstr "Предупредувања"
+
+#: macromigration.src#STR_EXCEPTION.string.text
+#, fuzzy
+msgid "caught exception:"
+msgstr "фатени исклучоци: "
+
+#: macromigration.src#ERR_INVALID_BACKUP_LOCATION.errorbox.text
+msgid "You need to choose a backup location other than the document location itself."
+msgstr "Треба да изберете локација за сигурносна копија која е на друго место од самиот документ."
+
+#: macromigration.src#STR_INVALID_NUMBER_ARGS.string.text
+msgid "Invalid number of initialization arguments. Expected 1."
+msgstr ""
+
+#: macromigration.src#STR_NO_DATABASE.string.text
+msgid "No database document found in the initialization arguments."
+msgstr ""
+
+#: macromigration.src#STR_NOT_READONLY.string.text
+msgid "Not applicable to read-only documents."
+msgstr ""
diff --git a/source/mk/dbaccess/source/sdbtools/resource.po b/source/mk/dbaccess/source/sdbtools/resource.po
new file mode 100644
index 00000000000..f89fd87b6eb
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Не може да им дадете исто име и на табела и на прашање. Користете име што не е употребено од прашање или табела."
+
+#: sdbt_strings.src#STR_BASENAME_TABLE.string.text
+msgid "Table"
+msgstr "Табела"
+
+#: sdbt_strings.src#STR_BASENAME_QUERY.string.text
+msgid "Query"
+msgstr "Прашање"
+
+#: sdbt_strings.src#STR_CONN_WITHOUT_QUERIES_OR_TABLES.string.text
+msgid "The given connection is no valid query and/or tables supplier."
+msgstr "Даденото поврзување не е правилно прашање и/или давател на табели."
+
+#: sdbt_strings.src#STR_NO_TABLE_OBJECT.string.text
+msgid "The given object is no table object."
+msgstr "Дадениот објект не е табеларен објект."
+
+#: sdbt_strings.src#STR_INVALID_COMPOSITION_TYPE.string.text
+msgid "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
+msgstr "Неправилен тип на состав - му треба вредност од 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 "Неправилен тип на наредба - дозволени се само TABLE и AND QUERY од com.sun.star.sdb.CommandType."
diff --git a/source/mk/dbaccess/source/ui/app.po b/source/mk/dbaccess/source/ui/app.po
new file mode 100644
index 00000000000..f0a2fb4f31e
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Креирај форма во преглед за дизајн..."
+
+#: app.src#RID_STR_NEW_FORM_AUTO.string.text
+msgid "Use Wizard to Create Form..."
+msgstr "Користи волшебник за креирање форма..."
+
+#: app.src#RID_STR_NEW_REPORT_AUTO.string.text
+msgid "Use Wizard to Create Report..."
+msgstr "Користи волшебник за креирање извештај..."
+
+#: app.src#RID_STR_NEW_REPORT.string.text
+msgid "Create Report in Design View..."
+msgstr "Креирај извештај во преглед за дизајн..."
+
+#: app.src#RID_STR_NEW_QUERY.string.text
+msgid "Create Query in Design View..."
+msgstr "Креирај прашање во преглед за дизајн..."
+
+#: app.src#RID_STR_NEW_QUERY_SQL.string.text
+msgid "Create Query in SQL View..."
+msgstr "Креирај прашање во SQL-преглед..."
+
+#: app.src#RID_STR_NEW_QUERY_AUTO.string.text
+msgid "Use Wizard to Create Query..."
+msgstr "Користи волшебник за креирање на прашање..."
+
+#: app.src#RID_STR_NEW_TABLE.string.text
+msgid "Create Table in Design View..."
+msgstr "Креирај табела во преглед за дизајн..."
+
+#: app.src#RID_STR_NEW_TABLE_AUTO.string.text
+msgid "Use Wizard to Create Table..."
+msgstr "Користи волшебник за креирање табела..."
+
+#: app.src#RID_STR_NEW_VIEW.string.text
+msgid "Create View..."
+msgstr "Креирај поглед..."
+
+#: app.src#RID_STR_FORMS_CONTAINER.string.text
+msgid "Forms"
+msgstr "Форми"
+
+#: app.src#RID_STR_REPORTS_CONTAINER.string.text
+msgid "Reports"
+msgstr "Извештаи"
+
+#: app.src#RID_MENU_APP_NEW.SID_APP_NEW_FORM.menuitem.text
+msgid "Form..."
+msgstr "Форма..."
+
+#: 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 "Извештај..."
+
+#: app.src#RID_MENU_APP_NEW.SID_DB_NEW_VIEW_SQL.menuitem.text
+msgid "View (Simple)..."
+msgstr "Поглед (едноставен)..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_PASTE_SPECIAL.menuitem.text
+msgid "Paste Special..."
+msgstr "Вметни специјално..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_DELETE.menuitem.text
+msgid "Delete"
+msgstr "Избриши"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_RENAME.menuitem.text
+msgid "Rename"
+msgstr "Преименувај"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_EDIT.menuitem.text
+msgid "Edit"
+msgstr "Уреди"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_EDIT_SQL_VIEW.menuitem.text
+msgid "Edit in SQL View..."
+msgstr "Уредувај во SQL-преглед..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_OPEN.menuitem.text
+msgid "Open"
+msgstr "Отвори"
+
+#: app.src#RID_MENU_APP_EDIT.SID_DB_APP_CONVERTTOVIEW.menuitem.text
+msgid "Create as View"
+msgstr "Креирај како поглед"
+
+#: app.src#RID_MENU_APP_EDIT.SID_FORM_CREATE_REPWIZ_PRE_SEL.menuitem.text
+msgid "Form Wizard..."
+msgstr "Волшебник за форми..."
+
+#: 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 "Извештај..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_REPORT_CREATE_REPWIZ_PRE_SEL.menuitem.text
+msgid "Report Wizard..."
+msgstr "Волшебник за извештаи..."
+
+#: app.src#RID_MENU_APP_EDIT.SID_SELECTALL.menuitem.text
+msgid "Select All"
+msgstr "Избери ги сите"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSPROPS.menuitem.text
+#, fuzzy
+msgid "Properties..."
+msgstr "Својства"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSCONNECTION_TYPE.menuitem.text
+#, fuzzy
+msgid "Connection Type..."
+msgstr "Тип на поврзување"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.SID_DB_APP_DSADVANCED_SETTINGS.menuitem.text
+#, fuzzy
+msgid "Advanced Settings..."
+msgstr "Напредни поставувања"
+
+#: app.src#RID_MENU_APP_EDIT.MN_PROPS.menuitem.text
+msgid "~Database"
+msgstr "~База на податоци"
+
+#: app.src#STR_QUERY_DELETE_DATASOURCE.string.text
+msgid "Do you want to delete the data source '%1'?"
+msgstr "Дали сакате да го избришете изворот на податоци „%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 "Волшебникот ќе Ве води низ потребните чекори за да креирате извештај."
+
+#: app.src#RID_STR_FORMS_HELP_TEXT.string.text
+msgid "Create a form by specifying the record source, controls, and control properties."
+msgstr "Креирајте форма со одредување на изворот на записи, контролите и на својствата на контролите."
+
+#: app.src#RID_STR_REPORT_HELP_TEXT.string.text
+msgid "Create a report by specifying the record source, controls, and control properties."
+msgstr "Креирајте извештај со одредување на изворот на записи, контролите и на својствата на контролите."
+
+#: 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 "Волшебникот ќе Ве води низ потребните чекори за да креирате форма."
+
+#: 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 "Креирајте прашање одредувајќи ги филтрите, влезните табели, имињата на полињата и својствата за подредување или групирање."
+
+#: app.src#RID_STR_QUERIES_HELP_TEXT_SQL.string.text
+#, fuzzy
+msgid "Create a query entering an SQL statement directly."
+msgstr "Креирајте прашање со внесување на SQL-израз директно."
+
+#: 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 "Волшебникот ќе Ве води низ потребните чекори за да креирате прашање."
+
+#: 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 "Креирајте табела одредувајќи ги имињата на полињата и својствата, како и типовите податоци."
+
+#: 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 "Изберете од дадените примери за деловни и лични табели што ќе ги приспособите за да креирате табела."
+
+#: 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 "Креирајте преглед одредувајќи ги табелите и имињата на полињата што сакате да бидат видливи."
+
+#: app.src#RID_STR_VIEWS_HELP_TEXT_WIZARD.string.text
+msgid "Opens the view wizard"
+msgstr "Го отвора волшебникот за поглед"
+
+#: app.src#STR_DATABASE.string.text
+msgid "Database"
+msgstr "База на податоци"
+
+#: app.src#STR_TASKS.string.text
+msgid "Tasks"
+msgstr "Задачи"
+
+#: app.src#STR_DESCRIPTION.string.text
+msgid "Description"
+msgstr "Опис"
+
+#: app.src#STR_PREVIEW.string.text
+msgid "Preview"
+msgstr "Преглед"
+
+#: app.src#STR_DISABLEPREVIEW.string.text
+msgid "Disable Preview"
+msgstr "Оневозможи преглед"
+
+#: app.src#APP_SAVEMODIFIED.querybox.text
+msgid ""
+"The database has been modified.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Базата на податоци е изменета.\n"
+"Дали сакате да ги зачувате измените?"
+
+#: 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 ""
+"Типот на поврзување е изменет.\n"
+"За промените да имаат ефект, сите форми, извештаи, барања и табели мора да бидат затворени.\n"
+"\n"
+"Дали сакате да ги затворите сите документи сега?"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_DISABLE_PREVIEW.menuitem.text
+msgid "None"
+msgstr "Нема"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_VIEW_DOCINFO_PREVIEW.menuitem.text
+msgid "Document Information"
+msgstr "Информации за документот"
+
+#: app.src#RID_MENU_APP_PREVIEW.SID_DB_APP_VIEW_DOC_PREVIEW.menuitem.text
+msgid "Document"
+msgstr "Документ"
+
+#: app.src#RID_STR_FORM.string.text
+msgid "Form"
+msgstr "Форма"
+
+#: app.src#RID_STR_REPORT.string.text
+msgid "Report"
+msgstr "Извештај"
+
+#: app.src#STR_FRM_LABEL.string.text
+msgid "F~orm name"
+msgstr "И~ме на форма"
+
+#: app.src#STR_RPT_LABEL.string.text
+msgid "~Report name"
+msgstr "Име на и~звештај"
+
+#: app.src#STR_FOLDER_LABEL.string.text
+msgid "F~older name"
+msgstr "Име на ~папка"
+
+#: app.src#STR_SUB_DOCS_WITH_SCRIPTS.string.text
+msgid "The document contains forms or reports with embedded macros."
+msgstr "Документот содржи форми и извештаи со вградени макроа."
+
+#: 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 ""
+"Макроата треба да бидат вградени во самиот документ на базата на податоци.\n"
+"\n"
+"Можете да продолжите да го користите документот како и порано, меѓутоа, ве охрабруваме да ги мигрирате вашите макроа. Ставката во менито „Алатки / Мигрирај макроа ...“ ќе ви помогне во тоа.\n"
+"\n"
+"Запомнете дека нема да можете да ги вградите макроата во самиот документ на базата на податоци се додека не е направена миграцијата. "
+
+#: app.src#RID_STR_EMBEDDED_DATABASE.string.text
+msgid "Embedded database"
+msgstr "Вгнездена база на податоци"
+
+#: app.src#RID_STR_NO_DIFF_CAT.string.text
+msgid "You cannot select different categories."
+msgstr ""
+
+#: app.src#RID_STR_UNSUPPORTED_OBJECT_TYPE.string.text
+msgid "Unsupported object type found ($type$)."
+msgstr ""
diff --git a/source/mk/dbaccess/source/ui/browser.po b/source/mk/dbaccess/source/ui/browser.po
new file mode 100644
index 00000000000..5baace3c48a
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Табела #"
+
+#: sbagrid.src#RID_SBA_GRID_COLCTXMENU.ID_BROWSER_COLATTRSET.menuitem.text
+msgid "Column ~Format..."
+msgstr "Формат на ~колона..."
+
+#: sbagrid.src#RID_SBA_GRID_COLCTXMENU.ID_BROWSER_COLUMNINFO.menuitem.text
+msgid "Copy Column D~escription"
+msgstr "Копирај ~опис на колона"
+
+#: sbagrid.src#RID_SBA_GRID_ROWCTXMENU.ID_BROWSER_TABLEATTR.menuitem.text
+msgid "Table Format..."
+msgstr "Формат на табела..."
+
+#: sbagrid.src#RID_SBA_GRID_ROWCTXMENU.ID_BROWSER_ROWHEIGHT.menuitem.text
+msgid "Row Height..."
+msgstr "Висина на ред..."
+
+#: sbagrid.src#RID_STR_UNDO_MODIFY_RECORD.string.text
+msgid "Undo: Data Input"
+msgstr "Отповикај: Внес на податоци"
+
+#: sbagrid.src#RID_STR_SAVE_CURRENT_RECORD.string.text
+msgid "Save current record"
+msgstr "Зачувај го тековниот запис"
+
+#: sbagrid.src#STR_QRY_TITLE.string.text
+msgid "Query #"
+msgstr "Прашање #"
+
+#: sbagrid.src#STR_TBL_TITLE.string.text
+msgctxt "sbagrid.src#STR_TBL_TITLE.string.text"
+msgid "Table #"
+msgstr "Табела #"
+
+#: sbagrid.src#STR_VIEW_TITLE.string.text
+msgid "View #"
+msgstr "Поглед #"
+
+#: sbagrid.src#STR_NAME_ALREADY_EXISTS.string.text
+msgid "The name \"#\" already exists."
+msgstr "Името „#“ веќе постои."
+
+#: sbagrid.src#STR_NO_COLUMNNAME_MATCHING.string.text
+msgid "No matching column names were found."
+msgstr "Не беа пронајдени имиња на колони што се совпаѓаат."
+
+#: sbagrid.src#STR_ERROR_OCCURRED_WHILE_COPYING.string.text
+msgid "An error occurred. Do you want to continue copying?"
+msgstr "Се појави грешка. Дали сакате да продолжите со копирањето?"
+
+#: sbagrid.src#STR_DATASOURCE_GRIDCONTROL_NAME.string.text
+msgid "Data source table view"
+msgstr "Преглед на табела на извор на податоци"
+
+#: sbagrid.src#STR_DATASOURCE_GRIDCONTROL_DESC.string.text
+msgid "Shows the selected table or query."
+msgstr "Ја прикажува избраната табела или прашање."
+
+#: sbabrw.src#QUERY_BRW_SAVEMODIFIED.querybox.text
+msgid ""
+"The current record has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Тековниот запис е изменет.\n"
+"Дали сакате да ги зачувате промените?"
+
+#: sbabrw.src#QUERY_BRW_DELETE_ROWS.querybox.text
+msgid "Do you want to delete the selected data?"
+msgstr "Дали сакате да ги избришете избраните податоци?"
+
+#: sbabrw.src#RID_STR_DATABROWSER_FILTERED.string.text
+msgid "(filtered)"
+msgstr "(филтрирано)"
+
+#: sbabrw.src#SBA_BROWSER_SETTING_ORDER.string.text
+msgid "Error setting the sort criteria"
+msgstr "Грешка при поставувањето на критериумот за подредување"
+
+#: sbabrw.src#SBA_BROWSER_SETTING_FILTER.string.text
+msgid "Error setting the filter criteria"
+msgstr "Грешка при поставувањето на критериумот за филтрирање"
+
+#: sbabrw.src#RID_STR_CONNECTION_LOST.string.text
+msgid "Connection lost"
+msgstr "Врската е изгубена"
+
+#: sbabrw.src#RID_STR_QUERIES_CONTAINER.string.text
+msgid "Queries"
+msgstr "Барања"
+
+#: sbabrw.src#RID_STR_TABLES_CONTAINER.string.text
+msgid "Tables"
+msgstr "Табели"
+
+#: sbabrw.src#MID_EDIT_DATABASE.#define.text
+msgid "Edit ~Database File..."
+msgstr "Уреди ~база на податоци..."
+
+#: sbabrw.src#MID_ADMINISTRATE.#define.text
+msgid "Registered databases ..."
+msgstr "Регистрирани бази на податоци ..."
+
+#: sbabrw.src#MID_CLOSECONN.#define.text
+msgid "Disco~nnect"
+msgstr "Ис~клучи се"
+
+#: sbabrw.src#STR_TITLE_CONFIRM_DELETION.string.text
+msgid "Confirm Deletion"
+msgstr "Потврда за бришење"
+
+#: sbabrw.src#STR_QUERY_DELETE_TABLE.string.text
+msgid "Do you want to delete the table '%1'?"
+msgstr "Дали сакате да ја избришете табелата „%1“?"
+
+#: sbabrw.src#QUERY_BRW_DELETE_QUERY_CONFIRM.querybox.text
+msgid "The query already exists. Do you want to delete it?"
+msgstr "Прашањето веќе постои. Дали сакате да го избришете?"
+
+#: sbabrw.src#QUERY_CONNECTION_LOST.querybox.text
+msgid "The connection to the database has been lost. Do you want to reconnect?"
+msgstr "Врската со базата на податоци е прекината. Дали сакате да се поврзете повторно?"
+
+#: sbabrw.src#STR_OPENTABLES_WARNINGS.string.text
+msgid "Warnings encountered"
+msgstr "Забележани се предупредувања"
+
+#: sbabrw.src#STR_OPENTABLES_WARNINGS_DETAILS.string.text
+msgid "While retrieving the tables, warnings were reported by the database connection."
+msgstr "При преземање на табелите, беа забележани предупредувања од поврзувањето со базата на податоци."
+
+#: sbabrw.src#STR_CONNECTING_DATASOURCE.string.text
+msgid "Connecting to \"$name$\" ..."
+msgstr "Се поврзувам со „$name$“ ..."
+
+#: sbabrw.src#STR_LOADING_QUERY.string.text
+msgid "Loading query $name$ ..."
+msgstr "Го вчитувам прашањето $name$ ..."
+
+#: sbabrw.src#STR_LOADING_TABLE.string.text
+msgid "Loading table $name$ ..."
+msgstr "Ја вчитувам табелата $name$ ..."
+
+#: sbabrw.src#STR_NO_TABLE_FORMAT_INSIDE.string.text
+msgid "No table format could be found."
+msgstr "Не беше пронајден формат на табела."
+
+#: sbabrw.src#STR_COULDNOTCONNECT_DATASOURCE.string.text
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "Поврзувањето со изворот на податоци „$name$“ не можеше да се воспостави."
+
+#: sbabrw.src#RID_MENU_REFRESH_DATA.ID_BROWSER_REFRESH_REBUILD.menuitem.text
+msgid "Rebuild"
+msgstr "Изгради повторно"
diff --git a/source/mk/dbaccess/source/ui/control.po b/source/mk/dbaccess/source/ui/control.po
new file mode 100644
index 00000000000..44568d34945
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Измени SQL-наредби"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_NAME.string.text
+msgid "Table name"
+msgstr "Име на табела"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_INSERT.string.text
+msgid "Insert data"
+msgstr "Вметнување податоци"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_DELETE.string.text
+msgid "Delete data"
+msgstr "Бришење податоци"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_UPDATE.string.text
+msgid "Modify data"
+msgstr "Измена на податоци"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_ALTER.string.text
+msgid "Alter structure"
+msgstr "Измена на структурата"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_SELECT.string.text
+msgid "Read data"
+msgstr "Читање податоци"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_REFERENCE.string.text
+msgid "Modify references"
+msgstr "Измена на референци"
+
+#: TableGrantCtrl.src#STR_TABLE_PRIV_DROP.string.text
+msgid "Drop structure"
+msgstr "Бришење структура"
+
+#: tabletree.src#MENU_TABLETREE_POPUP.MID_SORT_ASCENDING.menuitem.text
+msgid "Sort Ascending"
+msgstr "Подреди растечки"
+
+#: tabletree.src#MENU_TABLETREE_POPUP.MID_SORT_DECENDING.menuitem.text
+msgid "Sort Descending"
+msgstr "Подреди опаѓачки"
+
+#: tabletree.src#STR_COULDNOTCREATE_DRIVERMANAGER.string.text
+msgid "Cannot connect to the SDBC driver manager (#servicename#)."
+msgstr "Не можам да се поврзам со менаџерот за SDBC-управувачи (#servicename#)."
+
+#: tabletree.src#STR_NOREGISTEREDDRIVER.string.text
+msgid "A driver is not registered for the URL #connurl#."
+msgstr "Не е регистриран управувач за URL #connurl#."
+
+#: tabletree.src#STR_COULDNOTCONNECT.string.text
+msgid "No connection could be established for the URL #connurl#."
+msgstr "Не можеше да се воспостави поврзување за URL #connurl#."
+
+#: tabletree.src#STR_COULDNOTCONNECT_PLEASECHECK.string.text
+msgid "Please check the current settings, for example user name and password."
+msgstr "Проверете ги тековните поставувања, на пример, корисничко име и лозинка."
+
+#: tabletree.src#STR_NOTABLEINFO.string.text
+msgid "Successfully connected, but information about database tables is not available."
+msgstr "Успешно поврзано, но информациите за табелите од базата на податоци не се достапни."
+
+#: tabletree.src#STR_ALL_TABLES.string.text
+msgid "All tables"
+msgstr "Сите табели"
+
+#: tabletree.src#STR_ALL_VIEWS.string.text
+msgid "All views"
+msgstr "Сите погледи"
+
+#: tabletree.src#STR_ALL_TABLES_AND_VIEWS.string.text
+msgid "All tables and views"
+msgstr "Сите табели и погледи"
diff --git a/source/mk/dbaccess/source/ui/dlg.po b/source/mk/dbaccess/source/ui/dlg.po
new file mode 100644
index 00000000000..9bba8a39e5b
--- /dev/null
+++ b/source/mk/dbaccess/source/ui/dlg.po
@@ -0,0 +1,1612 @@
+#. 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 15:00+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Поставувања за текстуално поврзување"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_NEW.toolboxitem.text
+msgid "New Index"
+msgstr "Нов индекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_DROP.toolboxitem.text
+msgid "Delete Current Index"
+msgstr "Избриши тековен индекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_RENAME.toolboxitem.text
+msgid "Rename Current Index"
+msgstr "Преименувај тековен индекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_SAVE.toolboxitem.text
+msgid "Save Current Index"
+msgstr "Зачувај тековен индекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.TLB_ACTIONS.ID_INDEX_RESET.toolboxitem.text
+msgid "Reset Current Index"
+msgstr "Ресетирај тековен индекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FL_INDEXDETAILS.fixedline.text
+msgid "Index details"
+msgstr "Детали на индекс"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FT_DESC_LABEL.fixedtext.text
+msgid "Index identifier:"
+msgstr "Идентификатор на индекс:"
+
+#: indexdialog.src#DLG_INDEXDESIGN.CB_UNIQUE.checkbox.text
+msgid "~Unique"
+msgstr "~Уникатен"
+
+#: indexdialog.src#DLG_INDEXDESIGN.FT_FIELDS.fixedtext.text
+msgid "Fields"
+msgstr "Полиња"
+
+#: indexdialog.src#DLG_INDEXDESIGN.PB_CLOSE.pushbutton.text
+msgctxt "indexdialog.src#DLG_INDEXDESIGN.PB_CLOSE.pushbutton.text"
+msgid "~Close"
+msgstr "~Затвори"
+
+#: indexdialog.src#DLG_INDEXDESIGN.modaldialog.text
+msgctxt "indexdialog.src#DLG_INDEXDESIGN.modaldialog.text"
+msgid "Indexes"
+msgstr "Индекси"
+
+#: indexdialog.src#STR_TAB_INDEX_SORTORDER.string.text
+msgctxt "indexdialog.src#STR_TAB_INDEX_SORTORDER.string.text"
+msgid "Sort order"
+msgstr "Редослед на подредување"
+
+#: indexdialog.src#STR_TAB_INDEX_FIELD.string.text
+msgid "Index field"
+msgstr "Индексно поле"
+
+#: indexdialog.src#STR_ORDER_ASCENDING.string.text
+msgid "Ascending"
+msgstr "Растечки"
+
+#: indexdialog.src#STR_ORDER_DESCENDING.string.text
+msgid "Descending"
+msgstr "Опаѓачки"
+
+#: indexdialog.src#STR_CONFIRM_DROP_INDEX.string.text
+msgid "Do you really want to delete the index '$name$'?"
+msgstr "Дали навистина сакате да го избришете индексот „$name$“?"
+
+#: indexdialog.src#STR_LOGICAL_INDEX_NAME.string.text
+msgid "index"
+msgstr "индекс"
+
+#: indexdialog.src#ERR_NEED_INDEX_FIELDS.errorbox.text
+msgid "The index must contain at least one field."
+msgstr "Индексот мора да содржи барем едно поле."
+
+#: indexdialog.src#ERR_NEED_INDEX_FIELDS.errorbox.title
+msgid "Save Index"
+msgstr "Зачувување индекс"
+
+#: indexdialog.src#QUERY_SAVE_CURRENT_INDEX.querybox.text
+msgid "Do you want to save the changes made to the current index?"
+msgstr "Дали сакате да ги зачувате измените направени на тековниот индекс?"
+
+#: indexdialog.src#QUERY_SAVE_CURRENT_INDEX.querybox.title
+msgid "Exit Index Design"
+msgstr "Излез од дизајнирање индекси"
+
+#: indexdialog.src#STR_INDEX_NAME_ALREADY_USED.string.text
+msgid "There is already another index named \"$name$\"."
+msgstr "Веќе постои индекс со име „$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 "Во дефиницијата на индексот колоните од табелите не смее да се појавуваат повеќе од еднаш. Сепак, сте внесле колона со име „$name$“ двапати."
+
+#: dlgattr.src#DLG_ATTR.1.pushbutton.text
+msgid "Bac~k"
+msgstr "Наза~д"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_CHAR.string.text
+msgid "Font"
+msgstr "Фонт"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_NUMBER.string.text
+msgid "Format"
+msgstr "Формат"
+
+#: dlgattr.src#DLG_ATTR.TP_ATTR_ALIGN.string.text
+msgid "Alignment"
+msgstr "Порамнување"
+
+#: dlgattr.src#DLG_ATTR.ST_ROW.string.text
+msgid "Table Format"
+msgstr "Формат на табела"
+
+#: dlgattr.src#DLG_ATTR.tabdialog.text
+msgid "Field Format"
+msgstr "Формат на поле"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.RB_CASE_TABLES.radiobutton.text
+msgid "Tables"
+msgstr "Табели"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.RB_CASE_QUERIES.radiobutton.text
+msgid "Queries"
+msgstr "Прашања"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.PB_ADDTABLE.pushbutton.text
+msgid "~Add"
+msgstr "~Додај"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.PB_CLOSE.cancelbutton.text
+msgctxt "adtabdlg.src#DLG_JOIN_TABADD.PB_CLOSE.cancelbutton.text"
+msgid "~Close"
+msgstr "~Затвори"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.STR_ADD_TABLES.string.text
+msgid "Add Tables"
+msgstr "Додавање табели"
+
+#: adtabdlg.src#DLG_JOIN_TABADD.STR_ADD_TABLE_OR_QUERY.string.text
+msgid "Add Table or Query"
+msgstr "Додавање табела или прашање"
+
+#: paramdialog.src#DLG_PARAMETERS.FL_PARAMS.fixedline.text
+msgid "~Parameters"
+msgstr "Па~раметри"
+
+#: paramdialog.src#DLG_PARAMETERS.FT_VALUE.fixedtext.text
+msgid "~Value"
+msgstr "~Вредност"
+
+#: paramdialog.src#DLG_PARAMETERS.BT_TRAVELNEXT.pushbutton.text
+msgid "~Next"
+msgstr "~Следно"
+
+#: 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 "Внесот не може да се претвори во валидна вредност за колоната „$name$“"
+
+#: paramdialog.src#DLG_PARAMETERS.modaldialog.text
+msgid "Parameter Input"
+msgstr "Внес на параметри"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_DESCRIPTION.fixedtext.text
+msgid "Please enter a name for the object to be created:"
+msgstr "Внесете име за објектот што треба да се креира:"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_CATALOG.fixedtext.text
+msgid "~Catalog"
+msgstr "~Каталог"
+
+#: dlgsave.src#DLG_SAVE_AS.FT_SCHEMA.fixedtext.text
+msgid "~Schema"
+msgstr "Ше~ма"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TBL_LABEL.string.text
+msgid "~Table Name"
+msgstr "Име на ~табела"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_VW_LABEL.string.text
+msgid "~Name of table view"
+msgstr "И~ме на поглед на табела"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_QRY_LABEL.string.text
+msgid "~Query name"
+msgstr "Име на п~рашање"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TITLE_RENAME.string.text
+msgid "Rename to"
+msgstr "Преименување во"
+
+#: dlgsave.src#DLG_SAVE_AS.STR_TITLE_PASTE_AS.string.text
+msgid "Insert as"
+msgstr "Вметнување како"
+
+#: dlgsave.src#DLG_SAVE_AS.modaldialog.text
+msgid "Save As"
+msgstr "Зачувување како"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FL_DETAILS.fixedline.text
+msgctxt "sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FL_DETAILS.fixedline.text"
+msgid "Details"
+msgstr "Детали"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FT_ERRORLIST.fixedtext.text
+msgid "Error ~list:"
+msgstr "~Листа на грешки:"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.FT_DESCRIPTION.fixedtext.text
+msgid "~Description:"
+msgstr "~Опис:"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.STR_EXCEPTION_STATUS.string.text
+msgid "SQL Status"
+msgstr "SQL-статус"
+
+#: sqlmessage.src#DLG_SQLEXCEPTIONCHAIN.STR_EXCEPTION_ERRORCODE.string.text
+msgid "Error code"
+msgstr "Код на грешката"
+
+#: 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 "Честа причина за оваа грешка е несоодветното поставување на множеството знаци за јазикот на Вашата база на податоци. Проверете ги поставувањата со избирање Уреди - База на податоци - Својства"
+
+#: sqlmessage.src#STR_EXCEPTION_ERROR.string.text
+msgid "Error"
+msgstr "Грешка"
+
+#: sqlmessage.src#STR_EXCEPTION_WARNING.string.text
+msgid "Warning"
+msgstr "Предупредување"
+
+#: sqlmessage.src#STR_EXCEPTION_INFO.string.text
+msgid "Information"
+msgstr "Информации"
+
+#: sqlmessage.src#STR_EXCEPTION_DETAILS.string.text
+msgctxt "sqlmessage.src#STR_EXCEPTION_DETAILS.string.text"
+msgid "Details"
+msgstr "Детали"
+
+#: 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 "Креирај нова папка"
+
+#: 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 "Едно ниво нагоре"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.FT_EXPLORERFILE_FILENAME.fixedtext.text
+msgid "File ~name:"
+msgstr "Име на ~датотека:"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_SAVE.pushbutton.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.BTN_EXPLORERFILE_SAVE.pushbutton.text"
+msgid "Save"
+msgstr "Зачувaj"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.STR_PATHNAME.string.text
+msgid "~Path:"
+msgstr "~Патека:"
+
+#: CollectionView.src#DLG_COLLECTION_VIEW.modaldialog.text
+msgctxt "CollectionView.src#DLG_COLLECTION_VIEW.modaldialog.text"
+msgid "Save"
+msgstr "Зачувување"
+
+#: CollectionView.src#STR_NEW_FOLDER.string.text
+msgid "Folder"
+msgstr "Папка"
+
+#: CollectionView.src#STR_ALREADYEXISTOVERWRITE.string.text
+msgid "The file already exists. Overwrite?"
+msgstr "Датотеката веќе постои. Дали ќе запишете врз неа?"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_DBWIZARDTITLE.string.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.STR_DBWIZARDTITLE.string.text"
+msgid "Database Wizard"
+msgstr "Волшебник за бази на податоци"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_INTROPAGE.string.text
+msgid "Select database"
+msgstr "Избирање база на податоци"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_DBASE.string.text
+msgid "Set up dBASE connection"
+msgstr "Поврзување со dBASE"
+
+#: 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 "Поврзување со текст. датотеки"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MSACCESS.string.text
+msgid "Set up Microsoft Access connection"
+msgstr "Поврзување со Microsoft Access"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_LDAP.string.text
+msgid "Set up LDAP connection"
+msgstr "LDAP-поврзување"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ADO.string.text
+msgid "Set up ADO connection"
+msgstr "ADO-поврзување"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_JDBC.string.text
+msgid "Set up JDBC connection"
+msgstr "JDBC-поврзување"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ORACLE.string.text
+msgid "Set up Oracle database connection"
+msgstr "Поврзување со Oracle"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MYSQL.string.text
+msgid "Set up MySQL connection"
+msgstr "Поврзување со MySQL"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_ODBC.string.text
+msgid "Set up ODBC connection"
+msgstr "ODBC-поврзување"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_SPREADSHEET.string.text
+msgid "Set up Spreadsheet connection"
+msgstr "Поврзување со табеларна пресметка"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_AUTHENTIFICATION.string.text
+msgid "Set up user authentication"
+msgstr "Проверка на корисник"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_MYSQL_NATIVE.string.text
+msgid "Set up MySQL server data"
+msgstr ""
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.STR_PAGETITLE_FINAL.string.text
+msgid "Save and proceed"
+msgstr "Зачувување и продолжување"
+
+#: dbadminsetup.src#DLG_DATABASE_WIZARD.modaldialog.text
+msgctxt "dbadminsetup.src#DLG_DATABASE_WIZARD.modaldialog.text"
+msgid "Database Wizard"
+msgstr "Волшебник за бази на податоци"
+
+#: dbadminsetup.src#STR_DATABASEDEFAULTNAME.string.text
+msgid "New Database"
+msgstr "Нова база на податоци"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQL_HEADERTEXT.fixedtext.text
+msgid "Set up a connection to a MySQL database"
+msgstr "Поставете поврзување со MySQL-база на податоци"
+
+#: 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 ""
+"Можете да се поврзете со MySQL-базата на податоци со ODBC или со JDBC.\n"
+"Контактирајте со систем-администраторот ако не сте сигурни за следните поставувања."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.FT_MYSQLCONNECTIONMODE.fixedtext.text
+msgid "How do you want to connect to your MySQL database?"
+msgstr "Како сакате да се поврзете со Вашата MySQL-база на податоци?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIAODBC.radiobutton.text
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr "Со користење на ODBC (Open Database Connectivity)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIAJDBC.radiobutton.text
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr "Со користење на JDBC (Java Database Connectivity)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_INTRO.RB_CONNECTVIANATIVE.radiobutton.text
+msgid "Connect directly"
+msgstr "Поврзи изворно"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_AUTHENTIFICATIONHEADERTEXT.fixedtext.text
+msgid "Set up the user authentication"
+msgstr "Поставете проверка на корисници"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_AUTHENTIFICATIONHELPTEXT.fixedtext.text
+msgid "Some databases require you to enter a user name."
+msgstr "За некои бази на податоци е потребно да се внесе корисничко име."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_GENERALUSERNAME.fixedtext.text
+msgctxt "dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.FT_GENERALUSERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~Корисничко име"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.CB_GENERALPASSWORDREQUIRED.checkbox.text
+msgid "Password re~quired"
+msgstr "Потребна е ~лозинка"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_AUTHENTIFICATION.PB_TESTCONNECTION.pushbutton.text
+msgid "~Test Connection"
+msgstr "~Тестирај поврз."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALHEADER.fixedtext.text
+msgid "Decide how to proceed after saving the database"
+msgstr "Решете како ќе продолжите по зачувувањето на базата на податоци"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALHELPTEXT.fixedtext.text
+msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
+msgstr "Дали сакате волшебникот да ја регистрира базата на податоци во %PRODUCTNAME?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.RB_REGISTERDATASOURCE.radiobutton.text
+msgid "~Yes, register the database for me"
+msgstr "~Да, регистрирај ја базата на податоци за мене"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.RB_DONTREGISTERDATASOURCE.radiobutton.text
+msgid "N~o, do not register the database"
+msgstr "~Не, не ја регистрирај базата на податоци"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_ADDITIONALSETTINGS.fixedtext.text
+msgid "After the database file has been saved, what do you want to do?"
+msgstr "~Што сакате да направите по зачувувањето на базата на податоци?"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.CB_OPENAFTERWARDS.checkbox.text
+msgid "Open the database for editing"
+msgstr "Да ја отворам базата на податоци за уредување"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.CB_STARTTABLEWIZARD.checkbox.text
+msgid "Create tables using the table wizard"
+msgstr "Да креирам табели со користење на волшебникот за табели"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_FINAL.FT_FINALTEXT.fixedtext.text
+msgid "Click 'Finish' to save the database."
+msgstr "Кликнете „Заврши“ за да ја зачувате датотеката."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQLJDBC_HEADERTEXT.string.text
+msgid "Set up connection to a MySQL database using JDBC"
+msgstr "Поврзете се на MySQL-база на податоци со користење на 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 ""
+"Внесете ги потребните информации за да се поврзете со MySQL-база на податоци со користење на JDBC. Мора да има инсталирана и регистрирана класа на JDBC-управувачи за %PRODUCTNAME.\n"
+"Контактирајте со систем-администраторот ако не сте сигурни за следните поставувања."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_JDBC.STR_MYSQL_DRIVERCLASSTEXT.string.text
+msgid "MySQL JDBC d~river class:"
+msgstr "Класа на JDBC-у~правувачи за MySQL:"
+
+#: 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 "Стандардна: 3306"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MYSQL_NATIVE.FT_SETUP_WIZARD_HEADER.fixedtext.text
+#, fuzzy
+msgid "Set up connection to a MySQL database"
+msgstr "Поставете поврзување со MySQL-база на податоци"
+
+#: 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 ""
+
+#: dbadminsetup.src#PAGE_DBWIZARD_DBASE.STR_DBASE_HEADERTEXT.string.text
+msgid "Set up a connection to dBASE files"
+msgstr "Поставете поврзување со dBASE-датотеки"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_DBASE.STR_DBASE_HELPTEXT.string.text
+msgid "Select the folder where the dBASE files are stored."
+msgstr "Изберете ја папката во која се зачувани dBASE-датотеките."
+
+#: 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 "Поврзување со текст. датотеки"
+
+#: 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 "Изберете ја папката во која се наоѓаат CSV-текстуалните датотеки (Comma Separated Values). %PRODUCTNAME Base ќе ги отвори овие датотеки во режим само за читање."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_TEXT.STR_TEXT_PATH_OR_FILE.string.text
+msgid "Path to text files"
+msgstr "Патека до текстуалните датотеки"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MSACCESS.STR_MSACCESS_HEADERTEXT.string.text
+msgid "Set up a connection to a Microsoft Access database"
+msgstr "Поставете поврзување со Microsoft Access-база на податоци"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_MSACCESS.STR_MSACCESS_HELPTEXT.string.text
+msgid "Please select the Microsoft Access file you want to access."
+msgstr "Изберете ја Microsoft Access-датотеката до која сакате да пристапите."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.FT_LDAP_HEADERTEXT.fixedtext.text
+msgid "Set up a connection to an LDAP directory"
+msgstr "Поставете поврзување со LDAP-именик"
+
+#: 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 ""
+"Внесете ги потребните информации за да се поврзете со LDAP-именик.\n"
+"Контактирајте со систем-администраторот ако не сте сигурни за следните поставувања."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.STR_LDAP_DEFAULT.string.text
+msgid "Default: 389"
+msgstr "Стандардна: 389"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_LDAP.CB_WIZ_USESSL.checkbox.text
+msgid "Use ~secure connection (SSL)"
+msgstr "Користи ~безбедно поврзување (SSL)"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ADO.STR_ADO_HEADERTEXT.string.text
+msgid "Set up a connection to an ADO database"
+msgstr "Поставете поврзување со ADO-база на податоци"
+
+#: 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 ""
+"Внесете гo URL на ADO-изворот на податоци со кој сакате да се поврзете.\n"
+"Кликнете „Прелистај...“ за да ги конфигурирате карактеристичните поставувања на снабдувачот.\n"
+"Контактирајте со систем-администраторот ако не сте сигурни за следните поставувања."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ODBC.STR_ODBC_HEADERTEXT.string.text
+msgid "Set up a connection to an ODBC database"
+msgstr "Поставете поврзување со ODBC-база на податоци"
+
+#: 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 ""
+"Внесете гo името на ODBC-базата на податоци со која сакате да се поврзете.\n"
+"Кликнете „Прелистај...“ за да изберете ODBC-база на податоци што е веќе регистрирана во %PRODUCTNAME.\n"
+"Контактирајте со систем-администраторот ако не сте сигурни за следните поставувања."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_JDBC.STR_JDBC_HEADERTEXT.string.text
+msgid "Set up a connection to a JDBC database"
+msgstr "Поставете поврзување со JDBC-база на податоци"
+
+#: 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 ""
+"Внесете ги потребните информации за да се поврзете со JDBC-база на податоци.\n"
+"Контактирајте со систем-администраторот ако не сте сигурни за следните поставувања."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_HEADERTEXT.string.text
+msgid "Set up a connection to an Oracle database"
+msgstr "Поставете поврзување со Oracle-база на податоци"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_DEFAULT.string.text
+msgid "Default: 1521"
+msgstr "Стандардна: 1521"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_ORACLE.STR_ORACLE_DRIVERCLASSTEXT.string.text
+msgid "Oracle JDBC ~driver class"
+msgstr "Класа на JDBC-у~правувачи за Oracle"
+
+#: 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 ""
+"Внесете ги потребните информации за да се поврзете со Oracle. Забележете дека на Вашиот систем мора да има инсталирано класа на JDBC-управувачи и таа да биде регистрирана во %PRODUCTNAME.\n"
+"Контактирајте со систем-администраторот ако не сте сигурни за следните поставувања."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEET_HEADERTEXT.string.text
+msgid "Set up a connection to spreadsheets"
+msgstr "Поставете поврзување со табеларни пресметки"
+
+#: 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 ""
+"Кликнете „Прелистај...“ за да изберете %PRODUCTNAME-табеларна пресметка или работна тетратка од Microsoft Excel.\n"
+"%PRODUCTNAME ќе ја отвори датотеката во режим само за читање."
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.STR_SPREADSHEETPATH.string.text
+msgid "~Location and file name"
+msgstr "~Локација и име на датотека"
+
+#: dbadminsetup.src#PAGE_DBWIZARD_SPREADSHEET.CB_SPREADSHEETPASSWORDREQUIRED.checkbox.text
+msgid "~Password required"
+msgstr "П~отребна е лозинка"
+
+#: directsql.src#DLG_DIRECTSQL.FL_SQL.fixedline.text
+msgid "SQL command"
+msgstr "SQL-наредба"
+
+#: directsql.src#DLG_DIRECTSQL.FT_SQL.fixedtext.text
+msgid "Command to execute"
+msgstr "Наредба за извршување"
+
+#: directsql.src#DLG_DIRECTSQL.PB_EXECUTE.pushbutton.text
+msgid "Execute"
+msgstr "Изврши"
+
+#: directsql.src#DLG_DIRECTSQL.FT_HISTORY.fixedtext.text
+msgid "Previous commands"
+msgstr "Претходни наредби"
+
+#: directsql.src#DLG_DIRECTSQL.FL_STATUS.fixedline.text
+msgid "Status"
+msgstr "Статус"
+
+#: directsql.src#DLG_DIRECTSQL.PB_CLOSE.pushbutton.text
+msgid "Close"
+msgstr "Затвори"
+
+#: directsql.src#DLG_DIRECTSQL.modaldialog.text
+msgid "Execute SQL Statement"
+msgstr "Извршување SQL-наредба"
+
+#: directsql.src#STR_COMMAND_EXECUTED_SUCCESSFULLY.string.text
+msgid "Command successfully executed."
+msgstr "Наредбата е успешно извршена."
+
+#: directsql.src#STR_DIRECTSQL_CONNECTIONLOST.string.text
+msgid "The connection to the database has been lost. This dialog will be closed."
+msgstr "Врската со базата на податоци беше прекината. Овој дијалог ќе биде затворен."
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.1.stringlist.text"
+msgid "ascending"
+msgstr "растечки"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE1.2.stringlist.text"
+msgid "descending"
+msgstr "опаѓачки"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.1.stringlist.text"
+msgid "ascending"
+msgstr "растечки"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE2.2.stringlist.text"
+msgid "descending"
+msgstr "опаѓачки"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.1.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.1.stringlist.text"
+msgid "ascending"
+msgstr "растечки"
+
+#: queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.2.stringlist.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.LB_ORDERVALUE3.2.stringlist.text"
+msgid "descending"
+msgstr "опаѓачки"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERFIELD.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERFIELD.fixedtext.text"
+msgid "Field name"
+msgstr "Име на полето"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER1.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER1.fixedtext.text"
+msgid "and then"
+msgstr "и потоа"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER2.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDERAFTER2.fixedtext.text"
+msgid "and then"
+msgstr "и потоа"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDEROPER.fixedtext.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FT_ORDEROPER.fixedtext.text"
+msgid "Operator"
+msgstr "Оператор"
+
+#: queryorder.src#DLG_ORDERCRIT.FT_ORDERDIR.fixedtext.text
+msgid "Order"
+msgstr "Редослед"
+
+#: queryorder.src#DLG_ORDERCRIT.FL_ORDER.fixedline.text
+msgctxt "queryorder.src#DLG_ORDERCRIT.FL_ORDER.fixedline.text"
+msgid "Sort order"
+msgstr "Редослед на подредување"
+
+#: queryorder.src#DLG_ORDERCRIT.STR_NOENTRY.string.text
+msgid "<none>"
+msgstr "<нема>"
+
+#: queryorder.src#DLG_ORDERCRIT.modaldialog.text
+msgid "Sort Order"
+msgstr "Редослед на подредување"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR1.fixedline.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR1.fixedline.text"
+msgid "General"
+msgstr "Општо"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_HOSTNAME.fixedtext.text
+#, fuzzy
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FT_HOSTNAME.fixedtext.text"
+msgid "~Host name"
+msgstr "Име на ~серверот"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR2.fixedline.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR2.fixedline.text"
+msgid "User authentication"
+msgstr "Проверка на корисник"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_USERNAME.fixedtext.text
+#, fuzzy
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.FT_USERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~Корисничко име"
+
+#: ConnectionPage.src#PAGE_CONNECTION.CB_PASSWORD_REQUIRED.checkbox.text
+msgctxt "ConnectionPage.src#PAGE_CONNECTION.CB_PASSWORD_REQUIRED.checkbox.text"
+msgid "Password required"
+msgstr "Потребна е лозинка"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FL_SEPARATOR3.fixedline.text
+msgid "JDBC properties"
+msgstr "Својства за JDBC"
+
+#: ConnectionPage.src#PAGE_CONNECTION.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "~JDBC driver class"
+msgstr "Класа на ~JDBC-управувачи"
+
+#: ConnectionPage.src#PAGE_CONNECTION.PB_TESTDRIVERCLASS.pushbutton.text
+msgid "Test Class"
+msgstr "Тестирај класа"
+
+#: ConnectionPage.src#PAGE_CONNECTION.PB_TESTCONNECTION.pushbutton.text
+msgid "Test Connection"
+msgstr "Тестирај поврз."
+
+#: ConnectionPage.src#STR_CONNECTION_TEST.string.text
+msgid "Connection Test"
+msgstr "Тест на поврзување"
+
+#: ConnectionPage.src#STR_CONNECTION_SUCCESS.string.text
+msgid "The connection was established successfully."
+msgstr "Поврзувањето беше воспоставено успешно."
+
+#: ConnectionPage.src#STR_CONNECTION_NO_SUCCESS.string.text
+msgid "The connection could not be established."
+msgstr "Не може да се воспостави врска.."
+
+#: ConnectionPage.src#STR_JDBCDRIVER_SUCCESS.string.text
+msgid "The JDBC driver was loaded successfully."
+msgstr "JDBC-управувачот беше вчитан успешно."
+
+#: ConnectionPage.src#STR_JDBCDRIVER_NO_SUCCESS.string.text
+msgid "The JDBC driver could not be loaded."
+msgstr "JDBC-управувачот не можеше да биде вчитан."
+
+#: ConnectionPage.src#STR_MSACCESS_FILTERNAME.string.text
+msgid "MS Access file"
+msgstr "MS Access-датотека"
+
+#: ConnectionPage.src#STR_MSACCESS_2007_FILTERNAME.string.text
+msgid "MS Access 2007 file"
+msgstr "MS Access 2007 датотека"
+
+#: UserAdminDlg.src#DLG_DATABASE_USERADMIN.STR_PAGETITLE_USERADMIN.string.text
+msgid "User Settings"
+msgstr "Поставувања за корисник"
+
+#: UserAdminDlg.src#DLG_DATABASE_USERADMIN.tabdialog.text
+msgid "User administration"
+msgstr "Администрирање корисници"
+
+#: 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 "Име на полето"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHERECOMP.fixedtext.text
+msgid "Condition"
+msgstr "Услов"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREVALUE.fixedtext.text
+msgid "Value"
+msgstr "Вредност"
+
+#: queryfilter.src#DLG_FILTERCRIT.FT_WHEREOPER.fixedtext.text
+msgctxt "queryfilter.src#DLG_FILTERCRIT.FT_WHEREOPER.fixedtext.text"
+msgid "Operator"
+msgstr "Оператор"
+
+#: queryfilter.src#DLG_FILTERCRIT.FL_FIELDS.fixedline.text
+msgid "Criteria"
+msgstr "Критериуми"
+
+#: queryfilter.src#DLG_FILTERCRIT.STR_NOENTRY.string.text
+msgid "- none -"
+msgstr "- нема -"
+
+#: queryfilter.src#DLG_FILTERCRIT.STR_COMPARE_OPERATORS.string.text
+msgid "=;<>;<;<=;>;>=;like;not like;null;not null"
+msgstr "=;<>;<;<=;>;>=;содржи;не содржи;нулово;не е нулово"
+
+#: queryfilter.src#DLG_FILTERCRIT.modaldialog.text
+msgid "Standard Filter"
+msgstr "Стандарден филтер"
+
+#: dlgsize.src#DLG_ROWHEIGHT.FT_VALUE.fixedtext.text
+msgid "~Height"
+msgstr "~Висина"
+
+#: dlgsize.src#DLG_ROWHEIGHT.CB_STANDARD.checkbox.text
+msgctxt "dlgsize.src#DLG_ROWHEIGHT.CB_STANDARD.checkbox.text"
+msgid "~Automatic"
+msgstr "~Автоматски"
+
+#: dlgsize.src#DLG_ROWHEIGHT.modaldialog.text
+msgid "Row Height"
+msgstr "Висина на редот"
+
+#: dlgsize.src#DLG_COLWIDTH.FT_VALUE.fixedtext.text
+msgid "~Width"
+msgstr "Ши~рина"
+
+#: dlgsize.src#DLG_COLWIDTH.CB_STANDARD.checkbox.text
+msgctxt "dlgsize.src#DLG_COLWIDTH.CB_STANDARD.checkbox.text"
+msgid "~Automatic"
+msgstr "~Автоматски"
+
+#: dlgsize.src#DLG_COLWIDTH.modaldialog.text
+msgid "Column Width"
+msgstr "Ширина на колоната"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_TABLES.fixedtext.text
+msgid "~Table"
+msgstr "~Табела"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FL_INDEXES.fixedline.text
+msgid "Assignment"
+msgstr "Доделување"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_TABLEINDEXES.fixedtext.text
+msgid "T~able indexes"
+msgstr "И~ндекси на табела"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.FT_ALLINDEXES.fixedtext.text
+msgid "~Free indexes"
+msgstr "~Слободни индекси"
+
+#: dbfindex.src#DLG_DBASE_INDEXES.modaldialog.text
+msgctxt "dbfindex.src#DLG_DBASE_INDEXES.modaldialog.text"
+msgid "Indexes"
+msgstr "Индекси"
+
+#: advancedsettings.src#AUTO_DATAHANDLING_AUTO_Y_.FL_DATAHANDLING.fixedline.text
+msgid "Options"
+msgstr "Опции"
+
+#: advancedsettings.src#AUTO_SQL92CHECK_AUTO_Y_.CB_SQL92CHECK.checkbox.text
+msgid "Use SQL92 naming constraints"
+msgstr "Користи SQL92-ограничувања за именување"
+
+#: advancedsettings.src#AUTO_APPENDTABLEALIAS_AUTO_Y_.CB_APPENDTABLEALIAS.checkbox.text
+msgid "Append the table alias name on SELECT statements"
+msgstr "Додај го алијасот на името на табелата во SELECT-изразот"
+
+#: 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 "Користи клучен збор AS пред имињата на табелите"
+
+#: advancedsettings.src#AUTO_ENABLEOUTERJOIN_AUTO_Y_.CB_ENABLEOUTERJOIN.checkbox.text
+msgid "Use Outer Join syntax '{OJ }'"
+msgstr "Користи синтакса на надворешно соединување „{OJ }“"
+
+#: advancedsettings.src#AUTO_IGNOREDRIVER_PRIV_AUTO_Y_.CB_IGNOREDRIVER_PRIV.checkbox.text
+msgid "Ignore the privileges from the database driver"
+msgstr "Игнорирај ги привилегиите од управувачот за базата на податоци"
+
+#: advancedsettings.src#AUTO_PARAMETERNAMESUBST_AUTO_Y_.CB_PARAMETERNAMESUBST.checkbox.text
+msgid "Replace named parameters with '?'"
+msgstr "Замени именувани параметри со „?“"
+
+#: advancedsettings.src#AUTO_SUPPRESVERSIONCOLUMN_AUTO_Y_.CB_SUPPRESVERSIONCL.checkbox.text
+msgid "Display version columns (when available)"
+msgstr "Прикажи колони за верзии (кога е достапно)"
+
+#: advancedsettings.src#AUTO_CATALOG_AUTO_Y_.CB_CATALOG.checkbox.text
+msgid "Use catalog name in SELECT statements"
+msgstr "Користи име на каталог во SELECT-изразите"
+
+#: advancedsettings.src#AUTO_SCHEMA_AUTO_Y_.CB_SCHEMA.checkbox.text
+msgid "Use schema name in SELECT statements"
+msgstr "Користи име на шема во SELECT-изразите"
+
+#: advancedsettings.src#AUTO_IGNOREINDEXAPPENDIX_AUTO_Y_.CB_IGNOREINDEXAPPENDIX.checkbox.text
+msgid "Create index with ASC or DESC statement"
+msgstr "Креирај индекс со ASC или DESC-израз"
+
+#: advancedsettings.src#AUTO_DOSLINEENDS_AUTO_Y_.CB_DOSLINEENDS.checkbox.text
+msgid "End text lines with CR+LF"
+msgstr "Заврши ги текстуалните линии со CR+LF"
+
+#: advancedsettings.src#AUTO_IGNORECURRENCY_AUTO_Y_.CB_IGNORECURRENCY.checkbox.text
+msgid "Ignore currency field information"
+msgstr "Игнорирај информација од полето за валута"
+
+#: advancedsettings.src#AUTO_CHECKREQUIRED_AUTO_Y_.CB_CHECK_REQUIRED.checkbox.text
+msgid "Form data input checks for required fields"
+msgstr "Создади влезни проверки на податоците за бараните полиња"
+
+#: advancedsettings.src#AUTO_ESCAPE_DATETIME_AUTO_Y_.CB_ESCAPE_DATETIME.checkbox.text
+msgid "Use ODBC conformant date/time literals"
+msgstr ""
+
+#: advancedsettings.src#AUTO_PRIMARY_KEY_SUPPORT_AUTO_Y_.CB_PRIMARY_KEY_SUPPORT.checkbox.text
+msgid "Supports primary keys"
+msgstr ""
+
+#: 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 "Стандардно"
+
+#: advancedsettings.src#WORKAROUND.2.stringlist.text
+msgid "SQL"
+msgstr "SQL"
+
+#: advancedsettings.src#WORKAROUND.3.stringlist.text
+msgid "Mixed"
+msgstr "Мешано"
+
+#: 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 "Споредување логички вредности"
+
+#: advancedsettings.src#AUTO_MAXROWSCAN_AUTO_Y_.FT_MAXROWSCAN.fixedtext.text
+msgid "Rows to scan column types"
+msgstr ""
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FL_SEPARATORAUTO.fixedline.text
+msgid "Settings"
+msgstr "Поставувања"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.CB_RETRIEVE_AUTO.checkbox.text
+msgid "Re~trieve generated values"
+msgstr "Преземи ги генерираните вреднос~ти"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FT_AUTOINCREMENTVALUE.fixedtext.text
+msgid "~Auto-increment statement"
+msgstr "Израз за ~автом. зголемување"
+
+#: advancedsettings.src#PAGE_GENERATED_VALUES.FT_RETRIEVE_AUTO.fixedtext.text
+msgid "~Query of generated values"
+msgstr "Пр~ашање за генерираните вредности"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.STR_GENERATED_VALUE.string.text
+msgid "Generated Values"
+msgstr "Генерирани вредности"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.STR_DS_BEHAVIOUR.string.text
+msgid "Special Settings"
+msgstr "Посебни поставувања"
+
+#: advancedsettings.src#DLG_DATABASE_ADVANCED.tabdialog.text
+msgid "Advanced Settings"
+msgstr ""
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FL_USER.fixedline.text
+msgid "User selection"
+msgstr "Избирање корисник"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FT_USER.fixedtext.text
+msgid "Us~er:"
+msgstr "Ко~рисник:"
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_NEWUSER.pushbutton.text
+msgid "~Add User..."
+msgstr "~Додај корисник..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_CHANGEPWD.pushbutton.text
+msgid "Change ~Password..."
+msgstr "Измени ~лозинка..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.PB_DELETEUSER.pushbutton.text
+msgid "~Delete User..."
+msgstr "И~збриши корисник..."
+
+#: UserAdmin.src#TAB_PAGE_USERADMIN.FL_TABLE_GRANTS.fixedline.text
+msgid "Access rights for selected user"
+msgstr "Дозволи за пристап за избраниот корисник"
+
+#: UserAdmin.src#QUERY_USERADMIN_DELETE_USER.querybox.text
+msgid "Do you really want to delete the user?"
+msgstr "Дали навистина сакате да го избришете корисникот?"
+
+#: UserAdmin.src#STR_USERADMIN_NOT_AVAILABLE.string.text
+msgid "The database does not support user administration."
+msgstr "Базата на податоци не поддржува администрирање корисници."
+
+#: UserAdmin.src#DLG_PASSWORD.FL_USER.fixedline.text
+msgid "User \"$name$: $\""
+msgstr "Корисник „$name$: $“"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_OLDPASSWORD.fixedtext.text
+msgid "Old p~assword"
+msgstr "Стара л~озинка"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_PASSWORD.fixedtext.text
+msgid "~Password"
+msgstr "~Лозинка"
+
+#: UserAdmin.src#DLG_PASSWORD.FT_PASSWORD_REPEAT.fixedtext.text
+#, fuzzy
+msgid "~Confirm password"
+msgstr "~Потврда на лозинка"
+
+#: UserAdmin.src#DLG_PASSWORD.modaldialog.text
+msgid "Change Password"
+msgstr "Менување лозинка"
+
+#: UserAdmin.src#STR_ERROR_PASSWORDS_NOT_IDENTICAL.string.text
+msgid "The passwords do not match. Please enter the password again."
+msgstr "Лозинките не се совпаѓаат. Внесете ја лозинката повторно."
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_MYSQL_DATABASE_NAME.fixedtext.text
+#, fuzzy
+msgid "~Database name"
+msgstr "Име на базата на податоци"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_HOST_PORT.radiobutton.text
+msgid "Se~rver / Port"
+msgstr ""
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_HOST_NAME.fixedtext.text
+#, fuzzy
+msgid "~Server"
+msgstr "URL ~на серверот"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.FT_COMMON_PORT.fixedtext.text
+msgid "~Port"
+msgstr "~Порта"
+
+#: 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 "Стандардна: 3306"
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_SOCKET.radiobutton.text
+msgid "So~cket"
+msgstr ""
+
+#: admincontrols.src#RID_MYSQL_NATIVE_SETTINGS.RB_MYSQL_NAMED_PIPE.radiobutton.text
+msgid "Named p~ipe"
+msgstr ""
+
+#: AutoControls_tmpl.hrc#AUTO_BROWSECONTROLGROUP__AUTO_X__AUTO_Y__AUTOPAGE_X__AUTO_HID__AUTO_HID2_.PB_AUTOBROWSEURL.pushbutton.text
+msgid "Browse"
+msgstr "Прелистај"
+
+#: AutoControls_tmpl.hrc#AUTO_NAMECONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTODATABASENAME.fixedtext.text
+msgid "Database name"
+msgstr "Име на базата на податоци"
+
+#: AutoControls_tmpl.hrc#AUTO_HOSTCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOHOSTNAME.fixedtext.text
+msgid "Server"
+msgstr "URL ~на серверот"
+
+#: AutoControls_tmpl.hrc#AUTO_BASEDNCONTROLGROUP_AUTO_Y__AUTO_HID_.FT_AUTOBASEDN.fixedtext.text
+msgid "Base ~DN"
+msgstr "Базно ~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 "Број на п~орта"
+
+#: AutoControls_tmpl.hrc#AUTO_CHARSET__AUTO_Y__AUTOPAGE_X__.FL_DATACONVERT.fixedline.text
+msgid "Data conversion"
+msgstr "Конверзија на податоци"
+
+#: AutoControls_tmpl.hrc#AUTO_CHARSET__AUTO_Y__AUTOPAGE_X__.FT_CHARSET.fixedtext.text
+msgid "~Character set"
+msgstr "~Множество знаци"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOEXTENSIONHEADER.fixedtext.text
+msgid "Specify the type of files you want to access"
+msgstr "Определете го типот на датотеки до кои сакате да пристапите"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSCTEXTFILES.radiobutton.text
+msgid "Plain text files (*.txt)"
+msgstr "Обични текстуални датотеки (*.txt)"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSCCSVFILES.radiobutton.text
+msgid "'Comma separated value' files (*.csv)"
+msgstr "Датотеки со „вредности разделени со запирка“ (*.csv)"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.RB_AUTOACCESSOTHERS.radiobutton.text
+msgid "Custom:"
+msgstr "Сопствен:"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOOWNEXTENSIONAPPENDIX.fixedtext.text
+msgid "Custom: *.abc"
+msgstr "Сопствен: *.abc"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FL_AUTOSEPARATOR2.fixedline.text
+msgid "Row Format"
+msgstr "Формат на ред"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOFIELDSEPARATOR.fixedtext.text
+msgid "Field separator"
+msgstr "Разделувач на полиња"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTOTEXTSEPARATOR.fixedtext.text
+msgid "Text separator"
+msgstr "Разделувач на текстот"
+
+#: AutoControls_tmpl.hrc#AUTO_SEPARATORCONTROLGROUP_AUTO_Y_AUTOPAGE_X_.FT_AUTODECIMALSEPARATOR.fixedtext.text
+msgid "Decimal separator"
+msgstr "Децимален разделувач"
+
+#: AutoControls_tmpl.hrc#FT_AUTOTHOUSANDSSEPARATOR.fixedtext.text
+msgid "Thousands separator"
+msgstr "Разделувач на илјади"
+
+#: AutoControls_tmpl.hrc#CB_AUTOHEADER.checkbox.text
+msgid "~Text contains headers"
+msgstr "~Текстот содржи заглавија"
+
+#: AutoControls_tmpl.hrc#STR_AUTOTEXT_FIELD_SEP_NONE.string.text
+msgid "{None}"
+msgstr "{Нема}"
+
+#. 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{Таб}\t9\t{Празно место}\t32"
+
+#: AutoControls_tmpl.hrc#STR_AUTODELIMITER_MISSING.string.text
+msgid "#1 must be set."
+msgstr "#1 мора да е поставено."
+
+#: AutoControls_tmpl.hrc#STR_AUTODELIMITER_MUST_DIFFER.string.text
+msgid "#1 and #2 must be different."
+msgstr "#1 и #2 мора да се различни."
+
+#: AutoControls_tmpl.hrc#STR_AUTONO_WILDCARDS.string.text
+msgid "Wildcards such as ?,* are not allowed in #1."
+msgstr "Џокер-знаците како „?“ „*“ не се дозволени во #1."
+
+#: AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.FT_AUTOJDBCDRIVERCLASS.fixedtext.text
+msgid "JDBC d~river class"
+msgstr "Класа на JDBC-упра~увачи"
+
+#: AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.PB_AUTOTESTDRIVERCLASS.pushbutton.text
+#, fuzzy
+msgctxt "AutoControls_tmpl.hrc#AUTO_JDBCDRIVERCLASSGROUP_AUTO_Y__AUTO_HID__AUTO_HID2_.PB_AUTOTESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Тестирај класа"
+
+#: AutoControls_tmpl.hrc#AUTO_SOCKETCONTROLGROUP_AUTO_Y_.FT_SOCKET.fixedtext.text
+msgid "Socket"
+msgstr ""
+
+#: dbadmin2.src#STR_ENTER_CONNECTION_PASSWORD.string.text
+msgid "A password is needed to connect to the data source \"$name$\"."
+msgstr "Потребна е лозинка за да се поврзете со изворот на податоци „$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 ""
+"Папката\n"
+"\n"
+"$path$\n"
+"\n"
+"не постои. Дали да биде креирана?"
+
+#: dbadmin2.src#STR_COULD_NOT_CREATE_DIRECTORY.string.text
+msgid "The directory $name$ could not be created."
+msgstr "Папката $name$ не може да биде креирана."
+
+#: dbadmin2.src#DLG_DOMAINPASSWORD.FT_PASSWORD.fixedline.text
+msgid "Please enter the ~password for the user 'DOMAIN'."
+msgstr "Внесете ја ~лозинката за корисникот „DOMAIN“."
+
+#: dbadmin2.src#DLG_DOMAINPASSWORD.modaldialog.text
+msgid "Convert Database"
+msgstr "Конвертирање база на податоци"
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.FL_SEPARATOR1.fixedline.text
+msgid "Tables and table filter"
+msgstr "Табели и филтри за табели"
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.FT_FILTER_EXPLANATION.fixedtext.text
+msgid "Mark the tables that should be visible for the applications."
+msgstr "Обележете ги табелите што треба да бидат видливи за апликациите."
+
+#: dbadmin2.src#PAGE_TABLESUBSCRIPTION.tabpage.text
+msgid "Tables Filter"
+msgstr "Филтер за табели"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.WND_CONTROL.FL_INVOLVED_TABLES.fixedline.text
+msgid "Tables involved"
+msgstr "Вклучени табели"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.WND_CONTROL.FL_INVOLVED_FIELDS.fixedline.text
+msgid "Fields involved"
+msgstr "Вклучени полиња"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.FL_CASC_UPD.fixedline.text
+msgid "Update options"
+msgstr "Опции при ажурирање"
+
+#: 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 "~Нема дејство"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_UPD.radiobutton.text
+msgid "~Update cascade"
+msgstr "~Ажурирај каскадно"
+
+#: 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 "~Постави нулово"
+
+#: 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 "Постави ~стандардно"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.FL_CASC_DEL.fixedline.text
+msgid "Delete options"
+msgstr "Опции при бришење"
+
+#: 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 "~Нема дејство"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.RB_CASC_DEL.radiobutton.text
+msgid "Delete ~cascade"
+msgstr "Из~бриши каскадно"
+
+#: 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 "~Постави нулово"
+
+#: 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 "Постави ~стандардно"
+
+#: RelationDlg.src#DLG_REL_PROPERTIES.modaldialog.text
+msgid "Relations"
+msgstr "Релации"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.FT_DESCRIPTION.fixedtext.text
+msgid "Choose a data source:"
+msgstr "Изберете извор на податоци:"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.PB_MANAGE.pushbutton.text
+msgid "Organize..."
+msgstr "Организирај..."
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.PB_CREATE.pushbutton.text
+msgid "Create..."
+msgstr "Креирај..."
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.STR_LOCAL_DATASOURCES.string.text
+msgid "Local Databases"
+msgstr "Локални бази на податоци"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.STR_DESCRIPTION2.string.text
+msgid "Choose a database"
+msgstr "Изберете база на податоци"
+
+#: dsselect.src#DLG_DATASOURCE_SELECTION.modaldialog.text
+msgid "Data Source"
+msgstr "Извор на податоци"
+
+#: AutoControls.src#STR_DBASE_PATH_OR_FILE.string.text
+msgid "Path to the dBASE files"
+msgstr "Патека до dBASE-датотеки"
+
+#: AutoControls.src#STR_FLAT_PATH_OR_FILE.string.text
+msgid "Path to the text files"
+msgstr "Патека до текстуалните датотеки"
+
+#: AutoControls.src#STR_CALC_PATH_OR_FILE.string.text
+msgid "Path to the spreadsheet document"
+msgstr "Патека до документот со таб. пресметки"
+
+#: AutoControls.src#STR_NAME_OF_ODBC_DATASOURCE.string.text
+msgid "Name of the ODBC data source on your system"
+msgstr "Име на ODBC-изворот на податоци на вашиот систем"
+
+#: AutoControls.src#STR_MYSQL_DATABASE_NAME.string.text
+msgid "Name of the MySQL database"
+msgstr "Име на MySQL-базата на податоци"
+
+#: AutoControls.src#STR_ORACLE_DATABASE_NAME.string.text
+msgid "Name of the Oracle database"
+msgstr "Име на Oracle-базата на податоци"
+
+#: AutoControls.src#STR_MSACCESS_MDB_FILE.string.text
+msgid "Microsoft Access database file"
+msgstr "Датотека со Microsoft Access-база на податоци"
+
+#: 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 "Не се потребни дополнителни поставувања. За да потврдите дека поврзувањето работи, кликнете на копчето „%test“."
+
+#: AutoControls.src#STR_COMMONURL.string.text
+msgid "Datasource URL"
+msgstr "URL за извор на податоци"
+
+#: AutoControls.src#STR_HOSTNAME.string.text
+msgctxt "AutoControls.src#STR_HOSTNAME.string.text"
+msgid "~Host name"
+msgstr "Име на ~серверот"
+
+#: AutoControls.src#STR_MOZILLA_PROFILE_NAME.string.text
+msgid "~Mozilla profile name"
+msgstr "Име на ~Mozilla-профил"
+
+#: AutoControls.src#STR_THUNDERBIRD_PROFILE_NAME.string.text
+msgid "~Thunderbird profile name"
+msgstr "Име на ~Thunderbird-профил"
+
+#: dbadmin.src#AUTO_USECATALOG_AUTO_Y_.CB_USECATALOG.checkbox.text
+msgid "Use catalog for file-based databases"
+msgstr "Користи каталог за бази на податоци базирани врз датотеки"
+
+#: dbadmin.src#AUTO_FIXEDLINE_CONNSETTINGS_AUTO_Y_.FL_SEPARATOR1.fixedline.text
+#, fuzzy
+msgctxt "dbadmin.src#AUTO_FIXEDLINE_CONNSETTINGS_AUTO_Y_.FL_SEPARATOR1.fixedline.text"
+msgid "Connection Settings"
+msgstr "Поставувања за поврзување"
+
+#: dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_HOSTNAME.fixedtext.text
+#, fuzzy
+msgctxt "dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_HOSTNAME.fixedtext.text"
+msgid "~Host name"
+msgstr "Име на ~серверот"
+
+#: dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_PORTNUMBER.fixedtext.text
+#, fuzzy
+msgctxt "dbadmin.src#AUTO_HOST_AND_PORT_AUTO_Y_.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "Број на п~орта"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_GENERAL.string.text
+#, fuzzy
+msgid "Advanced Properties"
+msgstr "Напредни својства"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_ADVANCED.string.text
+msgid "Additional Settings"
+msgstr "Дополнителни поставувања"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.STR_PAGETITLE_CONNECTION.string.text
+msgid "Connection settings"
+msgstr "Поставувања за поврзување"
+
+#: dbadmin.src#DLG_DATABASE_ADMINISTRATION.tabdialog.text
+msgctxt "dbadmin.src#DLG_DATABASE_ADMINISTRATION.tabdialog.text"
+msgid "Database properties"
+msgstr "Својства на базата на податоци"
+
+#: dbadmin.src#DLG_DATABASE_TYPE_CHANGE.modaldialog.text
+msgctxt "dbadmin.src#DLG_DATABASE_TYPE_CHANGE.modaldialog.text"
+msgid "Database properties"
+msgstr "Својства на базата на податоци"
+
+#: dbadmin.src#PAGE_GENERAL.FT_GENERALHEADERTEXT.fixedtext.text
+msgid "Welcome to the %PRODUCTNAME Database Wizard"
+msgstr "Добредојдовте во Волшебникот за бази на податоци од %PRODUCTNAME"
+
+#: 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 "Користете го волшебникот за бази на податоци за да креирате нова база на податоци, за да отворите постојна датотека со база на податоци или за да се поврзете со база на податоци што се наоѓа на сервер."
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCEHEADER.fixedtext.text
+msgid "What do you want to do?"
+msgstr "Што сакате да направите?"
+
+#: dbadmin.src#PAGE_GENERAL.RB_CREATEDBDATABASE.radiobutton.text
+msgid "Create a n~ew database"
+msgstr "Да креирам ~нова база на податоци"
+
+#: dbadmin.src#PAGE_GENERAL.RB_OPENEXISTINGDOC.radiobutton.text
+msgid "Open an existing database ~file"
+msgstr "Да ~отворам постојна база на податоци"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DOCLISTLABEL.fixedtext.text
+msgid "Recently used"
+msgstr "Неодамна користени"
+
+#: dbadmin.src#PAGE_GENERAL.RB_GETEXISTINGDATABASE.radiobutton.text
+msgid "Connect to an e~xisting database"
+msgstr "Да се поврзам на постојна ~база на податоци"
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATASOURCETYPE_PRE.fixedtext.text
+msgid "Select the type of database to which you want to establish a connection."
+msgstr "Изберете го типот на база на податоци со која сакате да се поврзете."
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATATYPE.fixedtext.text
+msgid "Database ~type "
+msgstr "Тип на ~база "
+
+#: dbadmin.src#PAGE_GENERAL.FT_DATATYPEAPPENDIX.fixedtext.text
+msgid "Database"
+msgstr "База на податоци"
+
+#: 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 ""
+"На следните страници може да направите детални поставувавања за поврзувањето.\n"
+"\n"
+"Новите поставувања што ќе ги направите ќе ги заменат постојните."
+
+#: 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 "Својства на изворот на податоци: #"
+
+#: 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 "Не можев да ја вчитам програмската библиотека #lib# или таа е оштетена. Изборот на ODBC-извори на податоци не е достапен."
+
+#: 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 ""
+"Овој вид извори на податоци не е поддржан на оваа платформа.\n"
+"Може да ги менувате поставувањата, но веројатно нема да може да се поврзете со базата на податоци."
+
+#: dbadmin.src#PAGE_GENERAL.tabpage.text
+msgctxt "dbadmin.src#PAGE_GENERAL.tabpage.text"
+msgid "General"
+msgstr "Општо"
+
+#: dbadmin.src#PAGE_DBASE.FL_SEPARATOR1.fixedline.text
+msgid "Optional settings"
+msgstr "Дополнителни поставувања"
+
+#: dbadmin.src#PAGE_DBASE.CB_SHOWDELETEDROWS.checkbox.text
+msgid "Display deleted records as well"
+msgstr "Прикажи ги и избришаните записи"
+
+#: 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 "Напомена: Кога се избришани и поради тоа се неактивни, записите се прикажани, но нема да можете да бришете записи од изворот на податоци."
+
+#: dbadmin.src#PAGE_DBASE.PB_INDICIES.pushbutton.text
+msgid "Indexes..."
+msgstr "Индекси..."
+
+#: dbadmin.src#PAGE_ODBC.FL_SEPARATOR1.fixedline.text
+msgid "Optional Settings"
+msgstr "Дополнителни поставувања"
+
+#: dbadmin.src#PAGE_ODBC.FT_OPTIONS.fixedtext.text
+msgid "ODBC ~options"
+msgstr "П~оставувања за ODBC"
+
+#: dbadmin.src#PAGE_MYSQL_JDBC.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "MySQL JDBC d~river class"
+msgstr "Класа на JDBC-у~правувачи за MySQL"
+
+#: dbadmin.src#PAGE_MYSQL_JDBC.PB_TESTDRIVERCLASS.pushbutton.text
+msgctxt "dbadmin.src#PAGE_MYSQL_JDBC.PB_TESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Тестирај класа"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.FL_SEPARATOR2.fixedline.text
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.FL_SEPARATOR2.fixedline.text"
+msgid "User authentication"
+msgstr "Проверка на корисник"
+
+#: dbadmin.src#PAGE_MYSQL_NATIVE.FT_USERNAME.fixedtext.text
+#, fuzzy
+msgctxt "dbadmin.src#PAGE_MYSQL_NATIVE.FT_USERNAME.fixedtext.text"
+msgid "~User name"
+msgstr "~Корисничко име"
+
+#: 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 "Потребна е лозинка"
+
+#: dbadmin.src#PAGE_ORACLE_JDBC.FT_JDBCDRIVERCLASS.fixedtext.text
+msgid "Oracle JDBC d~river class"
+msgstr "Класа на JDBC-у~правувачи за Oracle"
+
+#: dbadmin.src#PAGE_ORACLE_JDBC.PB_TESTDRIVERCLASS.pushbutton.text
+msgctxt "dbadmin.src#PAGE_ORACLE_JDBC.PB_TESTDRIVERCLASS.pushbutton.text"
+msgid "Test class"
+msgstr "Тестирај класа"
+
+#: dbadmin.src#PAGE_LDAP.FL_SEPARATOR1.fixedline.text
+msgctxt "dbadmin.src#PAGE_LDAP.FL_SEPARATOR1.fixedline.text"
+msgid "Connection Settings"
+msgstr "Поставувања за поврзување"
+
+#: dbadmin.src#PAGE_LDAP.FT_BASEDN.fixedtext.text
+msgid "~Base DN"
+msgstr "~Базно DN"
+
+#: dbadmin.src#PAGE_LDAP.CB_USESSL.checkbox.text
+#, fuzzy
+msgid "Use secure connection (SSL)"
+msgstr "Користи ~безбедно поврзување (SSL)"
+
+#: dbadmin.src#PAGE_LDAP.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#PAGE_LDAP.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "Број на п~орта"
+
+#: dbadmin.src#PAGE_LDAP.FT_LDAPROWCOUNT.fixedtext.text
+msgid "Maximum number of ~records"
+msgstr "Максимален број ~записи"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_HOSTNAME.fixedtext.text
+msgid "~Hostname"
+msgstr "~Сервер"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_PORTNUMBER.fixedtext.text
+msgctxt "dbadmin.src#PAGE_USERDRIVER.FT_PORTNUMBER.fixedtext.text"
+msgid "~Port number"
+msgstr "Број на п~орта"
+
+#: dbadmin.src#PAGE_USERDRIVER.FT_OPTIONS.fixedtext.text
+msgid "~Driver settings"
+msgstr "Постав~увања на управувачот"
+
+#: 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 "Ве молиме изберете „Поврзете се со постоечка база на податоци“ за да се поврзете со постоечка база на податоци наместо тоа."
diff --git a/source/mk/dbaccess/source/ui/inc.po b/source/mk/dbaccess/source/ui/inc.po
new file mode 100644
index 00000000000..c3f7fcfd9fe
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Освежи"
+
+#: toolbox_tmpl.hrc#MID_NEW_VIEW_DESIGN.#define.text
+msgid "New ~View Design"
+msgstr "Нов дизајн на п~оглед"
+
+#: toolbox_tmpl.hrc#MID_NEW_TABLE_DESIGN.#define.text
+msgid "New ~Table Design"
+msgstr "Нов дизајн на ~табела"
+
+#: toolbox_tmpl.hrc#MID_QUERY_WIZARD.#define.text
+msgid "Query AutoPilot..."
+msgstr "Автопилот за прашања..."
+
+#: toolbox_tmpl.hrc#MID_QUERY_NEW_DESIGN.#define.text
+msgid "New ~Query (Design View)"
+msgstr "Ново п~рашање (преглед за дизајн)"
+
+#: toolbox_tmpl.hrc#MID_QUERY_EDIT_DESIGN.#define.text
+msgid "~Edit Query"
+msgstr "~Уреди прашање"
+
+#: toolbox_tmpl.hrc#MID_QUERY_NEW_SQL.#define.text
+msgid "New Query (~SQL View)"
+msgstr "Ново прашање (SQL-пре~глед)"
+
+#: toolbox_tmpl.hrc#MID_DBUI_QUERY_EDIT_JOINCONNECTION.#define.text
+msgid "Edit..."
+msgstr "Уреди..."
+
+#: toolbox_tmpl.hrc#MID_COLUMN_WIDTH.#define.text
+msgid "Column ~Width..."
+msgstr "Шири~на на колона..."
+
+#: toolbox_tmpl.hrc#MID_DOCUMENT_CREATE_REPWIZ.#define.text
+msgid "Report Wizard..."
+msgstr "Волшебник за извештај..."
+
+#: toolbox_tmpl.hrc#MID_DOCUMENT_NEW_AUTOPILOT.#define.text
+msgid "Form AutoPilot..."
+msgstr "Автопилот за форма..."
diff --git a/source/mk/dbaccess/source/ui/misc.po b/source/mk/dbaccess/source/ui/misc.po
new file mode 100644
index 00000000000..8c5011fc08f
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: dbumiscres.src#RSC_CHARSETS.1.string.text
+msgid "System"
+msgstr "Системско"
+
+#: dbumiscres.src#STR_ERROR_DURING_CREATION.string.text
+msgid "Error during creation"
+msgstr "Грешка при креирањето"
+
+#: dbumiscres.src#STR_UNEXPECTED_ERROR.string.text
+msgid "An unexpected error occurred. The operation could not be performed."
+msgstr "Се појави неочекувана грешка. Операцијата не можеше да се изврши."
+
+#: dbumiscres.src#STR_COULDNOTOPEN_LINKEDDOC.string.text
+msgid "The document \"$file$\" could not be opened."
+msgstr "Документот \"$file$\" не може да се отвори."
+
+#: dbumiscres.src#STR_MISSING_TABLES_XDROP.string.text
+msgid "The table cannot be deleted because the database connection does not support this."
+msgstr "Табелата не може да се избрише бидејќи поврзувањето со базата на податоци не го поддржува ова."
+
+#: dbumiscres.src#STR_BUTTON_TEXT_ALL.string.text
+msgctxt "dbumiscres.src#STR_BUTTON_TEXT_ALL.string.text"
+msgid "~All"
+msgstr "~Сите"
+
+#: dbumiscres.src#STR_UNDO_COLON.string.text
+msgid "Undo:"
+msgstr "Отповикај:"
+
+#: dbumiscres.src#STR_REDO_COLON.string.text
+msgid "Redo:"
+msgstr "Повтори:"
+
+#: dbumiscres.src#STR_UNKNOWN_TYPE_FOUND.string.text
+msgid "No corresponding column type could be found for column '#1'."
+msgstr "Не може да се пронајде соодветен тип на колона за колоната „#1“."
+
+#: dbumiscres.src#STR_FILE_DOES_NOT_EXIST.string.text
+msgid "The file \"$file$\" does not exist."
+msgstr "Датотеката „$file$“ не постои."
+
+#: dbumiscres.src#STR_WARNINGS_DURING_CONNECT.string.text
+msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
+msgstr "Се појавија предупредувања при поврзувањето со изворот на податоци. Притиснете на „$buttontext$“ за да ги видите."
+
+#: dbumiscres.src#STR_NAMED_OBJECT_ALREADY_EXISTS.string.text
+msgid ""
+"The name '$#$' already exists.\n"
+"Please enter another name."
+msgstr ""
+"Името „$#$“ веќе постои.\n"
+"Внесете друго име."
+
+#: dbumiscres.src#RID_STR_EXTENSION_NOT_PRESENT.string.text
+msgid "The report, \"$file$\", requires the extension Oracle Report Builder."
+msgstr ""
+
+#: WizardPages.src#STR_WIZ_COLUMN_SELECT_TITEL.string.text
+msgid "Apply columns"
+msgstr "Применување колони"
+
+#: WizardPages.src#STR_WIZ_TYPE_SELECT_TITEL.string.text
+msgid "Type formatting"
+msgstr "Форматирање тип"
+
+#: WizardPages.src#STR_WIZ_PKEY_ALREADY_DEFINED.string.text
+msgid "The following fields have already been set as primary keys:\n"
+msgstr "Следниве полиња се веќе поставени како примарни клучеви:\n"
+
+#: WizardPages.src#STR_WIZ_NAME_MATCHING_TITEL.string.text
+msgid "Assign columns"
+msgstr "Доделување колони"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_HELP.helpbutton.text
+msgid "~Help"
+msgstr "~Помош"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_CANCEL.cancelbutton.text
+msgid "~Cancel"
+msgstr "~Откажи"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_PREV.pushbutton.text
+msgid "< ~Back"
+msgstr "< ~Назад"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_NEXT.pushbutton.text
+msgid "~Next>"
+msgstr "~Следно >"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.PB_OK.okbutton.text
+msgid "C~reate"
+msgstr "К~реирај"
+
+#: WizardPages.src#WIZ_RTFCOPYTABLE.modaldialog.text
+msgid "Copy RTF Table"
+msgstr "Копирање RTF-табела"
+
+#: WizardPages.src#TAB_WIZ_COLUMN_SELECT.FL_COLUMN_SELECT.fixedline.text
+msgid "Existing columns"
+msgstr "Постојни колони"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FL_COLUMN_NAME.fixedline.text
+msgid "Column information"
+msgstr "Информација за колоната"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FL_AUTO_TYPE.fixedline.text
+msgid "Automatic type recognition"
+msgstr "Автоматско препознавање тип"
+
+#: WizardPages.src#TAB_WIZ_TYPE_SELECT.FT_AUTO.fixedtext.text
+msgid "Lines (ma~x)"
+msgstr "Линии (ма~кс.)"
+
+#: WizardPages.src#RID_SBA_RTF_PKEYPOPUP.SID_TABLEDESIGN_TABED_PRIMARYKEY.menuitem.text
+msgid "Primary Key"
+msgstr "Примарен клуч"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.FT_TABLE_LEFT.fixedtext.text
+msgid "Source table: \n"
+msgstr "Изворна табела: \n"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.FT_TABLE_RIGHT.fixedtext.text
+msgid "Destination table: \n"
+msgstr "Одредишна табела: \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 "~Сите"
+
+#: WizardPages.src#TAB_WIZ_NAME_MATCHING.PB_NONE.pushbutton.text
+msgid "Non~e"
+msgstr "Н~ема"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FT_TABLENAME.fixedtext.text
+msgid "Ta~ble name"
+msgstr "Име на та~бела"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FL_OPTIONS.fixedline.text
+msgid "Options"
+msgstr "Опции"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_DEFDATA.radiobutton.text
+msgid "De~finition and data"
+msgstr "Де~финиции и податоци"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_DEF.radiobutton.text
+msgid "Def~inition"
+msgstr "Деф~иниција"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_VIEW.radiobutton.text
+msgid "A~s table view"
+msgstr "Как~о поглед на табела"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.RB_APPENDDATA.radiobutton.text
+msgid "Append ~data"
+msgstr "Додај по~датоци"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.CB_USEHEADERLINE.checkbox.text
+msgid "Use first ~line as column names"
+msgstr ""
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.CB_PRIMARY_COLUMN.checkbox.text
+msgid "Crea~te primary key"
+msgstr "Креирај примарен к~луч"
+
+#: WizardPages.src#TAB_WIZ_COPYTABLE.FT_KEYNAME.fixedtext.text
+msgid "Name"
+msgstr "Име"
+
+#: WizardPages.src#STR_WIZ_TABLE_COPY.string.text
+msgctxt "WizardPages.src#STR_WIZ_TABLE_COPY.string.text"
+msgid "Copy table"
+msgstr "Копирање табела"
+
+#: WizardPages.src#STR_COPYTABLE_TITLE_COPY.string.text
+msgctxt "WizardPages.src#STR_COPYTABLE_TITLE_COPY.string.text"
+msgid "Copy table"
+msgstr "Копирање табела"
+
+#: WizardPages.src#STR_INVALID_TABLE_NAME.string.text
+msgid "This table name is not valid in the current database."
+msgstr ""
+
+#: 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 "Изберете ја опцијата „Додај податоци“ на првата страница за да додадете податоци на постојна табела."
+
+#: WizardPages.src#STR_INVALID_TABLE_NAME_LENGTH.string.text
+msgid "Please change the table name. It is too long."
+msgstr ""
diff --git a/source/mk/dbaccess/source/ui/querydesign.po b/source/mk/dbaccess/source/ui/querydesign.po
new file mode 100644
index 00000000000..8b26cc64572
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Додај прозорец за табела"
+
+#: query.src#STR_QUERY_UNDO_MOVETABWIN.string.text
+msgid "Move table window"
+msgstr "Премести прозорец за табела"
+
+#: query.src#STR_QUERY_UNDO_INSERTCONNECTION.string.text
+msgid "Insert Join"
+msgstr "Вметни соединување"
+
+#: query.src#STR_QUERY_UNDO_REMOVECONNECTION.string.text
+msgid "Delete Join"
+msgstr "Избриши соединување"
+
+#: query.src#STR_QUERY_UNDO_SIZETABWIN.string.text
+msgid "Resize table window"
+msgstr "Промени големина на прозорец за табела"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDDELETE.string.text
+msgid "Delete Column"
+msgstr "Избриши колона"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDMOVED.string.text
+msgid "Move column"
+msgstr "Премести колона"
+
+#: query.src#STR_QUERY_UNDO_TABFIELDCREATE.string.text
+msgid "Add Column"
+msgstr "Додај колона"
+
+#: query.src#RID_STR_TABLE_DOESNT_EXIST.string.text
+msgid "Invalid expression, table '$name$' does not exist."
+msgstr "Невалиден израз, табелата „$name$“ не постои."
+
+#: query.src#RID_STR_FIELD_DOESNT_EXIST.string.text
+msgid "Invalid expression, field name '$name$' does not exist."
+msgstr "Невалиден израз, полето со име „$name$“ не постои."
+
+#: 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 "Прашањето опфаќа #num# табели. Избраниот тип на база на податоци може да обработи максимум #maxnum# табели по израз."
+
+#: query.src#STR_QUERY_UNDO_TABWINDELETE.string.text
+msgid "Delete Table Window"
+msgstr "Избриши прозорец за табела"
+
+#: query.src#STR_QUERY_UNDO_MODIFY_CELL.string.text
+msgid "Edit Column Description"
+msgstr "Уреди опис на колона"
+
+#: query.src#STR_QUERY_UNDO_SIZE_COLUMN.string.text
+msgid "Adjust column width"
+msgstr "Прилагоди ширина на колона"
+
+#: query.src#STR_QUERY_SORTTEXT.string.text
+msgid "(not sorted);ascending;descending"
+msgstr "(неподредено);растечки;опаѓачки"
+
+#: query.src#STR_QUERY_FUNCTIONS.string.text
+msgid "(no function);Group"
+msgstr "(нема функција);Групирај"
+
+#: query.src#STR_QUERY_NOTABLE.string.text
+msgid "(no table)"
+msgstr "(нема табела)"
+
+#: query.src#STR_QRY_ORDERBY_UNRELATED.string.text
+msgid "The database only supports sorting for visible fields."
+msgstr "Базата на податоци поддржува подредување само за видливи полиња."
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_FUNCTION.menuitem.text
+msgid "Functions"
+msgstr "Функции"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_TABLENAME.menuitem.text
+msgid "Table Name"
+msgstr "Име на табела"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_ALIASNAME.menuitem.text
+msgid "Alias"
+msgstr "Алијас"
+
+#: query.src#RID_QUERYFUNCTION_POPUPMENU.ID_QUERY_DISTINCT.menuitem.text
+msgid "Distinct Values"
+msgstr "Уникатни вредности"
+
+#: query.src#STR_QUERY_HANDLETEXT.string.text
+msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
+msgstr "Поле;Алијас;Табела;Подреди;Видливо;Функција;Критериум;Или;Или"
+
+#: query.src#STR_QRY_TOO_MANY_COLUMNS.string.text
+msgid "There are too many columns."
+msgstr "Има премногу колони."
+
+#: query.src#ERR_QRY_CRITERIA_ON_ASTERISK.errorbox.text
+msgid "A condition cannot be applied to field [*]"
+msgstr "Не може да се примени услов врз полето [*]"
+
+#: query.src#STR_QRY_TOO_LONG_STATEMENT.string.text
+msgid "The SQL statement created is too long."
+msgstr "Креираниот SQL-израз е премногу долг."
+
+#: query.src#STR_QRY_TOOCOMPLEX.string.text
+msgid "Query is too complex"
+msgstr "Прашањето е премногу комплексно"
+
+#: query.src#STR_QRY_NOSELECT.string.text
+msgid "Nothing has been selected."
+msgstr "Ништо не е избрано."
+
+#: query.src#STR_QRY_TOOMANYCOND.string.text
+msgid "Too many search criteria"
+msgstr "Премногу критериуми за пребарување"
+
+#: query.src#STR_QRY_SYNTAX.string.text
+msgid "SQL syntax error"
+msgstr "Синтаксичка грешка во SQL"
+
+#: query.src#ERR_QRY_ORDERBY_ON_ASTERISK.errorbox.text
+msgid "[*] cannot be used as a sort criterion."
+msgstr "[*] не може да се користи како критериум за подредување."
+
+#: query.src#STR_QRY_TOO_MANY_TABLES.string.text
+msgid "There are too many tables."
+msgstr "Има премногу табели."
+
+#: query.src#STR_QRY_NATIVE.string.text
+msgid "The statement will not be applied when querying in the SQL dialect of the database."
+msgstr "Изразот нема да се примени при извршување на прашањето во SQL-дијалектот на базата на податоци."
+
+#: query.src#ERR_QRY_AMB_FIELD.errorbox.text
+msgid "Field name not found or not unique"
+msgstr "Името на полето не е пронајдено или не е уникатно"
+
+#: query.src#STR_QRY_ILLEGAL_JOIN.string.text
+msgid "Join could not be processed"
+msgstr "Соединувањето не може да се обработи"
+
+#: query.src#STR_SVT_SQL_SYNTAX_ERROR.string.text
+msgid "Syntax error in SQL statement"
+msgstr "Синтаксичка грешка во SQL-изразот"
+
+#: query.src#STR_QUERYDESIGN_NO_VIEW_SUPPORT.string.text
+msgid "This database does not support table views."
+msgstr "Базата на податоци не поддржува погледи на табели."
+
+#: query.src#STR_NO_ALTER_VIEW_SUPPORT.string.text
+msgid "This database does not support altering of existing table views."
+msgstr "Оваа база на податоци не поддржува промена на постојните прегледи на табели."
+
+#: query.src#STR_QUERYDESIGN_NO_VIEW_ASK.string.text
+msgid "Do you want to create a query instead?"
+msgstr "Дали сакате да креирате прашање место тоа?"
+
+#: query.src#ERR_QRY_NOSTATEMENT.errorbox.text
+msgid "No query could be created."
+msgstr "Не може да се креира прашање."
+
+#: query.src#ERR_QRY_NOCRITERIA.errorbox.text
+msgid "No query could be created because no fields were selected."
+msgstr "Не може да се креира прашање бидејќи нема избрани полиња."
+
+#: 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 "Соодветниот извор на податоци е избришан. Поради тоа податоците важни за тој извор на податоци не може да се зачуваат."
+
+#: query.src#STR_QRY_COLUMN_NOT_FOUND.string.text
+msgid "The column '$name$' is unknown."
+msgstr "Колоната „$name$“ е непозната."
+
+#: query.src#STR_QRY_JOIN_COLUMN_COMPARE.string.text
+msgid "Columns can only be compared using '='."
+msgstr "Колоните може да се споредат само со користење на „=“."
+
+#: query.src#STR_QRY_LIKE_LEFT_NO_COLUMN.string.text
+msgid "You must use a column name before 'LIKE'."
+msgstr "Мора да користите име на колона пред „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 "Колоната не може да биде пронајдена. Забележете дека базата на податоци разликува големи и мали букви."
+
+#: query.src#STR_QUERYDESIGN.string.text
+msgid " - %PRODUCTNAME Base: Query Design"
+msgstr " - %PRODUCTNAME Base: Дизајнирање на прашања"
+
+#: query.src#STR_VIEWDESIGN.string.text
+msgid " - %PRODUCTNAME Base: View Design"
+msgstr " - %PRODUCTNAME Base: Дизајнирање погледи"
+
+#. 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$ беше променет.\n"
+"Дали сакате да ги зачувате промените?"
+
+#. 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 "SQL командата која го сочинува $object$ не може да се расчлени."
+
+#. 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$ ќе биде отворен во SQL преглед."
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.1.string.text
+msgid "The table view"
+msgstr "преглед на табела"
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.2.string.text
+msgid "The query"
+msgstr "прашање"
+
+#: query.src#RSC_QUERY_OBJECT_TYPE.3.string.text
+msgid "The SQL statement"
+msgstr "SQL-израз"
+
+#: 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 "Прашањето не враќа множество резултати и поради тоа не може да биде дел од друго прашање."
+
+#: 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 "И двата параметри ActiveConnection и DataSourceName недостасуваат или се погрешни - не можам да го покренам дизајнерот на прашања."
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.FL_JOIN.fixedline.text
+msgid "Options"
+msgstr "Опции"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.FT_LISTBOXTITLE.fixedtext.text
+msgid "~Type"
+msgstr "~Тип"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.1.stringlist.text
+msgid "Inner join"
+msgstr "Внатрешно соединување"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.2.stringlist.text
+msgid "Left join"
+msgstr "Лево соединување"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.3.stringlist.text
+msgid "Right join"
+msgstr "Десно соединување"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.4.stringlist.text
+msgid "Full (outer) join"
+msgstr "Целосно (надворешно) соединување"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.LB_JOINTYPE.5.stringlist.text
+msgid "Cross join"
+msgstr "Вкрстено соединување"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_JOIN_CONTROL.CB_NATURAL.checkbox.text
+msgid "Natural"
+msgstr "Природно"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_CONTROL.FL_INVOLVED_TABLES.fixedline.text
+msgid "Tables involved"
+msgstr "Вклучени табели"
+
+#: querydlg.src#DLG_QRY_JOIN.WND_CONTROL.FL_INVOLVED_FIELDS.fixedline.text
+msgid "Fields involved"
+msgstr "Вклучени полиња"
+
+#: querydlg.src#DLG_QRY_JOIN.modaldialog.text
+msgid "Join Properties"
+msgstr "Својства на соединувањето"
+
+#: querydlg.src#STR_JOIN_TYPE_HINT.string.text
+msgid "Please note that some databases may not support this join type."
+msgstr "Забележете дека некои бази на податоци може да не го поддржуваат овој тип соединување."
+
+#: 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 "Ги вклучува само записите за кои содржините на соединетите полиња од двете табели се исти."
+
+#: 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 "Ги содржи СИТЕ записи од табелата „%1“ и само оние записи од табелата „%2“ каде што вредностите на соединетите полиња се совпаѓаат."
+
+#: querydlg.src#STR_QUERY_FULL_JOIN.string.text
+msgid "Contains ALL records from '%1' and from '%2'."
+msgstr "Ги содржи СИТЕ записи од „%1“ и од „%2“."
+
+#: querydlg.src#STR_QUERY_CROSS_JOIN.string.text
+msgid "Contains the cartesian product of ALL records from '%1' and from '%2'."
+msgstr "Содржи картесиски производ од СИТЕ записи од '%1' и од '%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 "Содржи само една колона за секој пар на еднакво именувани колони од '%1' и од '%2'."
diff --git a/source/mk/dbaccess/source/ui/relationdesign.po b/source/mk/dbaccess/source/ui/relationdesign.po
new file mode 100644
index 00000000000..43f710c1741
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Оваа релација веќе постои. Дали сакате да ја промените или да создадете нова?"
+
+#: relation.src#STR_QUERY_REL_EDIT.string.text
+msgid "Edit..."
+msgstr "Уреди..."
+
+#: relation.src#STR_QUERY_REL_CREATE.string.text
+msgid "Create..."
+msgstr "Создади..."
+
+#: relation.src#STR_RELATIONDESIGN.string.text
+msgid " - %PRODUCTNAME Base: Relation design"
+msgstr " - %PRODUCTNAME Base: Дизајн на релации"
+
+#: relation.src#STR_RELATIONDESIGN_NOT_AVAILABLE.string.text
+msgid "The database does not support relations."
+msgstr "Базата на податоци не поддржува релации."
+
+#: relation.src#RELATION_DESIGN_SAVEMODIFIED.querybox.text
+msgid ""
+"The relation design has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Дизајнот на релациите е изменет.\n"
+"Дали сакате да ги зачувате измените?"
+
+#: 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 "Кога ќе ја избришете табелата, сите релации што се однесуваат на неа ќе бидат избришани. Ќе продолжите?"
+
+#: 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/mk/dbaccess/source/ui/tabledesign.po b/source/mk/dbaccess/source/ui/tabledesign.po
new file mode 100644
index 00000000000..276a8bcffd3
--- /dev/null
+++ b/source/mk/dbaccess/source/ui/tabledesign.po
@@ -0,0 +1,361 @@
+#. 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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Непознато;Текст;Број;Датум/Време;Датум;Време;Да/Не;Валута;Мемо;Бројач;Слика;Текст (фиксен);Децимален;Бинарен (фиксен);Бинарен;Голем цел број;Двојна;Подвижна запирка;Реален;Цел број;Мал цел број;Многу мал цел број;SQL Null;Објект;Уникатно;Структура;Поле;BLOB;CLOB;РЕФ;ДРУГО"
+
+#: table.src#STR_TABLEDESIGN_UNDO_PRIMKEY.string.text
+msgctxt "table.src#STR_TABLEDESIGN_UNDO_PRIMKEY.string.text"
+msgid "Insert/remove primary key"
+msgstr "Вметни/отстрани примарен клуч"
+
+#: table.src#STR_VALUE_YES.string.text
+msgid "Yes"
+msgstr "Да"
+
+#: table.src#STR_VALUE_NO.string.text
+msgid "No"
+msgstr "Не"
+
+#: table.src#STR_VALUE_ASC.string.text
+msgid "Ascending"
+msgstr "Растечки"
+
+#: table.src#STR_VALUE_DESC.string.text
+msgid "Descending"
+msgstr "Опаѓачки"
+
+#: table.src#STR_VALUE_NONE.string.text
+msgid "<none>"
+msgstr "<нема>"
+
+#: table.src#STR_TAB_FIELD_NAME.string.text
+msgid "Field name"
+msgstr "Име на полето"
+
+#: table.src#STR_TAB_FIELD_COLUMN_NAME.string.text
+msgid "Field Name"
+msgstr "Име на поле"
+
+#: table.src#STR_TAB_FIELD_DATATYPE.string.text
+msgid "Field ~type"
+msgstr "Тип на полето"
+
+#: table.src#STR_TAB_FIELD_COLUMN_DATATYPE.string.text
+msgid "Field Type"
+msgstr "Тип на поле"
+
+#: table.src#STR_TAB_FIELD_LENGTH.string.text
+msgid "Field length"
+msgstr "Должина на поле"
+
+#: table.src#STR_TAB_HELP_TEXT.string.text
+msgid "Description"
+msgstr "Опис"
+
+#: table.src#STR_COLUMN_DESCRIPTION.string.text
+msgid "Column Description"
+msgstr ""
+
+#: table.src#STR_TAB_FIELD_NULLABLE.string.text
+msgid "Input required"
+msgstr "Задолжителен внес"
+
+#: table.src#STR_FIELD_AUTOINCREMENT.string.text
+msgid "~AutoValue"
+msgstr "~Автом. вредност"
+
+#: table.src#STR_TAB_PROPERTIES.string.text
+msgid "Field Properties"
+msgstr "Својства на полето"
+
+#: table.src#STR_TABPAGE_GENERAL.string.text
+msgid "General"
+msgstr "Општо"
+
+#: table.src#STR_TAB_TABLE_DESCRIPTION.string.text
+msgid "Description:"
+msgstr "Опис:"
+
+#: table.src#STR_TAB_TABLE_PROPERTIES.string.text
+msgid "Table properties"
+msgstr "Својства на табелата"
+
+#: table.src#ERR_INVALID_LISTBOX_ENTRY.errorbox.text
+msgid "The text you entered is not a list element. "
+msgstr "Текстот што го внесовте не е елемент од листа. "
+
+#: table.src#RID_TABLEDESIGNROWPOPUPMENU.SID_TABLEDESIGN_INSERTROWS.menuitem.text
+msgid "Insert Rows"
+msgstr "Вметни редови"
+
+#: table.src#RID_TABLEDESIGNROWPOPUPMENU.SID_TABLEDESIGN_TABED_PRIMARYKEY.menuitem.text
+msgid "Primary Key"
+msgstr "Примарен клуч"
+
+#: table.src#STR_TABED_UNDO_CELLMODIFIED.string.text
+msgid "Modify cell"
+msgstr "Измени ќелија"
+
+#: table.src#STR_TABED_UNDO_ROWDELETED.string.text
+msgid "Delete row"
+msgstr "Избриши ред"
+
+#: table.src#STR_TABED_UNDO_TYPE_CHANGED.string.text
+msgid "Modify field type"
+msgstr "Измени тип на поле"
+
+#: table.src#STR_TABED_UNDO_ROWINSERTED.string.text
+msgid "Insert row"
+msgstr "Вметни ред"
+
+#: table.src#STR_TABED_UNDO_NEWROWINSERTED.string.text
+msgid "Insert new row"
+msgstr "Вметни нов ред"
+
+#: table.src#STR_TABED_UNDO_PRIMKEY.string.text
+msgctxt "table.src#STR_TABED_UNDO_PRIMKEY.string.text"
+msgid "Insert/remove primary key"
+msgstr "Вметни/отстрани примарен клуч"
+
+#: table.src#STR_DEFAULT_VALUE.string.text
+msgid "~Default value"
+msgstr "~Стандардна вредност"
+
+#: table.src#STR_FIELD_REQUIRED.string.text
+msgid "~Entry required"
+msgstr "~Задолжителен внес"
+
+#: table.src#STR_TEXT_LENGTH.string.text
+msgctxt "table.src#STR_TEXT_LENGTH.string.text"
+msgid "~Length"
+msgstr "~Должина"
+
+#: table.src#STR_NUMERIC_TYPE.string.text
+msgid "~Type"
+msgstr "~Тип"
+
+#: table.src#STR_LENGTH.string.text
+msgctxt "table.src#STR_LENGTH.string.text"
+msgid "~Length"
+msgstr "~Должина"
+
+#: table.src#STR_SCALE.string.text
+msgid "Decimal ~places"
+msgstr "Де~цимални места"
+
+#: table.src#STR_FORMAT.string.text
+msgid "Format example"
+msgstr "Пример за формат"
+
+#: 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 ""
+"Изберете вредност што ќе се појавува како стандардна во сите нови записи.\n"
+"Ако полето нема стандардна вредност, изберете <нема>."
+
+#: 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 ""
+"Внесете стандардна вредност за полето.\n"
+"\n"
+"Кога подоцна ќе внесувате податоци во табелата, оваа вредност ќе се користи во секој нов запис за избраното поле. Затоа треба да одговара на форматот на ќелија што треба да се внесе подолу."
+
+#: 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 "Активирајте ја оваа опција ако ова поле не смее да содржи NULL-вредности, т.е. корисникот секогаш мора да внесе податоци."
+
+#: table.src#STR_HELP_TEXT_LENGTH.string.text
+msgid "Enter the maximum text length permitted."
+msgstr "Внесете ја максимално дозволената должина на текстот."
+
+#: table.src#STR_HELP_NUMERIC_TYPE.string.text
+msgid "Enter the number format."
+msgstr "Внесете го форматот на број."
+
+#: 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 ""
+"Одредете ја должината што може да ја имаат податоците во ова поле.\n"
+"Кај децимални полиња, треба да се внесе максималната должина на бројот, а кај бинарни полиња должината на блокот на податоци.\n"
+"Вредноста ќе биде коригирана соодветно кога ќе го надмине максимумот за оваа база на податоци."
+
+#: table.src#STR_HELP_SCALE.string.text
+msgid "Specify the number of decimal places permitted in this field."
+msgstr "Одредете го бројот на децимални места дозволени за ова поле."
+
+#: 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 "Тука може да видите како ќе се прикажуваат податоците во тековниот формат (користете го копчето од десната страна за да го измените форматот)."
+
+#: table.src#STR_HELP_FORMAT_BUTTON.string.text
+msgid "This is where you determine the output format of the data."
+msgstr "Тука го одредувате излезниот формат на податоците."
+
+#: 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 ""
+"Изберете дали ова поле треба да содржи вредности што се зголемуваат автоматски (AutoIncrement).\n"
+"\n"
+"Не може да внесувате податоци во овој тип полиња. Нова вредност ќе се додели на секој нов запис автоматски (како резултат на зголемување на вредноста од претходниот запис)."
+
+#: 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 "Табелата не може да се зачува бидејќи името на колоната „$column$“ се појавува двапати."
+
+#: 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 "Колоната „$column$“ му припаѓа на примарниот клуч. Ако се избрише колоната, ќе биде избришан и примарниот клуч. Дали навистина сакате да продолжите?"
+
+#: table.src#STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE.string.text
+msgid "Primary Key Affected"
+msgstr "Влијае врз примарниот клуч"
+
+#: table.src#STR_COLUMN_NAME.string.text
+msgid "Column"
+msgstr "Колона"
+
+#: table.src#STR_QRY_CONTINUE.string.text
+msgid "Continue anyway?"
+msgstr "Дали сепак продолжувате?"
+
+#: table.src#STR_STAT_WARNING.string.text
+msgid "Warning!"
+msgstr "Предупредување!"
+
+#: table.src#TABLE_DESIGN_SAVEMODIFIED.querybox.text
+msgid ""
+"The table has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"Табелата беше изменета.\n"
+"Дали сакате да ги зачувате измените?"
+
+#: 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 ""
+"Поврзувањето со базата на податоци е изгубено! Без поврзување, дизајнот на табелата може да се користи само со ограничена функционалност.\n"
+"Да се поврзам повторно?"
+
+#: table.src#STR_TABLEDESIGN_CONNECTION_MISSING.string.text
+msgid "The table could not be saved due to problems connecting to the database."
+msgstr "Табелата не можеше да се зачува поради проблеми при поврзувањето со базата на податоци."
+
+#: table.src#STR_TABLEDESIGN_DATASOURCE_DELETED.string.text
+msgid "The table filter could not be adjusted because the data source has been deleted."
+msgstr "Филтерот за табелата не можеше да биде приспособен бидејќи изворот на податоци беше избришан."
+
+#: 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 ""
+"Пред да може да ги уредувате индексите на некоја табела, мора да ја зачувате.\n"
+"Дали сакате да ги зачувате измените сега?"
+
+#: table.src#STR_TABLEDESIGN_NO_PRIM_KEY_HEAD.string.text
+msgid "No primary key"
+msgstr "Нема примарен клуч"
+
+#: 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 ""
+"Потребен е единствен индекс или примарен клуч за идентификација на записите со податоци во табелата.\n"
+"Можете да внесувате податоци во табелата само ако е исполнет еден од овие два структурни услова.\n"
+"\n"
+"Дали треба да се креира примарен клуч сега?"
+
+#: table.src#STR_TABLEDESIGN_TITLE.string.text
+msgid " - %PRODUCTNAME Base: Table Design"
+msgstr " - %PRODUCTNAME Base: Дизајнирање на табели"
+
+#: 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 "Колоната „$column$“ не може да се измени. Дали место тоа колоната да се избрише и да се додаде новиот формат?"
+
+#: table.src#STR_TABLEDESIGN_SAVE_ERROR.string.text
+msgid "Error while saving the table design"
+msgstr "Грешка при зачувувањето на дизајнот на табелата"
+
+#: table.src#STR_TABLEDESIGN_COULD_NOT_DROP_COL.string.text
+msgid "The column $column$ could not be deleted."
+msgstr "Колоната $column$ не можеше да биде избришана."
+
+#: 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 "Се обидувате да ги избришете сите колони од табелата. Табелата не може да постои без колони. Дали табелата да биде избришана од базата на податоци? Во спротивно, табелата ќе остане непроменета."
+
+#: table.src#STR_AUTOINCREMENT_VALUE.string.text
+msgid "A~uto-increment statement"
+msgstr "Израз за а~втом. зголем."
+
+#: 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 ""
+"Внесете SQL-израз за полето со автом. зголемување.\n"
+"\n"
+"Овој израз ќе биде директно пренесен во базата на податоци кога ќе се креира табелата."
+
+#: 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 ""
+"Не можеше да се добијат информации за типови од базата на податоци.\n"
+"Режимот на дизајнирање табела не е достапен за овој извор на податоци."
+
+#: table.src#STR_CHANGE_COLUMN_NAME.string.text
+msgid "change field name"
+msgstr "измени име на поле"
+
+#: table.src#STR_CHANGE_COLUMN_TYPE.string.text
+msgid "change field type"
+msgstr "измени тип поле"
+
+#: table.src#STR_CHANGE_COLUMN_DESCRIPTION.string.text
+msgid "change field description"
+msgstr "измени опис на поле"
+
+#: table.src#STR_CHANGE_COLUMN_ATTRIBUTE.string.text
+msgid "change field attribute"
+msgstr "измени својства на поле"
diff --git a/source/mk/dbaccess/source/ui/uno.po b/source/mk/dbaccess/source/ui/uno.po
new file mode 100644
index 00000000000..4f3158fe3c3
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "~Запомни ја лозинката до крајот на сесијата"
+
+#: dbinteraction.src#STR_REMEMBERPASSWORD_PERSISTENT.string.text
+msgid "~Remember password"
+msgstr "~Запомни лозинка"
+
+#: copytablewizard.src#STR_CTW_NO_VIEWS_SUPPORT.string.text
+msgid "The destination database does not support views."
+msgstr "Целната база на податоци не подржува погледи."
+
+#: copytablewizard.src#STR_CTW_NO_PRIMARY_KEY_SUPPORT.string.text
+msgid "The destination database does not support primary keys."
+msgstr "Целната база на податоци не подржува примарни клучеви."
+
+#: 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 "не е најден дескриптор на влезни податоци, или ниеден дескриптор на влезни податоци не може да ги даде сите потребни информации"
+
+#: copytablewizard.src#STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT.string.text
+msgid "Only tables and queries are supported at the moment."
+msgstr "Во моментов, поддржани се само табели и барања."
+
+#: copytablewizard.src#STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS.string.text
+msgid "The copy source's result set must support bookmarks."
+msgstr "Сетот за копирање на изворните резултати мора да поддржува обележувачи."
+
+#: copytablewizard.src#STR_CTW_UNSUPPORTED_COLUMN_TYPE.string.text
+msgid "Unsupported source column type ($type$) at column position $pos$."
+msgstr "Неподдржан тип на изворна колона ($type$) во позицијата на колоната $pos$"
+
+#: copytablewizard.src#STR_CTW_ILLEGAL_PARAMETER_COUNT.string.text
+msgid "Illegal number of initialization parameters."
+msgstr "Неправилен број на иницијализирачки параметри."
+
+#: copytablewizard.src#STR_CTW_ERROR_DURING_INITIALIZATION.string.text
+msgid "An error occurred during initialization."
+msgstr "Се случи грешка за време на иницијализацијата."
+
+#: copytablewizard.src#STR_CTW_ERROR_UNSUPPORTED_SETTING.string.text
+msgid "Unsupported setting in the copy source descriptor: $name$."
+msgstr ""
+
+#: copytablewizard.src#STR_CTW_ERROR_NO_QUERY.string.text
+msgid "To copy a query, your connection must be able to provide queries."
+msgstr ""
+
+#: copytablewizard.src#STR_CTW_ERROR_INVALID_INTERACTIONHANDLER.string.text
+msgid "The given interaction handler is invalid."
+msgstr ""
diff --git a/source/mk/desktop/source/app.po b/source/mk/desktop/source/app.po
new file mode 100644
index 00000000000..5ad6c71792b
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Дали треба да биде обновена датотеката „$1“?"
+
+#: desktop.src#STR_RECOVER_TITLE.string.text
+msgid "File Recovery"
+msgstr "Обновување на датотека"
+
+#: 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 ""
+"Се појави грешка што не може да се врати.\n"
+"\n"
+"Сите изменети датотеки се зачувани и најверојатно\n"
+"може да бидат вратени при рестартирање на програмата."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_CANNOT_START.string.text
+msgid "The application cannot be started. "
+msgstr "Апликацијата не може да се стартува. "
+
+#: desktop.src#STR_BOOTSTRAP_ERR_DIR_MISSING.string.text
+msgid "The configuration directory \"$1\" could not be found."
+msgstr "Папката со конфигурација „$1“ не беше пронајдена."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_PATH_INVALID.string.text
+msgid "The installation path is invalid."
+msgstr "Патеката за инсталација не е валидна."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_PATH.string.text
+msgid "The installation path is not available."
+msgstr "Патеката за инсталација не е достапна."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_INTERNAL.string.text
+msgid "An internal error occurred."
+msgstr "Се појави внатрешна грешка."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_FILE_CORRUPT.string.text
+msgid "The configuration file \"$1\" is corrupt."
+msgstr "Конфигурациската датотека „$1“ е оштетена."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_FILE_MISSING.string.text
+msgid "The configuration file \"$1\" was not found."
+msgstr "Конфигурациската датотека „$1“ не беше пронајдена."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_SUPPORT.string.text
+msgid "The configuration file \"$1\" does not support the current version."
+msgstr "Конфигурациската датотека „$1“ не ја поддржува тековната верзија."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_LANGUAGE_MISSING.string.text
+msgid "The user interface language cannot be determined."
+msgstr "Не може да се одреди јазикот на корисничкиот интерфејс."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_SERVICE.string.text
+msgid "The component manager is not available."
+msgstr "Менаџерот на компоненти не е достапен."
+
+#: desktop.src#STR_BOOTSTRAP_ERR_NO_CFG_SERVICE.string.text
+msgid "The configuration service is not available."
+msgstr "Сервисот за конфигурација не е достапен."
+
+#: 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 "Стартувајте ја апликацијата за инсталирање од CD или од папка што ги содржи инсталациските пакети за да ја поправите инсталацијата."
+
+#: desktop.src#STR_CONFIG_ERR_SETTINGS_INCOMPLETE.string.text
+msgid "The startup settings for accessing the central configuration are incomplete. "
+msgstr "Почетните поставувања за пристап до централната конфигурација не се целосни. "
+
+#: desktop.src#STR_CONFIG_ERR_CANNOT_CONNECT.string.text
+msgid "A connection to the central configuration could not be established. "
+msgstr "Не можеше да се воспостави врска со централната конфигурација."
+
+#: desktop.src#STR_CONFIG_ERR_RIGHTS_MISSING.string.text
+msgid "You cannot access the central configuration because of missing access rights. "
+msgstr "Не можете да пристапите до централната конфигурација поради недостиг на привилегии за пристап. "
+
+#: desktop.src#STR_CONFIG_ERR_ACCESS_GENERAL.string.text
+msgid "A general error occurred while accessing your central configuration. "
+msgstr "Се појави општа грешка при пристапување на вашата централна конфигурација. "
+
+#: 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 "Промените на вашите лични поставувања не може да се зачуваат централно поради недостиг на привилегии за пристап. "
+
+#: 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 не може да се стартува поради грешка при пристап на податоците за конфигурација на %PRODUCTNAME.\n"
+"\n"
+"Контактирајте со вашиот систем-администратор."
+
+#: desktop.src#STR_INTERNAL_ERRMSG.string.text
+msgid "The following internal error has occurred: "
+msgstr "Настана следната внатрешна грешка: "
+
+#: 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 ""
+"Или друга инстанца од %PRODUCTNAME пристапува до вашите лични поставувања или вашите лични поставувања се заклучени.\n"
+"Истовремен пристап може да доведе до неконзистентност на вашите лични поставувања. Пред да продолжите треба да бидете сигурен дека корисникот „$u“ ја затворил програмата %PRODUCTNAME на серверот „$h“.\n"
+"\n"
+"Дали навистина сакате да продолжите?"
+
+#: 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 "Печатењето е оневозможено. Не може да се печатат документи."
+
+#: 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 ""
+"Оваа пробна верзија истече. За да дознаете повеќе за %PRODUCTNAME,\n"
+"посетете ја www.sun.com/%PRODUCTNAME."
+
+#: 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 "Менаџерот на патеки не е достапен.\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 не можеше да заврши поради недоволно простор на дискот. Ослободете простор на следнава локација и рестартирајте го %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 не можеше да се изврши поради недоволни права на пристап. Осигурете се дека имате доволно права на пристап за следнава локација и рестартирајте го %PRODUCTNAME:\n"
+"\n"
diff --git a/source/mk/desktop/source/deployment/gui.po b/source/mk/desktop/source/deployment/gui.po
new file mode 100644
index 00000000000..f4f55f5ae5e
--- /dev/null
+++ b/source/mk/desktop/source/deployment/gui.po
@@ -0,0 +1,539 @@
+#. 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 15:00+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Додавање екстензии"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_REMOVE.string.text
+msgid "~Remove"
+msgstr "~Отстрани"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_ENABLE.string.text
+msgid "~Enable"
+msgstr "~Овозможи"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_DISABLE.string.text
+msgid "~Disable"
+msgstr "~Оневозможи"
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_CHECK_UPDATE.string.text
+msgid "~Update..."
+msgstr "Аж~урирај..."
+
+#: dp_gui_dialog.src#RID_CTX_ITEM_OPTIONS.string.text
+msgid "~Options..."
+msgstr "~Опции..."
+
+#: 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 "Додавање на %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_REMOVING_PACKAGES.string.text
+msgid "Removing %EXTENSION_NAME"
+msgstr "Отстранување на %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_ENABLING_PACKAGES.string.text
+msgid "Enabling %EXTENSION_NAME"
+msgstr "Овозможување на %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_DISABLING_PACKAGES.string.text
+msgid "Disabling %EXTENSION_NAME"
+msgstr "Оневозможување на %EXTENSION_NAME"
+
+#: dp_gui_dialog.src#RID_STR_ACCEPT_LICENSE.string.text
+msgid "Accept license for %EXTENSION_NAME"
+msgstr ""
+
+#: dp_gui_dialog.src#RID_STR_INSTALL_FOR_ALL.string.text
+msgid "~For all users"
+msgstr "~За сите корисници"
+
+#: dp_gui_dialog.src#RID_STR_INSTALL_FOR_ME.string.text
+msgid "~Only for me"
+msgstr "~Само за мене"
+
+#: dp_gui_dialog.src#RID_STR_ERROR_UNKNOWN_STATUS.string.text
+msgid "Error: The status of this extension is unknown"
+msgstr "Грешка: Статусот на оваа екстензија е непознат"
+
+#: dp_gui_dialog.src#RID_STR_CLOSE_BTN.string.text
+msgctxt "dp_gui_dialog.src#RID_STR_CLOSE_BTN.string.text"
+msgid "Close"
+msgstr "Затвори"
+
+#: dp_gui_dialog.src#RID_STR_EXIT_BTN.string.text
+msgid "Quit"
+msgstr ""
+
+#: 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 ""
+
+#: dp_gui_dialog.src#RID_STR_ERROR_MISSING_DEPENDENCIES.string.text
+#, fuzzy
+msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:"
+msgstr ""
+"Екстензијата не може да биде инсталирана бидејќи\n"
+"не се задоволени следните системски зависности:"
+
+#: 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 ""
+
+#: dp_gui_dialog.src#RID_STR_SHOW_LICENSE_CMD.string.text
+#, fuzzy
+msgid "Show license"
+msgstr "Прикажи ~слајд"
+
+#: 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 "Следете ги овие чекори за продолжите со инсталација на екстензијата:"
+
+#: 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 "Прочитајте го целосно Договорот за лиценца. Користете ја лентата за движење или копчето „Движи надолу“ во дијалогот за да го видите целосниот текст на лиценцата."
+
+#: 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 "Прифатете го Договорот за лиценца за екстензијата со притискање на копчето „Прифати“."
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.PB_LICENSE_DOWN.pushbutton.text
+msgid "~Scroll Down"
+msgstr "~Движи надолу"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.BTN_LICENSE_ACCEPT.okbutton.text
+msgid "Accept"
+msgstr "Прифати"
+
+#: dp_gui_dialog.src#RID_DLG_LICENSE.BTN_LICENSE_DECLINE.cancelbutton.text
+msgid "Decline"
+msgstr "Одбиј"
+
+#: 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 "Договор за лиценца за софтверска енстензија"
+
+#: 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 "Затвори"
+
+#: 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 "Договор за лиценца за софтверска енстензија"
+
+#: 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 ""
+"Ќе го инсталирате проширувањето \\'%NAME\\'.\n"
+"Кликнете \\'Во ред\\' за да продолжите со инсталацијата.\n"
+"Кликнете \\'Откажи\\' за да ја запрете инсталацијата."
+
+#: 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 ""
+
+#: 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 ""
+"Проверете дека други корисници не работат во исто време со истиот %PRODUCTNAME, кога ги менувате споделените проширувања во повеќе-корисничко опкружување.\n"
+"Кликнете \\'Во ред\\' за да го отстранете проширувањето.\n"
+"Клинете \\'Откажи\\' за да го запрете отстранувањето на проширувањето."
+
+#: 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 ""
+"Проверете дека други корисници не работат во исто време со истиот %PRODUCTNAME, кога ги менувате споделените проширувања во повеќе-корисничко опкружување.\n"
+"Кликнете \\'Во ред\\' за да го овозможите проширувањето.\n"
+"Клинете \\'Откажи\\' за да запрете со овозможувањето на проширувањето."
+
+#: 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 ""
+"Проверете дека други корисници не работат во исто време со истиот %PRODUCTNAME, кога ги менувате споделените проширувања во повеќе-корисничко опкружување.\n"
+"Кликнете \\'Во ред\\' за да го оневозможите проширувањето.\n"
+"Клинете \\'Откажи\\' за да запрете со оневозможувањето на проширувањето."
+
+#: dp_gui_dialog.src#RID_STR_UNSUPPORTED_PLATFORM.string.text
+msgid "The extension \\'%Name\\' does not work on this computer."
+msgstr "Проширувањето \\'%Name\\' не работи на овој компјутер."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_CHECKING.fixedtext.text
+msgid "Checking..."
+msgstr "Проверувам..."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_UPDATE.fixedtext.text
+msgid "~Available extension updates"
+msgstr "Дост~апни ажурирања за екстензии"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ALL.checkbox.text
+msgid "~Show all updates"
+msgstr "Прикажи ги ~сите ажурирања"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_DESCRIPTION.fixedline.text
+msgid "Description"
+msgstr "Опис"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_PUBLISHER_LABEL.fixedtext.text
+msgid "Publisher:"
+msgstr "Издавач:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_RELEASENOTES_LABEL.fixedtext.text
+msgid "What is new:"
+msgstr "Што е ново:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_RELEASENOTES_LINK.fixedtext.text
+msgid "Release Notes"
+msgstr "Белешки за изданието"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_OK.pushbutton.text
+msgid "~Install"
+msgstr "~Инсталирај"
+
+#: 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 "Затвори"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ERROR.string.text
+msgid "Error"
+msgstr "Грешка"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NONE.string.text
+msgid "No new updates are available."
+msgstr "Нема нови достапни ажурирања."
+
+#: 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 "Нема нови достапни ажурирања. За да ги видите сите ажурирања, означете го полето „Прикажи ги сите ажурирања“."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_FAILURE.string.text
+msgid "An error occurred:"
+msgstr "Настана грешка:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_UNKNOWNERROR.string.text
+msgid "Unknown error."
+msgstr "Непозната грешка."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODESCRIPTION.string.text
+#, fuzzy
+msgid "No more details are available for this update."
+msgstr "Нема достапен опис за оваа екстензија."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NOINSTALL.string.text
+msgid "The extension cannot be updated because:"
+msgstr "Екстензијата не може да биде инсталирана бидејќи:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODEPENDENCY.string.text
+#, fuzzy
+msgid "Required %PRODUCTNAME version doesn't match:"
+msgstr "Несоодветност:"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_NODEPENDENCY_CUR_VER.string.text
+#, fuzzy
+msgid "You have %PRODUCTNAME %VERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_BROWSERBASED.string.text
+msgid "browser based update"
+msgstr "ажурирање преку прелистувач"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_VERSION.string.text
+msgid "Version"
+msgstr "Верзија"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORE.string.text
+#, fuzzy
+msgid "Ignore this Update"
+msgstr "Спремно за ажурирање"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORE_ALL.string.text
+#, fuzzy
+msgid "Ignore all Updates"
+msgstr "Прикажи ги ~сите ажурирања"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_ENABLE.string.text
+#, fuzzy
+msgid "Enable Updates"
+msgstr "Мрежно ажурирање"
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.RID_DLG_UPDATE_IGNORED_UPDATE.string.text
+#, fuzzy
+msgid "This update will be ignored.\n"
+msgstr "Оваа карактеристика ќе биде комплетно отстранета."
+
+#: dp_gui_updatedialog.src#RID_DLG_UPDATE.modaldialog.text
+msgid "Extension Update"
+msgstr "Ажурирање на екстензија"
+
+#: 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 ""
+"Проверете дека други корисници не работат во исто време со истиот %PRODUCTNAME, кога ги менувате споделените проширувања во повеќе-корисничко опкружување.\n"
+"Кликнете \\'Во ред\\' за да ги ажурирате проширувањата.\n"
+"Клинете \\'Откажи\\' за да запрете со ажурирање на проширувањата."
+
+#: 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 ""
+"Ќе ја инсталирате верзијата $NEW на проширувањето \\'$NAME\\'.\n"
+"Понова верзија $DEPLOYED е веќе инсталирана.\n"
+"Кликнете \\'Во ред\\' за да го замените инсталираното проширување.\n"
+"Кликнете \\'Откажи\\' за ја запрете инсталацијата."
+
+#: 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 ""
+"Ќе ја инсталирате верзијата $NEW на проширувањето \\'$NAME\\'.\n"
+"Понова верзија $DEPLOYED, со име \\'$OLDNAME\\' е веќе инсталирано.\n"
+"Кликнете \\'Во ред\\' за да го замените инсталираното проширување.\n"
+"Кликнете \\'Откажи\\' за ја запрете инсталацијата."
+
+#: 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 ""
+"Ќе ја инсталирате верзијата $NEW на проширувањето \\'$NAME\\'.\n"
+"Таа верзија е веќе инсталирана.\n"
+"Кликнете \\'Во ред\\' за да го замените инсталираното проширување.\n"
+"Кликнете \\'Откажи\\' за ја запрете инсталацијата."
+
+#: 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 ""
+"Ќе ја инсталирате верзијата $NEW на проширувањето \\'$NAME\\'.\n"
+"Таа верзија под име \\'$OLDNAME\\', е веќе инсталирана.\n"
+"Кликнете \\'Во ред\\' за да го замените инсталираното проширување.\n"
+"Кликнете \\'Откажи\\' за ја запрете инсталацијата."
+
+#: 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 ""
+"Ќе ја инсталирате верзијата $NEW на проширувањето \\'$NAME\\'.\n"
+"Постара верзија $DEPLOYED е веќе инсталирана.\n"
+"Кликнете \\'Во ред\\' за да го замените инсталираното проширување.\n"
+"Кликнете \\'Откажи\\' за ја запрете инсталацијата."
+
+#: 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 ""
+"Ќе ја инсталирате верзијата $NEW на проширувањето \\'$NAME\\'.\n"
+"Постара верзија $DEPLOYED под име \\'$OLDNAME\\', е веќе инсталирана.\n"
+"Кликнете \\'Во ред\\' за да го замените инсталираното проширување.\n"
+"Кликнете \\'Откажи\\' за ја запрете инсталацијата."
+
+#: 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 "~Корисник"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_ADD.pushbutton.text
+msgid "~Add..."
+msgstr "~Додај..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_BTN_CHECK_UPDATES.pushbutton.text
+#, fuzzy
+msgid "~Check for Updates..."
+msgstr "Провери за ~ажурирања..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_GET_EXTENSIONS.fixedtext.text
+msgid "Get more extensions online..."
+msgstr "Земете повеќе екстензии од интернет..."
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_PROGRESS.fixedtext.text
+#, fuzzy
+msgctxt "dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.RID_EM_FT_PROGRESS.fixedtext.text"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Додавање на %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 "Затвори"
+
+#: dp_gui_dialog2.src#RID_DLG_EXTENSION_MANAGER.modelessdialog.text
+msgid "Extension Manager"
+msgstr "Менаџер на екстензии"
+
+#: 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 ""
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_FT_PROGRESS.fixedtext.text
+#, fuzzy
+msgctxt "dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_FT_PROGRESS.fixedtext.text"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Додавање на %EXTENSION_NAME"
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_BTN_CHECK_UPDATES.pushbutton.text
+#, fuzzy
+msgid "Check for ~Updates..."
+msgstr "Провери за ~ажурирања..."
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.RID_EM_BTN_CLOSE.pushbutton.text
+msgid "Disable all"
+msgstr ""
+
+#: dp_gui_dialog2.src#RID_DLG_UPDATE_REQUIRED.modaldialog.text
+msgid "Extension Update Required"
+msgstr ""
+
+#: 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 ""
+"Проверете дали други корисници работат со истиот %PRODUCTNAME кога инсталирате екстензија за сите корисници во повеќе-корисничко опкружување.\n"
+"\n"
+"За кој сакате да ја инсталирате екстензијата?\n"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_DOWNLOADING.fixedtext.text
+msgid "Downloading extensions..."
+msgstr "Симнувам екстензии..."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_RESULTS.fixedtext.text
+msgid "Result"
+msgstr "Резултат"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_OK.okbutton.text
+msgid "OK"
+msgstr "Во ред"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ABORT.cancelbutton.text
+msgid "Cancel Update"
+msgstr "Откажи ажурирање"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_INSTALLING.string.text
+msgid "Installing extensions..."
+msgstr "Инсталирам екстензии..."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_FINISHED.string.text
+msgid "Installation finished"
+msgstr "Инсталацијата заврши"
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_NO_ERRORS.string.text
+msgid "No errors."
+msgstr "Нема грешки."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD.string.text
+msgid "Error while downloading extension %NAME. "
+msgstr "Грешка при симнување на екстензијата %NAME. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED.string.text
+msgid "The error message is: "
+msgstr "Пораката за грешка е: "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION.string.text
+msgid "Error while installing extension %NAME. "
+msgstr "Грешка при инсталирање на екстензијата %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 "Договорот за лиценца за екстензијата %NAME беше одбиен. "
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL.string.text
+msgid "The extension will not be installed."
+msgstr "Екстензијата нема да биде инсталирана."
+
+#: dp_gui_updateinstalldialog.src#RID_DLG_UPDATEINSTALL.modaldialog.text
+msgid "Download and Installation"
+msgstr "Симнување и инсталација"
+
+#: 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 ""
+"Екстензијата не може да биде инсталирана бидејќи\n"
+"не се задоволени следните системски зависности:"
+
+#: dp_gui_dependencydialog.src#RID_DLG_DEPENDENCIES.modaldialog.text
+msgid "System dependencies check"
+msgstr "Проверка на системските зависности"
diff --git a/source/mk/desktop/source/deployment/manager.po b/source/mk/desktop/source/deployment/manager.po
new file mode 100644
index 00000000000..a83518200d6
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Копирање: "
+
+#: dp_manager.src#RID_STR_ERROR_WHILE_ADDING.string.text
+msgid "Error while adding: "
+msgstr "Грешка при додавање: "
+
+#: dp_manager.src#RID_STR_ERROR_WHILE_REMOVING.string.text
+msgid "Error while removing: "
+msgstr "Грешка при отстранување: "
+
+#: dp_manager.src#RID_STR_PACKAGE_ALREADY_ADDED.string.text
+msgid "Extension has already been added: "
+msgstr "Екстензијата е веќе додадена: "
+
+#: dp_manager.src#RID_STR_NO_SUCH_PACKAGE.string.text
+msgid "There is no such extension deployed: "
+msgstr "Таква екстензија не е инсталирана: "
+
+#: dp_manager.src#RID_STR_SYNCHRONIZING_REPOSITORY.string.text
+msgid "Synchronizing repository for %NAME extensions"
+msgstr ""
diff --git a/source/mk/desktop/source/deployment/misc.po b/source/mk/desktop/source/deployment/misc.po
new file mode 100644
index 00000000000..a634d9c1d47
--- /dev/null
+++ b/source/mk/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 03:27+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Непознато"
+
+#: 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/mk/desktop/source/deployment/registry.po b/source/mk/desktop/source/deployment/registry.po
new file mode 100644
index 00000000000..9e8ed06e492
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Овозможување: "
+
+#: dp_registry.src#RID_STR_REVOKING_PACKAGE.string.text
+msgid "Disabling: "
+msgstr "Оневозможување: "
+
+#: dp_registry.src#RID_STR_CANNOT_DETECT_MEDIA_TYPE.string.text
+msgid "Cannot detect media-type: "
+msgstr "Не може да се одреди типот на медиум: "
+
+#: dp_registry.src#RID_STR_UNSUPPORTED_MEDIA_TYPE.string.text
+msgid "This media-type is not supported: "
+msgstr "Типот на медиум не е поддржан: "
+
+#: dp_registry.src#RID_STR_ERROR_WHILE_REGISTERING.string.text
+msgid "An error occurred while enabling: "
+msgstr "Се појави грешка при овозможувањето: "
+
+#: dp_registry.src#RID_STR_ERROR_WHILE_REVOKING.string.text
+msgid "An error occurred while disabling: "
+msgstr "Се појави грешка при оневозможувањето: "
diff --git a/source/mk/desktop/source/deployment/registry/component.po b/source/mk/desktop/source/deployment/registry/component.po
new file mode 100644
index 00000000000..45211dd4352
--- /dev/null
+++ b/source/mk/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:22+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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-компонента од динамичка библиотека"
+
+#: dp_component.src#RID_STR_JAVA_COMPONENT.string.text
+msgid "UNO Java Component"
+msgstr "UNO Јава-компонента"
+
+#: dp_component.src#RID_STR_PYTHON_COMPONENT.string.text
+msgid "UNO Python Component"
+msgstr "UNO Python-компонента"
+
+#: dp_component.src#RID_STR_COMPONENTS.string.text
+#, fuzzy
+msgid "UNO Components"
+msgstr "UNO Јава-компонента"
+
+#: dp_component.src#RID_STR_RDB_TYPELIB.string.text
+msgid "UNO RDB Type Library"
+msgstr "UNO-библиотека со типови за RDB"
+
+#: dp_component.src#RID_STR_JAVA_TYPELIB.string.text
+msgid "UNO Java Type Library"
+msgstr "UNO-библиотека со типови за Java"
diff --git a/source/mk/desktop/source/deployment/registry/configuration.po b/source/mk/desktop/source/deployment/registry/configuration.po
new file mode 100644
index 00000000000..f3f103a9896
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Шема на конфигурацијата"
+
+#: dp_configuration.src#RID_STR_CONF_DATA.string.text
+msgid "Configuration Data"
+msgstr "Податоци за конфигурацијата"
diff --git a/source/mk/desktop/source/deployment/registry/help.po b/source/mk/desktop/source/deployment/registry/help.po
new file mode 100644
index 00000000000..c57b616fd05
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Помош"
+
+#: dp_help.src#RID_STR_HELPPROCESSING_GENERAL_ERROR.string.text
+msgid "The extension cannot be installed because:\n"
+msgstr "Екстензијата не може да се инсталира бидејќи:\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 "Екстензијата нема да се инсталира бидејќи се случи грешка во датотеките за помош:\n"
diff --git a/source/mk/desktop/source/deployment/registry/package.po b/source/mk/desktop/source/deployment/registry/package.po
new file mode 100644
index 00000000000..8ea2634c7be
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Екстензија"
diff --git a/source/mk/desktop/source/deployment/registry/script.po b/source/mk/desktop/source/deployment/registry/script.po
new file mode 100644
index 00000000000..b8a6df05964
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Basic-библиотека на %PRODUCTNAME"
+
+#: dp_script.src#RID_STR_DIALOG_LIB.string.text
+msgid "Dialog Library"
+msgstr "Библиотека со дијалози"
+
+#: dp_script.src#RID_STR_CANNOT_DETERMINE_LIBNAME.string.text
+msgid "The library name could not be determined."
+msgstr "Името на библиотеката не може да биде определено."
+
+#: dp_script.src#RID_STR_LIBNAME_ALREADY_EXISTS.string.text
+msgid "This library name already exists. Please choose a different name."
+msgstr "Ова име на библиотека веќе постои. Изберете друго име."
diff --git a/source/mk/desktop/source/deployment/registry/sfwk.po b/source/mk/desktop/source/deployment/registry/sfwk.po
new file mode 100644
index 00000000000..666dd99cc28
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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-библиотека"
diff --git a/source/mk/desktop/source/deployment/unopkg.po b/source/mk/desktop/source/deployment/unopkg.po
new file mode 100644
index 00000000000..13ca71f2910
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Договор за лиценца на екстензијата:"
+
+#: 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 "Прочитајте го целосно Договорот за лиценца прикажан погоре. Прифатете го со пишување „yes“ во конзолата и притискање на тастерот Return. Напишете „no“ за да одбиете и да го прекинете инсталирањето на екстензијата."
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_3.string.text
+msgid "[Enter \"yes\" or \"no\"]:"
+msgstr "[Внесете „yes“ или „no“]:"
+
+#: unopkg.src#RID_STR_UNOPKG_ACCEPT_LIC_4.string.text
+msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
+msgstr "Вашиот внес не е правилен. Внесете „yes“ или „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.src#RID_STR_UNOPKG_ERROR.string.text
+msgid "ERROR: "
+msgstr ""
diff --git a/source/mk/dictionaries/af_ZA.po b/source/mk/dictionaries/af_ZA.po
new file mode 100644
index 00000000000..2944a9fb53b
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/an_ES.po b/source/mk/dictionaries/an_ES.po
new file mode 100644
index 00000000000..238211d1317
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/ar.po b/source/mk/dictionaries/ar.po
new file mode 100644
index 00000000000..cbaf020d5f4
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/be_BY.po b/source/mk/dictionaries/be_BY.po
new file mode 100644
index 00000000000..a1ec6dd3a34
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/bg_BG.po b/source/mk/dictionaries/bg_BG.po
new file mode 100644
index 00000000000..2407a660f4d
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/bn_BD.po b/source/mk/dictionaries/bn_BD.po
new file mode 100644
index 00000000000..ecc404a73e4
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/br_FR.po b/source/mk/dictionaries/br_FR.po
new file mode 100644
index 00000000000..b3865ec4c06
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/ca.po b/source/mk/dictionaries/ca.po
new file mode 100644
index 00000000000..7938b036f49
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/cs_CZ.po b/source/mk/dictionaries/cs_CZ.po
new file mode 100644
index 00000000000..0bfd879961d
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/da_DK.po b/source/mk/dictionaries/da_DK.po
new file mode 100644
index 00000000000..d5c2628ea1f
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/de.po b/source/mk/dictionaries/de.po
new file mode 100644
index 00000000000..6ca414e8ab7
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/el_GR.po b/source/mk/dictionaries/el_GR.po
new file mode 100644
index 00000000000..4d53b7d5eda
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/en.po b/source/mk/dictionaries/en.po
new file mode 100644
index 00000000000..779fc97187e
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/en/dialog.po b/source/mk/dictionaries/en/dialog.po
new file mode 100644
index 00000000000..d71736698f1
--- /dev/null
+++ b/source/mk/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: mk\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 "Други"
+
+#: 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 "Речници"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Leaves.org.openoffice.lightproof.en.Label.value.text
+msgid "English sentence checking"
+msgstr ""
diff --git a/source/mk/dictionaries/es_ES.po b/source/mk/dictionaries/es_ES.po
new file mode 100644
index 00000000000..cb9ccc976ce
--- /dev/null
+++ b/source/mk/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: mk\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 ""
diff --git a/source/mk/dictionaries/et_EE.po b/source/mk/dictionaries/et_EE.po
new file mode 100644
index 00000000000..60c30b86966
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/fr_FR.po b/source/mk/dictionaries/fr_FR.po
new file mode 100644
index 00000000000..4cf6845c9eb
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/gd_GB.po b/source/mk/dictionaries/gd_GB.po
new file mode 100644
index 00000000000..e2ad593e76e
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/gl.po b/source/mk/dictionaries/gl.po
new file mode 100644
index 00000000000..d8cf516426f
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/gu_IN.po b/source/mk/dictionaries/gu_IN.po
new file mode 100644
index 00000000000..1aa5ed4ef4d
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/he_IL.po b/source/mk/dictionaries/he_IL.po
new file mode 100644
index 00000000000..6d34c3221d1
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/hi_IN.po b/source/mk/dictionaries/hi_IN.po
new file mode 100644
index 00000000000..1d972976ebd
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/hr_HR.po b/source/mk/dictionaries/hr_HR.po
new file mode 100644
index 00000000000..bc5c14d3e8b
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/hu_HU.po b/source/mk/dictionaries/hu_HU.po
new file mode 100644
index 00000000000..2094413e6fa
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/hu_HU/dialog.po b/source/mk/dictionaries/hu_HU/dialog.po
new file mode 100644
index 00000000000..6245f3f9c48
--- /dev/null
+++ b/source/mk/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: mk\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 ""
+
+#: 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 ""
+
+#: 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 "Речници"
+
+#: 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/mk/dictionaries/it_IT.po b/source/mk/dictionaries/it_IT.po
new file mode 100644
index 00000000000..f91ca28ea58
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/ku_TR.po b/source/mk/dictionaries/ku_TR.po
new file mode 100644
index 00000000000..425e35fb7a9
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/lt_LT.po b/source/mk/dictionaries/lt_LT.po
new file mode 100644
index 00000000000..fd4cb474d40
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/lv_LV.po b/source/mk/dictionaries/lv_LV.po
new file mode 100644
index 00000000000..bafc6145265
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/ne_NP.po b/source/mk/dictionaries/ne_NP.po
new file mode 100644
index 00000000000..d0f9e2b0ac4
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/nl_NL.po b/source/mk/dictionaries/nl_NL.po
new file mode 100644
index 00000000000..ec5e2a9e7d2
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/no.po b/source/mk/dictionaries/no.po
new file mode 100644
index 00000000000..a37a3697f12
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/oc_FR.po b/source/mk/dictionaries/oc_FR.po
new file mode 100644
index 00000000000..fa69c61875a
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/pl_PL.po b/source/mk/dictionaries/pl_PL.po
new file mode 100644
index 00000000000..6f99c2a701f
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/pt_BR.po b/source/mk/dictionaries/pt_BR.po
new file mode 100644
index 00000000000..bf7031f5fe9
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/pt_PT.po b/source/mk/dictionaries/pt_PT.po
new file mode 100644
index 00000000000..0e4cad5a281
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/ro.po b/source/mk/dictionaries/ro.po
new file mode 100644
index 00000000000..2dcc4826fda
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/ru_RU.po b/source/mk/dictionaries/ru_RU.po
new file mode 100644
index 00000000000..af1a0435e7a
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/ru_RU/dialog.po b/source/mk/dictionaries/ru_RU/dialog.po
new file mode 100644
index 00000000000..08e1f1cfc99
--- /dev/null
+++ b/source/mk/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: mk\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 ""
+
+#: 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 "Други"
+
+#: 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 "Наводници"
+
+#: OptionsDialog.xcu#..OptionsDialog.Nodes.org.openoffice.lightproof.Label.value.text
+msgid "Dictionaries"
+msgstr "Речници"
+
+#: 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/mk/dictionaries/si_LK.po b/source/mk/dictionaries/si_LK.po
new file mode 100644
index 00000000000..6fff70ec9b3
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/sk_SK.po b/source/mk/dictionaries/sk_SK.po
new file mode 100644
index 00000000000..998c39c0f56
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/sl_SI.po b/source/mk/dictionaries/sl_SI.po
new file mode 100644
index 00000000000..c2933e73ccb
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/sr.po b/source/mk/dictionaries/sr.po
new file mode 100644
index 00000000000..fb0ad2cf763
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/sv_SE.po b/source/mk/dictionaries/sv_SE.po
new file mode 100644
index 00000000000..0d0e471260c
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/sw_TZ.po b/source/mk/dictionaries/sw_TZ.po
new file mode 100644
index 00000000000..933f8ef9827
--- /dev/null
+++ b/source/mk/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: mk\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 ""
diff --git a/source/mk/dictionaries/te_IN.po b/source/mk/dictionaries/te_IN.po
new file mode 100644
index 00000000000..2b356a453fa
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/th_TH.po b/source/mk/dictionaries/th_TH.po
new file mode 100644
index 00000000000..acc7635a19f
--- /dev/null
+++ b/source/mk/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: mk\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 ""
diff --git a/source/mk/dictionaries/uk_UA.po b/source/mk/dictionaries/uk_UA.po
new file mode 100644
index 00000000000..e7590b91361
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/vi.po b/source/mk/dictionaries/vi.po
new file mode 100644
index 00000000000..adf94980288
--- /dev/null
+++ b/source/mk/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: mk\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/mk/dictionaries/zu_ZA.po b/source/mk/dictionaries/zu_ZA.po
new file mode 100644
index 00000000000..140aba56b89
--- /dev/null
+++ b/source/mk/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: mk\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/mk/editeng/source/accessibility.po b/source/mk/editeng/source/accessibility.po
new file mode 100644
index 00000000000..36f6f71493e
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 ""
+
+#: accessibility.src#RID_SVXSTR_A11Y_IMAGEBULLET_NAME.string.text
+msgid "Image bullet"
+msgstr ""
diff --git a/source/mk/editeng/source/editeng.po b/source/mk/editeng/source/editeng.po
new file mode 100644
index 00000000000..006b8554cbf
--- /dev/null
+++ b/source/mk/editeng/source/editeng.po
@@ -0,0 +1,117 @@
+#. 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 14:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: editeng.src#RID_EDITUNDO_DEL.string.text
+msgid "Delete"
+msgstr "Избриши"
+
+#: editeng.src#RID_EDITUNDO_MOVE.string.text
+#, fuzzy
+msgid "Move"
+msgstr ""
+"#-#-#-#-# undo.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Премести: $1\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Премести"
+
+#: editeng.src#RID_EDITUNDO_INSERT.string.text
+#, fuzzy
+msgid "Insert"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# report.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметнување\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметнување\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни"
+
+#: editeng.src#RID_EDITUNDO_REPLACE.string.text
+msgid "Replace"
+msgstr "Замени"
+
+#: editeng.src#RID_EDITUNDO_SETATTRIBS.string.text
+msgid "Apply attributes"
+msgstr "Примени атрибути"
+
+#: editeng.src#RID_EDITUNDO_RESETATTRIBS.string.text
+msgid "Reset attributes"
+msgstr "Ресетирај атрибути"
+
+#: editeng.src#RID_EDITUNDO_INDENT.string.text
+#, fuzzy
+msgid "Indent"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вовлекување\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вовлечи\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вовлекување"
+
+#: editeng.src#RID_EDITUNDO_SETSTYLE.string.text
+msgid "Apply Styles"
+msgstr ""
+
+#: editeng.src#RID_EDITUNDO_TRANSLITERATE.string.text
+msgid "~Change Case"
+msgstr "~Смени големина на букви"
+
+#: editeng.src#RID_MENU_SPELL.MN_SPELLING.menuitem.text
+msgid "~Spellcheck..."
+msgstr ""
+
+#: editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text
+#, fuzzy
+msgctxt "editeng.src#RID_MENU_SPELL.MN_INSERT.menuitem.text"
+msgid "~Add"
+msgstr "~Додај"
+
+#: 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 "~Додај"
+
+#: editeng.src#RID_MENU_SPELL.MN_IGNORE.menuitem.text
+msgid "Ignore All"
+msgstr ""
+
+#: editeng.src#RID_MENU_SPELL.MN_AUTOCORR.menuitem.text
+msgid "AutoCorrect"
+msgstr "Автоматска корекција"
+
+#: editeng.src#RID_STR_WORD.string.text
+msgid "Word is %x"
+msgstr ""
+
+#: editeng.src#RID_STR_PARAGRAPH.string.text
+msgid "Paragraph is %x"
+msgstr ""
diff --git a/source/mk/editeng/source/items.po b/source/mk/editeng/source/items.po
new file mode 100644
index 00000000000..ad9571a45a4
--- /dev/null
+++ b/source/mk/editeng/source/items.po
@@ -0,0 +1,1178 @@
+#. 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-12 00:41+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: svxitems.src#RID_SVXITEMS_TRUE.string.text
+msgid "True"
+msgstr "Точно"
+
+#: svxitems.src#RID_SVXITEMS_FALSE.string.text
+msgid "False"
+msgstr "Неточно"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_NONE.string.text
+msgid "No break"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_BEFORE.string.text
+msgid "Break before new column"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_AFTER.string.text
+msgid "Break after new column"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BREAK_COLUMN_BOTH.string.text
+msgid "Break before and after new column"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_BEFORE.string.text
+msgid "Break before new page"
+msgstr "Прелом пред нова страница"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_AFTER.string.text
+#, fuzzy
+msgid "Break after new page"
+msgstr "Прелом пред нова страница"
+
+#: svxitems.src#RID_SVXITEMS_BREAK_PAGE_BOTH.string.text
+msgid "Break before and after new page"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_NONE.string.text
+msgid "No Shadow"
+msgstr "Без сенка"
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_TOPLEFT.string.text
+msgid "Shadow top left"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_TOPRIGHT.string.text
+msgid "Shadow top right"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_BOTTOMLEFT.string.text
+msgid "Shadow bottom left"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_BOTTOMRIGHT.string.text
+msgid "Shadow bottom right"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR.string.text
+msgid "Color "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BLACK.string.text
+#, fuzzy
+msgid "Black"
+msgstr ""
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Црно\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Црна"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BLUE.string.text
+msgid "Blue"
+msgstr "Сина"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_GREEN.string.text
+msgid "Green"
+msgstr "Зелена"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_CYAN.string.text
+msgid "Cyan"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_RED.string.text
+msgid "Red"
+msgstr "Црвена"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_MAGENTA.string.text
+msgid "Magenta"
+msgstr "Магента"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_BROWN.string.text
+msgid "Brown"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_GRAY.string.text
+msgid "Gray"
+msgstr "Сива"
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTGRAY.string.text
+msgid "Light Gray"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTBLUE.string.text
+msgid "Light Blue"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTGREEN.string.text
+msgid "Light Green"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTCYAN.string.text
+msgid "Light Cyan"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTRED.string.text
+msgid "Light Red"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_LIGHTMAGENTA.string.text
+msgid "Light Magenta"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_YELLOW.string.text
+msgid "Yellow"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_COLOR_WHITE.string.text
+#, fuzzy
+msgid "White"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Бело\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Бела"
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_NONE.string.text
+msgid "Not Italic"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_OBLIQUE.string.text
+msgid "Oblique italic"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ITALIC_NORMAL.string.text
+#, fuzzy
+msgid "Italic"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"курзив\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_THIN.string.text
+msgid "thin"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_ULTRALIGHT.string.text
+msgid "ultra thin"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_LIGHT.string.text
+#, fuzzy
+msgid "light"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Надесно\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно"
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_SEMILIGHT.string.text
+msgid "semi light"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_NORMAL.string.text
+msgid "normal"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_MEDIUM.string.text
+msgid "medium"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_SEMIBOLD.string.text
+msgid "semi bold"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_BOLD.string.text
+msgid "bold"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_ULTRABOLD.string.text
+msgid "ultra bold"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WEIGHT_BLACK.string.text
+#, fuzzy
+msgid "black"
+msgstr ""
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Црно\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Црна"
+
+#: svxitems.src#RID_SVXITEMS_UL_NONE.string.text
+msgid "No underline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_SINGLE.string.text
+msgid "Single underline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DOUBLE.string.text
+msgid "Double underline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DOTTED.string.text
+msgid "Dotted underline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DONTKNOW.string.text
+#, fuzzy
+msgid "Underline"
+msgstr ""
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Подвлечено\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Подвлечено\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Подвлечено\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Подвлечено\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Потцртано"
+
+#: svxitems.src#RID_SVXITEMS_UL_DASH.string.text
+msgid "Underline (dashes)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_LONGDASH.string.text
+msgid "Underline (long dashes)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DASHDOT.string.text
+msgid "Underline (dot dash)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DASHDOTDOT.string.text
+msgid "Underline (dot dot dash)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_SMALLWAVE.string.text
+msgid "Underline (small wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_WAVE.string.text
+msgid "Underline (Wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_DOUBLEWAVE.string.text
+msgid "Underline (Double wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLD.string.text
+msgid "Underlined (Bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDOTTED.string.text
+msgid "Dotted underline (Bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASH.string.text
+msgid "Underline (Dash bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDLONGDASH.string.text
+msgid "Underline (long dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASHDOT.string.text
+msgid "Underline (dot dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDDASHDOTDOT.string.text
+msgid "Underline (dot dot dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_UL_BOLDWAVE.string.text
+msgid "Underline (wave, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_NONE.string.text
+msgid "No overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_SINGLE.string.text
+msgid "Single overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DOUBLE.string.text
+msgid "Double overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DOTTED.string.text
+msgid "Dotted overline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DONTKNOW.string.text
+msgid "Overline"
+msgstr "Натцртување"
+
+#: svxitems.src#RID_SVXITEMS_OL_DASH.string.text
+msgid "Overline (dashes)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_LONGDASH.string.text
+msgid "Overline (long dashes)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DASHDOT.string.text
+msgid "Overline (dot dash)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DASHDOTDOT.string.text
+msgid "Overline (dot dot dash)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_SMALLWAVE.string.text
+msgid "Overline (small wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_WAVE.string.text
+msgid "Overline (Wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_DOUBLEWAVE.string.text
+msgid "Overline (Double wave)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLD.string.text
+msgid "Overlined (Bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDOTTED.string.text
+msgid "Dotted overline (Bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASH.string.text
+msgid "Overline (Dash bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDLONGDASH.string.text
+msgid "Overline (long dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASHDOT.string.text
+msgid "Overline (dot dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDDASHDOTDOT.string.text
+msgid "Overline (dot dot dash, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OL_BOLDWAVE.string.text
+msgid "Overline (wave, bold)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_NONE.string.text
+msgid "No strikethrough"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_SINGLE.string.text
+msgid "Single strikethrough"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_DOUBLE.string.text
+msgid "Double strikethrough"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_BOLD.string.text
+msgid "Bold strikethrough"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_SLASH.string.text
+msgid "Strike through with slash"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_STRIKEOUT_X.string.text
+msgid "Strike through with Xes"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_NONE.string.text
+msgid "None"
+msgstr "Нема"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_VERSALIEN.string.text
+msgid "Caps"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_GEMEINE.string.text
+msgid "Lowercase"
+msgstr "Мали букви"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_TITEL.string.text
+#, fuzzy
+msgid "Title"
+msgstr ""
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# dbui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Титула\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# template.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Титула\n"
+"#-#-#-#-# res.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Титула\n"
+"#-#-#-#-# gallery2.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов\n"
+"#-#-#-#-# textconversiondlgs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Наслов"
+
+#: svxitems.src#RID_SVXITEMS_CASEMAP_KAPITAELCHEN.string.text
+msgid "Small caps"
+msgstr "Мали големи букви"
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_OFF.string.text
+msgid "Normal position"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_SUPER.string.text
+msgid "Superscript "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_SUB.string.text
+msgid "Subscript "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ESCAPEMENT_AUTO.string.text
+msgid "automatic"
+msgstr "автоматски"
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_LEFT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_LEFT.string.text"
+msgid "Align left"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_RIGHT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_RIGHT.string.text"
+msgid "Align right"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_BLOCK.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_BLOCK.string.text"
+msgid "Justify"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_CENTER.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_CENTER.string.text"
+msgid "Centered"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ADJUST_BLOCKLINE.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_ADJUST_BLOCKLINE.string.text"
+msgid "Justify"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_TAB_DECIMAL_CHAR.string.text
+msgid "Decimal Symbol:"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_TAB_FILL_CHAR.string.text
+msgid "Fill character:"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_LEFT.string.text
+#, fuzzy
+msgid "Left"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Лево\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Налево\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Лево\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Лево\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Лево\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Лево\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Лево\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Лево\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Лево"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_RIGHT.string.text
+#, fuzzy
+msgid "Right"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Надесно\n"
+"#-#-#-#-# dialogs.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно\n"
+"#-#-#-#-# tbxctrls.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Десно"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_DECIMAL.string.text
+#, fuzzy
+msgid "Decimal"
+msgstr ""
+"#-#-#-#-# dbgui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Децимални\n"
+"#-#-#-#-# resource.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Децимала\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Децимала"
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_CENTER.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_TAB_ADJUST_CENTER.string.text"
+msgid "Centered"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_TAB_ADJUST_DEFAULT.string.text
+#, fuzzy
+msgid "Default"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно\n"
+"#-#-#-#-# dlged.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандарден\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Преддефиниран\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Стандардно"
+
+#: svxitems.src#RID_SOLID.string.text
+#, fuzzy
+msgid "Single, solid"
+msgstr "Еднострано"
+
+#: svxitems.src#RID_DOTTED.string.text
+#, fuzzy
+msgid "Single, dotted"
+msgstr "Со фини точки"
+
+#: svxitems.src#RID_DASHED.string.text
+#, fuzzy
+msgid "Single, dashed"
+msgstr "Со фини црти"
+
+#: svxitems.src#RID_DOUBLE.string.text
+msgid "Double"
+msgstr "Двојна"
+
+#: svxitems.src#RID_THINTHICK_SMALLGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: small"
+msgstr ""
+
+#: svxitems.src#RID_THINTHICK_MEDIUMGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: medium"
+msgstr ""
+
+#: svxitems.src#RID_THINTHICK_LARGEGAP.string.text
+msgid "Double, inside: fine, outside: thick, spacing: large"
+msgstr ""
+
+#: svxitems.src#RID_THICKTHIN_SMALLGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: small"
+msgstr ""
+
+#: svxitems.src#RID_THICKTHIN_MEDIUMGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: medium"
+msgstr ""
+
+#: svxitems.src#RID_THICKTHIN_LARGEGAP.string.text
+msgid "Double, inside: thick, outside: fine, spacing: large"
+msgstr ""
+
+#: svxitems.src#RID_EMBOSSED.string.text
+msgid "3D embossed"
+msgstr ""
+
+#: svxitems.src#RID_ENGRAVED.string.text
+msgid "3D engraved"
+msgstr ""
+
+#: svxitems.src#RID_INSET.string.text
+#, fuzzy
+msgid "Inset"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# report.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметнување\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметнување\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни"
+
+#: svxitems.src#RID_OUTSET.string.text
+#, fuzzy
+msgid "Outset"
+msgstr "Надвор"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_MM.string.text
+msgid "mm"
+msgstr "мм"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_CM.string.text
+msgid "cm"
+msgstr "см"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_INCH.string.text
+msgid "inch"
+msgstr "инчи"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_POINT.string.text
+msgid "pt"
+msgstr "точки"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_TWIP.string.text
+msgid "twip"
+msgstr "твип"
+
+#: svxitems.src#RID_SVXITEMS_METRIC_PIXEL.string.text
+msgid "pixel"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOWED_TRUE.string.text
+msgid "Shadowed"
+msgstr "Засенчено"
+
+#: svxitems.src#RID_SVXITEMS_SHADOWED_FALSE.string.text
+#, fuzzy
+msgid "Not Shadowed"
+msgstr "Без сенка"
+
+#: svxitems.src#RID_SVXITEMS_BLINK_TRUE.string.text
+msgid "Blinking"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BLINK_FALSE.string.text
+msgid "Not Blinking"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_AUTOKERN_TRUE.string.text
+msgid "Pair Kerning"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_AUTOKERN_FALSE.string.text
+msgid "No pair kerning"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WORDLINE_TRUE.string.text
+msgid "Individual words"
+msgstr "Одделни зборови"
+
+#: svxitems.src#RID_SVXITEMS_WORDLINE_FALSE.string.text
+msgid "Not Words Only"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CONTOUR_TRUE.string.text
+#, fuzzy
+msgid "Outline"
+msgstr ""
+"#-#-#-#-# index.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# fmtui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# chrdlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Главни црти\n"
+"#-#-#-#-# core.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# items.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Контура"
+
+#: svxitems.src#RID_SVXITEMS_CONTOUR_FALSE.string.text
+msgid "No Outline"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PRINT_TRUE.string.text
+#, fuzzy
+msgid "Print"
+msgstr ""
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Печати\n"
+"#-#-#-#-# pagedlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Печатење\n"
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Печатење\n"
+"#-#-#-#-# contnr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Печати"
+
+#: svxitems.src#RID_SVXITEMS_PRINT_FALSE.string.text
+msgid "Don't print"
+msgstr "Не печати"
+
+#: svxitems.src#RID_SVXITEMS_OPAQUE_TRUE.string.text
+msgid "Opaque"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_OPAQUE_FALSE.string.text
+msgid "Not Opaque"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FMTKEEP_TRUE.string.text
+msgid "Keep with next paragraph"
+msgstr "Задржи со следниот пасус"
+
+#: svxitems.src#RID_SVXITEMS_FMTKEEP_FALSE.string.text
+msgid "Don't Keep Paragraphs Together"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FMTSPLIT_TRUE.string.text
+msgid "Split paragraph"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FMTSPLIT_FALSE.string.text
+msgid "Don't split paragraph"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_CONTENT_TRUE.string.text
+msgid "Contents protected"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_CONTENT_FALSE.string.text
+msgid "Contents not protected"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_SIZE_TRUE.string.text
+msgid "Size protected"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_SIZE_FALSE.string.text
+msgid "Size not protected"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PROT_POS_TRUE.string.text
+msgid "Position protected"
+msgstr "Позицијата е заштитена"
+
+#: svxitems.src#RID_SVXITEMS_PROT_POS_FALSE.string.text
+#, fuzzy
+msgid "Position not protected"
+msgstr "Позицијата е заштитена"
+
+#: svxitems.src#RID_SVXITEMS_TRANSPARENT_TRUE.string.text
+#, fuzzy
+msgid "Transparent"
+msgstr ""
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Проѕирен\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Проѕирно"
+
+#: svxitems.src#RID_SVXITEMS_TRANSPARENT_FALSE.string.text
+msgid "Not Transparent"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_TRUE.string.text
+msgid "Hyphenation"
+msgstr "Разделување"
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_FALSE.string.text
+msgid "No hyphenation"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PAGE_END_TRUE.string.text
+msgid "Page End"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PAGE_END_FALSE.string.text
+msgid "No Page End"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SIZE_WIDTH.string.text
+msgid "Width: "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SIZE_HEIGHT.string.text
+msgid "Height: "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_LEFT.string.text
+msgid "Indent left "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_FLINE.string.text
+msgid "First Line "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_LRSPACE_RIGHT.string.text
+msgid "Indent right "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SHADOW_COMPLETE.string.text
+#, fuzzy
+msgid "Shadow: "
+msgstr "Засенчено"
+
+#: svxitems.src#RID_SVXITEMS_BORDER_COMPLETE.string.text
+msgid "Borders "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_NONE.string.text
+msgid "No border"
+msgstr "Без раб"
+
+#: svxitems.src#RID_SVXITEMS_BORDER_TOP.string.text
+msgid "top "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_BOTTOM.string.text
+msgid "bottom "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_LEFT.string.text
+msgid "left "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_RIGHT.string.text
+msgid "right "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_BORDER_DISTANCE.string.text
+msgid "Spacing "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ULSPACE_UPPER.string.text
+msgid "From top "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ULSPACE_LOWER.string.text
+msgid "From bottom "
+msgstr ""
+
+#. pb: %1 == will be replaced by the number of lines
+#: svxitems.src#RID_SVXITEMS_LINES.string.text
+msgid "%1 Lines"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_WIDOWS_COMPLETE.string.text
+msgid "Widow control"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_ORPHANS_COMPLETE.string.text
+msgid "Orphan control"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MINLEAD.string.text
+msgid "Characters at end of line"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MINTRAIL.string.text
+msgid "Characters at beginning of line"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HYPHEN_MAX.string.text
+msgid "Hyphens"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PAGEMODEL_COMPLETE.string.text
+msgid "Page Style: "
+msgstr "Стил на страница: "
+
+#: svxitems.src#RID_SVXITEMS_KERNING_COMPLETE.string.text
+msgid "Kerning "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_KERNING_EXPANDED.string.text
+msgid "locked "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_KERNING_CONDENSED.string.text
+msgid "Condensed "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_GRAPHIC.string.text
+msgid "Graphic"
+msgstr "Графички"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_NONE_STYLE.string.text
+msgid "none"
+msgstr "Нема"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_DOT_STYLE.string.text
+msgid "Dots "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_CIRCLE_STYLE.string.text
+msgid "Circle "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_DISC_STYLE.string.text
+msgid "Filled circle "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_ACCENT_STYLE.string.text
+msgid "Accent "
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_ABOVE_POS.string.text
+msgid "Above"
+msgstr "Над"
+
+#: svxitems.src#RID_SVXITEMS_EMPHASIS_BELOW_POS.string.text
+msgid "Below"
+msgstr "Под"
+
+#: svxitems.src#RID_SVXITEMS_TWOLINES_OFF.string.text
+#, fuzzy
+msgid "Double-lined off"
+msgstr "Двојно подвлечено"
+
+#: svxitems.src#RID_SVXITEMS_TWOLINES.string.text
+msgid "Double-lined"
+msgstr "Двојно подвлечено"
+
+#: svxitems.src#RID_SVXITEMS_SCRPTSPC_OFF.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_SCRPTSPC_OFF.string.text"
+msgid "No automatic character spacing"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_SCRPTSPC_ON.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_SCRPTSPC_ON.string.text"
+msgid "No automatic character spacing"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HNGPNCT_OFF.string.text
+msgid "No hanging punctuation at line end"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HNGPNCT_ON.string.text
+msgid "Hanging punctuation at line end"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FORBIDDEN_RULE_OFF.string.text
+msgid "Apply list of forbidden characters to beginning and end of lines"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FORBIDDEN_RULE_ON.string.text
+msgid "Don't apply list of forbidden characters to beginning and end of lines"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE_OFF.string.text
+msgid "No rotated characters"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE.string.text
+msgid "Character rotated by $(ARG1)°"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARROTATE_FITLINE.string.text
+msgid "Fit to line"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARSCALE.string.text
+msgid "Characters scaled $(ARG1)%"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARSCALE_OFF.string.text
+msgid "No scaled characters"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_NONE.string.text
+msgid "No relief"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_EMBOSSED.string.text
+msgid "Relief"
+msgstr "Релјеф"
+
+#: svxitems.src#RID_SVXITEMS_RELIEF_ENGRAVED.string.text
+msgid "Engraved"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_AUTO.string.text
+msgid "Automatic text alignment"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_BASELINE.string.text
+msgid "Text aligned to base line"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_TOP.string.text
+msgid "Text aligned top"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_CENTER.string.text
+msgid "Text aligned middle"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARAVERTALIGN_BOTTOM.string.text
+msgid "Text aligned bottom"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_HORI_LEFT_TOP.string.text
+msgid "Text direction left-to-right (horizontal)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_HORI_RIGHT_TOP.string.text
+msgid "Text direction right-to-left (horizontal)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT.string.text
+msgid "Text direction right-to-left (vertical)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT.string.text
+msgid "Text direction left-to-right (vertical)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_FRMDIR_ENVIRONMENT.string.text
+msgid "Use superordinate object text direction setting"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARASNAPTOGRID_ON.string.text
+msgid "Paragraph snaps to text grid (if active)"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_PARASNAPTOGRID_OFF.string.text
+msgid "Paragraph does not snap to text grid"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARHIDDEN_FALSE.string.text
+msgid "Not hidden"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_CHARHIDDEN_TRUE.string.text
+msgid "Hidden"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_STANDARD.string.text
+msgid "Horizontal alignment default"
+msgstr "Стандардно хоризонтално порамнување"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_LEFT.string.text"
+msgid "Align left"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_CENTER.string.text
+msgid "Centered horizontally"
+msgstr "Центрирано хоризонтално"
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_RIGHT.string.text"
+msgid "Align right"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text
+msgctxt "svxitems.src#RID_SVXITEMS_HORJUST_BLOCK.string.text"
+msgid "Justify"
+msgstr ""
+
+#: svxitems.src#RID_SVXITEMS_HORJUST_REPEAT.string.text
+msgid "Repeat alignment"
+msgstr "Повтори порамнување"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_STANDARD.string.text
+msgid "Vertical alignment default"
+msgstr "Стандардно вертикално порамнување"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_TOP.string.text
+msgid "Align to top"
+msgstr "Порамни кон врвот"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_CENTER.string.text
+msgid "Centered vertically"
+msgstr "Центрирано вертикално"
+
+#: svxitems.src#RID_SVXITEMS_VERJUST_BOTTOM.string.text
+msgid "Align to bottom"
+msgstr "Порамни кон дното"
+
+#: svxitems.src#RID_SVXITEMS_JUSTMETHOD_AUTO.string.text
+msgid "Automatic"
+msgstr "Автоматски"
+
+#: svxitems.src#RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE.string.text
+msgid "Distributed"
+msgstr ""
+
+#: page.src#RID_SVXSTR_PAPERBIN.string.text
+msgid "Paper tray"
+msgstr "Фиока за хартија"
+
+#: page.src#RID_SVXSTR_PAPERBIN_SETTINGS.string.text
+msgid "[From printer settings]"
+msgstr ""
diff --git a/source/mk/editeng/source/misc.po b/source/mk/editeng/source/misc.po
new file mode 100644
index 00000000000..0c06968d7d7
--- /dev/null
+++ b/source/mk/editeng/source/misc.po
@@ -0,0 +1,45 @@
+#. 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-12 00:41+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Дали да ја продолжам проверката од почетокот на документот?"
+
+#: lingu.src#RID_SVXQB_BW_CONTINUE.querybox.text
+#, fuzzy
+msgid "Continue checking at end of document?"
+msgstr "Дали да ја продолжам проверката од почетокот на документот?"
+
+#: 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 ""
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_UNKNOWN.string.text
+msgid ""
+"Word cannot be added to dictionary\n"
+"due to unknown reason."
+msgstr ""
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_FULL.string.text
+msgid "The dictionary is already full."
+msgstr ""
+
+#: lingu.src#RID_SVXSTR_DIC_ERR_READONLY.string.text
+msgid "The dictionary is read-only."
+msgstr ""
diff --git a/source/mk/editeng/source/outliner.po b/source/mk/editeng/source/outliner.po
new file mode 100644
index 00000000000..e9aa3be5072
--- /dev/null
+++ b/source/mk/editeng/source/outliner.po
@@ -0,0 +1,78 @@
+#. 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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: outliner.src#RID_OUTLUNDO_HEIGHT.string.text
+#, fuzzy
+msgid "Move"
+msgstr ""
+"#-#-#-#-# undo.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Премести: $1\n"
+"#-#-#-#-# src.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Премести"
+
+#: outliner.src#RID_OUTLUNDO_DEPTH.string.text
+#, fuzzy
+msgid "Indent"
+msgstr ""
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вовлекување\n"
+"#-#-#-#-# misc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вовлечи\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вовлекување"
+
+#: outliner.src#RID_OUTLUNDO_EXPAND.string.text
+msgid "Show subpoints"
+msgstr ""
+
+#: outliner.src#RID_OUTLUNDO_COLLAPSE.string.text
+#, fuzzy
+msgid "Collapse"
+msgstr ""
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Затворање\n"
+"#-#-#-#-# propctrlr.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Спушти"
+
+#: outliner.src#RID_OUTLUNDO_ATTR.string.text
+msgid "Apply attributes"
+msgstr "Примени атрибути"
+
+#: outliner.src#RID_OUTLUNDO_INSERT.string.text
+#, fuzzy
+msgid "Insert"
+msgstr ""
+"#-#-#-#-# dlg.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# report.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# ribbar.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметнување\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# fldui.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# dialog.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметнување\n"
+"#-#-#-#-# appl.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# formwizard.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни\n"
+"#-#-#-#-# basicide.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Вметни"
diff --git a/source/mk/extensions/source/abpilot.po b/source/mk/extensions/source/abpilot.po
new file mode 100644
index 00000000000..db439a87319
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Тип на адресар"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_INVOKE_ADMIN_DIALOG.string.text
+msgid "Connection Settings"
+msgstr "Поставувања за поврзување"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_TABLE_SELECTION.string.text
+msgid "Table selection"
+msgstr "Избор на табела"
+
+#: 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 "Доделување поле"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.STR_FINAL_CONFIRM.string.text
+msgid "Data Source Title"
+msgstr "Наслов на изворот на податоци"
+
+#: abspilot.src#RID_DLG_ADDRESSBOOKSOURCEPILOT.modaldialog.text
+msgid "Address Book Data Source Wizard"
+msgstr "Волшебник за извор на податоци за адресар"
+
+#: 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 Ви овозможува да пристапите кон податоци за адреси што веќе ги имате на Вашиот систем. За да го направите ова, ќе биде креиран извор на податоци во %PRODUCTNAME во кој вашите податоци за адреси ќе бидат достапни во табеларна форма.\n"
+"\n"
+"Овој волшебник Ви помага да го креирате изворот на податоци."
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.FL_TYPE.fixedline.text
+msgid "Please select the type of your external address book:"
+msgstr "Изберете го типот на Вашиот надворешен адресар:"
+
+#: 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"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_MACAB.radiobutton.text
+msgid "Mac OS X address book"
+msgstr "Адресар на Mac OS X"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_LDAP.radiobutton.text
+msgid "LDAP address data"
+msgstr "LDAP-податоци за адреси"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OUTLOOK.radiobutton.text
+msgid "Outlook address book"
+msgstr "Outlook-адресар"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OUTLOOKEXPRESS.radiobutton.text
+msgid "Windows system address book"
+msgstr "Системски адресар од Windows"
+
+#: abspilot.src#RID_PAGE_SELECTABTYPE.RB_OTHER.radiobutton.text
+msgid "Other external data source"
+msgstr "Друг надворешен извор на податоци"
+
+#: 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 ""
+"За да го конфигурирате новиот извор на податоци, потребни се дополнителни информации.\n"
+"\n"
+"Кликнете на следното копче за да отворите друг дијалог во кој ќе ги внесете потребните информации."
+
+#: abspilot.src#RID_PAGE_ADMININVOKATION.PB_INVOKE_ADMIN_DIALOG.pushbutton.text
+msgid "Settings"
+msgstr "Поставувања"
+
+#: 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 ""
+"Поврзувањето до изворот на податоци не можеше да се воспостави.\n"
+"Пред да продолжите, проверете ги поставувањата или (на претходната страница) изберете друг тип на извор на податоци за адреси."
+
+#: 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 ""
+"Надворешниот извор на податоци што го избравте содржи повеќе од еден адресар.\n"
+"Изберете го оној со кој што ќе работите најчесто:"
+
+#: 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 ""
+"За да ги вклучите податоците за адреси во Вашите обрасци, %PRODUCTNAME треба да знае кои полиња кои податоци ги содржат.\n"
+"\n"
+"На пример, можеби сте ги ставиле адресите за е-пошта во полињата именувани „email“ или „E-mail“ или „EM“ - или нешто сосема друго.\n"
+"\n"
+"Кликнете го копчето подолу за да отворите друг дијалог каде што може да ги внесете поставувањата за Вашиот извор на податоци."
+
+#: 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 "Доделување поле"
+
+#: 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 ""
+"Ова беа сите информации потребни за интегрирање на Вашите податоци за адреси во % PRODUCTNAME.\n"
+"\n"
+"Сега, само внесете го името под кое сакате да го регистрирате изворот на податоци во %PRODUCTNAME."
+
+#: abspilot.src#RID_PAGE_FINAL.FT_LOCATION.fixedtext.text
+msgid "Location"
+msgstr "Локација"
+
+#: abspilot.src#RID_PAGE_FINAL.PB_BROWSE.pushbutton.text
+msgid "Browse..."
+msgstr "Прелистај..."
+
+#: abspilot.src#RID_PAGE_FINAL.CB_REGISTER_DS.checkbox.text
+msgid "Make this address book available to all modules in %PRODUCTNAME."
+msgstr "Направи го адресарот достапен за сите модули во %PRODUCTNAME."
+
+#: abspilot.src#RID_PAGE_FINAL.FT_NAME_EXPL.fixedtext.text
+msgid "Address book name"
+msgstr "Име на адресарот"
+
+#: 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 "Друг извор на податоци веќе го користи тоа име. Бидејќи изворите на податоци глобално треба да имаат единствени имиња, треба да изберете друго име."
+
+#: abspilot.src#RID_ERR_NEEDTYPESELECTION.errorbox.text
+msgid "Please select a type of address book."
+msgstr "Изберете тип на адресар."
+
+#: 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 ""
+"Изворот на податоци не содржи табели.\n"
+"Дали сепак сакате да го конфигурирате како извор на податоци?"
+
+#: 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 "Адреси"
+
+#: abspilot.src#RID_STR_ADMINDIALOGTITLE.string.text
+msgid "Create Address Data Source"
+msgstr "Креирање извор на податоци за адресар"
+
+#: abspilot.src#RID_STR_NOCONNECTION.string.text
+msgid "The connection could not be established."
+msgstr "Поврзувањето може да не биде воспоставено."
+
+#: abspilot.src#RID_STR_PLEASECHECKSETTINGS.string.text
+msgid "Please check the settings made for the data source."
+msgstr "Проверете ги поставувањата за изворот на податоци."
+
+#: abspilot.src#RID_STR_FIELDDIALOGTITLE.string.text
+msgid "Address Data - Field Assignment"
+msgstr "Податоци за адреса - Доделување поле"
+
+#: 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 ""
+"Нема доделени полиња во моментов.\n"
+"Можете или да доделите полиња сега или подоцна така што прво ќе изберете:\n"
+"„Датотека - Образец - Извор на адресар...“"
diff --git a/source/mk/extensions/source/bibliography.po b/source/mk/extensions/source/bibliography.po
new file mode 100644
index 00000000000..a8bd7a3d495
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Избор на поле:"
+
+#: bib.src#RID_BIB_STR_TABWIN_PREFIX.string.text
+msgid "Table;Query;Sql;Sql [Native]"
+msgstr "Табела;Прашање;Sql;Sql [изворен]"
+
+#: bib.src#RID_BIB_STR_FRAME_TITLE.string.text
+msgid "Bibliography Database"
+msgstr "Библиографска база на податоци"
+
+#: bib.src#RID_MAP_QUESTION.string.text
+msgid "Do you want to edit the column arrangement?"
+msgstr "Дали сакате да го промените распоредот на колоните?"
+
+#: sections.src#RID_TP_GENERAL.ST_ERROR_PREFIX.string.text
+msgid "The following column names could not be assigned:\n"
+msgstr "Следните имиња на колони не можеше да бидат доделени:\n"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_ARTICLE.string.text
+msgid "Article"
+msgstr "Статија"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_BOOK.string.text
+msgid "Book"
+msgstr "Книга"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_BOOKLET.string.text
+msgid "Brochures"
+msgstr "Брошури"
+
+#: 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 "Зборник од конференција"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INBOOK.string.text
+msgid "Book excerpt"
+msgstr "Извадок од книга"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_INCOLLECTION.string.text
+msgid "Book excerpt with title"
+msgstr "Извадок од книга со наслов"
+
+#: 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 "Зборник од конференција"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_JOURNAL.string.text
+msgid "Journal"
+msgstr "Дневник"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MANUAL.string.text
+msgid "Techn. documentation"
+msgstr "Техничка документација"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MASTERSTHESIS.string.text
+msgid "Thesis"
+msgstr "Теза"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_MISC.string.text
+msgid "Miscellaneous"
+msgstr "Разно"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_PHDTHESIS.string.text
+msgid "Dissertation"
+msgstr "Дисертација"
+
+#: 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 "Зборник од конференција"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_TECHREPORT.string.text
+msgid "Research report"
+msgstr "Извештај од истражување"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_UNPUBLISHED.string.text
+msgid "Unpublished"
+msgstr "Неиздадено"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_EMAIL.string.text
+msgid "e-mail"
+msgstr "е-пошта"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_WWW.string.text
+msgid "WWW document"
+msgstr "WWW-документ"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM1.string.text
+msgid "User-defined1"
+msgstr "Кориснички дефинирано 1"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM2.string.text
+msgid "User-defined2"
+msgstr "Кориснички дефинирано 2"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM3.string.text
+msgid "User-defined3"
+msgstr "Кориснички дефинирано 3"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM4.string.text
+msgid "User-defined4"
+msgstr "Кориснички дефинирано 4"
+
+#: sections.src#RID_TP_GENERAL.ST_TYPE_CUSTOM5.string.text
+msgid "User-defined5"
+msgstr "Кориснички дефинирано 5"
+
+#: sections.src#RID_TP_GENERAL.tabpage.text
+msgid "General"
+msgstr "Општо"
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_INSERT.menuitem.text
+msgid "Insert Section..."
+msgstr "Вметни дел..."
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_REMOVE.menuitem.text
+msgid "Delete Section..."
+msgstr "Избриши дел..."
+
+#: sections.src#RID_POPUP_ME_VIEW.PU_CHG_NAME.menuitem.text
+msgid "Modify Name..."
+msgstr "Измени име..."
+
+#: sections.src#ST_IDENTIFIER.string.text
+msgid "~Short name"
+msgstr "~Кратко име"
+
+#: sections.src#ST_AUTHTYPE.string.text
+msgid "~Type"
+msgstr "~Тип"
+
+#: sections.src#ST_YEAR.string.text
+msgid "~Year"
+msgstr "~Година"
+
+#: sections.src#ST_AUTHOR.string.text
+msgid "Author(s)"
+msgstr "Автор(и)"
+
+#: sections.src#ST_TITLE.string.text
+msgid "Tit~le"
+msgstr "Нас~лов"
+
+#: sections.src#ST_PUBLISHER.string.text
+msgid "~Publisher"
+msgstr "~Издавач"
+
+#: sections.src#ST_ADDRESS.string.text
+msgid "A~ddress"
+msgstr "А~дреса"
+
+#: sections.src#ST_ISBN.string.text
+msgid "~ISBN"
+msgstr "~ISBN"
+
+#: sections.src#ST_CHAPTER.string.text
+msgid "~Chapter"
+msgstr "Погла~вје"
+
+#: sections.src#ST_PAGE.string.text
+msgid "Pa~ge(s)"
+msgstr "Ст~раници"
+
+#: sections.src#ST_EDITOR.string.text
+msgid "Editor"
+msgstr "Уредник"
+
+#: sections.src#ST_EDITION.string.text
+msgid "Ed~ition"
+msgstr "~Издание"
+
+#: sections.src#ST_BOOKTITLE.string.text
+msgid "~Book title"
+msgstr "~Наслов на книга"
+
+#: sections.src#ST_VOLUME.string.text
+msgid "Volume"
+msgstr "Том"
+
+#: sections.src#ST_HOWPUBLISHED.string.text
+msgid "Publication t~ype"
+msgstr "Тип на пуб~ликација"
+
+#: sections.src#ST_ORGANIZATION.string.text
+msgid "Organi~zation"
+msgstr "Органи~зација"
+
+#: sections.src#ST_INSTITUTION.string.text
+msgid "Instit~ution"
+msgstr "Инстит~уција"
+
+#: sections.src#ST_SCHOOL.string.text
+msgid "University"
+msgstr "Универзитет"
+
+#: sections.src#ST_REPORT.string.text
+msgid "Type of re~port"
+msgstr "Тип на и~звештај"
+
+#: sections.src#ST_MONTH.string.text
+msgid "~Month"
+msgstr "~Месец"
+
+#: sections.src#ST_JOURNAL.string.text
+msgid "~Journal"
+msgstr "~Дневник"
+
+#: sections.src#ST_NUMBER.string.text
+msgid "Numb~er"
+msgstr "Бр~ој"
+
+#: sections.src#ST_SERIES.string.text
+msgid "Se~ries"
+msgstr "Се~рии"
+
+#: sections.src#ST_ANNOTE.string.text
+msgid "Ann~otation"
+msgstr "Б~елешка"
+
+#: sections.src#ST_NOTE.string.text
+msgid "~Note"
+msgstr "~Белешка"
+
+#: sections.src#ST_URL.string.text
+msgid "URL"
+msgstr "URL"
+
+#: sections.src#ST_CUSTOM1.string.text
+msgid "User-defined field ~1"
+msgstr "Кориснички дефинирано поле ~1"
+
+#: sections.src#ST_CUSTOM2.string.text
+msgid "User-defined field ~2"
+msgstr "Кориснички дефинирано поле ~2"
+
+#: sections.src#ST_CUSTOM3.string.text
+msgid "User-defined field ~3"
+msgstr "Кориснички дефинирано поле ~3"
+
+#: sections.src#ST_CUSTOM4.string.text
+msgid "User-defined field ~4"
+msgstr "Кориснички дефинирано поле ~4"
+
+#: sections.src#ST_CUSTOM5.string.text
+msgid "User-defined field ~5"
+msgstr "Кориснички дефинирано поле ~5"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_FT_SOURCE.toolboxitem.text
+msgid "Table"
+msgstr "Табела"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_FT_QUERY.toolboxitem.text
+msgid "Search Key"
+msgstr "Клуч за пребарување"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_AUTOFILTER.toolboxitem.text
+msgid "AutoFilter"
+msgstr "Автоматски филтер"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_FILTERCRIT.toolboxitem.text
+msgid "Standard Filter"
+msgstr "Стандарден филтер"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_REMOVEFILTER.toolboxitem.text
+msgid "Remove Filter"
+msgstr "Отстрани филтер"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_COL_ASSIGN.toolboxitem.text
+msgid "Column Arrangement"
+msgstr "Распоред на колони"
+
+#: toolbar.src#RID_BIB_TOOLBAR.TBC_BT_CHANGESOURCE.toolboxitem.text
+msgid "Data Source"
+msgstr "Извор на податоци"
+
+#: datman.src#RID_DLG_MAPPING.GB_MAPPING.fixedline.text
+msgid "Column names"
+msgstr "Имиња на колоните"
+
+#: datman.src#RID_DLG_MAPPING.ST_NONE.string.text
+msgid "<none>"
+msgstr "<нема>"
+
+#: datman.src#RID_DLG_MAPPING.modaldialog.text
+msgid "Column Layout for Table %1"
+msgstr "Изглед на колоните за табелата %1"
+
+#: datman.src#RID_DLG_DBCHANGE.ST_ENTRY.string.text
+msgid "Entry"
+msgstr "Елемент"
+
+#: datman.src#RID_DLG_DBCHANGE.modaldialog.text
+msgid "Choose Data Source"
+msgstr "Избирање извор на податоци"
diff --git a/source/mk/extensions/source/dbpilots.po b/source/mk/extensions/source/dbpilots.po
new file mode 100644
index 00000000000..9700e2df29c
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Волшебник за елемент од група"
+
+#: dbpilots.src#RID_DLG_GRIDWIZARD.modaldialog.text
+msgid "Table Element Wizard"
+msgstr "Волшебник за елемент од табела"
+
+#: dbpilots.src#RID_STR_LISTWIZARD_TITLE.string.text
+msgid "List Box Wizard"
+msgstr "Волшебник за поле со листа"
+
+#: dbpilots.src#RID_STR_COMBOWIZARD_TITLE.string.text
+msgid "Combo Box Wizard"
+msgstr "Волшебник за комбинирана листа"
+
+#: dbpilots.src#RID_STR_COULDNOTOPENTABLE.string.text
+msgid "The table connection to the data source could not be established."
+msgstr "Врската на табелата до изворот на податоци не може да биде воспоставена."
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOLABELS.fixedtext.text
+msgid "Which ~names do you want to give the option fields?"
+msgstr "Кои ~имиња сакате да им ги дадете на полињата за опции?"
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOBUTTONS.fixedtext.text
+msgctxt "groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.FT_RADIOBUTTONS.fixedtext.text"
+msgid "~Option fields"
+msgstr "Полиња за ~опции"
+
+#: groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.tabpage.text
+msgctxt "groupboxpages.src#RID_PAGE_GROUPRADIOSELECTION.tabpage.text"
+msgid "Data"
+msgstr "Податоци"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.FT_DEFAULTSELECTION.fixedtext.text
+msgid "Should one option field be selected as a default?"
+msgstr "Дали едно од полињата за опции да биде избрано како стандардно?"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.RB_DEFSELECTION_YES.radiobutton.text
+msgid "~Yes, the following:"
+msgstr "~Да, следното:"
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.RB_DEFSELECTION_NO.radiobutton.text
+msgid "No, one particular field is not going to be selected."
+msgstr "Нема да биде избрано ниедно поле."
+
+#: groupboxpages.src#RID_PAGE_DEFAULTFIELDSELECTION.tabpage.text
+msgid "Default Field Selection"
+msgstr "Избор на стандардно поле"
+
+#: 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 "Кога ќе изберете некоја опција, на групата на опцијата ќе ѝ биде доделена определена вредност."
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_OPTIONVALUES.fixedtext.text
+msgid "Which ~value do you want to assign to each option?"
+msgstr "Која ~вредност сакате да ѝ ја доделите на секоја опција?"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_RADIOBUTTONS.fixedtext.text
+msgctxt "groupboxpages.src#RID_PAGE_OPTIONVALUES.FT_RADIOBUTTONS.fixedtext.text"
+msgid "~Option fields"
+msgstr "Полиња за ~опции"
+
+#: groupboxpages.src#RID_PAGE_OPTIONVALUES.tabpage.text
+msgid "Field Values"
+msgstr "Вредности за полето"
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.FT_NAMEIT.fixedtext.text
+msgid "Which ~caption is to be given to your option group?"
+msgstr "Кој ~наслов ќе биде доделен на Вашата група опции?"
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.FT_THATSALL.fixedtext.text
+msgid "These were all details needed to create the option group."
+msgstr "Ова беа сите детали потребни за да се креира групата опции."
+
+#: groupboxpages.src#RID_PAGE_OPTIONS_FINAL.tabpage.text
+msgid "Create Option Group"
+msgstr "Креирање група опции"
+
+#: 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 "Можете или да ја зачувате вредноста на групата опции во поле од база на податоци или да ја користите за подоцнежна активност."
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FL_FRAME.fixedline.text
+msgid "Table element"
+msgstr "Елемент од табела"
+
+#: 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 "Постојни полиња"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.FT_SELECTED_FIELDS.fixedtext.text
+msgid "Selected fields"
+msgstr "Избрани полиња"
+
+#: gridpages.src#RID_PAGE_GW_FIELDSELECTION.tabpage.text
+msgctxt "gridpages.src#RID_PAGE_GW_FIELDSELECTION.tabpage.text"
+msgid "Field Selection"
+msgstr "Избор на полиња"
+
+#: gridpages.src#RID_STR_DATEPOSTFIX.string.text
+msgid " (Date)"
+msgstr " (Датум)"
+
+#: gridpages.src#RID_STR_TIMEPOSTFIX.string.text
+msgid " (Time)"
+msgstr " (Време)"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FL_DATA.fixedline.text
+msgctxt "commonpagesdbp.src#RID_PAGE_TABLESELECTION.FL_DATA.fixedline.text"
+msgid "Data"
+msgstr "Податоци"
+
+#: 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 ""
+"Во моментов, формата на која што ѝ припаѓа контролата не е (или не е целосно) врзана за извор на податоци.\n"
+"\n"
+"Изберете извор на податоци и табела.\n"
+"\n"
+"\n"
+"Забележете дека поставувањата направени на оваа страница ќе имаат ефект веднаш откако ќе ја напуштите."
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_DATASOURCE.fixedtext.text
+msgid "~Data source:"
+msgstr "Извор на по~датоци:"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.PB_FORMDATASOURCE.pushbutton.text
+msgid "~..."
+msgstr "~..."
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.FT_TABLE.fixedtext.text
+msgid "~Table / Query:"
+msgstr "~Табела / прашање:"
+
+#: commonpagesdbp.src#RID_PAGE_TABLESELECTION.tabpage.text
+msgctxt "commonpagesdbp.src#RID_PAGE_TABLESELECTION.tabpage.text"
+msgid "Data"
+msgstr "Податоци"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.FT_DATABASEFIELD_QUEST.fixedtext.text
+msgid "Do you want to save the value in a database field?"
+msgstr "Дали сакате да ја зачувате вредноста во поле од база на податоци?"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.RB_STOREINFIELD_YES.radiobutton.text
+msgid "~Yes, I want to save it in the following database field:"
+msgstr "~Да, сакам да ја зачувам во следното поле од базата на податоци:"
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.RB_STOREINFIELD_NO.radiobutton.text
+msgid "~No, I only want to save the value in the form."
+msgstr "~Не, само сакам да ја зачувам вредноста во формата."
+
+#: commonpagesdbp.src#RID_PAGE_OPTION_DBFIELD.tabpage.text
+msgid "Database Field"
+msgstr "Поле од база на податоци"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FL_FORMSETINGS.fixedline.text
+msgid "Form"
+msgstr "Форма"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMDATASOURCELABEL.fixedtext.text
+msgid "Data source"
+msgstr "Извор на податоци"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMCONTENTTYPELABEL.fixedtext.text
+msgid "Content type"
+msgstr "Тип на содржина"
+
+#: commonpagesdbp.src#RID_PAGE_FORM_DATASOURCE_STATUS.FT_FORMTABLELABEL.fixedtext.text
+msgid "Content"
+msgstr "Содржина"
+
+#: commonpagesdbp.src#RID_STR_TYPE_TABLE.string.text
+msgid "Table"
+msgstr "Табела"
+
+#: commonpagesdbp.src#RID_STR_TYPE_QUERY.string.text
+msgid "Query"
+msgstr "Прашање"
+
+#: commonpagesdbp.src#RID_STR_TYPE_COMMAND.string.text
+msgid "SQL command"
+msgstr "SQL-наредба"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.FL_FRAME.fixedline.text
+msgid "Control"
+msgstr "Контрола"
+
+#: 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 ""
+"На десната страна се гледаат сите табели од изворот на податоци на формата. \n"
+"\n"
+"\n"
+"Изберете табела од која може да бидат употребени податоците како основа за содржина на листата:"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_TABLE.tabpage.text
+msgid "Table Selection"
+msgstr "Избор на табела"
+
+#: 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 "Постојни полиња"
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.FT_DISPLAYEDFIELD.fixedtext.text
+msgid "Display field"
+msgstr "Приказ на поле"
+
+#: 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 "Содржината на избраното поле ќе биде прикажана во комбинираната листа."
+
+#: 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 "Содржината на избраното поле ќе биде прикажана во полето со листа ако се идентични поврзаните полиња."
+
+#: listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.tabpage.text
+msgctxt "listcombopages.src#RID_PAGE_LCW_CONTENTSELECTION_FIELD.tabpage.text"
+msgid "Field Selection"
+msgstr "Избор на полиња"
+
+#: 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 "Тука ги избирате полињата со содржини што се совпаѓаат, за да биде прикажана вредноста од полето за приказ."
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_VALUELISTFIELD.fixedtext.text
+msgid "Field from the ~Value Table"
+msgstr "Поле од табелата со ~вредности"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.FT_TABLEFIELD.fixedtext.text
+msgid "Field from the ~List Table"
+msgstr "Поле од табелата со ~листи"
+
+#: listcombopages.src#RID_PAGE_LCW_FIELDLINK.tabpage.text
+msgid "Field Link"
+msgstr "Врска до поле"
+
+#: 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 "Можете или да ја зачувате вредноста на комбинираната листа во поле од база на податоци или да ја користите за прикажување."
diff --git a/source/mk/extensions/source/propctrlr.po b/source/mk/extensions/source/propctrlr.po
new file mode 100644
index 00000000000..9fe48209692
--- /dev/null
+++ b/source/mk/extensions/source/propctrlr.po
@@ -0,0 +1,1625 @@
+#. 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-12 00:41+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Стандардно"
+
+#: propres.src#RID_STR_PROPPAGE_DEFAULT.string.text
+msgid "General"
+msgstr "Општо"
+
+#: propres.src#RID_STR_PROPPAGE_DATA.string.text
+msgid "Data"
+msgstr "Податоци"
+
+#: propres.src#RID_RSC_ENUM_YESNO.1.string.text
+msgctxt "propres.src#RID_RSC_ENUM_YESNO.1.string.text"
+msgid "No"
+msgstr "Не"
+
+#: propres.src#RID_RSC_ENUM_YESNO.2.string.text
+msgctxt "propres.src#RID_RSC_ENUM_YESNO.2.string.text"
+msgid "Yes"
+msgstr "Да"
+
+#: propres.src#RID_STR_HELP_SECTION_LABEL.string.text
+msgctxt "propres.src#RID_STR_HELP_SECTION_LABEL.string.text"
+msgid "Help"
+msgstr "Помош"
+
+#: 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 "Текст"
+
+#: newdatatype.src#RID_DLG_NEW_DATA_TYPE.FT_LABEL.fixedtext.text
+msgid "Type a name for the new data type:"
+msgstr "Напишете име за новиот тип податоци:"
+
+#: newdatatype.src#RID_DLG_NEW_DATA_TYPE.modaldialog.text
+msgid "New Data Type"
+msgstr "Нов тип податоци"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS.pageitem.text
+msgctxt "fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS.pageitem.text"
+msgid "Font"
+msgstr "Фонт"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.1.TABPAGE_CHARACTERS_EXT.pageitem.text
+msgid "Font Effects"
+msgstr "Ефекти на фонт"
+
+#: fontdialog.src#RID_TABDLG_FONTDIALOG.tabdialog.text
+msgid "Character"
+msgstr "Знак"
+
+#: taborder.src#RID_DLG_TABORDER.FT_CONTROLS.fixedtext.text
+msgid "Controls"
+msgstr "Контроли"
+
+#: taborder.src#RID_DLG_TABORDER.PB_MOVE_UP.pushbutton.text
+msgid "Move Up"
+msgstr "Помести нагоре"
+
+#: taborder.src#RID_DLG_TABORDER.PB_MOVE_DOWN.pushbutton.text
+msgid "Move Down"
+msgstr "Помести надолу"
+
+#: taborder.src#RID_DLG_TABORDER.PB_AUTO_ORDER.pushbutton.text
+msgid "Automatic Sort"
+msgstr "Автом. подредување"
+
+#: taborder.src#RID_DLG_TABORDER.modaldialog.text
+msgid "Tab Order"
+msgstr "Редослед на ливчиња"
+
+#: 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 "Ова се контролни полиња што може да бидат употребени како полиња за ознака за $control_name$ од $control_class$."
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.1.checkbox.text
+msgid "~No assignment"
+msgstr "~Нема доделување"
+
+#: selectlabeldialog.src#RID_DLG_SELECTLABELCONTROL.modaldialog.text
+msgid "Label Field Selection"
+msgstr "Избор на поле за ознака"
+
+#: selectlabeldialog.src#RID_STR_FORMS.string.text
+msgid "Forms"
+msgstr "Форми"
+
+#: 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 ""
+"Дали сакате да го избришете типот податоци „#type#“ од моделот?\n"
+"Забележете дека ова ќе влијае врз сите контроли што се врзани со овој тип податоци."
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_PUSHBUTTON.string.text
+msgid "Button"
+msgstr "Копче"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_RADIOBUTTON.string.text
+msgid "Option Button"
+msgstr "Копче за опција"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_CHECKBOX.string.text
+msgid "Check Box"
+msgstr "Поле за означување"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FIXEDTEXT.string.text
+msgctxt "pcrmiscres.src#RID_STR_PROPTITLE_FIXEDTEXT.string.text"
+msgid "Label Field"
+msgstr "Поле за ознака"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_GROUPBOX.string.text
+msgid "Group Box"
+msgstr "Поле за групирање"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_EDIT.string.text
+msgid "Text Box"
+msgstr "Текстуално поле"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FORMATTED.string.text
+msgid "Formatted Field"
+msgstr "Форматирано поле"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_LISTBOX.string.text
+msgid "List Box"
+msgstr "Поле за листа"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_COMBOBOX.string.text
+msgid "Combo Box"
+msgstr "Комбинирана листа"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_IMAGEBUTTON.string.text
+msgid "Image Button"
+msgstr "Копче со слика"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_HIDDENCONTROL.string.text
+msgid "Hidden Control"
+msgstr "Скриена контрола"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_UNKNOWNCONTROL.string.text
+msgid "Control (unknown type)"
+msgstr "Контрола (непознат тип)"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_IMAGECONTROL.string.text
+msgid "Image Control"
+msgstr "Контрола на слика"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_FILECONTROL.string.text
+msgid "File Selection"
+msgstr "Избор на датотека"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_DATEFIELD.string.text
+msgid "Date Field"
+msgstr "Поле за датум"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_TIMEFIELD.string.text
+msgid "Time Field"
+msgstr "Поле за време"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_NUMERICFIELD.string.text
+msgid "Numeric Field"
+msgstr "Нумеричко поле"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_CURRENCYFIELD.string.text
+msgid "Currency Field"
+msgstr "Поле за валута"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_PATTERNFIELD.string.text
+msgid "Pattern Field"
+msgstr "Поле за шема"
+
+#: pcrmiscres.src#RID_STR_PROPTITLE_DBGRID.string.text
+msgid "Table Control "
+msgstr "Контрола за табела "
+
+#: 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 "Под-формите можат да се користат за прикажување на детални податоци за тековниот запис на главната форма. За да го направите тоа, можете да одредите кои колони во под-формата одговараат на кои колони од главната форма."
+
+#: formlinkdialog.src#RID_DLG_FORMLINKS.modaldialog.text
+msgid "Link fields"
+msgstr "Поврзување полиња"
+
+#: formlinkdialog.src#PB_SUGGEST.pushbutton.text
+msgid "Suggest"
+msgstr "Предложи"
+
+#: formlinkdialog.src#STR_DETAIL_FORM.string.text
+msgid "Sub Form"
+msgstr "Под-форма"
+
+#: formlinkdialog.src#STR_MASTER_FORM.string.text
+msgid "Master Form"
+msgstr "Главна форма"
+
+#. # will be replace with a name.
+#: formlinkdialog.src#STR_ERROR_RETRIEVING_COLUMNS.string.text
+msgid "The columns of '#' could not be retrieved."
+msgstr "Колоните од '#' не можат да се преземат."
+
+#: formres.src#RID_STR_EDITMASK.string.text
+msgid "Edit mask"
+msgstr "Маска за внес"
+
+#: formres.src#RID_STR_LITERALMASK.string.text
+msgid "Literal mask"
+msgstr "Почетна маска"
+
+#: formres.src#RID_STR_READONLY.string.text
+msgctxt "formres.src#RID_STR_READONLY.string.text"
+msgid "Read-only"
+msgstr "Само за читање"
+
+#: formres.src#RID_STR_ENABLED.string.text
+msgid "Enabled"
+msgstr "Овозможено"
+
+#: formres.src#RID_STR_ENABLE_VISIBLE.string.text
+msgid "Visible"
+msgstr "Видливо"
+
+#: formres.src#RID_STR_AUTOCOMPLETE.string.text
+msgid "AutoFill"
+msgstr "Автом. пополнување"
+
+#: formres.src#RID_STR_LINECOUNT.string.text
+msgid "Line count"
+msgstr "Број на линии"
+
+#: formres.src#RID_STR_MAXTEXTLEN.string.text
+msgid "Max. text length"
+msgstr "Макс. должина на текст"
+
+#: formres.src#RID_STR_SPIN.string.text
+msgid "Spin Button"
+msgstr "Копче за вртење"
+
+#: formres.src#RID_STR_STRICTFORMAT.string.text
+msgid "Strict format"
+msgstr "Строг формат"
+
+#: formres.src#RID_STR_SHOWTHOUSANDSEP.string.text
+msgid "Thousands separator"
+msgstr "Разделувач на илјади"
+
+#: formres.src#RID_STR_PRINTABLE.string.text
+msgid "Printable"
+msgstr "Печати"
+
+#: 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 "Рамка"
+
+#: formres.src#RID_STR_HELPTEXT.string.text
+msgid "Help text"
+msgstr "Текст на помошта"
+
+#: formres.src#RID_STR_HELPURL.string.text
+msgid "Help URL"
+msgstr "URL на помошта"
+
+#: formres.src#RID_STR_TAG.string.text
+msgid "Additional information"
+msgstr "Дополнителни информации"
+
+#: formres.src#RID_STR_ECHO_CHAR.string.text
+msgid "Password character"
+msgstr "Знак за лозинка"
+
+#: formres.src#RID_STR_TRISTATE.string.text
+msgid "Tristate"
+msgstr "Со три состојби"
+
+#: formres.src#RID_STR_EMPTY_IS_NULL.string.text
+msgid "Empty string is NULL"
+msgstr "Празната низа е NULL"
+
+#: formres.src#RID_STR_DECIMAL_ACCURACY.string.text
+msgid "Decimal accuracy"
+msgstr "Децимална точност"
+
+#: formres.src#RID_STR_IMAGE_URL.string.text
+msgid "Graphics"
+msgstr "Графика"
+
+#: formres.src#RID_STR_DEFAULT_SELECT_SEQ.string.text
+msgid "Default selection"
+msgstr "Стандарден избор"
+
+#: formres.src#RID_STR_DEFAULT_BUTTON.string.text
+msgid "Default button"
+msgstr "Стандардно копче"
+
+#: formres.src#RID_STR_LABELCONTROL.string.text
+msgctxt "formres.src#RID_STR_LABELCONTROL.string.text"
+msgid "Label Field"
+msgstr "Поле за ознака"
+
+#: formres.src#RID_STR_LABEL.string.text
+msgid "Label"
+msgstr "Ознака"
+
+#: formres.src#RID_STR_ALIGN.string.text
+msgid "Alignment"
+msgstr "Порамнување"
+
+#: formres.src#RID_STR_VERTICAL_ALIGN.string.text
+msgid "Vert. Alignment"
+msgstr "Верт. порамнување"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.1.string.text
+msgid "Top"
+msgstr "Горе"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.2.string.text
+msgid "Middle"
+msgstr "Средина"
+
+#: formres.src#RID_RSC_ENUM_VERTICAL_ALIGN.3.string.text
+msgid "Bottom"
+msgstr "Долу"
+
+#: formres.src#RID_STR_IMAGEPOSITION.string.text
+msgid "Graphics alignment"
+msgstr "Порамнување на графика"
+
+#: formres.src#RID_STR_FONT.string.text
+msgctxt "formres.src#RID_STR_FONT.string.text"
+msgid "Font"
+msgstr "Фонт"
+
+#: formres.src#RID_STR_BACKGROUNDCOLOR.string.text
+msgid "Background color"
+msgstr "Боја на подлогата"
+
+#: formres.src#RID_STR_BORDER.string.text
+msgid "Border"
+msgstr "Раб"
+
+#: formres.src#RID_STR_ICONSIZE.string.text
+msgid "Icon size"
+msgstr "Големина на икона"
+
+#: formres.src#RID_RSC_ENUM_ICONSIZE_TYPE.1.string.text
+msgid "Small"
+msgstr "Мала"
+
+#: formres.src#RID_RSC_ENUM_ICONSIZE_TYPE.2.string.text
+msgid "Large"
+msgstr "Голема"
+
+#: formres.src#RID_STR_SHOW_POSITION.string.text
+msgid "Positioning"
+msgstr "Позиционирање"
+
+#: formres.src#RID_STR_SHOW_NAVIGATION.string.text
+msgid "Navigation"
+msgstr "Навигација"
+
+#: formres.src#RID_STR_SHOW_RECORDACTIONS.string.text
+msgid "Acting on a record"
+msgstr "Дејствува врз запис"
+
+#: formres.src#RID_STR_SHOW_FILTERSORT.string.text
+msgid "Filtering / Sorting"
+msgstr "Филтрирање / подредување"
+
+#: formres.src#RID_STR_HSCROLL.string.text
+msgid "Horizontal scroll bar"
+msgstr "Хоризонтална лента за движење"
+
+#: formres.src#RID_STR_VSCROLL.string.text
+msgid "Vertical scroll bar"
+msgstr "Вертикална лента за движење"
+
+#: formres.src#RID_STR_WORDBREAK.string.text
+msgid "Word break"
+msgstr "Прелом на збор"
+
+#: formres.src#RID_STR_MULTILINE.string.text
+msgid "Multiline input"
+msgstr "Повеќелиниски внес"
+
+#: formres.src#RID_STR_MULTISELECTION.string.text
+msgid "Multiselection"
+msgstr "Повеќекратен избор"
+
+#: formres.src#RID_STR_NAME.string.text
+msgid "Name"
+msgstr "Име"
+
+#: formres.src#RID_STR_GROUP_NAME.string.text
+msgid "Group name"
+msgstr ""
+
+#: formres.src#RID_STR_TABINDEX.string.text
+msgid "Tab order"
+msgstr "Редослед на ливчиња"
+
+#: formres.src#RID_STR_WHEEL_BEHAVIOR.string.text
+msgid "Mouse wheel scroll"
+msgstr ""
+
+#: formres.src#RID_STR_FILTER.string.text
+msgid "Filter"
+msgstr "Филтер"
+
+#: formres.src#RID_STR_SORT_CRITERIA.string.text
+msgid "Sort"
+msgstr "Подредување"
+
+#: formres.src#RID_STR_RECORDMARKER.string.text
+msgid "Record marker"
+msgstr "Маркер на запис"
+
+#: formres.src#RID_STR_FILTERPROPOSAL.string.text
+msgid "Filter proposal"
+msgstr "Предлог за филтер"
+
+#: formres.src#RID_STR_NAVIGATION.string.text
+msgid "Navigation bar"
+msgstr "Лента за навигација"
+
+#: formres.src#RID_STR_CYCLE.string.text
+msgid "Cycle"
+msgstr "Циклус"
+
+#: formres.src#RID_STR_TABSTOP.string.text
+msgid "Tabstop"
+msgstr "Запирач на табулаторот"
+
+#: formres.src#RID_STR_CONTROLSOURCE.string.text
+msgid "Data field"
+msgstr "Податочно поле"
+
+#: formres.src#RID_STR_DROPDOWN.string.text
+msgid "Dropdown"
+msgstr "Паѓачко"
+
+#: formres.src#RID_STR_BOUNDCOLUMN.string.text
+msgid "Bound field"
+msgstr "Врзано поле"
+
+#: formres.src#RID_STR_LISTSOURCE.string.text
+msgid "List content"
+msgstr "Содржина на листа"
+
+#: formres.src#RID_STR_LISTSOURCETYPE.string.text
+msgid "Type of list contents"
+msgstr "Тип на содржина на листа"
+
+#: formres.src#RID_STR_CURSORSOURCE.string.text
+msgid "Content"
+msgstr "Содржина"
+
+#: formres.src#RID_STR_CURSORSOURCETYPE.string.text
+msgid "Content type"
+msgstr "Тип на содржина"
+
+#: formres.src#RID_STR_ALLOW_ADDITIONS.string.text
+msgid "Allow additions"
+msgstr "Дозволи додавања"
+
+#: formres.src#RID_STR_ALLOW_DELETIONS.string.text
+msgid "Allow deletions"
+msgstr "Дозволи бришења"
+
+#: formres.src#RID_STR_ALLOW_EDITS.string.text
+msgid "Allow modifications"
+msgstr "Дозволи измени"
+
+#: formres.src#RID_STR_DATAENTRY.string.text
+msgid "Add data only"
+msgstr "Додај само податоци"
+
+#: formres.src#RID_STR_DATASOURCE.string.text
+msgid "Data source"
+msgstr "Извор на податоци"
+
+#: formres.src#RID_STR_MASTERFIELDS.string.text
+msgid "Link master fields"
+msgstr "Поврзи главни полиња"
+
+#: formres.src#RID_STR_SLAVEFIELDS.string.text
+msgid "Link slave fields"
+msgstr "Поврзи подредени полиња"
+
+#: formres.src#RID_STR_VALUEMIN.string.text
+msgid "Value min."
+msgstr "Мин. вредност"
+
+#: formres.src#RID_STR_VALUEMAX.string.text
+msgid "Value max."
+msgstr "Макс. вредност"
+
+#: formres.src#RID_STR_VALUESTEP.string.text
+msgid "Incr./decrement value"
+msgstr "Зголеми/намали вредност"
+
+#: formres.src#RID_STR_CURRENCYSYMBOL.string.text
+msgid "Currency symbol"
+msgstr "Симбол за валутата"
+
+#: formres.src#RID_STR_DATEMIN.string.text
+msgid "Date min."
+msgstr "Мин. датум"
+
+#: formres.src#RID_STR_DATEMAX.string.text
+msgid "Date max."
+msgstr "Макс. датум"
+
+#: formres.src#RID_STR_DATEFORMAT.string.text
+msgid "Date format"
+msgstr "Формат на датумот"
+
+#: formres.src#RID_STR_SELECTEDITEMS.string.text
+msgid "Selection"
+msgstr "Избор"
+
+#: formres.src#RID_STR_TIMEMIN.string.text
+msgid "Time min."
+msgstr "Мин. време"
+
+#: formres.src#RID_STR_TIMEMAX.string.text
+msgid "Time max."
+msgstr "Макс. време"
+
+#: formres.src#RID_STR_TIMEFORMAT.string.text
+msgid "Time format"
+msgstr "Формат на време"
+
+#: formres.src#RID_STR_CURRSYM_POSITION.string.text
+msgid "Prefix symbol"
+msgstr "Симбол за префикс"
+
+#: formres.src#RID_STR_VALUE.string.text
+msgid "Value"
+msgstr "Вредност"
+
+#: formres.src#RID_STR_FORMATKEY.string.text
+msgid "Formatting"
+msgstr "Форматирање"
+
+#: formres.src#RID_STR_CLASSID.string.text
+msgid "Class ID"
+msgstr "Ид. на класата"
+
+#: formres.src#RID_STR_HEIGHT.string.text
+msgid "Height"
+msgstr "Висина"
+
+#: formres.src#RID_STR_WIDTH.string.text
+msgid "Width"
+msgstr "Ширина"
+
+#: formres.src#RID_STR_LISTINDEX.string.text
+msgid "List index"
+msgstr "Индекс на листа"
+
+#: formres.src#RID_STR_ROWHEIGHT.string.text
+msgid "Row height"
+msgstr "Висина на ред"
+
+#: formres.src#RID_STR_FILLCOLOR.string.text
+msgid "Fill color"
+msgstr "Боја за пополнување"
+
+#: formres.src#RID_STR_LINECOLOR.string.text
+msgid "Line color"
+msgstr "Боја на линијата"
+
+#: formres.src#RID_STR_REFVALUE.string.text
+msgid "Reference value (on)"
+msgstr "Референтна вредност (вкл.)"
+
+#: formres.src#RID_STR_UNCHECKEDREFVALUE.string.text
+msgid "Reference value (off)"
+msgstr "Референтна вредност (искл.)"
+
+#: formres.src#RID_STR_STRINGITEMLIST.string.text
+msgid "List entries"
+msgstr "Елементи на листата"
+
+#: formres.src#RID_STR_BUTTONTYPE.string.text
+msgid "Action"
+msgstr "Дејство"
+
+#: 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 "Тип на предавање"
+
+#: formres.src#RID_STR_DEFAULT_STATE.string.text
+msgid "Default status"
+msgstr ""
+
+#: formres.src#RID_STR_SUBMIT_ENCODING.string.text
+msgid "Submission encoding"
+msgstr "Кодирање при предавање"
+
+#: formres.src#RID_STR_DEFAULTVALUE.string.text
+msgid "Default value"
+msgstr "Стандардна вредност"
+
+#: formres.src#RID_STR_DEFAULTTEXT.string.text
+msgid "Default text"
+msgstr "Стандарден текст"
+
+#: formres.src#RID_STR_DEFAULTDATE.string.text
+msgid "Default date"
+msgstr "Стандарден датум"
+
+#: formres.src#RID_STR_DEFAULTTIME.string.text
+msgid "Default time"
+msgstr "Стандардно време"
+
+#: formres.src#RID_STR_SUBMIT_TARGET.string.text
+msgctxt "formres.src#RID_STR_SUBMIT_TARGET.string.text"
+msgid "Frame"
+msgstr "Рамка"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.1.string.text
+msgid "Without frame"
+msgstr "Без рамка"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.2.string.text
+msgid "3D look"
+msgstr "3Д-изглед"
+
+#: formres.src#RID_RSC_ENUM_BORDER_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_BORDER_TYPE.3.string.text"
+msgid "Flat"
+msgstr "Рамно"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.1.string.text
+msgid "Valuelist"
+msgstr "Листа со вредности"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.2.string.text"
+msgid "Table"
+msgstr "Табела"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.3.string.text"
+msgid "Query"
+msgstr "Барање"
+
+#: 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 [Изворен]"
+
+#: formres.src#RID_RSC_ENUM_LISTSOURCE_TYPE.6.string.text
+msgid "Tablefields"
+msgstr "Полиња од табела"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.1.string.text
+msgid "Left"
+msgstr "Лево"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.2.string.text
+msgid "Center"
+msgstr "Центар"
+
+#: formres.src#RID_RSC_ENUM_ALIGNMENT.3.string.text
+msgid "Right"
+msgstr "Десно"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_BUTTONTYPE.1.string.text"
+msgid "None"
+msgstr "Ништо"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.2.string.text
+msgid "Submit form"
+msgstr "Поднеси формулар"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.3.string.text
+msgid "Reset form"
+msgstr "Ресетирај формулар"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.4.string.text
+msgid "Open document/web page"
+msgstr "Отвори документ/веб-страница"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.5.string.text
+msgid "First record"
+msgstr "Прв запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.6.string.text
+msgid "Previous record"
+msgstr "Претходен запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.7.string.text
+msgid "Next record"
+msgstr "Следен запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.8.string.text
+msgid "Last record"
+msgstr "Последен запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.9.string.text
+msgid "Save record"
+msgstr "Зачувај запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.10.string.text
+msgid "Undo data entry"
+msgstr "Поништи внес на податоци"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.11.string.text
+msgid "New record"
+msgstr "Нов запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.12.string.text
+msgid "Delete record"
+msgstr "Избриши запис"
+
+#: formres.src#RID_RSC_ENUM_BUTTONTYPE.13.string.text
+msgid "Refresh form"
+msgstr "Освежи формулар"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_METHOD.1.string.text
+msgid "Get"
+msgstr "Земи"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_METHOD.2.string.text
+msgid "Post"
+msgstr "Испрати"
+
+#: 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 "Повеќеделно"
+
+#: formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SUBMIT_ENCODING.3.string.text"
+msgid "Text"
+msgstr "Текст"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.1.string.text
+msgid "Standard (short)"
+msgstr "Стандардно (кратко)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.2.string.text
+msgid "Standard (short YY)"
+msgstr "Стандардно (кратко ГГ)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.3.string.text
+msgid "Standard (short YYYY)"
+msgstr "Стандардно (кратко ГГГГ)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.4.string.text
+msgid "Standard (long)"
+msgstr "Стандардно (долго)"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.5.string.text
+msgid "DD/MM/YY"
+msgstr "ДД/ММ/ГГ"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.6.string.text
+msgid "MM/DD/YY"
+msgstr "ММ/ДД/ГГ"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.7.string.text
+msgid "YY/MM/DD"
+msgstr "ГГ/ММ/ДД"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.8.string.text
+msgid "DD/MM/YYYY"
+msgstr "ДД/ММ/ГГГГ"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.9.string.text
+msgid "MM/DD/YYYY"
+msgstr "ММ/ДД/ГГГГ"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.10.string.text
+msgid "YYYY/MM/DD"
+msgstr "ГГГГ/ММ/ДД"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.11.string.text
+msgid "YY-MM-DD"
+msgstr "ГГ-ММ-ДД"
+
+#: formres.src#RID_RSC_ENUM_DATEFORMAT_LIST.12.string.text
+msgid "YYYY-MM-DD"
+msgstr "ГГГГ-ММ-ДД"
+
+#: 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 "Не е избрано"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.2.string.text
+msgid "Selected"
+msgstr "Избрано"
+
+#: formres.src#RID_RSC_ENUM_CHECKED.3.string.text
+msgid "Not Defined"
+msgstr "Не е дефинирано"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.1.string.text
+msgid "All records"
+msgstr "Сите записи"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.2.string.text
+msgid "Active record"
+msgstr "Активен запис"
+
+#: formres.src#RID_RSC_ENUM_CYCLE.3.string.text
+msgid "Current page"
+msgstr "Тековна страница"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_NAVIGATION.1.string.text"
+msgid "No"
+msgstr "Не"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_NAVIGATION.2.string.text"
+msgid "Yes"
+msgstr "Да"
+
+#: formres.src#RID_RSC_ENUM_NAVIGATION.3.string.text
+msgid "Parent Form"
+msgstr "Родителска форма"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SELECTION_TYPE.1.string.text"
+msgid "None"
+msgstr "Ништо"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.2.string.text
+msgid "Single"
+msgstr "Единечен"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.3.string.text
+msgid "Multi"
+msgstr "Повеќе"
+
+#: formres.src#RID_RSC_ENUM_SELECTION_TYPE.4.string.text
+msgid "Range"
+msgstr "Опсег"
+
+#: formres.src#RID_STR_EVT_APPROVEPARAMETER.string.text
+msgid "Fill parameters"
+msgstr "Параметри на пополнување"
+
+#: formres.src#RID_STR_EVT_ACTIONPERFORMED.string.text
+msgid "Execute action"
+msgstr "При иницирање"
+
+#: formres.src#RID_STR_EVT_AFTERUPDATE.string.text
+msgid "After updating"
+msgstr "По ажурирање"
+
+#: formres.src#RID_STR_EVT_BEFOREUPDATE.string.text
+msgid "Before updating"
+msgstr "Пред ажурирање"
+
+#: formres.src#RID_STR_EVT_APPROVEROWCHANGE.string.text
+msgid "Before record action"
+msgstr "Пред дејство врз запис"
+
+#: formres.src#RID_STR_EVT_ROWCHANGE.string.text
+msgid "After record action"
+msgstr "По дејство врз запис"
+
+#: formres.src#RID_STR_EVT_CONFIRMDELETE.string.text
+msgid "Confirm deletion"
+msgstr "Потврди бришење"
+
+#: formres.src#RID_STR_EVT_ERROROCCURRED.string.text
+msgid "Error occurred"
+msgstr "Се појави грешка"
+
+#: formres.src#RID_STR_EVT_FOCUSGAINED.string.text
+msgid "When receiving focus"
+msgstr "При примање на фокусот"
+
+#: formres.src#RID_STR_EVT_FOCUSLOST.string.text
+msgid "When losing focus"
+msgstr "При губење на фокусот"
+
+#: formres.src#RID_STR_EVT_ITEMSTATECHANGED.string.text
+msgid "Item status changed"
+msgstr "Статусот на ставката е променет"
+
+#: formres.src#RID_STR_EVT_KEYTYPED.string.text
+msgid "Key pressed"
+msgstr "Притиснат тастер"
+
+#: formres.src#RID_STR_EVT_KEYUP.string.text
+msgid "Key released"
+msgstr "Отпуштен тастер"
+
+#: formres.src#RID_STR_EVT_LOADED.string.text
+msgid "When loading"
+msgstr "При вчитување"
+
+#: formres.src#RID_STR_EVT_RELOADING.string.text
+msgid "Before reloading"
+msgstr "Пред превчитување"
+
+#: formres.src#RID_STR_EVT_RELOADED.string.text
+msgid "When reloading"
+msgstr "При превчитување"
+
+#: formres.src#RID_STR_EVT_MOUSEDRAGGED.string.text
+msgid "Mouse moved while key pressed"
+msgstr "Глувчето е поместено додека бил притиснат тастер"
+
+#: formres.src#RID_STR_EVT_MOUSEENTERED.string.text
+msgid "Mouse inside"
+msgstr "Глувчето е внатре"
+
+#: formres.src#RID_STR_EVT_MOUSEEXITED.string.text
+msgid "Mouse outside"
+msgstr "Глувчето е надвор"
+
+#: formres.src#RID_STR_EVT_MOUSEMOVED.string.text
+msgid "Mouse moved"
+msgstr "Глувчето е поместено"
+
+#: formres.src#RID_STR_EVT_MOUSEPRESSED.string.text
+msgid "Mouse button pressed"
+msgstr "Копчето на глувчето е притиснато"
+
+#: formres.src#RID_STR_EVT_MOUSERELEASED.string.text
+msgid "Mouse button released"
+msgstr "Копчето на глувчето е ослободено"
+
+#: formres.src#RID_STR_EVT_POSITIONING.string.text
+msgid "Before record change"
+msgstr "Пред промена на записот"
+
+#: formres.src#RID_STR_EVT_POSITIONED.string.text
+msgid "After record change"
+msgstr "По промена на запис"
+
+#: formres.src#RID_STR_EVT_RESETTED.string.text
+msgid "After resetting"
+msgstr "По ресетирање"
+
+#: formres.src#RID_STR_EVT_APPROVERESETTED.string.text
+msgid "Prior to reset"
+msgstr "Пред ресетирање"
+
+#: formres.src#RID_STR_EVT_APPROVEACTIONPERFORMED.string.text
+msgid "Approve action"
+msgstr "Пред почнување"
+
+#: formres.src#RID_STR_EVT_SUBMITTED.string.text
+msgid "Before submitting"
+msgstr "Пред предавање"
+
+#: formres.src#RID_STR_EVT_TEXTCHANGED.string.text
+msgid "Text modified"
+msgstr "Текстот е изменет"
+
+#: formres.src#RID_STR_EVT_UNLOADING.string.text
+msgid "Before unloading"
+msgstr "Пред одвчитување"
+
+#: formres.src#RID_STR_EVT_UNLOADED.string.text
+msgid "When unloading"
+msgstr "При одвчитување"
+
+#: formres.src#RID_STR_EVT_CHANGED.string.text
+msgid "Changed"
+msgstr "Променето"
+
+#: formres.src#RID_STR_EVENTS.string.text
+msgid "Events"
+msgstr "Настани"
+
+#: formres.src#RID_STR_ESCAPE_PROCESSING.string.text
+msgid "Analyze SQL command"
+msgstr "Анализирај ја SQL-наредбата"
+
+#: formres.src#RID_STR_POSITIONX.string.text
+msgid "PositionX"
+msgstr "Позиција X"
+
+#: formres.src#RID_STR_POSITIONY.string.text
+msgid "PositionY"
+msgstr "Позиција Y"
+
+#: formres.src#RID_STR_TITLE.string.text
+msgid "Title"
+msgstr "Наслов"
+
+#: formres.src#RID_STR_STEP.string.text
+msgid "Page (step)"
+msgstr "Страница (чекор)"
+
+#: formres.src#RID_STR_PROGRESSVALUE.string.text
+msgid "Progress value"
+msgstr "Вредност за прогрес"
+
+#: formres.src#RID_STR_PROGRESSVALUE_MIN.string.text
+msgid "Progress value min."
+msgstr "Мин. вредност на прогрес"
+
+#: formres.src#RID_STR_PROGRESSVALUE_MAX.string.text
+msgid "Progress value max."
+msgstr "Макс. вредност на прогрес"
+
+#: formres.src#RID_STR_SCROLLVALUE.string.text
+msgid "Scroll value"
+msgstr "Вредност за движење"
+
+#: formres.src#RID_STR_SCROLLVALUE_MAX.string.text
+msgid "Scroll value max."
+msgstr "Макс. вредност за движење"
+
+#: formres.src#RID_STR_SCROLLVALUE_MIN.string.text
+msgid "Scroll value min."
+msgstr "Мин. вредност за движење"
+
+#: formres.src#RID_STR_DEFAULT_SCROLLVALUE.string.text
+msgid "Default scroll value"
+msgstr "Стандардна вредност за движење"
+
+#: formres.src#RID_STR_LINEINCREMENT.string.text
+msgid "Small change"
+msgstr "Мала промена"
+
+#: formres.src#RID_STR_BLOCKINCREMENT.string.text
+msgid "Large change"
+msgstr "Голема промена"
+
+#: formres.src#RID_STR_REPEAT_DELAY.string.text
+msgid "Delay"
+msgstr "Доцнење"
+
+#: formres.src#RID_STR_REPEAT.string.text
+msgid "Repeat"
+msgstr "Повтори"
+
+#: formres.src#RID_STR_VISIBLESIZE.string.text
+msgid "Visible size"
+msgstr "Видлива големина"
+
+#: formres.src#RID_STR_ORIENTATION.string.text
+msgid "Orientation"
+msgstr "Ориентација"
+
+#: formres.src#RID_RSC_ENUM_ORIENTATION.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_ORIENTATION.1.string.text"
+msgid "Horizontal"
+msgstr "Хоризонтално"
+
+#: formres.src#RID_RSC_ENUM_ORIENTATION.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_ORIENTATION.2.string.text"
+msgid "Vertical"
+msgstr "Вертикално"
+
+#: formres.src#RID_STR_EVT_ADJUSTMENTVALUECHANGED.string.text
+msgid "While adjusting"
+msgstr "Додека се приспособува"
+
+#: formres.src#RID_STR_DATE.string.text
+msgid "Date"
+msgstr "Датум"
+
+#: formres.src#RID_STR_STATE.string.text
+msgid "State"
+msgstr "Земја"
+
+#: formres.src#RID_STR_TIME.string.text
+msgid "Time"
+msgstr "Време"
+
+#: formres.src#RID_STR_SCALEIMAGE.string.text
+msgid "Scale"
+msgstr "Размер"
+
+#: formres.src#RID_STR_PUSHBUTTONTYPE.string.text
+msgid "Button type"
+msgstr "Тип копче"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.1.string.text"
+msgid "Default"
+msgstr "Стандардно"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.2.string.text
+msgid "OK"
+msgstr "Во ред"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.3.string.text
+msgid "Cancel"
+msgstr "Откажи"
+
+#: formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.4.string.text
+msgctxt "formres.src#RID_RSC_ENUM_PUSHBUTTONTYPE.4.string.text"
+msgid "Help"
+msgstr "Помош"
+
+#: formres.src#RID_STR_UNABLETOCONNECT.string.text
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr "Поврзувањето со изворот на податоци „$name$“ не може да се воспостави."
+
+#: formres.src#RID_STR_TEXT.string.text
+msgctxt "formres.src#RID_STR_TEXT.string.text"
+msgid "Text"
+msgstr "Текст"
+
+#: formres.src#RID_STR_BOUND_CELL.string.text
+msgid "Linked cell"
+msgstr "Поврзана ќелија"
+
+#: formres.src#RID_STR_LIST_CELL_RANGE.string.text
+msgid "Source cell range"
+msgstr "Опсег на изворната ќелија"
+
+#: formres.src#RID_STR_CELL_EXCHANGE_TYPE.string.text
+msgid "Contents of the linked cell"
+msgstr "Содржина на поврзаната ќелија"
+
+#: formres.src#RID_RSC_ENUM_CELL_EXCHANGE_TYPE.1.string.text
+msgid "The selected entry"
+msgstr "Избраниот внес"
+
+#: formres.src#RID_RSC_ENUM_CELL_EXCHANGE_TYPE.2.string.text
+msgid "Position of the selected entry"
+msgstr "Позиција на избраниот елемент"
+
+#: formres.src#RID_STR_SHOW_SCROLLBARS.string.text
+msgid "Scrollbars"
+msgstr "Ленти за движење"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.1.string.text
+msgid "Single-line"
+msgstr "Единечна линија"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.2.string.text
+msgid "Multi-line"
+msgstr "Повеќекратна линија"
+
+#: formres.src#RID_RSC_ENUM_TEXTTYPE.3.string.text
+msgid "Multi-line with formatting"
+msgstr "Повеќекратна линија со форматирање"
+
+#: formres.src#RID_STR_SYMBOLCOLOR.string.text
+msgid "Symbol color"
+msgstr "Боја на симбол"
+
+#: formres.src#RID_STR_LINEEND_FORMAT.string.text
+msgid "Text lines end with"
+msgstr "Линиите со текст завршуваат со"
+
+#: 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 "Нема"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.2.string.text"
+msgid "Horizontal"
+msgstr "Хоризонтално"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.3.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCROLLBARS.3.string.text"
+msgid "Vertical"
+msgstr "Вертикално"
+
+#: formres.src#RID_RSC_ENUM_SCROLLBARS.4.string.text
+msgid "Both"
+msgstr "Двете"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_COMMAND_TYPE.1.string.text"
+msgid "Table"
+msgstr "Табела"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_COMMAND_TYPE.2.string.text"
+msgid "Query"
+msgstr "Барање"
+
+#: formres.src#RID_RSC_ENUM_COMMAND_TYPE.3.string.text
+msgid "SQL command"
+msgstr "SQL-наредба"
+
+#: formres.src#RID_STR_TOGGLE.string.text
+msgid "Toggle"
+msgstr "Смени"
+
+#: formres.src#RID_STR_FOCUSONCLICK.string.text
+msgid "Take Focus on Click"
+msgstr "Земи фокус при кликање"
+
+#: formres.src#RID_STR_HIDEINACTIVESELECTION.string.text
+msgid "Hide selection"
+msgstr "Скриј избор"
+
+#: formres.src#RID_STR_VISUALEFFECT.string.text
+msgid "Style"
+msgstr "Стил"
+
+#: formres.src#RID_RSC_ENUM_VISUALEFFECT.1.string.text
+msgid "3D"
+msgstr "3Д"
+
+#: formres.src#RID_RSC_ENUM_VISUALEFFECT.2.string.text
+msgctxt "formres.src#RID_RSC_ENUM_VISUALEFFECT.2.string.text"
+msgid "Flat"
+msgstr "Рамно"
+
+#: formres.src#RID_STR_BORDERCOLOR.string.text
+msgid "Border color"
+msgstr "Боја на работ"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.1.string.text
+msgid "Left top"
+msgstr "Лево горе"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.2.string.text
+msgid "Left centered"
+msgstr "Лево центрирано"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.3.string.text
+msgid "Left bottom"
+msgstr "Лево долу"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.4.string.text
+msgid "Right top"
+msgstr "Десно горе"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.5.string.text
+msgid "Right centered"
+msgstr "Десно центрирано"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.6.string.text
+msgid "Right bottom"
+msgstr "Десно долу"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.7.string.text
+msgid "Above left"
+msgstr "Лево над"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.8.string.text
+msgid "Above centered"
+msgstr "Центрирано над"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.9.string.text
+msgid "Above right"
+msgstr "Десно над"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.10.string.text
+msgid "Below left"
+msgstr "Лево под"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.11.string.text
+msgid "Below centered"
+msgstr "Центрирано под"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.12.string.text
+msgid "Below right"
+msgstr "Десно под"
+
+#: formres.src#RID_RSC_ENUM_IMAGE_POSITION.13.string.text
+msgid "Centered"
+msgstr "Центрирано"
+
+#: formres.src#RID_STR_AUTOLINEBREAK.string.text
+msgid "Wrap text automatically"
+msgstr "Пренеси текст автоматски"
+
+#: formres.src#RID_STR_TEXTTYPE.string.text
+msgid "Text type"
+msgstr "Тип на текст"
+
+#: formres.src#RID_RSC_ENUM_SHOWHIDE.1.string.text
+msgid "Hide"
+msgstr "Скриј"
+
+#: formres.src#RID_RSC_ENUM_SHOWHIDE.2.string.text
+msgid "Show"
+msgstr "Прикажи"
+
+#: formres.src#RID_STR_XML_DATA_MODEL.string.text
+msgid "XML data model"
+msgstr "Модел на XML-податоци"
+
+#: formres.src#RID_STR_BIND_EXPRESSION.string.text
+msgid "Binding expression"
+msgstr "Израз за врзување"
+
+#: formres.src#RID_STR_XSD_REQUIRED.string.text
+msgid "Required"
+msgstr "Потребно"
+
+#: formres.src#RID_STR_LIST_BINDING.string.text
+msgid "List entry source"
+msgstr "Извор за елемент од листа"
+
+#: formres.src#RID_STR_XSD_RELEVANT.string.text
+msgid "Relevant"
+msgstr "Релевантно"
+
+#: formres.src#RID_STR_XSD_READONLY.string.text
+msgctxt "formres.src#RID_STR_XSD_READONLY.string.text"
+msgid "Read-only"
+msgstr "Само за читање"
+
+#: formres.src#RID_STR_XSD_CONSTRAINT.string.text
+msgid "Constraint"
+msgstr "Ограничување"
+
+#: formres.src#RID_STR_XSD_CALCULATION.string.text
+msgid "Calculation"
+msgstr "Пресметка"
+
+#: formres.src#RID_STR_XSD_DATA_TYPE.string.text
+msgid "Data type"
+msgstr "Тип на податоци"
+
+#: formres.src#RID_STR_XSD_WHITESPACES.string.text
+msgid "Whitespaces"
+msgstr "Празни места"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.1.string.text
+msgid "Preserve"
+msgstr "Задржи"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.2.string.text
+msgid "Replace"
+msgstr "Замени"
+
+#: formres.src#RID_RSC_ENUM_WHITESPACE_HANDLING.3.string.text
+msgid "Collapse"
+msgstr "Спушти"
+
+#: formres.src#RID_STR_XSD_PATTERN.string.text
+msgid "Pattern"
+msgstr "Шема"
+
+#: formres.src#RID_STR_XSD_LENGTH.string.text
+msgid "Length"
+msgstr "Должина"
+
+#: formres.src#RID_STR_XSD_MIN_LENGTH.string.text
+msgid "Length (at least)"
+msgstr "Должина (најмалку)"
+
+#: formres.src#RID_STR_XSD_MAX_LENGTH.string.text
+msgid "Length (at most)"
+msgstr "Должина (најмногу)"
+
+#: formres.src#RID_STR_XSD_TOTAL_DIGITS.string.text
+msgid "Digits (total)"
+msgstr "Бројки (вкупно)"
+
+#: formres.src#RID_STR_XSD_FRACTION_DIGITS.string.text
+msgid "Digits (fraction)"
+msgstr "Бројки (децимални)"
+
+#: formres.src#RID_STR_XSD_MAX_INCLUSIVE.string.text
+msgid "Max. (inclusive)"
+msgstr "Макс. (инклузивно)"
+
+#: formres.src#RID_STR_XSD_MAX_EXCLUSIVE.string.text
+msgid "Max. (exclusive)"
+msgstr "Макс. (ексклузивно)"
+
+#: formres.src#RID_STR_XSD_MIN_INCLUSIVE.string.text
+msgid "Min. (inclusive)"
+msgstr "Мин. (инклузивно)"
+
+#: formres.src#RID_STR_XSD_MIN_EXCLUSIVE.string.text
+msgid "Min. (exclusive)"
+msgstr "Мин. (ексклузивно)"
+
+#: formres.src#RID_STR_SUBMISSION_ID.string.text
+msgid "Submission"
+msgstr "Предавање"
+
+#: formres.src#RID_STR_BINDING_UI_NAME.string.text
+msgid "Binding"
+msgstr "Врзување"
+
+#: formres.src#RID_STR_SELECTION_TYPE.string.text
+msgid "Selection type"
+msgstr "Тип на селекција"
+
+#: formres.src#RID_STR_ROOT_DISPLAYED.string.text
+msgid "Root displayed"
+msgstr "Прикажан корен"
+
+#: formres.src#RID_STR_SHOWS_HANDLES.string.text
+msgid "Show handles"
+msgstr "Покажи рачки"
+
+#: formres.src#RID_STR_SHOWS_ROOT_HANDLES.string.text
+msgid "Show root handles"
+msgstr "Покажи рачки на коренот"
+
+#: formres.src#RID_STR_EDITABLE.string.text
+msgid "Editable"
+msgstr "Променливо"
+
+#: formres.src#RID_STR_INVOKES_STOP_NOT_EDITING.string.text
+msgid "Invokes stop node editing"
+msgstr "Повикува стопирање на уредување на јазол."
+
+#: formres.src#RID_STR_DECORATION.string.text
+msgid "With title bar"
+msgstr "Со насловна лента"
+
+#: formres.src#RID_STR_NOLABEL.string.text
+msgid "No Label"
+msgstr "Нема ознака"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.1.string.text
+msgctxt "formres.src#RID_RSC_ENUM_SCALE_MODE.1.string.text"
+msgid "No"
+msgstr "Не"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.2.string.text
+msgid "Keep Ratio"
+msgstr "Задржи ја пропорцијата"
+
+#: formres.src#RID_RSC_ENUM_SCALE_MODE.3.string.text
+msgid "Fit to Size"
+msgstr "Прилагоди на големината"
+
+#: formres.src#RID_STR_INPUT_REQUIRED.string.text
+msgid "Input required"
+msgstr "Задолжителен внес"
+
+#: formres.src#RID_STR_WRITING_MODE.string.text
+msgid "Text direction"
+msgstr "Насока на текстот"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.1.string.text
+msgid "Left-to-right"
+msgstr "Одлево надесно"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.2.string.text
+msgid "Right-to-left"
+msgstr "Оддесно налево"
+
+#: formres.src#RID_RSC_ENUM_WRITING_MODE.3.string.text
+msgid "Use superordinate object settings"
+msgstr "Користи поставувања за надредениот објект"
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.1.string.text
+msgid "Never"
+msgstr ""
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.2.string.text
+msgid "When focused"
+msgstr ""
+
+#: formres.src#RID_RSC_ENUM_WHEEL_BEHAVIOR.3.string.text
+msgid "Always"
+msgstr ""
+
+#: formres.src#RID_STR_ANCHOR_TYPE.string.text
+msgid "Anchor"
+msgstr "Котва"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.1.string.text
+msgid "To Paragraph"
+msgstr "На пасус"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.2.string.text
+msgid "As Character"
+msgstr "Како знак"
+
+#: 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 ""
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.4.string.text
+msgid "To Frame"
+msgstr "Во рамка"
+
+#: formres.src#RID_RSC_ENUM_TEXT_ANCHOR_TYPE.5.string.text
+msgid "To Character"
+msgstr "На знак"
+
+#: 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 ""
+
+#: formres.src#RID_RSC_ENUM_SHEET_ANCHOR_TYPE.2.string.text
+msgid "To Cell"
+msgstr ""
+
+#. 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
+#, fuzzy
+msgid "Regular"
+msgstr ""
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"регуларен\n"
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Регуларен"
+
+#. 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 "Задебелен курзив"
+
+#. That's the 'Italic' as used for a font style, so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_ITALIC.string.text
+#, fuzzy
+msgid "Italic"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"курзив\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив\n"
+"#-#-#-#-# svdraw.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Курзив"
+
+#. That's the 'Bold' as used for a font style, so please use a consistent translation.
+#: formres.src#RID_STR_FONTSTYLE_BOLD.string.text
+#, fuzzy
+msgid "Bold"
+msgstr ""
+"#-#-#-#-# config.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Задебелено\n"
+"#-#-#-#-# UI.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Задебелено\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Задебелено\n"
+"#-#-#-#-# source.po (PACKAGE VERSION) #-#-#-#-#\n"
+"задебелен\n"
+"#-#-#-#-# animations.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Задебелено\n"
+"#-#-#-#-# app.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Задебелено\n"
+"#-#-#-#-# control.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Задебелен\n"
+"#-#-#-#-# inc.po (PACKAGE VERSION) #-#-#-#-#\n"
+"Задебелено"
+
+#: formres.src#RID_STR_FONT_DEFAULT.string.text
+#, fuzzy
+msgid "(Default)"
+msgstr "Стандардно"
diff --git a/source/mk/extensions/source/scanner.po b/source/mk/extensions/source/scanner.po
new file mode 100644
index 00000000000..52c002425df
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Постави"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_LINEAR_ASCENDING.string.text
+msgid "Linear ascending"
+msgstr "Линеарно растечки"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_LINEAR_DESCENDING.string.text
+msgid "Linear descending"
+msgstr "Линеарно опаѓачки"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_RESET.string.text
+msgid "Original values"
+msgstr "Оригинални вредности"
+
+#: grid.src#GRID_DIALOG.RESET_TYPE_EXPONENTIAL.string.text
+msgid "Exponential increasing"
+msgstr "Експонецијално растечки"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_DEVICEINFO_BTN.pushbutton.text
+msgid ""
+"About\n"
+" Dev~ice"
+msgstr ""
+"За\n"
+" ур~едот"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_PREVIEW_BTN.pushbutton.text
+msgid ""
+"Create\n"
+"Preview"
+msgstr ""
+"Креирај\n"
+"преглед"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BTN.pushbutton.text
+msgid "Scan"
+msgstr "Скенирај"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_PREVIEW_BOX.fixedline.text
+msgid "Preview"
+msgstr "Преглед"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCANAREA_BOX.fixedline.text
+msgid "Scan area"
+msgstr "Област на скенирање"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_LEFT_TXT.fixedtext.text
+msgid "Left:"
+msgstr "Лево:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_TOP_TXT.fixedtext.text
+msgid "Top:"
+msgstr "Горе:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_RIGHT_TXT.fixedtext.text
+msgid "Right:"
+msgstr "Десно:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_BOTTOM_TXT.fixedtext.text
+msgid "Bottom:"
+msgstr "Долу:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_DEVICE_BOX_TXT.fixedtext.text
+msgid "Device used:"
+msgstr "Употребен уред:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_RESOLUTION_TXT.fixedtext.text
+msgid "Resolution [~DPI]"
+msgstr "Резолуција [~DPI]"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_ADVANCED_TXT.fixedtext.text
+msgid "Show advanced options"
+msgstr "Прикажување напредни опции"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_OPTION_TXT.fixedtext.text
+msgid "Options:"
+msgstr "Опции:"
+
+#: sanedlg.src#RID_SANE_DIALOG.RID_SCAN_NUMERIC_VECTOR_TXT.fixedtext.text
+msgid "Vector element"
+msgstr "Векторски елемент"
+
+#: 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 "Постави"
+
+#: sanedlg.src#RID_SANE_DIALOG.modaldialog.text
+msgid "Scanner"
+msgstr "Скенер"
+
+#: sanedlg.src#RID_SANE_DEVICEINFO_TXT.string.text
+msgid ""
+"Device: %s\n"
+"Vendor: %s\n"
+"Model: %s\n"
+"Type: %s"
+msgstr ""
+"Уред: %s\n"
+"Производител: %s\n"
+"Модел: %s\n"
+"Тип: %s"
+
+#: sanedlg.src#RID_SANE_SCANERROR_TXT.string.text
+msgid "An error occurred while scanning."
+msgstr "Се појави грешка при скенирањето."
+
+#: 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 "Уредот не нуди опција за прегледување. Затоа ќе биде направено нормално скенирање место преглед. Ова може да потрае подолго време."
+
+#: sanedlg.src#RID_SANE_NOSANELIB_TXT.string.text
+msgid "The SANE interface could not be initialized. Scanning is not possible."
+msgstr "Интерфејсот SANE не можеше да биде иницијализиран. Скенирањето не е возможно."
diff --git a/source/mk/extensions/source/update/check.po b/source/mk/extensions/source/update/check.po
new file mode 100644
index 00000000000..5b87566c591
--- /dev/null
+++ b/source/mk/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 14:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Проверувам..."
+
+#: updatehdl.src#RID_UPDATE_STR_CHECKING_ERR.string.text
+msgid "Checking for an update failed."
+msgstr "Проверката за надградби не успеа."
+
+#: updatehdl.src#RID_UPDATE_STR_NO_UPD_FOUND.string.text
+msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
+msgstr "%PRODUCTNAME %PRODUCTVERSION е со најнова верзија."
+
+#: 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.\n"
+"\n"
+"Инсталираната верзија е %PRODUCTNAME %PRODUCTVERSION.\n"
+"\n"
+"Забелешка: Пред да го симнете ажурирањето, ве молам проверете дали имате доволно права за пристап за да го инсталирате.\n"
+"Можеби ќе биде побарана лозинка, обично администраторска или лозинка за root."
+
+#: updatehdl.src#RID_UPDATE_STR_DLG_TITLE.string.text
+msgid "Check for Updates"
+msgstr "Провери за надградби"
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_PAUSE.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
+msgstr "Симнувањето на %PRODUCTNAME %NEXTVERSION е паузирано на..."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_ERR.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
+msgstr "Симнувањето на %PRODUCTNAME %NEXTVERSION е заглавено на"
+
+#: 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 ""
+"Локацијата за симнување е: %DOWNLOAD_PATH.\n"
+"\n"
+"Можете да ја смените локацијата за симнување во Алатки - Опции... - %PRODUCTNAME - Мрежно ажурирање."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOAD_DESCR.string.text
+msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
+msgstr "%FILE_NAME беше симнато во %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 ""
+"Автоматско симнување на нови верзии во моментов не е достапно.\n"
+"\n"
+"Кликнете 'Симни...' за да го симнете рачно %PRODUCTNAME %NEXTVERSION од веб страната."
+
+#: updatehdl.src#RID_UPDATE_STR_DOWNLOADING.string.text
+msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
+msgstr "Симнувам %PRODUCTNAME %NEXTVERSION..."
+
+#: updatehdl.src#RID_UPDATE_STR_READY_INSTALL.string.text
+msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
+msgstr "Симнувањето на %PRODUCTNAME %NEXTVERSION заврши. Спремно е за инсталација."
+
+#: 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 "Дали навистина сакате да го откажете симнувањето?"
+
+#: 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 "За да го инсталирате ажурирањето, %PRODUCTNAME %PRODUCTVERSION мора да се затвори. Дали сакате да го инсталирате ажурирањето сега?"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_NOW.string.text
+msgid "Install ~now"
+msgstr "Инсталирај ~сега"
+
+#: updatehdl.src#RID_UPDATE_STR_INSTALL_LATER.string.text
+msgid "Install ~later"
+msgstr "Инсталирај ~подоцна"
+
+#: 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 "Не можам да ја извршам апликацијата за инсталирање, ве молиме извршете го рачно %FILE_NAME во %DOWNLOAD_PATH."
+
+#: 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 "Датотека со тоа име веќе постои! Дали сакате да ја препишете постоечката датотека?"
+
+#: 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 ""
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_RELOAD.string.text
+msgid "Reload File"
+msgstr ""
+
+#: updatehdl.src#RID_UPDATE_STR_RELOAD_CONTINUE.string.text
+msgid "Continue"
+msgstr "Продолжи"
+
+#: updatehdl.src#RID_UPDATE_STR_PERCENT.string.text
+msgid "%PERCENT%"
+msgstr "%PERCENT%"
+
+#: updatehdl.src#RID_UPDATE_FT_STATUS.string.text
+msgid "Status"
+msgstr "Статус"
+
+#: updatehdl.src#RID_UPDATE_FT_DESCRIPTION.string.text
+msgid "Description"
+msgstr "Опис"
+
+#: updatehdl.src#RID_UPDATE_BTN_CLOSE.string.text
+msgid "Close"
+msgstr "Затвори"
+
+#: updatehdl.src#RID_UPDATE_BTN_DOWNLOAD.string.text
+msgid "~Download"
+msgstr "~Симни"
+
+#: updatehdl.src#RID_UPDATE_BTN_INSTALL.string.text
+msgid "~Install"
+msgstr "~Инсталирај"
+
+#: updatehdl.src#RID_UPDATE_BTN_PAUSE.string.text
+msgid "~Pause"
+msgstr "~Пауза"
+
+#: updatehdl.src#RID_UPDATE_BTN_RESUME.string.text
+msgid "~Resume"
+msgstr "П~родолжи"
+
+#: updatehdl.src#RID_UPDATE_BTN_CANCEL.string.text
+msgid "Cancel"
+msgstr "Откажи"
+
+#: 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"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_UPDATE_AVAIL.string.text
+#, fuzzy
+msgid "Click the icon to start the download."
+msgstr "Кликнете тука за да почнете со симнувањето."
+
+#: 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"
+
+#: 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 "Кликнете тука за повеќе информации."
+
+#: 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"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_AUTO_START.string.text
+msgid "Download of update begins."
+msgstr "Симнувањето на новата верзија отпочна."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOADING.string.text
+msgid "Download of update in progress"
+msgstr "Симнувањето на новата верзија е во тек"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED.string.text
+msgid "Download of update paused"
+msgstr "Симнувањето на новата верзија е паузирано"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED.string.text
+#, fuzzy
+msgid "Click the icon to resume."
+msgstr "Кликнете тука за да продолжите."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING.string.text
+msgid "Download of update stalled"
+msgstr "Симнувањето на новата верзија е заглавено"
+
+#: 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 "Кликнете тука за повеќе информации."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL.string.text
+msgid "Download of update completed"
+msgstr "Симнувањето на новата верзија заврши"
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL.string.text
+#, fuzzy
+msgid "Click the icon to start the installation."
+msgstr "Кликнете тука за да почнете со инсталација."
+
+#: updatehdl.src#RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL.string.text
+msgid "Updates for extensions available"
+msgstr "Достапни се ажурирања за екстензиите"
+
+#: 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 "Кликнете тука за повеќе информации."
diff --git a/source/mk/extensions/source/update/check/org/openoffice/Office.po b/source/mk/extensions/source/update/check/org/openoffice/Office.po
new file mode 100644
index 00000000000..905a7524595
--- /dev/null
+++ b/source/mk/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: mk\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/mk/filter/source/config/fragments/filters.po b/source/mk/filter/source/config/fragments/filters.po
new file mode 100644
index 00000000000..48d002bb640
--- /dev/null
+++ b/source/mk/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-16 14:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 ""
+
+#: StarWriter_5_0_Vorlage_Template_ui.xcu#StarWriter_5.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 5.0 Template"
+msgstr "StarWriter 5.0-образец"
+
+#: calc8_template_ui.xcu#calc8_template.UIName.value.text
+msgid "ODF Spreadsheet Template"
+msgstr "Образец за ODF табеларна пресметка"
+
+#: impress8_draw_ui.xcu#impress8_draw.UIName.value.text
+msgid "ODF Drawing (Impress)"
+msgstr "ODF Цртање (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"
+
+#: StarOffice_XML__Base__ui.xcu#StarOffice_XML__Base_.UIName.value.text
+msgid "ODF Database"
+msgstr "ODF база на податоци"
+
+#: writer8_ui.xcu#writer8.UIName.value.text
+msgctxt "writer8_ui.xcu#writer8.UIName.value.text"
+msgid "ODF Text Document"
+msgstr "ODF текстуален документ"
+
+#: StarDraw_3_0_Vorlage_ui.xcu#StarDraw_3.0_Vorlage.UIName.value.text
+msgid "StarDraw 3.0 Template"
+msgstr "StarDraw 3.0-образец"
+
+#: 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"
+
+#: impress_OOXML_ui.xcu#Impress_Office_Open_XML.UIName.value.text
+msgid "Office Open XML Presentation"
+msgstr ""
+
+#: StarOffice_XML__Math__ui.xcu#StarOffice_XML__Math_.UIName.value.text
+msgid "%productname% %formatversion% Formula"
+msgstr "%productname% %formatversion%-формула"
+
+#: 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-образец"
+
+#: draw8_ui.xcu#draw8.UIName.value.text
+msgid "ODF Drawing"
+msgstr "ODF цртање"
+
+#: 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%-образец за текстуален документ"
+
+#: StarOffice_XML__Calc__ui.xcu#StarOffice_XML__Calc_.UIName.value.text
+msgid "%productname% %formatversion% Spreadsheet"
+msgstr "%productname% %formatversion%-табеларна пресметка"
+
+#: draw8_template_ui.xcu#draw8_template.UIName.value.text
+msgid "ODF Drawing Template"
+msgstr "Образец за ODF цртеж"
+
+#: 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-образец"
+
+#: writer_StarOffice_XML_Writer_Template_ui.xcu#writer_StarOffice_XML_Writer_Template.UIName.value.text
+msgid "%productname% %formatversion% Text Document Template"
+msgstr "%productname% %formatversion%-образец за текстуален документ"
+
+#: impress_StarOffice_XML_Impress_Template_ui.xcu#impress_StarOffice_XML_Impress_Template.UIName.value.text
+msgid "%productname% %formatversion% Presentation Template"
+msgstr "%productname% %formatversion%-образец за презентација"
+
+#: writerweb8_writer_template_ui.xcu#writerweb8_writer_template.UIName.value.text
+msgid "HTML Document Template"
+msgstr "Образец за HTML-документ"
+
+#: 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 "XML образец за Microsoft PowerPoint 2007"
+
+#: 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-образец"
+
+#: 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%-главен документ"
+
+#: StarWriter_5_0_GlobalDocument_ui.xcu#StarWriter_5.0/GlobalDocument.UIName.value.text
+msgid "StarWriter 5.0 Master Document"
+msgstr "StarWriter 5.0-главен документ"
+
+#: 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-образец"
+
+#: 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 "XML образец за Microsoft PowerPoint 2007"
+
+#: 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"
+
+#: StarCalc_5_0_Vorlage_Template_ui.xcu#StarCalc_5.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 5.0 Template"
+msgstr "StarCalc 5.0-образец"
+
+#: calc8_ui.xcu#calc8.UIName.value.text
+msgid "ODF Spreadsheet"
+msgstr "ODF табеларна пресметка"
+
+#: 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-образец"
+
+#: StarCalc_4_0_Vorlage_Template_ui.xcu#StarCalc_4.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 4.0 Template"
+msgstr "StarCalc 4.0-образец"
+
+#: 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 презентација"
+
+#: Text_ui.xcu#Text.UIName.value.text
+msgid "Text"
+msgstr "Текст"
+
+#: 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%-текстуален документ"
+
+#: StarDraw_5_0_Vorlage_ui.xcu#StarDraw_5.0_Vorlage.UIName.value.text
+msgid "StarDraw 5.0 Template"
+msgstr "StarDraw 5.0-образец"
+
+#: 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 текстуален документ"
+
+#: 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%-текстуален документ"
+
+#: 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-главен документ"
+
+#: 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-образец"
+
+#: StarImpress_5_0_Vorlage_ui.xcu#StarImpress_5.0_Vorlage.UIName.value.text
+msgid "StarImpress 5.0 Template"
+msgstr "StarImpress 5.0-образец"
+
+#: writer8_template_ui.xcu#writer8_template.UIName.value.text
+msgid "ODF Text Document Template"
+msgstr "Образец за ODF текстуален документ"
+
+#: OOXML_Text_Template_ui.xcu#Office_Open_XML_Text_Template.UIName.value.text
+msgid "Office Open XML Text Template"
+msgstr ""
+
+#: math8_ui.xcu#math8.UIName.value.text
+msgid "ODF Formula"
+msgstr "ODF формула"
+
+#: 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%-графикон"
+
+#: 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"
+
+#: 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 "Унифициран канцелариски формат за табеларни пресметки"
+
+#: 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-образец"
+
+#: calc_OOXML_Template_ui.xcu#Calc_Office_Open_XML_Template.UIName.value.text
+msgid "Office Open XML Spreadsheet Template"
+msgstr ""
+
+#: 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 "XML образец за Microsoft Excel 2007"
+
+#: 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 "XML образец за Microsoft PowerPoint 2007"
+
+#: HTML_ui.xcu#HTML.UIName.value.text
+msgid "HTML Document"
+msgstr "HTML-документ"
+
+#: impress8_ui.xcu#impress8.UIName.value.text
+msgid "ODF Presentation"
+msgstr "ODF презентација"
+
+#: impress_OOXML_Template_ui.xcu#Impress_Office_Open_XML_Template.UIName.value.text
+msgid "Office Open XML Presentation Template"
+msgstr ""
+
+#: 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%-презентација"
+
+#: 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-образец"
+
+#: Text__encoded__ui.xcu#Text__encoded_.UIName.value.text
+msgid "Text Encoded"
+msgstr "Кодиран текст"
+
+#: writerglobal8_ui.xcu#writerglobal8.UIName.value.text
+msgid "ODF Master Document"
+msgstr "ODF главен документ"
+
+#: UOF_text_ui.xcu#UOF_text.UIName.value.text
+msgid "Unified Office Format text"
+msgstr "Унифициран канцелариски формат за текст"
+
+#: 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 графикон"
+
+#: 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-образец"
+
+#: OOXML_Text_ui.xcu#Office_Open_XML_Text.UIName.value.text
+msgid "Office Open XML Text"
+msgstr ""
+
+#: draw_StarOffice_XML_Draw_Template_ui.xcu#draw_StarOffice_XML_Draw_Template.UIName.value.text
+msgid "%productname% %formatversion% Drawing Template"
+msgstr "%productname% %formatversion%-образец за цртеж"
+
+#: StarOffice_XML__Draw__ui.xcu#StarOffice_XML__Draw_.UIName.value.text
+msgid "%productname% %formatversion% Drawing"
+msgstr "%productname% %formatversion%-цртеж"
+
+#: impress_StarOffice_XML_Draw_ui.xcu#impress_StarOffice_XML_Draw.UIName.value.text
+#, fuzzy
+msgid "%productname% %formatversion% Drawing (Impress)"
+msgstr "%productname% %formatversion%-образец за цртеж"
+
+#: StarCalc_3_0_Vorlage_Template_ui.xcu#StarCalc_3.0_Vorlage/Template.UIName.value.text
+msgid "StarCalc 3.0 Template"
+msgstr "StarCalc 3.0-образец"
+
+#: MS_Word_95_Vorlage_ui.xcu#MS_Word_95_Vorlage.UIName.value.text
+msgid "Microsoft Word 95 Template"
+msgstr "Microsoft Word 95-образец"
+
+#: MS_Excel_95_Vorlage_Template_ui.xcu#MS_Excel_95_Vorlage/Template.UIName.value.text
+msgid "Microsoft Excel 95 Template"
+msgstr "Microsoft Excel 95-образец"
+
+#: calc_StarOffice_XML_Calc_Template_ui.xcu#calc_StarOffice_XML_Calc_Template.UIName.value.text
+msgid "%productname% %formatversion% Spreadsheet Template"
+msgstr "%productname% %formatversion%-образец за табеларна пресметка"
+
+#: UOF_presentation_ui.xcu#UOF_presentation.UIName.value.text
+msgid "Unified Office Format presentation"
+msgstr "Унифициран канцелариски формат за презентација"
+
+#: 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"
+
+#: StarWriter_4_0_Vorlage_Template_ui.xcu#StarWriter_4.0_Vorlage/Template.UIName.value.text
+msgid "StarWriter 4.0 Template"
+msgstr "StarWriter 4.0-образец"
+
+#: Text___txt___csv__StarCalc__ui.xcu#Text___txt___csv__StarCalc_.UIName.value.text
+msgid "Text CSV"
+msgstr "Текст во CSV"
+
+#: HTML__StarCalc__ui.xcu#HTML__StarCalc_.UIName.value.text
+msgid "HTML Document (Calc)"
+msgstr ""
diff --git a/source/mk/filter/source/config/fragments/internalgraphicfilters.po b/source/mk/filter/source/config/fragments/internalgraphicfilters.po
new file mode 100644
index 00000000000..7c9f6cb3719
--- /dev/null
+++ b/source/mk/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-12 00:41+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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-пикселмапа"
+
+#: wmf_Import.xcu#wmf_Import.UIName.value.text
+msgctxt "wmf_Import.xcu#wmf_Import.UIName.value.text"
+msgid "WMF - Windows Metafile"
+msgstr "WMF - Windows-метадатотека"
+
+#: 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-метадатотека"
+
+#: bmp_Import.xcu#bmp_Import.UIName.value.text
+msgctxt "bmp_Import.xcu#bmp_Import.UIName.value.text"
+msgid "BMP - Windows Bitmap"
+msgstr "BMP - Windows-битмапа"
+
+#: 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 растерска слика"
+
+#: dxf_Import.xcu#dxf_Import.UIName.value.text
+msgid "DXF - AutoCAD Interchange Format"
+msgstr "DXF - AutoCAD-формат за размена"
+
+#: 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 - Портабилна пикселмапа"
+
+#: 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 - Скалабилна векторска графика"
+
+#: png_Export.xcu#png_Export.UIName.value.text
+msgctxt "png_Export.xcu#png_Export.UIName.value.text"
+msgid "PNG - Portable Network Graphic"
+msgstr "PNG - Портабилна мрежна графика"
+
+#: 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-метадатотека"
+
+#: 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 - Портабилна битмапа"
+
+#: png_Import.xcu#png_Import.UIName.value.text
+msgctxt "png_Import.xcu#png_Import.UIName.value.text"
+msgid "PNG - Portable Network Graphic"
+msgstr "PNG - Портабилна мрежна графика"
+
+#: xpm_Export.xcu#xpm_Export.UIName.value.text
+msgctxt "xpm_Export.xcu#xpm_Export.UIName.value.text"
+msgid "XPM - X PixMap"
+msgstr "XPM - X-пикселмапа"
+
+#: 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-метадатотека"
+
+#: svg_Import.xcu#svg_Import.UIName.value.text
+msgctxt "svg_Import.xcu#svg_Import.UIName.value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - Скалабилна векторска графика"
+
+#: 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-метадатотека"
+
+#: 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 - Портабилна пикселмапа"
+
+#: 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 растерска слика"
+
+#: pgm_Export.xcu#pgm_Export.UIName.value.text
+msgctxt "pgm_Export.xcu#pgm_Export.UIName.value.text"
+msgid "PGM - Portable Graymap"
+msgstr "PGM - Портабилна мапа на сиви нијанси"
+
+#: 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"
+
+#: bmp_Export.xcu#bmp_Export.UIName.value.text
+msgctxt "bmp_Export.xcu#bmp_Export.UIName.value.text"
+msgid "BMP - Windows Bitmap"
+msgstr "BMP - Windows-битмапа"
+
+#: svm_Export.xcu#svm_Export.UIName.value.text
+msgctxt "svm_Export.xcu#svm_Export.UIName.value.text"
+msgid "SVM - StarView Metafile"
+msgstr "SVM - StarView-метадатотека"
+
+#: xbm_Import.xcu#xbm_Import.UIName.value.text
+msgid "XBM - X Bitmap"
+msgstr "XBM - X-битмапа"
+
+#: gif_Export.xcu#gif_Export.UIName.value.text
+msgctxt "gif_Export.xcu#gif_Export.UIName.value.text"
+msgid "GIF - Graphics Interchange Format"
+msgstr "GIF - Формат за разменување графики"
+
+#: pgm_Import.xcu#pgm_Import.UIName.value.text
+msgctxt "pgm_Import.xcu#pgm_Import.UIName.value.text"
+msgid "PGM - Portable Graymap"
+msgstr "PGM - Портабилна мапа на сиви нијанси"
+
+#: pbm_Export.xcu#pbm_Export.UIName.value.text
+msgctxt "pbm_Export.xcu#pbm_Export.UIName.value.text"
+msgid "PBM - Portable Bitmap"
+msgstr "PBM - Портабилна битмапа"
+
+#: gif_Import.xcu#gif_Import.UIName.value.text
+msgctxt "gif_Import.xcu#gif_Import.UIName.value.text"
+msgid "GIF - Graphics Interchange Format"
+msgstr "GIF - Формат за разменување графики"
diff --git a/source/mk/filter/source/config/fragments/types.po b/source/mk/filter/source/config/fragments/types.po
new file mode 100644
index 00000000000..c9664574fa0
--- /dev/null
+++ b/source/mk/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 03:27+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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-база на податоци"
+
+#: 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"
+
+#: 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"
+
+#: impress8_template.xcu#impress8_template.UIName.value.text
+msgid "Impress 8 Template"
+msgstr "Образец за Impress 8"
+
+#: 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"
+
+#: 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"
+
+#: MS_Excel_2007_Binary.xcu#MS_Excel_2007_Binary.UIName.value.text
+msgid "Microsoft Excel 2007 Binary"
+msgstr "Бинарен Microsoft Excel 2007"
+
+#: 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"
+
+#: 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/mk/filter/source/flash.po b/source/mk/filter/source/flash.po
new file mode 100644
index 00000000000..7302f57152a
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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: мин. квалитет\n"
+"100: макс. квалитет"
+
+#: impswfdialog.src#DLG_OPTIONS.modaldialog.text
+msgid "Macromedia Flash (SWF) Options"
+msgstr "Опции за Macromedia Flash (SWF)"
diff --git a/source/mk/filter/source/graphicfilter/eps.po b/source/mk/filter/source/graphicfilter/eps.po
new file mode 100644
index 00000000000..d9436c92519
--- /dev/null
+++ b/source/mk/filter/source/graphicfilter/eps.po
@@ -0,0 +1,22 @@
+#. 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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 ""
diff --git a/source/mk/filter/source/pdf.po b/source/mk/filter/source/pdf.po
new file mode 100644
index 00000000000..94fcfdf9d5b
--- /dev/null
+++ b/source/mk/filter/source/pdf.po
@@ -0,0 +1,496 @@
+#. 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: 2011-04-12 00:41+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Изнесувам како PDF"
+
+#: impdialog.src#STR_PDF_EXPORT.string.text
+msgid "E~xport"
+msgstr "~Изнеси"
+
+#: impdialog.src#STR_PDF_EXPORT_UDPWD.string.text
+#, fuzzy
+msgid "Set open password"
+msgstr "Постави лозинка за ~отворање..."
+
+#: impdialog.src#STR_PDF_EXPORT_ODPWD.string.text
+#, fuzzy
+msgid "Set permission password"
+msgstr "Постави лозинка за ~дозволи..."
+
+#: impdialog.src#RID_PDF_TAB_GENER.FL_PAGES.fixedline.text
+msgid "Range"
+msgstr "Опсег"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_ALL.radiobutton.text
+msgid "~All"
+msgstr "~Сите"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_RANGE.radiobutton.text
+msgid "~Pages"
+msgstr "С~траници"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_SELECTION.radiobutton.text
+msgid "~Selection"
+msgstr "И~збор"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FL_IMAGES.fixedline.text
+msgid "Images"
+msgstr "Слики"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_LOSSLESSCOMPRESSION.radiobutton.text
+msgid "~Lossless compression"
+msgstr "~Компресија без загуби"
+
+#: impdialog.src#RID_PDF_TAB_GENER.RB_JPEGCOMPRESSION.radiobutton.text
+msgid "~JPEG compression"
+msgstr "~JPEG-компресија"
+
+#: impdialog.src#RID_PDF_TAB_GENER.FT_QUALITY.fixedtext.text
+msgid "~Quality"
+msgstr "К~валитет"
+
+#: impdialog.src#RID_PDF_TAB_GENER.CB_REDUCEIMAGERESOLUTION.checkbox.text
+msgid "~Reduce image resolution"
+msgstr "~Редуцирај резолуција на сликата"
+
+#: impdialog.src#RID_PDF_TAB_GENER.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_GENER.tabpage.text"
+msgid "General"
+msgstr "Општо"
+
+#: 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 "Општо"
+
+#: 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 "~Означен PDF"
+
+#: impdialog.src#CB_EXPORTFORMFIELDS.checkbox.text
+msgid "~Create PDF form"
+msgstr "~Креирај PDF-форма"
+
+#: impdialog.src#FT_FORMSFORMAT.fixedtext.text
+msgid "Submit ~format"
+msgstr "~Формат за поднесување:"
+
+#: impdialog.src#CB_ALLOWDUPLICATEFIELDNAMES.checkbox.text
+msgid "Allow duplicate field ~names"
+msgstr ""
+
+#: impdialog.src#CB_EXPORTBOOKMARKS.checkbox.text
+msgid "Export ~bookmarks"
+msgstr "Изнеси о~бележувачи"
+
+#: impdialog.src#CB_EXPORTNOTES.checkbox.text
+msgid "~Export comments"
+msgstr "~Изнеси забелешки"
+
+#: impdialog.src#CB_EXPORTNOTESPAGES.checkbox.text
+msgid "Export ~notes pages"
+msgstr ""
+
+#: impdialog.src#CB_EXPORTHIDDENSLIDES.checkbox.text
+msgid "Export ~hidden pages"
+msgstr ""
+
+#: impdialog.src#CB_EXPORTEMPTYPAGES.checkbox.text
+msgid "Exp~ort automatically inserted blank pages"
+msgstr "И~знеси ги автоматски вметнатите празни страници"
+
+#: impdialog.src#CB_EMBEDSTANDARDFONTS.checkbox.text
+msgid "E~mbed standard fonts"
+msgstr ""
+
+#: impdialog.src#RID_PDF_WARNPDFAPASSWORD.warningbox.text
+msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
+msgstr ""
+
+#: impdialog.src#RID_PDF_WARNPDFAPASSWORD.warningbox.title
+#, fuzzy
+msgid "PDF/A Export"
+msgstr "Изнесување во Dif"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_INITVIEW.fixedline.text
+msgid "Panes"
+msgstr "Панели"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_PAGEONLY.radiobutton.text
+msgid "~Page only"
+msgstr "Само ~страница"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_OUTLINE.radiobutton.text
+msgid "~Bookmarks and page"
+msgstr "О~бележувачи и страница"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_OPNMODE_THUMBS.radiobutton.text
+msgid "~Thumbnails and page"
+msgstr "С~ликички за преглед и страница"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FT_MAGNF_INITIAL_PAGE.fixedtext.text
+msgid "Open on page"
+msgstr "Отвори на страница"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_MAGNIFICATION.fixedline.text
+msgid "Magnification"
+msgstr "Зголемување"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_DEFAULT.radiobutton.text
+msgid "~Default"
+msgstr "Стан~дардно"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_WIND.radiobutton.text
+msgid "~Fit in window"
+msgstr "При~способи кон прозорец"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_WIDTH.radiobutton.text
+msgid "Fit ~width"
+msgstr "Приспособи кон ~ширина"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_VISIBLE.radiobutton.text
+msgid "Fit ~visible"
+msgstr "Приспособи ~видливо"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_MAGNF_ZOOM.radiobutton.text
+msgid "~Zoom factor"
+msgstr "Фактор на ~зумирање"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.FL_PAGE_LAYOUT.fixedline.text
+msgid "Page layout"
+msgstr "Изглед на страница"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_DEFAULT.radiobutton.text
+msgid "D~efault"
+msgstr "Стандард~ен"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_SINGPG.radiobutton.text
+msgid "~Single page"
+msgstr "~Една страница"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_CONT.radiobutton.text
+msgid "~Continuous"
+msgstr "~Непрекинато"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.RB_PGLY_CONTFAC.radiobutton.text
+msgid "C~ontinuous facing"
+msgstr "Непрекинато, пар~ови страници"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.CB_PGLY_FIRSTLEFT.checkbox.text
+msgid "First page is ~left"
+msgstr "Првата страница е ~лево"
+
+#: impdialog.src#RID_PDF_TAB_OPNFTR.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_OPNFTR.tabpage.text"
+msgid "Initial View"
+msgstr "Почетен приказ"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_WINOPT.fixedline.text
+msgid "Window options"
+msgstr "Опции на прозорецот"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_RESINIT.checkbox.text
+msgid "~Resize window to initial page"
+msgstr "П~риспособи прозорец кон почетната страница"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_CNTRWIN.checkbox.text
+msgid "~Center window on screen"
+msgstr "~Центрирај прозорец на екранот"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_WNDOPT_OPNFULL.checkbox.text
+msgid "~Open in full screen mode"
+msgstr "~Отвори во режим „преку цел екран“"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_DISPDOCTITLE.checkbox.text
+msgid "~Display document title"
+msgstr "Прика~жи наслов на документот"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_USRIFOPT.fixedline.text
+msgid "User interface options"
+msgstr "Опции на корисничкиот интерфејс"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVMENUBAR.checkbox.text
+msgid "Hide ~menubar"
+msgstr "Скриј лента со ~менија"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVTOOLBAR.checkbox.text
+msgid "Hide ~toolbar"
+msgstr "Скриј ~алатник"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_UOP_HIDEVWINCTRL.checkbox.text
+msgid "Hide ~window controls"
+msgstr "Скриј контроли на про~зорците"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_TRANSITIONS.fixedline.text
+msgid "Transitions"
+msgstr "Премини"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.CB_TRANSITIONEFFECTS.checkbox.text
+msgid "~Use transition effects"
+msgstr "~Употреби ефекти за преод"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.FL_BOOKMARKS.fixedline.text
+msgid "Bookmarks"
+msgstr "Обележувачи"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.RB_ALLBOOKMARKLEVELS.radiobutton.text
+msgid "All bookmark levels"
+msgstr "Сите нивоа на обележувачи"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.RB_VISIBLEBOOKMARKLEVELS.radiobutton.text
+msgid "Visible bookmark levels"
+msgstr "Видливи нивоа на обележувачи"
+
+#: impdialog.src#RID_PDF_TAB_VPREFER.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_VPREFER.tabpage.text"
+msgid "User Interface"
+msgstr "Кориснички интерфејс"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_PWD_GROUP.fixedline.text
+msgid "File encryption and permission"
+msgstr ""
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.BTN_SET_PWD.pushbutton.text
+#, fuzzy
+msgid "Set ~passwords..."
+msgstr "Постави лозинка за ~отворање..."
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_SET_PWD.string.text
+#, fuzzy
+msgid "Set passwords"
+msgstr "~Зачувај лозинка"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_SET.string.text
+msgid "Open password set"
+msgstr "Отвори поставки за лозинка"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_ENC.string.text
+msgid "PDF document will be encrypted"
+msgstr "PDF документот ќе биде енкриптиран"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_UNSET.string.text
+msgid "No open password set"
+msgstr "Нема поставено лозинка за отварање"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_USER_PWD_UNENC.string.text
+msgid "PDF document will not be encrypted"
+msgstr "Нема поставено лозинка"
+
+#: 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 "Нема поставено лозинка"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_SET.string.text
+msgid "Permission password set"
+msgstr "Поставена е лозинка за дозволи"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_REST.string.text
+msgid "PDF document will be restricted"
+msgstr "PDF документот ќе биде ограничен"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_UNSET.string.text
+msgid "No permission password set"
+msgstr "Нема поставено лозинка за дозволи"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.STR_OWNER_PWD_UNREST.string.text
+msgid "PDF document will be unrestricted"
+msgstr "PDF документот ќе биде без ограничувања"
+
+#: 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 документот ќе биде ограничен"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_PRINT_PERMISSIONS.fixedline.text
+msgid "Printing"
+msgstr "Печатење"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_NONE.radiobutton.text
+msgid "~Not permitted"
+msgstr "~Не е дозволено"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_LOWRES.radiobutton.text
+msgid "~Low resolution (150 dpi)"
+msgstr "~Ниска резолуција (150 dpi)"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_PRINT_HIGHRES.radiobutton.text
+msgid "~High resolution"
+msgstr "~Висока резолуција"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.FL_CHANGES_ALLOWED.fixedline.text
+msgid "Changes"
+msgstr "Измени"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_NONE.radiobutton.text
+msgid "No~t permitted"
+msgstr "Н~е е дозволено"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_INSDEL.radiobutton.text
+msgid "~Inserting, deleting, and rotating pages"
+msgstr "~Вметнување, бришење и ротирање страници"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_FILLFORM.radiobutton.text
+msgid "~Filling in form fields"
+msgstr "Пополнување полиња во ~формулари"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_COMMENT.radiobutton.text
+msgid "~Commenting, filling in form fields"
+msgstr "~Коментирање, полиња во формулари"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.RB_CHANGES_ANY_NOCOPY.radiobutton.text
+msgid "~Any except extracting pages"
+msgstr "~Сите освен извлекување страници"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.CB_ENDAB_COPY.checkbox.text
+msgid "Ena~ble copying of content"
+msgstr "О~возможи копирање на содржината"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.CB_ENAB_ACCESS.checkbox.text
+msgid "Enable text access for acce~ssibility tools"
+msgstr "Овозможи пристап на текст за алатките за при~стапност"
+
+#: impdialog.src#RID_PDF_TAB_SECURITY.tabpage.text
+msgctxt "impdialog.src#RID_PDF_TAB_SECURITY.tabpage.text"
+msgid "Security"
+msgstr "Безбедност"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_EXP_BMRK_TO_DEST.checkbox.text
+msgid "Export bookmarks as named destinations"
+msgstr "Изнеси обележувачи како именувани одредишта"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_CNV_OOO_DOCTOPDF.checkbox.text
+msgid "Convert document references to PDF targets"
+msgstr "Претвори ги референците на документот во PDF-цели"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_ENAB_RELLINKFSYS.checkbox.text
+msgid "Export URLs relative to file system"
+msgstr "Изнеси ги URL-ата релативно на датотечниот систем"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.FL_DEFAULT_LINK_ACTION.fixedline.text
+msgid "Cross-document links"
+msgstr "Врски помеѓу документи"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_DEFAULT.radiobutton.text
+msgid "Default mode"
+msgstr "Стандарден режим"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_APPLICATION.radiobutton.text
+msgid "Open with PDF reader application"
+msgstr "Отвори со апликација за читање PDF"
+
+#: impdialog.src#RID_PDF_TAB_LINKS.CB_VIEW_PDF_BROWSER.radiobutton.text
+msgid "Open with Internet browser"
+msgstr "Отвори со интернет-прелистувач"
+
+#: 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 "Општо"
+
+#: 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 "Почетен приказ"
+
+#: 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 "Кориснички интерфејс"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.1.RID_PDF_TAB_LINKS.pageitem.text
+msgid "Links"
+msgstr "Врски"
+
+#: 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 "Безбедност"
+
+#: impdialog.src#RID_PDF_EXPORT_DLG.tabdialog.text
+msgid "PDF Options"
+msgstr "Опции за PDF"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.FT_PROCESS.fixedtext.text
+msgid "During PDF export the following problems occurred:"
+msgstr "За време на изнесувањето во PDF се случија следниве грешки:"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_PDFA_SHORT.string.text
+msgid "PDF/A transparency"
+msgstr "PDF/A проѕирност"
+
+#: 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 забранува проѕирност. Наместо тоа проѕирните објекти беа направени непроѕирни."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_VERSION_SHORT.string.text
+msgid "PDF version conflict"
+msgstr "Конфликт со верзијата на PDF"
+
+#: 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 "Проѕирностa не е подржана во верзија на PDF постари од PDF 1.4. Наместо тоа проѕирните објекти беа направени непроѕирни"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_FORMACTION_PDFA_SHORT.string.text
+msgid "PDF/A form action"
+msgstr "Дејство за PDF/A форма"
+
+#: 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 "Контролата на формата содржеше дејство кое не е поддржано од PDF/A стандардот. Дејството беше прескокнато."
+
+#: 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 "Некои објекти беа претворени во слики за да се отстранат проѕирностите, бидејќи целниот PDF формат не подржува проѕирност. Можеби подобри резултати можат да се постигнат ако ги отстраните проѕирните објекти пред извозот."
+
+#: impdialog.src#RID_PDF_ERROR_DLG.STR_WARN_TRANSP_CONVERTED_SHORT.string.text
+msgid "Transparencies removed"
+msgstr "Проѕирностите се отстранети"
+
+#: impdialog.src#RID_PDF_ERROR_DLG.modaldialog.text
+msgid "Problems during PDF export"
+msgstr "Проблеми за време на изнесувањето во PDF"
diff --git a/source/mk/filter/source/t602.po b/source/mk/filter/source/t602.po
new file mode 100644
index 00000000000..05894b58772
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Поставувања за внесување на T602"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_LABEL.string.text
+msgid "Encoding"
+msgstr "Кодирање"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_AUTO.string.text
+msgid "Automatic"
+msgstr "Автоматски"
+
+#: t602filter.src#T602FILTER_STR_ENCODING_CP852.string.text
+msgid "CP852 (Latin2)"
+msgstr "CP852 (Латиница2)"
+
+#: 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 "Режим за руски јазик (Ќирилица)"
+
+#: t602filter.src#T602FILTER_STR_REFORMAT_TEXT.string.text
+msgid "Reformat the text"
+msgstr "Реформатирање на текстот"
+
+#: t602filter.src#T602FILTER_STR_DOT_COMMANDS.string.text
+msgid "Display dot commands"
+msgstr "Прикажи команди со точки"
+
+#: t602filter.src#T602FILTER_STR_CANCEL_BUTTON.string.text
+msgid "Cancel"
+msgstr "Откажи"
+
+#: t602filter.src#T602FILTER_STR_OK_BUTTON.string.text
+msgid "OK"
+msgstr "Во ред"
diff --git a/source/mk/filter/source/xsltdialog.po b/source/mk/filter/source/xsltdialog.po
new file mode 100644
index 00000000000..9f86fa60978
--- /dev/null
+++ b/source/mk/filter/source/xsltdialog.po
@@ -0,0 +1,318 @@
+#. 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 14:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Име"
+
+#: xmlfilterdialogstrings.src#STR_COLUMN_HEADER_TYPE.string.text
+msgid "Type"
+msgstr "Тип"
+
+#: xmlfilterdialogstrings.src#STR_UNKNOWN_APPLICATION.string.text
+msgid "Unknown"
+msgstr "Непознато"
+
+#: xmlfilterdialogstrings.src#STR_IMPORT_ONLY.string.text
+msgid "import filter"
+msgstr "филтер за внесување"
+
+#: xmlfilterdialogstrings.src#STR_IMPORT_EXPORT.string.text
+msgid "import/export filter"
+msgstr "филтер за внесување/изнесување"
+
+#: xmlfilterdialogstrings.src#STR_EXPORT_ONLY.string.text
+msgid "export filter"
+msgstr "филтер за изнесување"
+
+#: xmlfilterdialogstrings.src#STR_WARN_DELETE.string.text
+msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
+msgstr "Дали навистина сакате да го избришете XML-филтерот „%s“? Ова дејство не може да се отповика."
+
+#: 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 "Веќе постои XML-филтер со името „%s“. Внесете друго име."
+
+#: 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 "Името за корисничкиот интерфејс „%1“ веќе се користи од XML-филтерот „%s2“. Внесете друго име."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_DTD_NOT_FOUND.string.text
+msgid "The DTD could not be found. Please enter a valid path."
+msgstr "Не е пронајден DTD. Внесете валидна патека."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_EXPORT_XSLT_NOT_FOUND.string.text
+msgid "The XSLT for export cannot be found. Please enter a valid path."
+msgstr "Не е пронајден XSLT за изнесување. Внесете валидна патека."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_IMPORT_XSLT_NOT_FOUND.string.text
+msgid "The XSLT for import cannot be found. Please enter a valid path."
+msgstr "Не е пронајден XSLT за внес. Внесете валидна патека."
+
+#: xmlfilterdialogstrings.src#STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND.string.text
+msgid "The given import template cannot be found. Please enter a valid path."
+msgstr "Не е пронајден дадениот образец за внес. Внесете валидна патека."
+
+#: xmlfilterdialogstrings.src#STR_NOT_SPECIFIED.string.text
+msgid "Not specified"
+msgstr "Неопределено"
+
+#: xmlfilterdialogstrings.src#STR_DEFAULT_FILTER_NAME.string.text
+msgid "New Filter"
+msgstr "Нов филтер"
+
+#: xmlfilterdialogstrings.src#STR_DEFAULT_UI_NAME.string.text
+msgid "Untitled"
+msgstr "Неименувано"
+
+#: xmlfilterdialogstrings.src#STR_UNDEFINED_FILTER.string.text
+msgid "undefined filter"
+msgstr "недефиниран филтер"
+
+#: xmlfilterdialogstrings.src#STR_FILTER_HAS_BEEN_SAVED.string.text
+msgid "The XML filter '%s' has been saved as package '%s'. "
+msgstr "XML-филтерот „%s“ е снимен како пакет „%s“. "
+
+#: xmlfilterdialogstrings.src#STR_FILTERS_HAVE_BEEN_SAVED.string.text
+msgid "%s XML filters have been saved in the package '%s'."
+msgstr "XML-филтрите „%s“ се снимени во пакетот „%s“."
+
+#: xmlfilterdialogstrings.src#STR_FILTER_PACKAGE.string.text
+msgid "XSLT filter package"
+msgstr "Пакет со XSLT-филтри"
+
+#: xmlfilterdialogstrings.src#STR_FILTER_INSTALLED.string.text
+msgid "The XML filter '%s' has been installed successfully."
+msgstr "XML-филтерот „%s“ е успешно инсталиран."
+
+#: xmlfilterdialogstrings.src#STR_FILTERS_INSTALLED.string.text
+msgid "%s XML filters have been installed successfully."
+msgstr "XML-филтрите „%s“ се успешно инсталирани."
+
+#: 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 "Не можеше да се инсталира XML-филтер бидејќи пакетот „%s“ не содржи XML-филтри."
+
+#: 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 "Општо"
+
+#: 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 "Трансформација"
+
+#: xmlfiltertabdialog.src#DLG_XML_FILTER_TABDIALOG.tabdialog.text
+msgid "XML Filter: %s"
+msgstr "XML-филтер: %s"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FL_EXPORT.fixedline.text
+msgid "Export"
+msgstr "Изнесување"
+
+#: 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 за изнесување"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_TRANSFORM_DOCUMENT.fixedtext.text
+msgid "Transform document"
+msgstr "Трансформирај го документот"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_EXPORT_BROWSE.pushbutton.text
+msgid "~Browse..."
+msgstr "П~релистај..."
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_CURRENT_DOCUMENT.pushbutton.text
+msgid "~Current Document"
+msgstr "~Тековен документ"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FL_IMPORT.fixedline.text
+msgid "Import"
+msgstr "Внесување"
+
+#: 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 за внесување"
+
+#: 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 "Образец за внесување"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.FT_TRANSFORM_FILE.fixedtext.text
+msgid "Transform file"
+msgstr "Трансформирај ја датотеката"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.CBX_DISPLAY_SOURCE.checkbox.text
+msgid "~Display source"
+msgstr "~Прикажи го изворот"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_IMPORT_BROWSE.pushbutton.text
+msgid "B~rowse..."
+msgstr "Пр~елистај..."
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.PB_RECENT_DOCUMENT.pushbutton.text
+msgid "~Recent File"
+msgstr "~Неодамнешна датотека"
+
+#: 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 "За~твори"
+
+#: xmlfiltertestdialog.src#DLG_XML_FILTER_TEST_DIALOG.modaldialog.text
+msgid "Test XML Filter: %s"
+msgstr "Тестирање на XML-филтер: %s"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_NEW.pushbutton.text
+msgid "~New..."
+msgstr "~Нов..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_EDIT.pushbutton.text
+msgid "~Edit..."
+msgstr "~Уреди..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_TEST.pushbutton.text
+msgid "~Test XSLTs..."
+msgstr "~Тестирај ги XSLT..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_DELETE.pushbutton.text
+msgid "~Delete..."
+msgstr "~Избриши..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_SAVE.pushbutton.text
+msgid "~Save as Package..."
+msgstr "~Зачувај како пакет..."
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.PB_XML_FILTER_OPEN.pushbutton.text
+msgid "~Open Package..."
+msgstr "~Отвори пакет..."
+
+#: 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 "За~твори"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.STR_XML_FILTER_LISTBOX.string.text
+#, fuzzy
+msgid "XML Filter List"
+msgstr "XML-филтер: %s"
+
+#: xmlfiltersettingsdialog.src#DLG_XML_FILTER_SETTINGS_DIALOG.workwindow.text
+msgid "XML Filter Settings"
+msgstr "Поставувања за XML-филтри"
+
+#: xmlfileview.src#DLG_XML_SOURCE_FILE_DIALOG.PB_VALIDATE.pushbutton.text
+msgid "~Validate"
+msgstr "~Потврди"
+
+#: xmlfileview.src#DLG_XML_SOURCE_FILE_DIALOG.workwindow.text
+msgid "XML Filter output"
+msgstr "Излез од XML-филтер"
+
+#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_DOCTYPE.fixedtext.text
+msgid "DocType"
+msgstr "Тип документ"
+
+#: 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 "Прелистај..."
+
+#: 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 за изнесување"
+
+#: 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 "Прелистај..."
+
+#: 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 за внесување"
+
+#: 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 "Прелистај..."
+
+#: 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 "Образец за внесување"
+
+#: 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 "Прелистај..."
+
+#: 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 "Трансформација"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_FILTER_NAME.fixedtext.text
+msgid "Filter name"
+msgstr "Име на филтер"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_APPLICATION.fixedtext.text
+msgid "Application"
+msgstr "Апликација"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_INTERFACE_NAME.fixedtext.text
+msgid ""
+"Name of\n"
+"file type"
+msgstr ""
+"Име на\n"
+"типот датотека"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_EXTENSION.fixedtext.text
+msgid "File extension"
+msgstr "Наставка на датотека"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.FT_XML_DESCRIPTION.fixedtext.text
+msgid "Comments"
+msgstr "Коментари"
+
+#: xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.tabpage.text
+msgctxt "xmlfiltertabpagebasic.src#RID_XML_FILTER_TABPAGE_BASIC.tabpage.text"
+msgid "General"
+msgstr "Општо"
diff --git a/source/mk/forms/source/resource.po b/source/mk/forms/source/resource.po
new file mode 100644
index 00000000000..77895f81800
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Внесете израз за поврзување."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_BINDING_EXPRESSION.string.text
+msgid "This is an invalid binding expression."
+msgstr "Ова е невалиден израз за поврзување."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_VALUE.string.text
+msgid "Value is invalid."
+msgstr "Вредноста е невалидна."
+
+#: xforms.src#RID_STR_XFORMS_REQUIRED.string.text
+msgid "A value is required."
+msgstr "Потребна е вредност."
+
+#: xforms.src#RID_STR_XFORMS_INVALID_CONSTRAINT.string.text
+msgid "The constraint '$1' not validated."
+msgstr "Ограничувањето „$1“ не е валидирано."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_IS_NOT_A.string.text
+msgid "The value is not of the type '$2'."
+msgstr "Вредноста не е од тип „$2“."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_INCL.string.text
+msgid "The value must be smaller than or equal to $2."
+msgstr "Вредноста мора да е помала или еднаква на „$2“."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_EXCL.string.text
+msgid "The value must be smaller than $2."
+msgstr "Вредноста мора да е помала од $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_INCL.string.text
+msgid "The value must be greater than or equal to $2."
+msgstr "Вредноста мора да е поголема или еднаква на $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_EXCL.string.text
+msgid "The value must be greater than $2."
+msgstr "Вредноста мора да е поголема од $2."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_PATTERN.string.text
+msgid "The value does not match the pattern '$2'."
+msgstr "Вредноста не одговара на шемата „$2“."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_TOTAL_DIGITS.string.text
+msgid "$2 digits allowed at most."
+msgstr "Дозволени се најмногу $2 цифри."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_FRACTION_DIGITS.string.text
+msgid "$2 fraction digits allowed at most."
+msgstr "Дозволени се најмногу $2 цифри за децимали."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_LENGTH.string.text
+msgid "The string must be $2 characters long."
+msgstr "Низата мора да биде долга $2 знаци."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MIN_LENGTH.string.text
+msgid "The string must be at least $2 characters long."
+msgstr "Низата мора да е долга барем $2 знаци."
+
+#: xforms.src#RID_STR_XFORMS_VALUE_MAX_LENGTH.string.text
+msgid "The string can only be $2 characters long at most."
+msgstr "Низата може да е долга најмногу $2 знаци."
+
+#: xforms.src#RID_STR_DATATYPE_STRING.string.text
+msgid "String"
+msgstr "Низа"
+
+#: xforms.src#RID_STR_DATATYPE_URL.string.text
+msgid "Hyperlink"
+msgstr "Хиперврска"
+
+#: xforms.src#RID_STR_DATATYPE_BOOLEAN.string.text
+msgid "True/False (Boolean)"
+msgstr "Точно/погрешно (логичка)"
+
+#: xforms.src#RID_STR_DATATYPE_DECIMAL.string.text
+msgid "Decimal"
+msgstr "Децимала"
+
+#: xforms.src#RID_STR_DATATYPE_FLOAT.string.text
+msgid "Floating point"
+msgstr "Подвижна запирка"
+
+#: xforms.src#RID_STR_DATATYPE_DOUBLE.string.text
+msgid "Double"
+msgstr "Двојна"
+
+#: xforms.src#RID_STR_DATATYPE_DATE.string.text
+msgid "Date"
+msgstr "Датум"
+
+#: xforms.src#RID_STR_DATATYPE_TIME.string.text
+msgid "Time"
+msgstr "Време"
+
+#: xforms.src#RID_STR_DATATYPE_DATETIME.string.text
+msgid "Date and Time"
+msgstr "Датум и време"
+
+#: xforms.src#RID_STR_DATATYPE_YEARMONTH.string.text
+msgid "Month and year"
+msgstr "Месец и година"
+
+#: xforms.src#RID_STR_DATATYPE_YEAR.string.text
+msgid "Year"
+msgstr "Година"
+
+#: xforms.src#RID_STR_DATATYPE_MONTHDAY.string.text
+msgid "Month and day"
+msgstr "Месец и ден"
+
+#: xforms.src#RID_STR_DATATYPE_MONTH.string.text
+msgid "Month"
+msgstr "Месец"
+
+#: xforms.src#RID_STR_DATATYPE_DAY.string.text
+msgid "Day"
+msgstr "Ден"
+
+#: xforms.src#RID_STR_XFORMS_CANT_EVALUATE.string.text
+msgid "Error during evaluation"
+msgstr "Грешка при проценувањето"
+
+#: xforms.src#RID_STR_XFORMS_PATTERN_DOESNT_MATCH.string.text
+msgid "The string '$1' does not match the required regular expression '$2'."
+msgstr "Низата „$1“ не се совпаѓа со бараниот регуларен израз „$2“."
+
+#: xforms.src#RID_STR_XFORMS_BINDING_UI_NAME.string.text
+msgid "Binding"
+msgstr "Поврзување"
+
+#: strings.src#RID_BASELISTBOX_ERROR_FILLLIST.string.text
+msgid "The contents of a combo box or list field could not be determined."
+msgstr "Содржината на комбинираната листа не можеше да се одреди."
+
+#: strings.src#RID_STR_IMPORT_GRAPHIC.string.text
+msgid "Insert graphics"
+msgstr "Вметнување графика"
+
+#: strings.src#RID_STR_CONTROL_SUBSTITUTED_NAME.string.text
+msgid "substituted"
+msgstr "заменето"
+
+#: 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 "Се појави грешка при вчитувањето на оваа контрола. Поради тоа беше заменета со резервирано место."
+
+#: strings.src#RID_STR_READERROR.string.text
+msgid "Error reading data from database"
+msgstr "Грешка при читањето податоци од базата"
+
+#: strings.src#RID_STR_CONNECTERROR.string.text
+msgid "Connection failed"
+msgstr "Поврзувањето не успеа"
+
+#: strings.src#RID_ERR_LOADING_FORM.string.text
+msgid "The data content could not be loaded."
+msgstr "Содржината на податоците не можеше да се вчита."
+
+#: strings.src#RID_ERR_REFRESHING_FORM.string.text
+msgid "The data content could not be updated"
+msgstr "Содржината на податоците не можеше да се ажурира"
+
+#: strings.src#RID_STR_ERR_INSERTRECORD.string.text
+msgid "Error inserting the new record"
+msgstr "Грешка при вметнувањето на новиот запис"
+
+#: strings.src#RID_STR_ERR_UPDATERECORD.string.text
+msgid "Error updating the current record"
+msgstr "Грешка при ажурирањето на тековниот запис"
+
+#: strings.src#RID_STR_ERR_DELETERECORD.string.text
+msgid "Error deleting the current record"
+msgstr "Грешка при бришењето на тековниот запис"
+
+#: strings.src#RID_STR_ERR_DELETERECORDS.string.text
+msgid "Error deleting the specified records"
+msgstr "Грешка при бришењето на назначените записи"
+
+#: strings.src#RID_STR_NEED_NON_NULL_OBJECT.string.text
+msgid "The object cannot be NULL."
+msgstr "Објектот не може да биде NULL."
+
+#: strings.src#RID_STR_OPEN_GRAPHICS.string.text
+msgid "Insert graphics from..."
+msgstr "Вметни графика од..."
+
+#: strings.src#RID_STR_CLEAR_GRAPHICS.string.text
+msgid "Remove graphics"
+msgstr "Отстрани графика"
+
+#: strings.src#RID_STR_INVALIDSTREAM.string.text
+msgid "The given stream is invalid."
+msgstr "Дадениот поток е невалиден."
+
+#: strings.src#RID_STR_SYNTAXERROR.string.text
+msgid "Syntax error in query expression"
+msgstr "Синтаксичка грешка во изразот за прашање"
+
+#: 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 "Типовите вредности поддржани од поврзувањето не може да се користат за размена на податоци со оваа контрола."
+
+#: strings.src#RID_STR_LABEL_RECORD.string.text
+msgid "Record"
+msgstr "Запис"
+
+#: 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 "Контролата е поврзана со поврзување за надворешна вредност, која во исто време игра улога на валидатор. Треба да го отповикате поврзувањето пред да поставите нов валидатор."
+
+#: strings.src#RID_STR_LABEL_OF.string.text
+msgid "of"
+msgstr "од"
+
+#: 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 ""
+"Содржината на тековната форма беше променета.\n"
+"Дали сакате да ги зачувате Вашите промени?"
+
+#: strings.src#RID_STR_COULD_NOT_SET_ORDER.string.text
+msgid "Error setting the sort criteria"
+msgstr "Грешка при поставувањето критериум за подредување"
+
+#: strings.src#RID_STR_COULD_NOT_SET_FILTER.string.text
+msgid "Error setting the filter criteria"
+msgstr "Грешка при поставувањето критериум за филтрирање"
+
+#: strings.src#RID_STR_FEATURE_REQUIRES_PARAMETERS.string.text
+msgid "To execute this function, parameters are needed."
+msgstr "За извршувањето на оваа функција се потребни параметри."
+
+#: strings.src#RID_STR_FEATURE_NOT_EXECUTABLE.string.text
+msgid "This function cannot be executed, but is only for status queries."
+msgstr "Оваа функција не може да се изврши, туку е само за прашања за статус."
+
+#: strings.src#RID_STR_FEATURE_UNKNOWN.string.text
+msgid "Unknown function."
+msgstr "Непозната функција."
diff --git a/source/mk/formula/source/core/resource.po b/source/mk/formula/source/core/resource.po
new file mode 100644
index 00000000000..283c9dbeed9
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "AKO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHOSE.string.text
+msgid "CHOOSE"
+msgstr "IZBERI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AND.string.text
+msgid "AND"
+msgstr "I"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_OR.string.text
+msgid "OR"
+msgstr "ILI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NOT.string.text
+msgid "NOT"
+msgstr "NE"
+
+#: 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 "SLUCAEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRUE.string.text
+msgid "TRUE"
+msgstr "TOCNO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FALSE.string.text
+msgid "FALSE"
+msgstr "NETOCNO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_ACT_DATE.string.text
+msgid "TODAY"
+msgstr "DENES"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_ACT_TIME.string.text
+msgid "NOW"
+msgstr "SEGA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NO_VALUE.string.text
+msgid "NA"
+msgstr "ND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CURRENT.string.text
+msgid "CURRENT"
+msgstr "TEKOVNA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DEG.string.text
+msgid "DEGREES"
+msgstr "STEPENI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RAD.string.text
+msgid "RADIANS"
+msgstr "RADIJANI"
+
+#: 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 "KVKOREN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FACT.string.text
+msgid "FACT"
+msgstr "FAKTORIEL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_YEAR.string.text
+msgid "YEAR"
+msgstr "GODINA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_MONTH.string.text
+msgid "MONTH"
+msgstr "MESEC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DAY.string.text
+msgid "DAY"
+msgstr "DEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_HOUR.string.text
+msgid "HOUR"
+msgstr "CAS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_MIN.string.text
+msgid "MINUTE"
+msgstr "MINUTA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_SEC.string.text
+msgid "SECOND"
+msgstr "SEKUNDA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PLUS_MINUS.string.text
+msgid "SIGN"
+msgstr "ALGZNAK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ABS.string.text
+msgid "ABS"
+msgstr "APSOLUT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INT.string.text
+msgid "INT"
+msgstr "CELBROJ"
+
+#: 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 "EPRAZNO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_STRING.string.text
+msgid "ISTEXT"
+msgstr "ETEKST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_NON_STRING.string.text
+msgid "ISNONTEXT"
+msgstr "NEETEKST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_LOGICAL.string.text
+msgid "ISLOGICAL"
+msgstr "ELOGICKA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TYPE.string.text
+msgid "TYPE"
+msgstr "TIP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CELL.string.text
+msgid "CELL"
+msgstr "KELIJA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_REF.string.text
+msgid "ISREF"
+msgstr "EREF"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_VALUE.string.text
+msgid "ISNUMBER"
+msgstr "EBROJ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_FORMULA.string.text
+msgid "ISFORMULA"
+msgstr "EFORMULA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_NV.string.text
+msgid "ISNA"
+msgstr "E_ND"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ERR.string.text
+msgid "ISERR"
+msgstr "EGRES"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ERROR.string.text
+msgid "ISERROR"
+msgstr "EGRESKA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_EVEN.string.text
+msgid "ISEVEN"
+msgstr "EPARNO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IS_ODD.string.text
+msgid "ISODD"
+msgstr "ENEPARNO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_N.string.text
+msgid "N"
+msgstr "BR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DATE_VALUE.string.text
+msgid "DATEVALUE"
+msgstr "DATUMVRED"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_TIME_VALUE.string.text
+msgid "TIMEVALUE"
+msgstr "VREMEVRED"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CODE.string.text
+msgid "CODE"
+msgstr "KOD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRIM.string.text
+msgid "TRIM"
+msgstr "SKRATI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UPPER.string.text
+msgid "UPPER"
+msgstr "GOLEMI"
+
+#: 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 "MALI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LEN.string.text
+msgid "LEN"
+msgstr "DOLZ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T.string.text
+msgid "T"
+msgstr "Т"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VALUE.string.text
+msgid "VALUE"
+msgstr "VREDNOST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CLEAN.string.text
+msgid "CLEAN"
+msgstr "CISTI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHAR.string.text
+msgid "CHAR"
+msgstr "ZNAK"
+
+#: 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 "UNIKOD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_UNICHAR.string.text
+msgid "UNICHAR"
+msgstr "UNIKARAKT"
+
+#: 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 "PAREN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ODD.string.text
+msgid "ODD"
+msgstr "NEPAREN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STD_NORM_DIST.string.text
+msgid "NORMSDIST"
+msgstr "NORMNRASP"
+
+#: 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 "NORMNINV"
+
+#: 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 "TIPGRESKA"
+
+#: 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 "ARAPSKI"
+
+#: 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 "ZAOKRUZI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND_UP.string.text
+msgid "ROUNDUP"
+msgstr "ZAOKRUZISLED"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROUND_DOWN.string.text
+msgid "ROUNDDOWN"
+msgstr "ZAOKRUZIPRETH"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TRUNC.string.text
+msgid "TRUNC"
+msgstr "OTSECI"
+
+#: 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 "STEPEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GGT.string.text
+msgid "GCD"
+msgstr "NZD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KGV.string.text
+msgid "LCM"
+msgstr "NZS"
+
+#: 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 "SUMAPROIZV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_SQ.string.text
+msgid "SUMSQ"
+msgstr "SUMAKV"
+
+#: 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 "DATUM"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_TIME.string.text
+msgid "TIME"
+msgstr "VREME"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DIFF_DATE.string.text
+msgid "DAYS"
+msgstr "DENOVI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DIFF_DATE_360.string.text
+msgid "DAYS360"
+msgstr "DENOVI360"
+
+#: 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 "MAKS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAX_A.string.text
+msgid "MAXA"
+msgstr "MAKSA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM.string.text
+msgid "SUM"
+msgstr "SUMA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PRODUCT.string.text
+msgid "PRODUCT"
+msgstr "PROIZVOD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVERAGE.string.text
+msgid "AVERAGE"
+msgstr "PROSEK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVERAGE_A.string.text
+msgid "AVERAGEA"
+msgstr "PROSEKA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT.string.text
+msgid "COUNT"
+msgstr "PREBROJ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_2.string.text
+msgid "COUNTA"
+msgstr "PREBROJA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NBW.string.text
+msgid "NPV"
+msgstr "MNETVR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_IKV.string.text
+msgid "IRR"
+msgstr "SKS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MIRR.string.text
+msgid "MIRR"
+msgstr "IVSR"
+
+#: 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 "DISPERZ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_A.string.text
+msgid "VARA"
+msgstr "DISPERZA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_P.string.text
+msgid "VARP"
+msgstr "DISPERZP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VAR_P_A.string.text
+msgid "VARPA"
+msgstr "DISPERZPA"
+
+#: 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 "BINOMVER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NORM_DIST.string.text
+msgid "NORMDIST"
+msgstr "NORMRASP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXP_DIST.string.text
+msgid "EXPONDIST"
+msgstr "EXPONRASP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BINOM_DIST.string.text
+msgid "BINOMDIST"
+msgstr "BINOMRASP"
+
+#: 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 "KOMBIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KOMBIN_2.string.text
+msgid "COMBINA"
+msgstr "KOMBINPOVT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VARIATIONEN.string.text
+msgid "PERMUT"
+msgstr "VARIJAC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VARIATIONEN_2.string.text
+msgid "PERMUTATIONA"
+msgstr "VARIJACPOVT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BW.string.text
+msgid "PV"
+msgstr "TVRED"
+
+#: 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 "DVOPSALDO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GDA_2.string.text
+msgid "DB"
+msgstr "OPSALDO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_VBD.string.text
+msgid "VDB"
+msgstr "PROMOPSALDO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LAUFZ.string.text
+msgid "DURATION"
+msgstr "TRAENJE"
+
+#: 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 "KOLONI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROWS.string.text
+msgid "ROWS"
+msgstr "REDOVI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLES.string.text
+msgid "SHEETS"
+msgstr "LISTOVI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COLUMN.string.text
+msgid "COLUMN"
+msgstr "KOLONA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROW.string.text
+msgid "ROW"
+msgstr "RED"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TABLE.string.text
+msgid "SHEET"
+msgstr "LIST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZGZ.string.text
+msgid "RRI"
+msgstr "SVI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZW.string.text
+msgid "FV"
+msgstr "IDNAVRED"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZZR.string.text
+msgid "NPER"
+msgstr "BRPER"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZINS.string.text
+msgid "RATE"
+msgstr "STAPKA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ZINS_Z.string.text
+msgid "IPMT"
+msgstr "KAMISPL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KAPZ.string.text
+msgid "PPMT"
+msgstr "POVTISPL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KUM_ZINS_Z.string.text
+msgid "CUMIPMT"
+msgstr "KUMULKAMISPL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KUM_KAP_Z.string.text
+msgid "CUMPRINC"
+msgstr "KUMULKAPIT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EFFEKTIV.string.text
+msgid "EFFECTIVE"
+msgstr "EFEKTIVA"
+
+#: 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 "POTSUMI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_SUM.string.text
+msgid "DSUM"
+msgstr "BPSUMA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_COUNT.string.text
+msgid "DCOUNT"
+msgstr "BPPREBROJ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_COUNT_2.string.text
+msgid "DCOUNTA"
+msgstr "BPPREBROJA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_AVERAGE.string.text
+msgid "DAVERAGE"
+msgstr "BPPROSEK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_GET.string.text
+msgid "DGET"
+msgstr "BPZEMI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_MAX.string.text
+msgid "DMAX"
+msgstr "BPMAKS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_MIN.string.text
+msgid "DMIN"
+msgstr "BPMIN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_PRODUCT.string.text
+msgid "DPRODUCT"
+msgstr "BPPROIZVOD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_STD_DEV.string.text
+msgid "DSTDEV"
+msgstr "BPSTDEV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_STD_DEV_P.string.text
+msgid "DSTDEVP"
+msgstr "BPSTDEVP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_VAR.string.text
+msgid "DVAR"
+msgstr "BPVAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DB_VAR_P.string.text
+msgid "DVARP"
+msgstr "BPVARP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INDIRECT.string.text
+msgid "INDIRECT"
+msgstr "INDIREKT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ADDRESS.string.text
+msgid "ADDRESS"
+msgstr "ADRESA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MATCH.string.text
+msgid "MATCH"
+msgstr "SOVPAGJA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_EMPTY_CELLS.string.text
+msgid "COUNTBLANK"
+msgstr "PREBROJPRAZNI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COUNT_IF.string.text
+msgid "COUNTIF"
+msgstr "PREBROJAKO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUM_IF.string.text
+msgid "SUMIF"
+msgstr "SUMAAKO"
+
+#: 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 "RASTOJANIE"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INDEX.string.text
+msgid "INDEX"
+msgstr "INDEKS"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AREAS.string.text
+msgid "AREAS"
+msgstr "OPSEZI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CURRENCY.string.text
+msgid "DOLLAR"
+msgstr "DOLAR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_REPLACE.string.text
+msgid "REPLACE"
+msgstr "ZAMENI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FIXED.string.text
+msgid "FIXED"
+msgstr "FIKSNO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FIND.string.text
+msgid "FIND"
+msgstr "NAJDI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EXACT.string.text
+msgid "EXACT"
+msgstr "IDENTICNI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LEFT.string.text
+msgid "LEFT"
+msgstr "LEVO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_RIGHT.string.text
+msgid "RIGHT"
+msgstr "DESNO"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SEARCH.string.text
+msgid "SEARCH"
+msgstr "BARAJ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MID.string.text
+msgid "MID"
+msgstr "SREDINA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_TEXT.string.text
+msgid "TEXT"
+msgstr "TEKST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SUBSTITUTE.string.text
+msgid "SUBSTITUTE"
+msgstr "ZAMENI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_REPT.string.text
+msgid "REPT"
+msgstr "POVTORI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONCAT.string.text
+msgid "CONCATENATE"
+msgstr "KONKATENIRAJ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_VALUE.string.text
+msgid "MVALUE"
+msgstr "MVREDNOST"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_DET.string.text
+msgid "MDETERM"
+msgstr "MDETERMINANTA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_INV.string.text
+msgid "MINVERSE"
+msgstr "MINVERZNA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_MULT.string.text
+msgid "MMULT"
+msgstr "MPROIZVOD"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MAT_TRANS.string.text
+msgid "TRANSPOSE"
+msgstr "TRANSPONIRAJ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MATRIX_UNIT.string.text
+msgid "MUNIT"
+msgstr "MEDINECNA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BACK_SOLVER.string.text
+msgid "GOALSEEK"
+msgstr "BARANJECEL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HYP_GEOM_DIST.string.text
+msgid "HYPGEOMDIST"
+msgstr "HIPGEOMRASP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LOG_NORM_DIST.string.text
+msgid "LOGNORMDIST"
+msgstr "LOGNORMRASP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_T_DIST.string.text
+msgid "TDIST"
+msgstr "TRASP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_F_DIST.string.text
+msgid "FDIST"
+msgstr "FRASP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CHI_DIST.string.text
+msgid "CHIDIST"
+msgstr "CHIRASP"
+
+#: 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 "NEGBINOMRASP"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_KRIT_BINOM.string.text
+msgid "CRITBINOM"
+msgstr "KRITBINOM"
+
+#: 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 "HARMSRED"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GEO_MEAN.string.text
+msgid "GEOMEAN"
+msgstr "GEOSRED"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STANDARD.string.text
+msgid "STANDARDIZE"
+msgstr "NORMIRAJ"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_AVE_DEV.string.text
+msgid "AVEDEV"
+msgstr "APDEV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SCHIEFE.string.text
+msgid "SKEW"
+msgstr "NAKLON"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DEV_SQ.string.text
+msgid "DEVSQ"
+msgstr "KVDEV"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MEDIAN.string.text
+msgid "MEDIAN"
+msgstr "MEDIJANA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_MODAL_VALUE.string.text
+msgid "MODE"
+msgstr "MODA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_Z_TEST.string.text
+msgid "ZTEST"
+msgstr "NORMTEST"
+
+#: 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 "REDBR"
+
+#: 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 "PROCRANG"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_LARGE.string.text
+msgid "LARGE"
+msgstr "NAJGOLEMK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SMALL.string.text
+msgid "SMALL"
+msgstr "NAJMALK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_FREQUENCY.string.text
+msgid "FREQUENCY"
+msgstr "CESTOTA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_QUARTILE.string.text
+msgid "QUARTILE"
+msgstr "KVARTIL"
+
+#: 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 "INTERDOVERBA"
+
+#: 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 "SKRPROSEK"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_PROB.string.text
+msgid "PROB"
+msgstr "VEROJAT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CORREL.string.text
+msgid "CORREL"
+msgstr "KORELACIJA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_COVAR.string.text
+msgid "COVAR"
+msgstr "KOVARIJANSA"
+
+#: 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 "KVKOREL"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STEYX.string.text
+msgid "STEYX"
+msgstr "STGLINR"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_SLOPE.string.text
+msgid "SLOPE"
+msgstr "KOEFPRAVEC"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INTERCEPT.string.text
+msgid "INTERCEPT"
+msgstr "PRESEK"
+
+#: 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 "PRIRAST"
+
+#: 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 "PREDVIDI"
+
+#: 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 "GAMMARASP"
+
+#: 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 "LOGNORMINV"
+
+#: 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 "BETARASP"
+
+#: 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 "BRSEDMICA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EASTERSUNDAY.string.text
+msgid "EASTERSUNDAY"
+msgstr "VELIGDEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_DAY_OF_WEEK.string.text
+msgid "WEEKDAY"
+msgstr "DENSEDMICA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NO_NAME.string.text
+msgid "#NAME!"
+msgstr "#ИМЕ!"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_STYLE.string.text
+msgid "STYLE"
+msgstr "STIL"
+
+#: 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 "OSNOVA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_DECIMAL.string.text
+msgid "DECIMAL"
+msgstr "DECIMALEN"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_CONVERT.string.text
+msgid "CONVERT"
+msgstr "KONVERT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_ROMAN.string.text
+msgid "ROMAN"
+msgstr "RIMSKI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_HYPERLINK.string.text
+msgid "HYPERLINK"
+msgstr "HIPERVRSKA"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_INFO.string.text
+msgid "INFO"
+msgstr "ИНФО"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_BAHTTEXT.string.text
+msgid "BAHTTEXT"
+msgstr "TEKSTBAHTI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_GET_PIVOT_DATA.string.text
+msgid "GETPIVOTDATA"
+msgstr "ZEMIOSNOVNIPODATOCI"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_EUROCONVERT.string.text
+msgid "EUROCONVERT"
+msgstr "EVROKONVERT"
+
+#: core_resource.src#RID_STRLIST_FUNCTION_NAMES.SC_OPCODE_NUMBERVALUE.string.text
+msgid "NUMBERVALUE"
+msgstr "BROJVREDNOST"
+
+#: 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 "#NULA!"
+
+#: 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 "#VREDNOST!"
+
+#: 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 "#IME?"
+
+#: 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 "#НД"
diff --git a/source/mk/formula/source/ui/dlg.po b/source/mk/formula/source/ui/dlg.po
new file mode 100644
index 00000000000..bef6d731f98
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Избери"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.FT_EDITDESC.fixedtext.text
+msgid "Function not known"
+msgstr "Функцијата не е позната"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.STR_OPTIONAL.string.text
+msgid "(optional)"
+msgstr "(изборно)"
+
+#: parawin.src#RID_FORMULATAB_PARAMETER.STR_REQUIRED.string.text
+msgid "(required)"
+msgstr "(задолжително)"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.LB_CATEGORY.1.stringlist.text
+msgid "Last Used"
+msgstr "Последни користени"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.LB_CATEGORY.2.stringlist.text
+msgid "All"
+msgstr "Сите"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.FT_CATEGORY.fixedtext.text
+msgid "~Category"
+msgstr "~Категорија"
+
+#: formdlgs.src#RID_FORMULATAB_FUNCTION.FT_FUNCTION.fixedtext.text
+msgid "~Function"
+msgstr "~Функција"
+
+#: formdlgs.src#RID_FORMULATAB_STRUCT.FT_STRUCT.fixedtext.text
+msgid "~Structure"
+msgstr "~Структура"
+
+#: 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 "Грешка"
+
+#: 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 "Функции"
+
+#: 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 "Структура"
+
+#: 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 "Фор~мула"
+
+#: 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 "Резултат на функцијата"
+
+#: 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 "Резултат"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_MATRIX.checkbox.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_MATRIX.checkbox.text"
+msgid "Array"
+msgstr "Низа"
+
+#: 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 "Рашири"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_BACKWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_BACKWARD.pushbutton.text"
+msgid "<< ~Back"
+msgstr "<< ~Назад"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_FORWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.BTN_FORWARD.pushbutton.text"
+msgid "~Next >>"
+msgstr "~Следно >>"
+
+#: 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 "Волшебник за функции"
+
+#: 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 "Волшебник за функции -"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_END.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA_MODAL.STR_END.string.text"
+msgid "~End"
+msgstr "~Крај"
+
+#: 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 "Функции"
+
+#: 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 "Структура"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA.fixedtext.text"
+msgid "For~mula"
+msgstr "Фор~мула"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_RESULT.fixedtext.text"
+msgid "Function result"
+msgstr "Резултат на функцијата"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA_RESULT.fixedtext.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.FT_FORMULA_RESULT.fixedtext.text"
+msgid "Result"
+msgstr "Резултат"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_MATRIX.checkbox.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_MATRIX.checkbox.text"
+msgid "Array"
+msgstr "Низа"
+
+#: 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 "Рашири"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_BACKWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_BACKWARD.pushbutton.text"
+msgid "<< ~Back"
+msgstr "<< ~Назад"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.BTN_FORWARD.pushbutton.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.BTN_FORWARD.pushbutton.text"
+msgid "~Next >>"
+msgstr "~Следно >>"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE1.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE1.string.text"
+msgid "Function Wizard"
+msgstr "Волшебник за функции"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE2.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_TITLE2.string.text"
+msgid "Function Wizard -"
+msgstr "Волшебник за функции -"
+
+#: formdlgs.src#RID_FORMULADLG_FORMULA.STR_END.string.text
+msgctxt "formdlgs.src#RID_FORMULADLG_FORMULA.STR_END.string.text"
+msgid "~End"
+msgstr "~Крај"
diff --git a/source/mk/fpicker/source/office.po b/source/mk/fpicker/source/office.po
new file mode 100644
index 00000000000..a2929859d49
--- /dev/null
+++ b/source/mk/fpicker/source/office.po
@@ -0,0 +1,311 @@
+#. 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 14:53+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Креирај нова папка"
+
+#: 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 "Едно ниво нагоре"
+
+#: 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 "~Име на датотека:"
+
+#: 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 "~Тип на датотека:"
+
+#: 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 "~Само за читање"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_EXPLORERFILE_PASSWORD.checkbox.text
+msgid "Save with password"
+msgstr "Зачувај со лозинка"
+
+#: 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 "~Автоматска наставка на име на датотека"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.CB_OPTIONS.checkbox.text
+msgid "Edit ~filter settings"
+msgstr "Уреди ~поставувања на филтер"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.BTN_EXPLORERFILE_OPEN.pushbutton.text
+msgid "~Open"
+msgstr "~Отвори"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_OPEN.string.text
+msgid "Open"
+msgstr "Отворање"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_SAVE.string.text
+msgid "Save as"
+msgstr "Зачувување како"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_EXPLORERFILE_BUTTONSAVE.string.text
+msgid "~Save"
+msgstr "~Зачувај"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PATHNAME.string.text
+msgid "~Path:"
+msgstr "~Патека:"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PATHSELECT.string.text
+msgid "Select path"
+msgstr "Избирање патека"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_BUTTONSELECT.string.text
+msgid "~Select"
+msgstr "~Избери"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_ACTUALVERSION.string.text
+msgid "Current version"
+msgstr "Тековна верзија"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_PREVIEW.string.text
+#, fuzzy
+msgid "File Preview"
+msgstr "Оневозможи преглед"
+
+#: iodlg.src#DLG_FPICKER_EXPLORERFILE.STR_DEFAULT_DIRECTORY.string.text
+msgid "Default Directory"
+msgstr "Стандардна папка"
+
+#: 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 "~Име"
+
+#: iodlg.src#DLG_FPICKER_QUERYFOLDERNAME.FL_SVT_QUERYFOLDERNAME_DLG_NAME.fixedline.text
+msgid "Create new folder"
+msgstr "Креирање нова папка"
+
+#: iodlg.src#RID_FILEOPEN_INVALIDFOLDER.string.text
+msgid "$name$ does not exist."
+msgstr "$name$ не постои."
+
+#: 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 ""
+"Датотеката $name$ не постои.\n"
+"Осигурете се дека сте го внесле точното име на датотеката."
+
+#: iodlg.src#STR_FILTERNAME_ALL.string.text
+msgid "All files"
+msgstr ""
+
+#: iodlg.src#STR_SVT_ALREADYEXISTOVERWRITE.string.text
+#, fuzzy
+msgid ""
+"A file named \"$filename$\" already exists.\n"
+"\n"
+"Do you want to replace it?"
+msgstr ""
+"Дизајн со ова име веќе постои.\n"
+"Дали сакате да го замените?"
+
+#: iodlg.src#STR_SVT_NEW_FOLDER.string.text
+msgid "Folder"
+msgstr "Папка"
+
+#: 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 ""
+"Не е детектиран уред со менливи медиуми.\n"
+"Осигурете се дека е правилно вклучен и обидете се повторно."
+
+#: iodlg.src#STR_SVT_ALLFORMATS.string.text
+msgid "All Formats"
+msgstr ""
+
+#: PlaceEditDialog.src#DLG_FPICKER_PLACE_EDIT.FT_ADDPLACE_SERVERNAME.fixedtext.text
+#, fuzzy
+msgid "Name"
+msgstr "~Име"
+
+#: 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 "~Автоматска наставка на името на датотеката"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_PASSWORD.string.text
+msgid "Save with pass~word"
+msgstr "Зачувај со ~лозинка"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_OPTIONS.string.text
+msgid "~Edit filter settings"
+msgstr "~Уреди ги поставките за филтер"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_READONLY.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_READONLY.string.text"
+msgid "~Read-only"
+msgstr "~Само за читање"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_INSERT_AS_LINK.string.text
+msgid "~Link"
+msgstr "~Врска"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_SHOW_PREVIEW.string.text
+msgid "Pr~eview"
+msgstr "~Преглед"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_PLAY.string.text
+msgid "~Play"
+msgstr "П~ушти"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_VERSION.string.text
+msgid "~Version:"
+msgstr "~Верзија:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_TEMPLATES.string.text
+msgid "S~tyles:"
+msgstr "~Стилови:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_IMAGE_TEMPLATE.string.text
+msgid "Style:"
+msgstr "Стил:"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_SELECTION.string.text
+msgid "~Selection"
+msgstr "~Избор"
+
+#: OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_TITLE.string.text
+msgctxt "OfficeFilePicker.src#STR_SVT_FILEPICKER_FILTER_TITLE.string.text"
+msgid "File ~type:"
+msgstr "~Тип на датотека:"
+
+#: OfficeFilePicker.src#STR_SVT_FOLDERPICKER_DEFAULT_TITLE.string.text
+msgid "Select Path"
+msgstr "Избирање патека"
+
+#: OfficeFilePicker.src#STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION.string.text
+msgid "Please select a folder."
+msgstr "Изберете папка."
diff --git a/source/mk/framework/source/classes.po b/source/mk/framework/source/classes.po
new file mode 100644
index 00000000000..c06032ef827
--- /dev/null
+++ b/source/mk/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-06 00:18+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Додатоци"
+
+#: resource.src#STR_MENU_ADDONHELP.string.text
+msgid "Add-~On Help"
+msgstr "Помош за д~одатоци"
+
+#: resource.src#STR_MENU_HEADFOOTALL.string.text
+msgid "All"
+msgstr "Сите"
+
+#: resource.src#STR_UPDATEDOC.string.text
+msgid "~Update"
+msgstr "~Ажурирај"
+
+#: resource.src#STR_CLOSEDOC_ANDRETURN.string.text
+msgid "~Close & Return to "
+msgstr "~Затвори и врати се на "
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_VISIBLEBUTTON.menuitem.text
+msgid "Visible ~Buttons"
+msgstr "Видливи ~копчиња"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR.menuitem.text
+msgid "~Customize Toolbar..."
+msgstr "~Прилагоди алатник..."
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_DOCKTOOLBAR.menuitem.text
+msgid "~Dock Toolbar"
+msgstr "~Вкотви алатник"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_DOCKALLTOOLBAR.menuitem.text
+msgid "Dock ~All Toolbars"
+msgstr "Вкотви ги ~сите алатници"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_LOCKTOOLBARPOSITION.menuitem.text
+msgid "~Lock Toolbar Position"
+msgstr "~Заклучи позиција на алатник"
+
+#: resource.src#POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION.MENUITEM_TOOLBAR_CLOSE.menuitem.text
+msgid "Close ~Toolbar"
+msgstr "Затвори ала~тник"
+
+#: resource.src#STR_SAVECOPYDOC.string.text
+msgid "Save Copy ~as..."
+msgstr "Зачувај копија ~како..."
+
+#: resource.src#STR_NODOCUMENT.string.text
+msgid "No Documents"
+msgstr "Нема документи"
+
+#: resource.src#STR_TOOLBAR_TITLE_ADDON.string.text
+msgid "Add-On %num%"
+msgstr "Додаток %num%"
+
+#: resource.src#STR_STATUSBAR_LOGOTEXT.string.text
+msgid "A %PRODUCTNAME product by %OOOVENDOR"
+msgstr ""
+
+#: resource.src#DLG_LICENSE.FT_INFO1.fixedtext.text
+msgid "Please follow these steps to proceed with the installation:"
+msgstr "Следете ги овие чекори за да продолжите со инсталацијата:"
+
+#: 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 "Прегледајте го целиот договор за лиценца. Користете ја лентата за движење или копчето „%PAGEDOWN“ во овој дијалог за да го видите целиот текст на лиценцата. "
+
+#: resource.src#DLG_LICENSE.PB_PAGEDOWN.pushbutton.text
+msgid "Scroll Down"
+msgstr "Оди надолу"
+
+#: 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 "Прифатете го договорот за лиценца."
+
+#: resource.src#DLG_LICENSE.LICENSE_ACCEPT.string.text
+msgid "~Accept"
+msgstr "~Прифати"
+
+#: resource.src#DLG_LICENSE.LICENSE_NOTACCEPT.string.text
+msgid "Decline"
+msgstr "Одбиј"
+
+#: resource.src#DLG_LICENSE.modaldialog.text
+msgid "License Agreement"
+msgstr "Договор за лиценца"
+
+#: resource.src#STR_FULL_DISC_RETRY_BUTTON.string.text
+msgid "Retry"
+msgstr "Обиди се повторно"
+
+#: 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 не можеше да зачува важни внатрешни информации поради недоволно слободен простор на дискот, на следнава локација:\n"
+"%PATH\n"
+"\n"
+"Нема да може да ја продолжите работата со %PRODUCTNAME ако не обезбедите повеќе слободен простор на таа локација.\n"
+"\n"
+"Притиснете го копчето „Обиди се повторно“ откако сте ослободиле простор за да се обидете повторно да ги зачувате податоците.\n"
+"\n"
+
+#: resource.src#STR_RESTORE_TOOLBARS.string.text
+msgid "~Reset"
+msgstr "~Ресетирај"
+
+#: 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 ""
+"Се случи грешка при вчитувањето на конфигурациските податоци за корисничкиот интерфејс. Апликацијата сега ќе се прекине.\n"
+"Ве молиме пробајте да ја преинсталирате апликацијата."
+
+#: 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 ""
+"Се случи грешка при вчитувањето на конфигурациските податоци за корисничкиот интерфејс. Апликацијата сега ќе се прекине.\n"
+"Ве молиме пробајте да го отстраните вашиот кориснички профил за апликацијата."
+
+#: 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 ""
+"Се случи грешка при вчитувањето на конфигурациските податоци за корисничкиот интерфејс. Апликацијата сега ќе се прекине.\n"
+"Ве молиме прво пробајте да го отстраните вашиот кориснички профил за апликацијата или пробајте да ја преинсталирате апликацијата."
+
+#: resource.src#STR_UNTITLED_DOCUMENT.string.text
+msgid "Untitled"
+msgstr "Неименувано"
+
+#: resource.src#STR_LANGSTATUS_MULTIPLE_LANGUAGES.string.text
+msgid "Multiple Languages"
+msgstr "Повеќе јазици"
+
+#: resource.src#STR_LANGSTATUS_NONE.string.text
+msgid "None (Do not check spelling)"
+msgstr "Ниеден (Не проверувај за правописни грешки)"
+
+#: resource.src#STR_RESET_TO_DEFAULT_LANGUAGE.string.text
+msgid "Reset to Default Language"
+msgstr ""
+
+#: resource.src#STR_LANGSTATUS_MORE.string.text
+msgid "More..."
+msgstr "Повеќе..."
+
+#: resource.src#STR_SET_LANGUAGE_FOR_SELECTION.string.text
+msgid "Set Language for Selection"
+msgstr "Постави јазик за изборот"
+
+#: resource.src#STR_SET_LANGUAGE_FOR_PARAGRAPH.string.text
+msgid "Set Language for Paragraph"
+msgstr "Постави јазик за пасусот"
+
+#: resource.src#STR_SET_LANGUAGE_FOR_ALL_TEXT.string.text
+msgid "Set Language for all Text"
+msgstr "Постави јазик за целиот текст"
diff --git a/source/mk/framework/source/services.po b/source/mk/framework/source/services.po
new file mode 100644
index 00000000000..35e1baf332e
--- /dev/null
+++ b/source/mk/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-06 00:19+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Создава нов документ"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_TEMPLATE.string.text
+msgid "~Templates..."
+msgstr "~Обрасци..."
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_FILE.string.text
+msgid "~Open..."
+msgstr "~Отвора документ..."
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_EXTHELP.string.text
+msgid "Add new features to %PRODUCTNAME"
+msgstr "Додади нови карактеристики во %PRODUCTNAME"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_INFOHELP.string.text
+msgid "Get more information about %PRODUCTNAME"
+msgstr "Повеќе информации за %PRODUCTNAME"
+
+#: fwk_services.src#DLG_BACKING.STR_BACKING_TPLREP.string.text
+msgid "Get more templates for %PRODUCTNAME"
+msgstr "Земете уште обрасци за %PRODUCTNAME"
diff --git a/source/mk/helpcontent2/source/text/sbasic/guide.po b/source/mk/helpcontent2/source/text/sbasic/guide.po
new file mode 100644
index 00000000000..21ebe4fbfa1
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/sbasic/guide.po
@@ -0,0 +1,615 @@
+#. 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-12 22:37+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: translation.xhp#tit.help.text
+#, fuzzy
+msgid "Translation of Controls in the Dialog Editor"
+msgstr "Creating 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: translation.xhp#par_id5806756.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add UI languages for your dialog strings.</ahelp>"
+msgstr ""
+
+#: translation.xhp#hd_id6596881.help.text
+msgid "To enable localizable dialogs"
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id2224494.help.text
+msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: translation.xhp#par_id6529740.help.text
+msgid "Click Add in the dialog to add a language entry. "
+msgstr ""
+
+#: translation.xhp#par_id7811822.help.text
+msgid "This step enables all new dialogs to contain localizable string resources."
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id3640247.help.text
+msgid "You can also change the default language in the Manage User Interface Language dialog."
+msgstr ""
+
+#: translation.xhp#par_id3808404.help.text
+msgid "Select a language. "
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id2394482.help.text
+msgid "Close the dialog or add additional languages."
+msgstr ""
+
+#: translation.xhp#hd_id631733.help.text
+msgid "To edit localizable controls in your dialog"
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id8956572.help.text
+msgid "Switch the Current Language listbox to display the default language."
+msgstr ""
+
+#: translation.xhp#par_id500808.help.text
+msgid "Insert any number of controls to your dialog and enter all strings you want."
+msgstr ""
+
+#: translation.xhp#par_id8366649.help.text
+msgid "Select another language in the Current Language listbox."
+msgstr ""
+
+#: translation.xhp#par_id476393.help.text
+msgid "Using the control's property dialogs, edit all strings to the other language."
+msgstr ""
+
+#: translation.xhp#par_id2655720.help.text
+msgid "Repeat for all languages that you added."
+msgstr ""
+
+#: 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 ""
+
+#: translation.xhp#par_id5977965.help.text
+msgid "If no language matches the user's version, the user will see the default language strings. "
+msgstr ""
+
+#: 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 ""
+
+#: sample_code.xhp#tit.help.text
+msgid "Programming Examples for Controls in the Dialog Editor"
+msgstr "Programming Examples for Controls in the Dialog 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>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>"
+
+#: 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=\"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\"."
+
+#: 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 Dialogs"
+
+#: 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 Dialog"
+
+#: 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 dialog 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 dialog"
+
+#: 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 Dialog 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>modules and dialogs; 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>"
+
+#: 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 Dialog With Program Code\">Opening a Dialog 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 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."
+
+#: 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 dialog 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 dialog, click the close button (x) on its title bar."
+
+#: create_dialog.xhp#tit.help.text
+msgid "Creating a Basic Dialog"
+msgstr "Creating a Basic Dialog"
+
+#: create_dialog.xhp#bm_id3149346.help.text
+msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
+msgstr "<bookmark_value>Basic;dialog creation</bookmark_value><bookmark_value>dialogs;creating Basic dialogs</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 Dialog\">Creating a Basic Dialog</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 dialog, and click OK. To rename the dialog 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 dialog editor opens and contains a blank dialog."
+
+#: 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 dialog 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 Dialog 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 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>"
+
+#: 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 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."
+
+#: 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 Dialog 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 dialog editor</bookmark_value><bookmark_value>dialog 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 dialog editor to add controls to your dialog."
+
+#: 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 dialog, drag the button to the size you want."
diff --git a/source/mk/helpcontent2/source/text/sbasic/shared.po b/source/mk/helpcontent2/source/text/sbasic/shared.po
new file mode 100644
index 00000000000..ceb0b5d9f47
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/sbasic/shared.po
@@ -0,0 +1,24944 @@
+#. 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 22:37+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Синтакса"
+
+#: 03120103.xhp#par_id3149497.4.help.text
+msgid "Str (Expression)"
+msgstr "Str (израз)"
+
+#: 03120103.xhp#hd_id3150040.5.help.text
+msgctxt "03120103.xhp#hd_id3150040.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03120103.xhp#par_id3146117.6.help.text
+msgctxt "03120103.xhp#par_id3146117.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120103.xhp#hd_id3155805.7.help.text
+msgctxt "03120103.xhp#hd_id3155805.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметар:"
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 = нула"
+
+#: 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 function</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 ""
+
+#: 03020401.xhp#hd_id3154347.3.help.text
+msgctxt "03020401.xhp#hd_id3154347.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03100400.xhp#par_id3156152.4.help.text
+msgid "CDbl (Expression)"
+msgstr "CDbl (Израз)"
+
+#: 03100400.xhp#hd_id3153061.5.help.text
+msgctxt "03100400.xhp#hd_id3153061.5.help.text"
+msgid "Return value"
+msgstr "Врати вредност"
+
+#: 03100400.xhp#par_id3145068.6.help.text
+msgctxt "03100400.xhp#par_id3145068.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03100400.xhp#hd_id3154760.7.help.text
+msgctxt "03100400.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03100300.xhp#par_id3159414.6.help.text
+msgctxt "03100300.xhp#par_id3159414.6.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 03100300.xhp#hd_id3153525.7.help.text
+msgctxt "03100300.xhp#hd_id3153525.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 како објект"
+
+#: 03103900.xhp#par_id3148664.7.help.text
+msgctxt "03103900.xhp#par_id3148664.7.help.text"
+msgid "Dim ObjProp as Object"
+msgstr "Dim ObjProp како објект"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 како објект"
+
+#: 03103800.xhp#par_id3154760.7.help.text
+msgctxt "03103800.xhp#par_id3154760.7.help.text"
+msgid "Dim ObjProp as Object"
+msgstr "Dim ObjProp како објект"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Синтакса"
+
+#: 03050300.xhp#par_id3154366.4.help.text
+msgid "Error (Expression)"
+msgstr "Грешка (израз)"
+
+#: 03050300.xhp#hd_id3145173.5.help.text
+msgctxt "03050300.xhp#hd_id3145173.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03050300.xhp#par_id3154125.6.help.text
+msgctxt "03050300.xhp#par_id3154125.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03050300.xhp#hd_id3150869.7.help.text
+msgctxt "03050300.xhp#hd_id3150869.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 ""
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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> тип променлива"
+
+#: 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> датум променлива"
+
+#: 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 нумериран од -15 to 5"
+
+#: 03102100.xhp#par_id3150829.33.help.text
+msgid "Two-dimensional data field"
+msgstr "Дво димензионално податочно поле"
+
+#: 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 "Пример"
+
+#: 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 Дво димензионално податочно поле"
+
+#: 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 "За i = 0 до 20"
+
+#: 03102100.xhp#par_id3166428.49.help.text
+msgctxt "03102100.xhp#par_id3166428.49.help.text"
+msgid "for ii = 0 to 2"
+msgstr "За ii = 0 до 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 "Следно ii"
+
+#: 03102100.xhp#par_id3154370.52.help.text
+msgctxt "03102100.xhp#par_id3154370.52.help.text"
+msgid "next i"
+msgstr "Следно i"
+
+#: 03102100.xhp#par_id3156166.54.help.text
+msgctxt "03102100.xhp#par_id3156166.54.help.text"
+msgid "for i = 0 to 20"
+msgstr "За i = 0 до 20"
+
+#: 03102100.xhp#par_id3148815.55.help.text
+msgctxt "03102100.xhp#par_id3148815.55.help.text"
+msgid "for ii = 0 to 2"
+msgstr "За ii = 0 до 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 "Следно ii"
+
+#: 03102100.xhp#par_id3154528.58.help.text
+msgctxt "03102100.xhp#par_id3154528.58.help.text"
+msgid "next i"
+msgstr "Следно 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 dialog 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03010102.xhp#par_id3146985.6.help.text
+msgctxt "03010102.xhp#par_id3146985.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03010102.xhp#hd_id3153363.7.help.text
+msgctxt "03010102.xhp#hd_id3153363.7.help.text"
+msgid "Parameter:"
+msgstr "Параметар:"
+
+#: 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 dialog 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 dialog. 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 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):"
+
+#: 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 : Го прикажува само копчето во ред."
+
+#: 03010102.xhp#par_id3145646.13.help.text
+msgctxt "03010102.xhp#par_id3145646.13.help.text"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Ги прикажува само копчињата откажи."
+
+#: 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 : Ги прикажува само копчињата да,не."
+
+#: 03010102.xhp#par_id3155601.17.help.text
+msgctxt "03010102.xhp#par_id3155601.17.help.text"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Ги прикажува само копчињата Обиди се повторно и откажи."
+
+#: 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 : Додади ја стоп иконата во дијалогот."
+
+#: 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 : Додади ја Question иконата во дијалогот."
+
+#: 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 dialog."
+
+#: 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 : Додади ја иконата за информација во дијалогот."
+
+#: 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 dialog 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 dialog 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 dialog 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 : Во ред"
+
+#: 03010102.xhp#par_id3149567.27.help.text
+msgid "2 : Cancel"
+msgstr "2 : Откажи"
+
+#: 03010102.xhp#par_id4056825.help.text
+msgid "3 : Abort"
+msgstr "3 : Abort"
+
+#: 03010102.xhp#par_id3155335.28.help.text
+msgid "4 : Retry"
+msgstr "4 : Обиди се повторно"
+
+#: 03010102.xhp#par_id3146918.29.help.text
+msgid "5 : Ignore"
+msgstr "5 : Игнорирај"
+
+#: 03010102.xhp#par_id3155961.30.help.text
+msgid "6 : Yes"
+msgstr "6 : Да"
+
+#: 03010102.xhp#par_id3148488.31.help.text
+msgid "7 : No"
+msgstr "7 : Не"
+
+#: 03010102.xhp#hd_id3150090.40.help.text
+msgctxt "03010102.xhp#hd_id3150090.40.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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,\"Dialog 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 "Прикажи функција"
+
+#: 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 "Сина функција [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 color code."
+
+#: 03010301.xhp#hd_id3149670.3.help.text
+msgctxt "03010301.xhp#hd_id3149670.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03010301.xhp#par_id3154365.6.help.text
+msgctxt "03010301.xhp#par_id3154365.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03010301.xhp#hd_id3156423.7.help.text
+msgctxt "03010301.xhp#hd_id3156423.7.help.text"
+msgid "Parameter:"
+msgstr "Параметар:"
+
+#: 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\">color 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 "Пример"
+
+#: 03010301.xhp#par_id3153143.10.help.text
+msgctxt "03010301.xhp#par_id3153143.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub ExampleColor"
+
+#: 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 color \" & 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= \" & зелена(lVar) & Chr(13)&_"
+
+#: 03010301.xhp#par_id3147319.16.help.text
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue= \" & сина(lVar) & Chr(13) , 64,\"colors\""
+
+#: 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</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 "Низа од функции [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 "Синтакса"
+
+#: 03104200.xhp#par_id3153126.4.help.text
+msgid "Array ( Argument list)"
+msgstr "Низа ( листа на аргументи)"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Избери функција [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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметар:"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03020304.xhp#par_id3159156.9.help.text
+msgctxt "03020304.xhp#par_id3159156.9.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03020304.xhp#hd_id3149665.10.help.text
+msgctxt "03020304.xhp#hd_id3149665.10.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120312.xhp#par_id3147530.6.help.text
+msgctxt "03120312.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120312.xhp#hd_id3148550.7.help.text
+msgctxt "03120312.xhp#hd_id3148550.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 End If"
+
+#: 03090101.xhp#hd_id3155419.5.help.text
+msgctxt "03090101.xhp#hd_id3155419.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 = Датум$"
+
+#: 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 "Крај ако"
+
+#: 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 "Низа"
+
+#: 03120310.xhp#hd_id3149457.8.help.text
+msgctxt "03120310.xhp#hd_id3149457.8.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Додели вредност на променлива."
+
+#: 03103100.xhp#hd_id3153127.3.help.text
+msgctxt "03103100.xhp#hd_id3153127.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Крај"
+
+#: 03020412.xhp#par_id3153727.14.help.text
+msgid "Error:"
+msgstr "Грешка"
+
+#: 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 "Крај акоf"
+
+#: 03020412.xhp#par_id3154011.18.help.text
+msgctxt "03020412.xhp#par_id3154011.18.help.text"
+msgid "end"
+msgstr "Крај"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030205.xhp#par_id3154908.7.help.text
+msgctxt "03030205.xhp#par_id3154908.7.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 03030205.xhp#hd_id3154124.8.help.text
+msgctxt "03030205.xhp#hd_id3154124.8.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Затварање наредба [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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Крај акоf"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Функции на боја"
+
+#: 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\">Color 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 colors."
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Тригонометриски функции"
+
+#: 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 "Контрола и дијалог својства"
+
+#: 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 dialogs</bookmark_value><bookmark_value>dialogs; 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 dialog 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 "Внесување на податоци во дијалогот за својства"
+
+#: 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> dialog:"
+
+#: 01170100.xhp#par_id3150010.18.help.text
+msgid "Keys"
+msgstr "Клучеви"
+
+#: 01170100.xhp#par_id3147317.19.help.text
+msgid "Effects"
+msgstr "Ефекти"
+
+#: 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 "Отварање на комбинирана листа"
+
+#: 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 "Затварање на комбинирана листа"
+
+#: 01170100.xhp#par_id3154511.8.help.text
+msgid "Shift+Enter"
+msgstr "Помести+внеси"
+
+#: 01170100.xhp#par_id3146971.9.help.text
+msgid "Inserts a line break in multiline fields."
+msgstr "Внесува прекин на линија во повеќелиниски полиња."
+
+#: 01170100.xhp#par_id3146914.10.help.text
+msgid "(UpArrow)"
+msgstr "(Стрелка нагоре)"
+
+#: 01170100.xhp#par_id3153714.11.help.text
+msgid "Goes to the previous line."
+msgstr "Оди на претходната линија."
+
+#: 01170100.xhp#par_id3159266.12.help.text
+msgid "(DownArrow)"
+msgstr "(стрелка надоле)"
+
+#: 01170100.xhp#par_id3146314.13.help.text
+msgid "Goes to the next line."
+msgstr "Оди на следната линија."
+
+#: 01170100.xhp#par_id3149255.14.help.text
+msgid "Enter"
+msgstr "Внеси"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 03090406.xhp#par_id3156344.6.help.text
+msgctxt "03090406.xhp#par_id3156344.6.help.text"
+msgid "Syntax"
+msgstr "Синтакса"
+
+#: 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 "[Излезна функција]"
+
+#: 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 "Крај на функциј"
+
+#: 03090406.xhp#par_id3156281.12.help.text
+msgctxt "03090406.xhp#par_id3156281.12.help.text"
+msgid "Parameter"
+msgstr "Параметар"
+
+#: 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 "Пример"
+
+#: 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 "Крај акоf"
+
+#: 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 "Крај на функцијата"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03131300.xhp#par_id3150503.6.help.text
+msgctxt "03131300.xhp#par_id3150503.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03131300.xhp#hd_id3159176.7.help.text
+msgctxt "03131300.xhp#hd_id3159176.7.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 03020104.xhp#par_id3156281.4.help.text
+msgctxt "03020104.xhp#par_id3156281.4.help.text"
+msgid "Reset"
+msgstr "Ресетирај"
+
+#: 03020104.xhp#hd_id3161831.5.help.text
+msgctxt "03020104.xhp#hd_id3161831.5.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Крај акоf"
+
+#: 03020104.xhp#par_id3148405.57.help.text
+msgctxt "03020104.xhp#par_id3148405.57.help.text"
+msgid "Next iCount"
+msgstr "Следно iПребројување"
+
+#: 03020104.xhp#par_id3153711.58.help.text
+msgctxt "03020104.xhp#par_id3153711.58.help.text"
+msgid "Close #iNumber"
+msgstr "Затвори #i број"
+
+#: 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 "Ресетирај"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120314.xhp#par_id3154285.6.help.text
+msgctxt "03120314.xhp#par_id3154285.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120314.xhp#hd_id3145315.7.help.text
+msgctxt "03120314.xhp#hd_id3145315.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Претварање на низа во нумерички израз"
+
+#: 03120104.xhp#hd_id3159157.3.help.text
+msgctxt "03120104.xhp#hd_id3159157.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120104.xhp#par_id3143228.6.help.text
+msgctxt "03120104.xhp#par_id3143228.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03120104.xhp#hd_id3156024.7.help.text
+msgctxt "03120104.xhp#hd_id3156024.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030107.xhp#par_id3154422.6.help.text
+msgctxt "03030107.xhp#par_id3154422.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03030107.xhp#hd_id3147303.7.help.text
+msgctxt "03030107.xhp#hd_id3147303.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03090302.xhp#par_id3154367.4.help.text
+#, fuzzy
+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 "Параметри:"
+
+#: 03090302.xhp#par_id3156214.6.help.text
+msgctxt "03090302.xhp#par_id3156214.6.help.text"
+msgid "Sub/Function"
+msgstr "Под/функција"
+
+#: 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 " Ознака1"
+
+#: 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>ознака1:</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 "Пример"
+
+#: 03090302.xhp#par_id6967035.help.text
+#, fuzzy
+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 "Prints the specified strings or numeric expressions in a dialog."
+
+#: 03010103.xhp#hd_id3145785.3.help.text
+msgctxt "03010103.xhp#hd_id3145785.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 03010103.xhp#par_id3153188.4.help.text
+msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]] "
+msgstr "Print 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 "Параметар:"
+
+#: 03010103.xhp#par_id2508621.help.text
+#, fuzzy
+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 "Пример"
+
+#: 03010103.xhp#par_id3153711.14.help.text
+msgid "Sub ExamplePrint"
+msgstr "Sub ExamplePrint"
+
+#: 03010103.xhp#par_id3153764.15.help.text
+msgid "Print \"ABC\""
+msgstr "Печати \"ABC\""
+
+#: 03010103.xhp#par_id3155764.16.help.text
+msgid "Print \"ABC\",\"123\""
+msgstr "Печати \"ABC\",\"123\""
+
+#: 03010103.xhp#par_id5484176.help.text
+msgid "i = FreeFile()"
+msgstr ""
+
+#: 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 ""
+
+#: 03010103.xhp#par_id36317.help.text
+msgid "Print #i, \"ABC\""
+msgstr ""
+
+#: 03010103.xhp#par_id7381817.help.text
+msgid "Close #i"
+msgstr ""
+
+#: 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 optimize certain processes."
+
+#: 03130700.xhp#hd_id3153311.3.help.text
+msgctxt "03130700.xhp#hd_id3153311.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03130700.xhp#par_id3149762.6.help.text
+msgctxt "03130700.xhp#par_id3149762.6.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03130700.xhp#hd_id3156152.7.help.text
+msgctxt "03130700.xhp#hd_id3156152.7.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120309.xhp#par_id3153381.7.help.text
+msgctxt "03120309.xhp#par_id3153381.7.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120309.xhp#hd_id3148798.8.help.text
+msgctxt "03120309.xhp#hd_id3148798.8.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120401.xhp#par_id3149763.7.help.text
+msgctxt "03120401.xhp#par_id3149763.7.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03120401.xhp#hd_id3148473.8.help.text
+msgctxt "03120401.xhp#hd_id3148473.8.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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:\\тест2\""
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120307.xhp#par_id3156344.7.help.text
+msgctxt "03120307.xhp#par_id3156344.7.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120307.xhp#hd_id3146795.8.help.text
+msgctxt "03120307.xhp#hd_id3146795.8.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Враќање на случаен број помеѓу 0 и 1."
+
+#: 03080302.xhp#hd_id3153897.3.help.text
+msgctxt "03080302.xhp#hd_id3153897.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 03080302.xhp#par_id3150543.4.help.text
+msgid "Rnd [(Expression)]"
+msgstr "Rnd [(Израз)]"
+
+#: 03080302.xhp#hd_id3149655.5.help.text
+msgctxt "03080302.xhp#hd_id3149655.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080302.xhp#par_id3154365.6.help.text
+msgctxt "03080302.xhp#par_id3154365.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080302.xhp#hd_id3154909.7.help.text
+msgctxt "03080302.xhp#hd_id3154909.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Избери 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 "Печати \"број од 1 до 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 "Печати \"број од 6 до 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 "Печати \"поголемо од 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 "Печати \"надворешен опсег 1 до 10\""
+
+#: 03080302.xhp#par_id3150328.28.help.text
+msgctxt "03080302.xhp#par_id3150328.28.help.text"
+msgid "End Select"
+msgstr "Избери крај"
+
+#: 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 "Општо"
+
+#: 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 dialog. 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 "Порамнување"
+
+#: 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 "Автоматско пополнување"
+
+#: 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 "Боја на подлогата"
+
+#: 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 color for the current control.</ahelp>"
+
+#: 01170101.xhp#hd_id3151076.263.help.text
+msgid "Large change"
+msgstr "Голема промена"
+
+#: 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 "Рамка"
+
+#: 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 "Вид копче"
+
+#: 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 "Множество знаци"
+
+#: 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 "Симбол на валутата"
+
+#: 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 "Датум"
+
+#: 01170101.xhp#par_id2293771.help.text
+msgid "<ahelp hid=\".\">Specify the default date to be shown in the Date control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3153965.82.help.text
+msgid "Date format"
+msgstr "Формат на датумот"
+
+#: 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 "Макс. датум"
+
+#: 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 "Мин. датум"
+
+#: 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 "Децимална точност"
+
+#: 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 "Стандардно копче"
+
+#: 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 dialog activates the default button.</ahelp>"
+
+#: 01170101.xhp#par_idN108BA.help.text
+msgid "Delay"
+msgstr "Задоцнување"
+
+#: 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 "Паѓачки"
+
+#: 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 "Овозможено"
+
+#: 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 grayed out in the dialog.</ahelp>"
+
+#: 01170101.xhp#hd_id3155379.91.help.text
+msgid "Edit mask"
+msgstr "Уреди маска"
+
+#: 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 " Знак "
+
+#: 01170101.xhp#par_id3148702.94.help.text
+msgid "Meaning"
+msgstr "Значење"
+
+#: 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 "Само знаците 0-9 можат да бидат внесени."
+
+#: 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 "Сите занаци што може да се печатат може да бидат внесени."
+
+#: 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 ""
+
+#: 01170101.xhp#par_id6519974.help.text
+msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#par_id4591814.help.text
+msgctxt "01170101.xhp#par_id4591814.help.text"
+msgid "The default value is FALSE."
+msgstr ""
+
+#: 01170101.xhp#hd_id3149317.114.help.text
+msgctxt "01170101.xhp#hd_id3149317.114.help.text"
+msgid "Graphics"
+msgstr "Графика"
+
+#: 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 "Висина"
+
+#: 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 dialog.</ahelp>"
+
+#: 01170101.xhp#hd_id3153072.208.help.text
+msgid "Help text"
+msgstr "Текст на помошта"
+
+#: 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 "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 ""
+
+#: 01170101.xhp#hd_id3159260.85.help.text
+msgid "Incr./decrement value"
+msgstr "Зголеми/намали вредност"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id9298074.help.text
+msgctxt "01170101.xhp#par_id9298074.help.text"
+msgid "The default value is FALSE."
+msgstr ""
+
+#: 01170101.xhp#hd_id3150536.7.help.text
+msgid "Label"
+msgstr "Ознака"
+
+#: 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 "Бројач на линии"
+
+#: 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 "Лента за движење"
+
+#: 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 "Мала промена"
+
+#: 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 "Елементи на листата"
+
+#: 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 "Основна маска"
+
+#: 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 "Рачен прекин на линија"
+
+#: 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 "Макс. должина на текстот"
+
+#: 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 "Повеќелиниски внес"
+
+#: 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 "Повеќекратен избор"
+
+#: 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 "Име"
+
+#: 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 "Редослед"
+
+#: 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 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."
+
+#: 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 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."
+
+#: 01170101.xhp#hd_id3149511.247.help.text
+msgid "Orientation"
+msgstr "Ориентација"
+
+#: 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 "Страница (чекор)"
+
+#: 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 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>."
+
+#: 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 dialog 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 dialog 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 "Знаци за лозинка"
+
+#: 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 "ПозицијаX"
+
+#: 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 dialog.</ahelp>"
+
+#: 01170101.xhp#hd_id3152767.243.help.text
+msgid "PositionY"
+msgstr "ПозицијаY"
+
+#: 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 dialog.</ahelp>"
+
+#: 01170101.xhp#hd_id3159213.221.help.text
+msgid "Prefix symbol"
+msgstr "Симбол за префикс"
+
+#: 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 "Печати"
+
+#: 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 "Вредност на напредок"
+
+#: 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 "Напредок на макс. вредност"
+
+#: 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 "Напредок на мин. вредност"
+
+#: 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 "Само читлив"
+
+#: 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 "Повтори"
+
+#: 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 ""
+
+#: 01170101.xhp#par_id7126987.help.text
+msgid "<ahelp hid=\".\">Specifies if the root node of the tree control is displayed.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id594195.help.text
+msgctxt "01170101.xhp#par_id594195.help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#: 01170101.xhp#hd_id7534409.help.text
+msgid "Row height"
+msgstr "Висина на редот"
+
+#: 01170101.xhp#par_id6471755.help.text
+msgid "<ahelp hid=\".\">Specifies the height of each row of a tree control, in pixels.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id4601580.help.text
+msgid "The default value is 0."
+msgstr ""
+
+#: 01170101.xhp#hd_id3148761.264.help.text
+msgid "Scale"
+msgstr "Размер"
+
+#: 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 "Лента за движење"
+
+#: 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 "Лизгачка вредност"
+
+#: 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 "Лизгачка макс. вредност"
+
+#: 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 "Лизгачка мин. вредност"
+
+#: 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 ""
+
+#: 01170101.xhp#par_id5060884.help.text
+msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should be displayed.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#par_id4974822.help.text
+msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
+msgstr ""
+
+#: 01170101.xhp#par_id7687307.help.text
+msgctxt "01170101.xhp#par_id7687307.help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#: 01170101.xhp#hd_id4062013.help.text
+msgid "Show root handles"
+msgstr ""
+
+#: 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 ""
+
+#: 01170101.xhp#par_id2396313.help.text
+msgctxt "01170101.xhp#par_id2396313.help.text"
+msgid "The default value is TRUE."
+msgstr ""
+
+#: 01170101.xhp#par_idN10EC2.help.text
+msgid "Selection"
+msgstr "Избор"
+
+#: 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> dialog."
+
+#: 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 ""
+
+#: 01170101.xhp#par_id1134067.help.text
+msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
+msgstr ""
+
+#: 01170101.xhp#hd_id3154193.87.help.text
+msgid "Spin Button"
+msgstr "Копче за вртење"
+
+#: 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 "Земја"
+
+#: 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 "Точен формат"
+
+#: 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 "Запирач на табулаторот"
+
+#: 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 behavior of the current control when using the <emph>Tab</emph> key.</ahelp>"
+
+#: 01170101.xhp#par_id3148776.178.help.text
+msgid "Default"
+msgstr "Стандардно"
+
+#: 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 "Не"
+
+#: 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 "Да"
+
+#: 01170101.xhp#par_id3159106.51.help.text
+msgid "The control can be selected with the Tab key."
+msgstr "Контролата може да биде селектирана со табулар клучот."
+
+#: 01170101.xhp#hd_id3145152.147.help.text
+msgid "Thousands Separator"
+msgstr "Разделувач на илјадарки"
+
+#: 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 "Формат на време"
+
+#: 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 "Време макс."
+
+#: 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 "Време мин."
+
+#: 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 "Наслов"
+
+#: 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 dialog. Click the border of the dialog to select the dialog.</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 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."
+
+#: 01170101.xhp#hd_id3152594.173.help.text
+msgid "Tristate"
+msgstr "Со три состојби"
+
+#: 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 grayed 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 "Вредност"
+
+#: 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 "Макс. вредност"
+
+#: 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 "Мин. вредност"
+
+#: 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 "Видлива големина"
+
+#: 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 "Ширина"
+
+#: 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 dialog.</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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120202.xhp#par_id3147530.6.help.text
+msgctxt "03120202.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120202.xhp#hd_id3154923.7.help.text
+msgctxt "03120202.xhp#hd_id3154923.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 function</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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 READ."
+
+#: 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 "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Крај акоf"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Синтакса"
+
+#: 03080501.xhp#par_id3156152.4.help.text
+msgid "Fix (Expression)"
+msgstr "Fix (израз)"
+
+#: 03080501.xhp#hd_id3154923.5.help.text
+msgctxt "03080501.xhp#hd_id3154923.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080501.xhp#par_id3148947.6.help.text
+msgctxt "03080501.xhp#par_id3148947.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080501.xhp#hd_id3154760.7.help.text
+msgctxt "03080501.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати Fix(3.14159) REM врати 3."
+
+#: 03080501.xhp#par_id3154217.12.help.text
+msgid "Print Fix(0) REM returns 0."
+msgstr "Печати Fix(0) REM врати 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>Basic; debugging</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 "Својства за преломна точка"
+
+#: 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> dialog 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 "Набљудувајќи ја вредноста од променливи"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120305.xhp#par_id3151056.6.help.text
+msgctxt "03120305.xhp#par_id3151056.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120305.xhp#hd_id3150543.7.help.text
+msgctxt "03120305.xhp#hd_id3150543.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Набљудувај прозорец"
+
+#: 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 "Набљудување"
+
+#: 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 "Отстрани набљудувачи"
+
+#: 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 "Отстрани набљудувачи"
+
+#: 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 "Синтакса"
+
+#: 03050200.xhp#par_id3154123.4.help.text
+msgid "Err"
+msgstr "Грешка"
+
+#: 03050200.xhp#hd_id3147229.5.help.text
+msgctxt "03050200.xhp#hd_id3147229.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03050200.xhp#par_id3150869.6.help.text
+msgctxt "03050200.xhp#par_id3150869.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03050200.xhp#hd_id3153193.7.help.text
+msgctxt "03050200.xhp#hd_id3153193.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Затвори #iVar"
+
+#: 03050200.xhp#par_id3149665.19.help.text
+msgctxt "03050200.xhp#par_id3149665.19.help.text"
+msgid "exit sub"
+msgstr "Излез 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 "Низи"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Повторување содржини"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030101.xhp#par_id3150398.6.help.text
+msgctxt "03030101.xhp#par_id3150398.6.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 03030101.xhp#hd_id3154141.7.help.text
+msgctxt "03030101.xhp#hd_id3154141.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 09.04.1964 00:00:00"
+
+#: 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 "Екран I/O функции"
+
+#: 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 dialogs for the input and output of user entries."
+
+#: 03030000.xhp#tit.help.text
+msgid "Date and Time Functions"
+msgstr "Датум и време на функции"
+
+#: 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 "Користејќи променливи"
+
+#: 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 "Примери за променливи идентификатори:"
+
+#: 01020100.xhp#par_id3163798.7.help.text
+msgid "MyNumber=5"
+msgstr "Мојот број=5"
+
+#: 01020100.xhp#par_id3156441.126.help.text
+msgctxt "01020100.xhp#par_id3156441.126.help.text"
+msgid "Correct"
+msgstr "Корекција"
+
+#: 01020100.xhp#par_id3147317.8.help.text
+msgid "MyNumber5=15"
+msgstr "Мојот број5=15"
+
+#: 01020100.xhp#par_id3149664.127.help.text
+msgctxt "01020100.xhp#par_id3149664.127.help.text"
+msgid "Correct"
+msgstr "Корекција"
+
+#: 01020100.xhp#par_id3145364.9.help.text
+msgid "MyNumber_5=20"
+msgstr "Мојот број_5=20"
+
+#: 01020100.xhp#par_id3146119.128.help.text
+msgctxt "01020100.xhp#par_id3146119.128.help.text"
+msgid "Correct"
+msgstr "Корекција"
+
+#: 01020100.xhp#par_id3154729.10.help.text
+msgid "My Number=20"
+msgstr "Мојот број=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 "Корекција"
+
+#: 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 "5Мојот број=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 "Декларирање променливи"
+
+#: 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 "Примери за декларирање променливи:"
+
+#: 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 "Декларирање на променлива \"a\" како стринг"
+
+#: 01020100.xhp#par_id3149531.20.help.text
+msgid "DIM a As String"
+msgstr "DIM како стринг"
+
+#: 01020100.xhp#par_id3150343.133.help.text
+msgctxt "01020100.xhp#par_id3150343.133.help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Декларирање на променлива \"a\" како стринг"
+
+#: 01020100.xhp#par_id3149036.21.help.text
+msgid "DIM a$, b As Integer"
+msgstr "DIM a$, b како цел број"
+
+#: 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 како логичка променлива"
+
+#: 01020100.xhp#par_idN10859.help.text
+msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
+msgstr "Декларирај c како логичка променлива кој може да биде точно или неточно"
+
+#: 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 "Декларирај \"a\" како стринг"
+
+#: 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 "Тип-декларација недостасува: \"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 "Присилување на декларирање на променлива"
+
+#: 01020100.xhp#par_id3149443.28.help.text
+msgid "To force declaration of variables, use the following command:"
+msgstr "Присилување на декларирање на променливи,употребија следнава команда:"
+
+#: 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 "Типови на променлива"
+
+#: 01020100.xhp#par_id3155383.35.help.text
+msgid "$[officename] Basic supports four variable classes:"
+msgstr "$[officename] Основна поддршка за променливи класи:"
+
+#: 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 променлива како цел бро"
+
+#: 01020100.xhp#hd_id3147546.45.help.text
+msgid "Long Integer Variables"
+msgstr "Променливи со долг цел број"
+
+#: 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 "Децимални променливи"
+
+#: 01020100.xhp#par_id2649311.help.text
+msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
+msgstr ""
+
+#: 01020100.xhp#par_id7617114.help.text
+msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
+msgstr ""
+
+#: 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 ""
+
+#: 01020100.xhp#hd_id3147500.50.help.text
+msgid "Single Variables"
+msgstr "Едни променливи"
+
+#: 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 променлива!"
+
+#: 01020100.xhp#par_id3153302.53.help.text
+msgid "Dim Variable as Single"
+msgstr "Dim променлива како едно"
+
+#: 01020100.xhp#hd_id3155753.54.help.text
+msgid "Double Variables"
+msgstr "Двојни поменливи"
+
+#: 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 променлива#"
+
+#: 01020100.xhp#par_id3154406.57.help.text
+msgid "Dim Variable As Double"
+msgstr "Dim променлива како двојна"
+
+#: 01020100.xhp#hd_id3155747.95.help.text
+msgid "Currency Variables"
+msgstr "Променливи валути"
+
+#: 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 променлива@"
+
+#: 01020100.xhp#par_id3150391.98.help.text
+msgid "Dim Variable As Currency"
+msgstr "Dim променлива како валута"
+
+#: 01020100.xhp#hd_id3148742.58.help.text
+msgid "String Variables"
+msgstr "Низа променливи"
+
+#: 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 променлива$"
+
+#: 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 "Логички променливи"
+
+#: 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 "Логичките промеливи запишуваат само една од двете вредности:точно или неточно. Бројот 0 се пресметува како неточно, а секоја друга вредност ја пресметува како точно."
+
+#: 01020100.xhp#par_id3147615.64.help.text
+msgid "Dim Variable As Boolean"
+msgstr "Dim променлива како логичка"
+
+#: 01020100.xhp#hd_id3149722.65.help.text
+msgid "Date Variables"
+msgstr "Променливи датуми"
+
+#: 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 променлива како датум"
+
+#: 01020100.xhp#hd_id3148732.68.help.text
+msgid "Initial Variable Values"
+msgstr "Иницијална вредност на променлива"
+
+#: 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 "Низи"
+
+#: 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 текст$(20)"
+
+#: 01020100.xhp#par_id3154567.136.help.text
+msgid "21 elements numbered from 0 to 20"
+msgstr "21 елемент нумерирани од 0 до 20"
+
+#: 01020100.xhp#par_id3145596.125.help.text
+msgid "DIM text$(5,4)"
+msgstr "DIM текст$(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 текст$(5 до 25)"
+
+#: 01020100.xhp#par_id3149690.138.help.text
+msgid "21 elements numbered from 5 to 25"
+msgstr "21 елемент нумерирани од 5 до 25"
+
+#: 01020100.xhp#par_id3155950.88.help.text
+msgid "DIM text$(-15 to 5)"
+msgstr "DIM текст$(-15 до 5)"
+
+#: 01020100.xhp#par_id3153113.89.help.text
+msgid "21 elements (including 0), numbered from -15 to 5"
+msgstr "21 елемент(вклучувајќи ја и 0), нумерирани од -15 до 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 "Константи"
+
+#: 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 "Синтакса"
+
+#: 03020102.xhp#par_id3150869.4.help.text
+msgid "FreeFile"
+msgstr "Слободна датотека"
+
+#: 03020102.xhp#hd_id3151042.5.help.text
+msgctxt "03020102.xhp#hd_id3151042.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03020102.xhp#par_id3150440.6.help.text
+msgctxt "03020102.xhp#par_id3150440.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03020102.xhp#hd_id3148576.7.help.text
+msgctxt "03020102.xhp#hd_id3148576.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Крај акоf"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Цели броеви"
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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>Излез за</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>Излез на функција</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 "Пример"
+
+#: 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 "Крај акоf"
+
+#: 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 "Крај на функцијата"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Претварање на датумска вредност"
+
+#: 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 "Јавен исказ [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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03070600.xhp#par_id3147560.4.help.text
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Резултат = израз MOD израз2"
+
+#: 03070600.xhp#hd_id3149657.5.help.text
+msgctxt "03070600.xhp#hd_id3149657.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03070600.xhp#par_id3153380.6.help.text
+msgctxt "03070600.xhp#par_id3153380.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03070600.xhp#hd_id3154365.7.help.text
+msgctxt "03070600.xhp#hd_id3154365.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "печати 10 mod 2.5 REM врати 0"
+
+#: 03070600.xhp#par_id3146922.13.help.text
+msgid "print 10 / 2.5 REM returns 4"
+msgstr "печати 10 / 2.5 REM врати 4"
+
+#: 03070600.xhp#par_id3145273.14.help.text
+msgid "print 10 mod 5 REM returns 0"
+msgstr "печати 10 mod 5 REM врати 0"
+
+#: 03070600.xhp#par_id3150011.15.help.text
+msgid "print 10 / 5 REM returns 2"
+msgstr "печати 10 / 5 REM врати 2"
+
+#: 03070600.xhp#par_id3149483.16.help.text
+msgid "print 5 mod 10 REM returns 5"
+msgstr "печати 5 mod 10 REM врати 5"
+
+#: 03070600.xhp#par_id3151114.17.help.text
+msgid "print 5 / 10 REM returns 0.5"
+msgstr "печати 5 / 10 REM врати 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 "Настани"
+
+#: 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 dialog. The available events depend on the type of control selected."
+
+#: 01170103.xhp#hd_id3145387.16.help.text
+msgid "When receiving focus"
+msgstr "Кога примате фокус"
+
+#: 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 "Кога губите фокус"
+
+#: 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 "Притиснат тастер"
+
+#: 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 "Отпуштен тастер"
+
+#: 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 "Изменето"
+
+#: 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 "Текстот е изменет"
+
+#: 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 "Статусот на ставката е променет"
+
+#: 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 "Глувче внатре"
+
+#: 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 "Глувчето е поместено додека е притисната типката"
+
+#: 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 "Глувчето е поместено"
+
+#: 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 "Типкат на глувчето е притиснато"
+
+#: 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 "Типката на глувчето е отпуштена"
+
+#: 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 "Глувчето надвор"
+
+#: 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 "Додека прилагодуваш"
+
+#: 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 "Синтакса"
+
+#: 03110100.xhp#par_id3149177.4.help.text
+msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
+msgstr "Резлтат = израз1 { = | < | > | <= | >= } израз2"
+
+#: 03110100.xhp#hd_id3145316.5.help.text
+msgctxt "03110100.xhp#hd_id3145316.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Споредување на оператори"
+
+#: 03110100.xhp#par_id3147265.9.help.text
+msgid "= : Equal to"
+msgstr "= : Еднакво на"
+
+#: 03110100.xhp#par_id3154924.10.help.text
+msgid "< : Less than"
+msgstr "< : Помало од"
+
+#: 03110100.xhp#par_id3146795.11.help.text
+msgid "> : Greater than"
+msgstr "> : Поголемо од"
+
+#: 03110100.xhp#par_id3150541.12.help.text
+msgid "<= : Less than or equal to"
+msgstr "<= : Помало од или еднакво"
+
+#: 03110100.xhp#par_id3150400.13.help.text
+msgid ">= : Greater than or equal to"
+msgstr ">= : Поголемо од или еднакво"
+
+#: 03110100.xhp#par_id3148797.14.help.text
+msgid "<> : Not equal to"
+msgstr "<> : Не е еднакво"
+
+#: 03110100.xhp#hd_id3154686.15.help.text
+msgctxt "03110100.xhp#hd_id3154686.15.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Направи"
+
+#: 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 "Крај ако"
+
+#: 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 returned 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 "Синтакса"
+
+#: 03080104.xhp#par_id3151042.6.help.text
+msgid "Tan (Number)"
+msgstr "Tan (број)"
+
+#: 03080104.xhp#hd_id3156214.7.help.text
+msgctxt "03080104.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080104.xhp#par_id3156281.8.help.text
+msgctxt "03080104.xhp#par_id3156281.8.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080104.xhp#hd_id3155132.9.help.text
+msgctxt "03080104.xhp#hd_id3155132.9.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "grad=(radiant*180)/pi"
+
+#: 03080104.xhp#par_id3146975.13.help.text
+msgid "radiant=(degrees*Pi)/180"
+msgstr "radiant=(grad*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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03030104.xhp#par_id3150398.4.help.text
+msgid "Month (Number)"
+msgstr "Месец (Број)"
+
+#: 03030104.xhp#hd_id3154366.5.help.text
+msgctxt "03030104.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03030104.xhp#par_id3154125.6.help.text
+msgctxt "03030104.xhp#par_id3154125.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03030104.xhp#hd_id3150768.7.help.text
+msgctxt "03030104.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030102.xhp#par_id3153194.6.help.text
+msgctxt "03030102.xhp#par_id3153194.6.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 03030102.xhp#hd_id3153969.7.help.text
+msgctxt "03030102.xhp#hd_id3153969.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Зелена функција [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 color code."
+
+#: 03010302.xhp#hd_id3154140.3.help.text
+msgctxt "03010302.xhp#hd_id3154140.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03010302.xhp#par_id3153194.6.help.text
+msgctxt "03010302.xhp#par_id3153194.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03010302.xhp#hd_id3154909.7.help.text
+msgctxt "03010302.xhp#hd_id3154909.7.help.text"
+msgid "Parameter:"
+msgstr "Параметар:"
+
+#: 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\">color 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 "Пример"
+
+#: 03010302.xhp#par_id3156442.10.help.text
+msgctxt "03010302.xhp#par_id3156442.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub ExampleColor"
+
+#: 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 color \" & lVar & \" contains the components:\" & Chr(13) &_"
+
+#: 03010302.xhp#par_id3153951.14.help.text
+msgid "\"red = \" & red(lVar) & Chr(13)&_"
+msgstr "\"red = \" & црвена(lVar) & Chr(13)&_"
+
+#: 03010302.xhp#par_id3152462.15.help.text
+msgid "\"green = \" & green(lVar) & Chr(13)&_"
+msgstr "\"green = \" & зелена(lVar) & Chr(13)&_"
+
+#: 03010302.xhp#par_id3154730.16.help.text
+msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr "\"blue = \" & сина(lVar) & Chr(13) , 64,\"colors\""
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03131000.xhp#par_id3148685.6.help.text
+msgctxt "03131000.xhp#par_id3148685.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03131000.xhp#hd_id3143270.7.help.text
+msgctxt "03131000.xhp#hd_id3143270.7.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 03080801.xhp#par_id3150771.4.help.text
+msgid "Hex (Number)"
+msgstr "Hex (број)"
+
+#: 03080801.xhp#hd_id3147530.5.help.text
+msgctxt "03080801.xhp#hd_id3147530.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080801.xhp#par_id3159414.6.help.text
+msgctxt "03080801.xhp#par_id3159414.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03080801.xhp#hd_id3156344.7.help.text
+msgctxt "03080801.xhp#hd_id3156344.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Копии на датотеки"
+
+#: 03020406.xhp#hd_id3147443.3.help.text
+msgctxt "03020406.xhp#hd_id3147443.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Пресметување на квадратен корен"
+
+#: 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 "Синтакса"
+
+#: 03080201.xhp#par_id3145315.4.help.text
+msgid "Exp (Number)"
+msgstr "Exp (број)"
+
+#: 03080201.xhp#hd_id3154347.5.help.text
+msgctxt "03080201.xhp#hd_id3154347.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080201.xhp#par_id3149670.6.help.text
+msgctxt "03080201.xhp#par_id3149670.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080201.xhp#hd_id3154760.7.help.text
+msgctxt "03080201.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Примери:"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Крај акоf"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03050100.xhp#par_id3154924.6.help.text
+msgctxt "03050100.xhp#par_id3154924.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03050100.xhp#hd_id3150792.7.help.text
+msgctxt "03050100.xhp#hd_id3150792.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Затвори #iVar"
+
+#: 03050100.xhp#par_id3148456.19.help.text
+msgctxt "03050100.xhp#par_id3148456.19.help.text"
+msgid "exit sub"
+msgstr "Излез 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120303.xhp#par_id3147530.6.help.text
+msgctxt "03120303.xhp#par_id3147530.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120303.xhp#hd_id3148946.7.help.text
+msgctxt "03120303.xhp#hd_id3148946.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03090407.xhp#par_id3154141.4.help.text
+msgid "Rem Text"
+msgstr "Rem Текст"
+
+#: 03090407.xhp#hd_id3151042.5.help.text
+msgctxt "03090407.xhp#hd_id3151042.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120315.xhp#par_id3150359.6.help.text
+msgctxt "03120315.xhp#par_id3150359.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120315.xhp#hd_id3148798.7.help.text
+msgctxt "03120315.xhp#hd_id3148798.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03080401.xhp#par_id3149415.4.help.text
+msgid "Sqr (Number)"
+msgstr "Sqr (број)"
+
+#: 03080401.xhp#hd_id3156023.5.help.text
+msgctxt "03080401.xhp#hd_id3156023.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080401.xhp#par_id3156343.6.help.text
+msgctxt "03080401.xhp#par_id3156343.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080401.xhp#hd_id3147265.7.help.text
+msgctxt "03080401.xhp#hd_id3147265.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03050500.xhp#par_id3145173.4.help.text
+msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr "On {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 "Параметри:"
+
+#: 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 ""
+
+#: 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 "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Крај акоf"
+
+#: 03050500.xhp#par_id3154754.62.help.text
+msgctxt "03050500.xhp#par_id3154754.62.help.text"
+msgid "Next iCount"
+msgstr "Следно iПребројување"
+
+#: 03050500.xhp#par_id3159264.63.help.text
+msgctxt "03050500.xhp#par_id3159264.63.help.text"
+msgid "Close #iNumber"
+msgstr "Затвори #i број"
+
+#: 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 "Ресетирај"
+
+#: 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 "Синтакса"
+
+#: 03101000.xhp#par_id3145315.4.help.text
+msgid "CStr (Expression)"
+msgstr "CStr (израз)"
+
+#: 03101000.xhp#hd_id3153062.5.help.text
+msgctxt "03101000.xhp#hd_id3153062.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03101000.xhp#par_id3153897.6.help.text
+msgctxt "03101000.xhp#par_id3153897.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03101000.xhp#hd_id3154760.7.help.text
+msgctxt "03101000.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Логичко :"
+
+#: 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 "Датум :"
+
+#: 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 "Нула :"
+
+#: 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 "Празно :"
+
+#: 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 "Кој :"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметар:"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03020302.xhp#par_id3152578.6.help.text
+msgctxt "03020302.xhp#par_id3152578.6.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03020302.xhp#hd_id3152462.7.help.text
+msgctxt "03020302.xhp#hd_id3152462.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120302.xhp#par_id3144760.7.help.text
+msgctxt "03120302.xhp#par_id3144760.7.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120302.xhp#hd_id3151043.8.help.text
+msgctxt "03120302.xhp#hd_id3151043.8.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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> color code of the color passed as a color 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03010304.xhp#par_id3154685.6.help.text
+msgctxt "03010304.xhp#par_id3154685.6.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03010304.xhp#hd_id3156560.7.help.text
+msgctxt "03010304.xhp#hd_id3156560.7.help.text"
+msgid "Parameter:"
+msgstr "Параметар:"
+
+#: 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 color value of the color 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 : Црна"
+
+#: 03010304.xhp#par_id3146975.11.help.text
+msgid "1 : Blue"
+msgstr "1 : Сина"
+
+#: 03010304.xhp#par_id3151116.12.help.text
+msgid "2 : Green"
+msgstr "2 : Зелена"
+
+#: 03010304.xhp#par_id3155412.13.help.text
+msgid "3 : Cyan"
+msgstr "3 : Сино-зелена"
+
+#: 03010304.xhp#par_id3155306.14.help.text
+msgid "4 : Red"
+msgstr "4 : Црвена"
+
+#: 03010304.xhp#par_id3153364.15.help.text
+msgid "5 : Magenta"
+msgstr "5 : Пурпурна"
+
+#: 03010304.xhp#par_id3146119.16.help.text
+msgid "6 : Yellow"
+msgstr "6 : Жолта"
+
+#: 03010304.xhp#par_id3154730.17.help.text
+msgid "7 : White"
+msgstr "7 : Бела"
+
+#: 03010304.xhp#par_id3153877.18.help.text
+msgid "8 : Gray"
+msgstr "8 : Сива"
+
+#: 03010304.xhp#par_id3147124.19.help.text
+msgid "9 : Light Blue"
+msgstr "9 : Светлосина"
+
+#: 03010304.xhp#par_id3145646.20.help.text
+msgid "10 : Light Green"
+msgstr "10 : Светлзелена"
+
+#: 03010304.xhp#par_id3149958.21.help.text
+msgid "11 : Light Cyan"
+msgstr "11 : Светла сино-зелена"
+
+#: 03010304.xhp#par_id3154943.22.help.text
+msgid "12 : Light Red"
+msgstr "12 : Светлоцрвена"
+
+#: 03010304.xhp#par_id3150715.23.help.text
+msgid "13 : Light Magenta"
+msgstr "13 : Светло пурпурна"
+
+#: 03010304.xhp#par_id3146970.24.help.text
+msgid "14 : Light Yellow"
+msgstr "14 : Светло жолта"
+
+#: 03010304.xhp#par_id3150750.25.help.text
+msgid "15 : Bright White"
+msgstr "15 : Светлобела"
+
+#: 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 color codes. The function returns a long integer value indicating the color 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 "Пример"
+
+#: 03010304.xhp#par_id3145642.28.help.text
+msgid "Sub ExampleQBColor"
+msgstr "Sub ExampleQBColor"
+
+#: 03010304.xhp#par_id3154256.29.help.text
+msgid "Dim iColor As Integer"
+msgstr "Dim iColor 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 "iБоја = 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( iColor) ) & \":\" & Blue(QBColor( iColor) ) & \":\" & Green(QBColor( iColor) )"
+
+#: 03010304.xhp#par_id3149566.33.help.text
+msgid "MsgBox stext,0,\"Color \" & iColor"
+msgstr "MsgBox stext,0,\"Color \" & iColor"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 03090301.xhp#par_id3148664.6.help.text
+msgctxt "03090301.xhp#par_id3148664.6.help.text"
+msgid "Sub/Function"
+msgstr "Под/функција"
+
+#: 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 "Ознака"
+
+#: 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 ознака"
+
+#: 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 "Ознака:"
+
+#: 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 "Врати"
+
+#: 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 "Пример"
+
+#: 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 "Квадратен корен:"
+
+#: 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 "Врати"
+
+#: 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 "Нумерички функции"
+
+#: 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 "Претворање броеви"
+
+#: 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 "Одзимање на две вредности"
+
+#: 03070100.xhp#hd_id3149416.3.help.text
+msgctxt "03070100.xhp#hd_id3149416.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 03070100.xhp#par_id3156023.4.help.text
+msgid "Result = Expression1 - Expression2"
+msgstr "Резултат = израз1 - израз2"
+
+#: 03070100.xhp#hd_id3154760.5.help.text
+msgctxt "03070100.xhp#hd_id3154760.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Избери 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 "Печати \"број од 1 до 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 "Печати \"број од 6 до 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 "Печати \"поголемо од 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 "Избери крај"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Крај ако"
+
+#: 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 "Јамка"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Линија1:"
+
+#: 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 & \" ознака 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120101.xhp#par_id3150669.6.help.text
+msgctxt "03120101.xhp#par_id3150669.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03120101.xhp#hd_id3148473.7.help.text
+msgctxt "03120101.xhp#hd_id3148473.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 функција [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 "Синтакса"
+
+#: 03080701.xhp#par_id3153897.4.help.text
+msgid "Sgn (Number)"
+msgstr "Sgn (број)"
+
+#: 03080701.xhp#hd_id3145069.5.help.text
+msgctxt "03080701.xhp#hd_id3145069.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080701.xhp#par_id3150359.6.help.text
+msgctxt "03080701.xhp#par_id3150359.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03080701.xhp#hd_id3150543.7.help.text
+msgctxt "03080701.xhp#hd_id3150543.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Num Израз"
+
+#: 03080701.xhp#par_id3150441.10.help.text
+msgctxt "03080701.xhp#par_id3150441.10.help.text"
+msgid "Return value"
+msgstr "Врати вредност"
+
+#: 03080701.xhp#par_id3161833.11.help.text
+msgid "negative"
+msgstr "Негативно"
+
+#: 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 "Позитивно"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03080101.xhp#par_id3150359.8.help.text
+msgctxt "03080101.xhp#par_id3150359.8.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080101.xhp#hd_id3148798.9.help.text
+msgctxt "03080101.xhp#hd_id3148798.9.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "степен=(рдијан*180)/пи"
+
+#: 03080101.xhp#par_id3125864.13.help.text
+msgctxt "03080101.xhp#par_id3125864.13.help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "радијан=(степен*пи)/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 "Пример"
+
+#: 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 "Абсолутна вредност"
+
+#: 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 "Оваа функција враќа абсолутнавредност"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03020408.xhp#par_id3156282.6.help.text
+msgctxt "03020408.xhp#par_id3156282.6.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03020408.xhp#hd_id3150768.7.help.text
+msgctxt "03020408.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "\"*\" Оператор [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 "Множење на две вредности"
+
+#: 03070200.xhp#hd_id3148946.3.help.text
+msgctxt "03070200.xhp#hd_id3148946.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 03070200.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 * Expression2"
+msgstr "Резултат = израз1 * израз2"
+
+#: 03070200.xhp#hd_id3150400.5.help.text
+msgctxt "03070200.xhp#hd_id3150400.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати 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 "Постави исказ[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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Постави oDoc = активен прозорец"
+
+#: 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.</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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 Оператор [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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 = нула"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03102900.xhp#par_id3153126.6.help.text
+msgctxt "03102900.xhp#par_id3153126.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03102900.xhp#hd_id3144500.7.help.text
+msgctxt "03102900.xhp#hd_id3144500.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати LBound(sVar())"
+
+#: 03102900.xhp#par_id3153768.14.help.text
+msgctxt "03102900.xhp#par_id3153768.14.help.text"
+msgid "print UBound(sVar())"
+msgstr "Печати 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 03080301.xhp#par_id3149670.6.help.text
+#, fuzzy
+msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
+msgstr "<emph>Number:</emph> Integer that contains the serial date number."
+
+#: 03080301.xhp#hd_id3149655.7.help.text
+msgctxt "03080301.xhp#hd_id3149655.7.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Следно iПребројување"
+
+#: 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 "Следно iПребројување"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03132100.xhp#par_id3153748.7.help.text
+msgctxt "03132100.xhp#par_id3153748.7.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 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 "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Крај акоf"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Јамки"
+
+#: 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 "Експоненцијална и логаритамска функција"
+
+#: 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] основен 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 "Овој дел ја опишува структурата на основниот 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 "Вметни"
+
+#: 01050000.xhp#hd_id3151074.8.help.text
+msgid "Module"
+msgstr "Модул"
+
+#: 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 "Дијалог"
+
+#: 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 dialog into the current library.</ahelp>"
+
+#: 01050000.xhp#hd_id3155602.12.help.text
+msgctxt "01050000.xhp#hd_id3155602.12.help.text"
+msgid "Delete"
+msgstr "Избриши"
+
+#: 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 "Преименувај"
+
+#: 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 "Скриј"
+
+#: 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 "Модули"
+
+#: 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 Organizer</emph></link> dialog."
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030204.xhp#par_id3154140.6.help.text
+msgctxt "03030204.xhp#par_id3154140.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03030204.xhp#hd_id3156280.7.help.text
+msgctxt "03030204.xhp#hd_id3156280.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Овој дел ти опишува како да додели основни програми до програмски настан."
+
+#: 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 "Настан"
+
+#: 01040000.xhp#par_id3145799.6.help.text
+msgid "An assigned macro is executed..."
+msgstr "Назначениот макро е извршен..."
+
+#: 01040000.xhp#par_id3149379.7.help.text
+msgid "Program Start"
+msgstr "Пушти програма"
+
+#: 01040000.xhp#par_id3150715.8.help.text
+msgid "... after a $[officename] application is started."
+msgstr "... по $[officename] апликацијата е пуштена."
+
+#: 01040000.xhp#par_id3146914.9.help.text
+msgid "Program End"
+msgstr "Крај на програмата"
+
+#: 01040000.xhp#par_id3153765.10.help.text
+msgid "...before a $[officename] application is terminated."
+msgstr "...пред $[officename] апликацијата е завршена."
+
+#: 01040000.xhp#par_id3145150.11.help.text
+msgid "Create Document"
+msgstr "Креирај документ"
+
+#: 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 "Отвори документ"
+
+#: 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 "Зачувај документ како"
+
+#: 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 "Документот беше зачуван како "
+
+#: 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 "Зачувај документ"
+
+#: 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 "Документот беше зачуван"
+
+#: 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 "Затвори документ"
+
+#: 01040000.xhp#par_id3146868.20.help.text
+msgid "...before a document is closed."
+msgstr "...пред документот да се затвори."
+
+#: 01040000.xhp#par_id3159097.47.help.text
+msgid "Document closed"
+msgstr "Документот се затвара"
+
+#: 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 "Активирај документ"
+
+#: 01040000.xhp#par_id3149442.22.help.text
+msgid "...after a document is brought to the foreground."
+msgstr "...откако документот е донесен во преден план."
+
+#: 01040000.xhp#par_id3150888.23.help.text
+msgid "Deactivate Document"
+msgstr "Деактивирај документ"
+
+#: 01040000.xhp#par_id3154060.24.help.text
+msgid "...after another document is brought to the foreground."
+msgstr "...откако друг документ е донесен во преден план."
+
+#: 01040000.xhp#par_id3152384.25.help.text
+msgid "Print Document"
+msgstr "Печати документ"
+
+#: 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> dialog 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> dialog 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 "Промени го бројачот на страници"
+
+#: 01040000.xhp#par_id3154627.52.help.text
+msgid "...when the page count changes."
+msgstr "...кога бројачот на страници е сменет."
+
+#: 01040000.xhp#par_id3154737.53.help.text
+msgid "Message received"
+msgstr "Примена порака"
+
+#: 01040000.xhp#par_id3150952.54.help.text
+msgid "...if a message was received."
+msgstr "...ако пораката била примена."
+
+#: 01040000.xhp#hd_id3153299.30.help.text
+msgid "Assigning a Macro to an Event"
+msgstr "Доделува макро за настан"
+
+#: 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 by selecting the <emph>$[officename]</emph> or <emph>Document</emph> option."
+
+#: 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 "Select the module containing the macro to be assigned to the selected event from the <emph>Macros</emph> list. The list contains a hierarchical list of modules, libraries, files, and templates."
+
+#: 01040000.xhp#par_id3146321.35.help.text
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr "Click <emph>Assign</emph>."
+
+#: 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 dialog."
+
+#: 01040000.xhp#hd_id3154581.36.help.text
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr "Ја отстранува задачата од макро до настан"
+
+#: 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 <emph>$[officename]</emph> or <emph>Document</emph> option."
+
+#: 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 dialog."
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 = нула"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметар:"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03020303.xhp#par_id3147230.6.help.text
+msgctxt "03020303.xhp#par_id3147230.6.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03020303.xhp#hd_id3156281.7.help.text
+msgctxt "03020303.xhp#hd_id3156281.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати текстови"
+
+#: 03020303.xhp#par_id3154702.26.help.text
+msgctxt "03020303.xhp#par_id3154702.26.help.text"
+msgid "Close #iNumber"
+msgstr "Затвори #i број"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Систем датум и време"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120311.xhp#par_id3143228.6.help.text
+msgctxt "03120311.xhp#par_id3143228.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120311.xhp#hd_id3145609.7.help.text
+msgctxt "03120311.xhp#hd_id3145609.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 color 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 "Синтакса"
+
+#: 03010305.xhp#par_id3155132.4.help.text
+msgid "RGB (Red, Green, Blue)"
+msgstr "RGB (црвена,зелена,сина)"
+
+#: 03010305.xhp#hd_id3156442.5.help.text
+msgctxt "03010305.xhp#hd_id3156442.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03010305.xhp#par_id3159153.6.help.text
+msgctxt "03010305.xhp#par_id3159153.6.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03010305.xhp#hd_id3154013.7.help.text
+msgctxt "03010305.xhp#hd_id3154013.7.help.text"
+msgid "Parameter:"
+msgstr "Параметар:"
+
+#: 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 color."
+
+#: 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 color."
+
+#: 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 color."
+
+#: 03010305.xhp#hd_id3147435.11.help.text
+msgctxt "03010305.xhp#hd_id3147435.11.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 03010305.xhp#par_id3156283.12.help.text
+msgctxt "03010305.xhp#par_id3156283.12.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub ExampleColor"
+
+#: 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 color \" & 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= \" & црвена(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= \" & зелена(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= \" & сина(lVar) & Chr(13) , 64,\"colors\""
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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> двојно"
+
+#: 03101400.xhp#hd_id3153192.10.help.text
+msgctxt "03101400.xhp#hd_id3153192.10.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Крај акоf"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Синтакса"
+
+#: 03102300.xhp#par_id3147573.4.help.text
+msgid "IsDate (Expression)"
+msgstr "IsDate (израз)"
+
+#: 03102300.xhp#hd_id3143270.5.help.text
+msgctxt "03102300.xhp#hd_id3143270.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030201.xhp#par_id3149670.6.help.text
+msgctxt "03030201.xhp#par_id3149670.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03030201.xhp#hd_id3150359.7.help.text
+msgctxt "03030201.xhp#hd_id3150359.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Претварање време вредности"
+
+#: 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 "Основи"
+
+#: 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>Basic;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 "Што е Под?"
+
+#: 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 "Што е Функција?"
+
+#: 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 "Глобални и локални променливи"
+
+#: 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> dialog."
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 dialog 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 "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 03131800.xhp#par_id3159157.8.help.text
+msgid "' Get dialog description from the dialog library"
+msgstr "' Get dialog description from the dialog 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\" dialog"
+
+#: 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\" dialog"
+
+#: 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 "Логички оператори"
+
+#: 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 initialized."
+
+#: 03102400.xhp#hd_id3159158.3.help.text
+msgctxt "03102400.xhp#hd_id3159158.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 = празно"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030303.xhp#par_id3146984.7.help.text
+msgctxt "03030303.xhp#par_id3146984.7.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 03030303.xhp#hd_id3156442.8.help.text
+msgctxt "03030303.xhp#hd_id3156442.8.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Дејство"
+
+#: keys.xhp#par_id3153192.4.help.text
+msgid "Keyboard shortcut"
+msgstr "Кратенка за тастатура"
+
+#: 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 "Запри"
+
+#: keys.xhp#par_id3154319.8.help.text
+msgid "Shift+F5"
+msgstr "Помести+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 "Помести+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 "Помест+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+Ctrl+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+Ctrl+Q stops execution of the macro, but you can recognize 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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> објект"
+
+#: 03101700.xhp#hd_id3156212.10.help.text
+msgctxt "03101700.xhp#hd_id3156212.10.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 recognize 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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> цел број"
+
+#: 03101500.xhp#hd_id3154123.10.help.text
+msgctxt "03101500.xhp#hd_id3154123.10.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 03030103.xhp#par_id3150358.4.help.text
+msgid "Day (Number)"
+msgstr "Ден (Број)"
+
+#: 03030103.xhp#hd_id3148798.5.help.text
+msgctxt "03030103.xhp#hd_id3148798.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03030103.xhp#par_id3125865.6.help.text
+msgctxt "03030103.xhp#par_id3125865.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03030103.xhp#hd_id3150448.7.help.text
+msgctxt "03030103.xhp#hd_id3150448.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03030105.xhp#par_id3149655.4.help.text
+msgid "WeekDay (Number)"
+msgstr "Ден од неделата(број)"
+
+#: 03030105.xhp#hd_id3148799.5.help.text
+msgctxt "03030105.xhp#hd_id3148799.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03030105.xhp#par_id3154125.6.help.text
+msgctxt "03030105.xhp#par_id3154125.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03030105.xhp#hd_id3150768.7.help.text
+msgctxt "03030105.xhp#hd_id3150768.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Избери крај"
+
+#: 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 "Синтакса"
+
+#: 03080601.xhp#par_id3147573.4.help.text
+msgid "Abs (Number)"
+msgstr "Abs (број)"
+
+#: 03080601.xhp#hd_id3156152.5.help.text
+msgctxt "03080601.xhp#hd_id3156152.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080601.xhp#par_id3149670.6.help.text
+msgctxt "03080601.xhp#par_id3149670.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080601.xhp#hd_id3154924.7.help.text
+msgctxt "03080601.xhp#hd_id3154924.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03100500.xhp#par_id3154142.4.help.text
+msgid "CInt (Expression)"
+msgstr "CInt (Израз)"
+
+#: 03100500.xhp#hd_id3147531.5.help.text
+msgctxt "03100500.xhp#hd_id3147531.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03100500.xhp#par_id3147560.6.help.text
+msgctxt "03100500.xhp#par_id3147560.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03100500.xhp#hd_id3145069.7.help.text
+msgctxt "03100500.xhp#hd_id3145069.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 function</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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "The <emph>Write#</emph> statement enters data that is enclosed by quotation marks and separated by commas into a file. You do not need to use delimiters in the list. The end of a file created with the <emph>Write#</emph> statement is indicated by a line end symbol."
+
+#: 03020205.xhp#par_id1002838.help.text
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgstr ""
+
+#: 03020205.xhp#par_id6618854.help.text
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgstr ""
+
+#: 03020205.xhp#hd_id3151073.11.help.text
+msgctxt "03020205.xhp#hd_id3151073.11.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Затвори #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] Основен речник"
+
+#: 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] основен речник</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 "Децимална точка"
+
+#: 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 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>."
+
+#: 00000002.xhp#hd_id3155854.29.help.text
+msgid "Colors"
+msgstr "Бои"
+
+#: 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, 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>."
+
+#: 00000002.xhp#hd_id3146119.32.help.text
+msgid "Measurement Units"
+msgstr "Мерна единица"
+
+#: 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>Tools - Options - (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 centimeter."
+
+#: 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 "Синтакса"
+
+#: 03090401.xhp#par_id3150984.4.help.text
+msgid "[Call] Name [Parameter]"
+msgstr "[Call] Име [Parameter]"
+
+#: 03090401.xhp#hd_id3150771.5.help.text
+msgctxt "03090401.xhp#hd_id3150771.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Управувај преломни точки"
+
+#: 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 "Преломни точки"
+
+#: 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 "Активно"
+
+#: 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 "Броење на поминувања"
+
+#: 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 "Нов"
+
+#: 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 "Избриши"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120402.xhp#par_id3143270.6.help.text
+msgctxt "03120402.xhp#par_id3143270.6.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03120402.xhp#hd_id3147531.7.help.text
+msgctxt "03120402.xhp#hd_id3147531.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03103600.xhp#par_id3155341.4.help.text
+msgid "TypeName (Variable)VarType (Variable)"
+msgstr "TypeName (променлива)VarType (променлива)"
+
+#: 03103600.xhp#hd_id3145610.5.help.text
+msgctxt "03103600.xhp#hd_id3145610.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03103600.xhp#par_id3148947.6.help.text
+msgid "String; Integer"
+msgstr "Низа;цел број"
+
+#: 03103600.xhp#hd_id3146795.7.help.text
+msgctxt "03103600.xhp#hd_id3146795.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Клучен збор"
+
+#: 03103600.xhp#par_id3156212.10.help.text
+msgid "VarType"
+msgstr "VarТип"
+
+#: 03103600.xhp#par_id3154684.11.help.text
+msgid "Variable type"
+msgstr "Тип променлива"
+
+#: 03103600.xhp#par_id3151041.12.help.text
+msgid "Boolean"
+msgstr "Логичко"
+
+#: 03103600.xhp#par_id3153367.13.help.text
+msgid "11"
+msgstr "11"
+
+#: 03103600.xhp#par_id3148645.14.help.text
+msgid "Boolean variable"
+msgstr "Логичка променлива"
+
+#: 03103600.xhp#par_id3153138.15.help.text
+msgctxt "03103600.xhp#par_id3153138.15.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 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 "Променлив датум"
+
+#: 03103600.xhp#par_id3146975.18.help.text
+msgctxt "03103600.xhp#par_id3146975.18.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 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 "Двојна променлива лебдечка точка "
+
+#: 03103600.xhp#par_id3148457.21.help.text
+msgctxt "03103600.xhp#par_id3148457.21.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 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 "Променлив цел број"
+
+#: 03103600.xhp#par_id3149960.24.help.text
+msgctxt "03103600.xhp#par_id3149960.24.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 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 "Променлив долг цел број"
+
+#: 03103600.xhp#par_id3146972.27.help.text
+msgid "Object"
+msgstr "Објект"
+
+#: 03103600.xhp#par_id3154482.28.help.text
+msgid "9"
+msgstr "9"
+
+#: 03103600.xhp#par_id3150323.29.help.text
+msgid "Object variable"
+msgstr "Променлив објект"
+
+#: 03103600.xhp#par_id3148405.30.help.text
+msgctxt "03103600.xhp#par_id3148405.30.help.text"
+msgid "Single"
+msgstr "Едно"
+
+#: 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 "Едно променлива лебдечка точка"
+
+#: 03103600.xhp#par_id3155901.33.help.text
+msgctxt "03103600.xhp#par_id3155901.33.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03103600.xhp#par_id3155960.34.help.text
+msgid "8"
+msgstr "8"
+
+#: 03103600.xhp#par_id3146313.35.help.text
+msgid "String variable"
+msgstr "Низа променливи"
+
+#: 03103600.xhp#par_id3145149.36.help.text
+msgid "Variant"
+msgstr "Варијанта"
+
+#: 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 "Празно"
+
+#: 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 initialized"
+
+#: 03103600.xhp#par_id3154576.42.help.text
+msgid "Null"
+msgstr "Нула"
+
+#: 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 "Не валиден податок"
+
+#: 03103600.xhp#hd_id3149338.45.help.text
+msgctxt "03103600.xhp#hd_id3149338.45.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Споредување на оператори"
+
+#: 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 "\"+\" Оператор [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 "Синтакса"
+
+#: 03070300.xhp#par_id3150358.4.help.text
+msgid "Result = Expression1 + Expression2"
+msgstr "Резултат = израз1 + израз2"
+
+#: 03070300.xhp#hd_id3150400.5.help.text
+msgctxt "03070300.xhp#hd_id3150400.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03020403.xhp#par_id3156281.6.help.text
+msgctxt "03020403.xhp#par_id3156281.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03020403.xhp#hd_id3156423.7.help.text
+msgctxt "03020403.xhp#hd_id3156423.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120201.xhp#par_id3149233.6.help.text
+msgctxt "03120201.xhp#par_id3149233.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120201.xhp#hd_id3156152.7.help.text
+msgctxt "03120201.xhp#hd_id3156152.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030130.xhp#par_idN105EF.help.text
+msgctxt "03030130.xhp#par_idN105EF.help.text"
+msgid "A Variant containing a date."
+msgstr "Variant што содржи датум."
+
+#: 03030130.xhp#par_idN105F2.help.text
+msgctxt "03030130.xhp#par_idN105F2.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 функција [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 "Синтакса"
+
+#: 03080502.xhp#par_id3146795.4.help.text
+msgid "Int (Number)"
+msgstr "Int (број)"
+
+#: 03080502.xhp#hd_id3149670.5.help.text
+msgctxt "03080502.xhp#hd_id3149670.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080502.xhp#par_id3150400.6.help.text
+msgctxt "03080502.xhp#par_id3150400.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080502.xhp#hd_id3149656.7.help.text
+msgctxt "03080502.xhp#hd_id3149656.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 03080502.xhp#par_id3148797.8.help.text
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr "<emph>Number:</emph> Any valid numeric expression. Rounds the fractional part of the number and returns the integer value."
+
+#: 03080502.xhp#hd_id3148672.9.help.text
+msgctxt "03080502.xhp#hd_id3148672.9.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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.14159) 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03020409.xhp#par_id3154909.6.help.text
+msgctxt "03020409.xhp#par_id3154909.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03020409.xhp#hd_id3145172.7.help.text
+msgctxt "03020409.xhp#hd_id3145172.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Вредност"
+
+#: 03020409.xhp#par_id3147349.11.help.text
+msgctxt "03020409.xhp#par_id3147349.11.help.text"
+msgid "0 : Normal files."
+msgstr "0 : Нормални даотеки."
+
+#: 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 "Пример"
+
+#: 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 "Крај"
+
+#: 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 "Печати грешка"
+
+#: 03020409.xhp#par_id3155764.31.help.text
+msgctxt "03020409.xhp#par_id3155764.31.help.text"
+msgid "end"
+msgstr "Крај"
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Јамка"
+
+#: 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 "Направи"
+
+#: 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 "Синтакса"
+
+#: 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 "Јамка"
+
+#: 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 "Јамка"
+
+#: 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 "Направи"
+
+#: 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 "Направи"
+
+#: 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 "Јамка..."
+
+#: 03090201.xhp#hd_id3147396.47.help.text
+msgctxt "03090201.xhp#hd_id3147396.47.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "Направи"
+
+#: 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 "Крај ако"
+
+#: 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 "Организирај библиотеки и модули"
+
+#: 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;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;creating and renaming</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries</bookmark_value><bookmark_value>renaming modules</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 "Организирај библиотек"
+
+#: 01030400.xhp#hd_id3125864.5.help.text
+msgid "Creating a New Library"
+msgstr "Креирање на нова библиотека"
+
+#: 01030400.xhp#par_id3152576.6.help.text
+#, fuzzy
+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> dialog."
+
+#: 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 "Додади библиотека"
+
+#: 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 </emph><emph>- 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."
+
+#: 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> dialog. The dialog 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 "Бришење библиотека"
+
+#: 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 </emph><emph>- 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."
+
+#: 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 "Вие не можете да ја избришете стандардната библиотека именувана\"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 "Ако ја избришете библиотеката која беше вметната како референца само референцата ќе биде избришана но не и самата библиотека."
+
+#: 01030400.xhp#hd_id3147070.21.help.text
+msgid "Organizing Modules and Dialogs"
+msgstr "Организирај модули и дијалози"
+
+#: 01030400.xhp#hd_id3155265.61.help.text
+msgid "Creating a New Module or Dialog"
+msgstr "Креирање на нов модул и дијалог"
+
+#: 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 </emph><emph>- 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."
+
+#: 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 dialog and click <emph>OK</emph>."
+
+#: 01030400.xhp#hd_id3152872.25.help.text
+msgid "Renaming a Module or Dialog"
+msgstr "Преименување на модул или дијалод"
+
+#: 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 </emph><emph>- 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."
+
+#: 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 dialog 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 "Притисни Enter за да ја потврдиш промената."
+
+#: 01030400.xhp#hd_id3146963.29.help.text
+msgid "Deleting a Module or Dialog"
+msgstr "Бришење на модул или дијалог"
+
+#: 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 </emph><emph>- 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."
+
+#: 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 dialog 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 "Организирање на проектите помеѓу документите или шаблоните"
+
+#: 01030400.xhp#hd_id3156400.36.help.text
+msgid "Moving or copying modules between documents, templates and the application."
+msgstr "Движење или копирање на модули меѓу документи, шаблони и апликација."
+
+#: 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 "Отварање на сите документи или шаблони помеѓу кои сакате да ги поместите или копираат модулитеили дијалозите"
+
+#: 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 </emph><emph>- 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."
+
+#: 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 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\">Option </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 "Синтакса"
+
+#: 03080103.xhp#par_id3154909.6.help.text
+msgid "Sin (Number)"
+msgstr "Sin (број)"
+
+#: 03080103.xhp#hd_id3156214.7.help.text
+msgctxt "03080103.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080103.xhp#par_id3150870.8.help.text
+msgctxt "03080103.xhp#par_id3150870.8.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080103.xhp#hd_id3155132.9.help.text
+msgctxt "03080103.xhp#hd_id3155132.9.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03060400.xhp#par_id3150360.4.help.text
+msgid "Result = Not Expression"
+msgstr "Резултат = не е израз"
+
+#: 03060400.xhp#hd_id3151211.5.help.text
+msgctxt "03060400.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 = нула"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Следно 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 "Синтакса"
+
+#: 03100900.xhp#par_id3148983.4.help.text
+msgid "CSng (Expression)"
+msgstr "CSng (израз)"
+
+#: 03100900.xhp#hd_id3152347.5.help.text
+msgctxt "03100900.xhp#hd_id3152347.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03100900.xhp#par_id3153750.6.help.text
+msgctxt "03100900.xhp#par_id3153750.6.help.text"
+msgid "Single"
+msgstr "Едно"
+
+#: 03100900.xhp#hd_id3146957.7.help.text
+msgctxt "03100900.xhp#hd_id3146957.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Користејќи објекти"
+
+#: 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 catalog provides an overview of all modules and dialogs 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 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."
+
+#: 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 dialog 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 "Кликни на (X) иконата на насловната лента за да го затвориш каталогот со објекти."
+
+#: 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 "Синтакса"
+
+#: 03030203.xhp#par_id3149655.4.help.text
+msgid "Now"
+msgstr "Сега"
+
+#: 03030203.xhp#hd_id3154366.5.help.text
+msgctxt "03030203.xhp#hd_id3154366.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03030203.xhp#par_id3154909.6.help.text
+msgctxt "03030203.xhp#par_id3154909.6.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 03030203.xhp#hd_id3147229.7.help.text
+msgctxt "03030203.xhp#hd_id3147229.7.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03131400.xhp#par_id3154306.6.help.text
+msgctxt "03131400.xhp#par_id3154306.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03131400.xhp#hd_id3149235.7.help.text
+msgctxt "03131400.xhp#hd_id3149235.7.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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>вредност</emph>"
+
+#: 03020414.xhp#par_id3152596.9.help.text
+msgctxt "03020414.xhp#par_id3152596.9.help.text"
+msgid "0 : Normal files."
+msgstr "0 : Нормални даотеки."
+
+#: 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 "Пример"
+
+#: 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 "Крај"
+
+#: 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 "Печати грешка"
+
+#: 03020414.xhp#par_id3153707.27.help.text
+msgctxt "03020414.xhp#par_id3153707.27.help.text"
+msgid "end"
+msgstr "Крај"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 = нула"
+
+#: 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 функција [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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120102.xhp#par_id3153824.6.help.text
+msgctxt "03120102.xhp#par_id3153824.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120102.xhp#hd_id3148944.7.help.text
+msgctxt "03120102.xhp#hd_id3148944.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 dialog 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 "Програмирање со $[officename] основен"
+
+#: 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 "Синтакса"
+
+#: 03030302.xhp#par_id3149670.4.help.text
+msgid "Time"
+msgstr "Време"
+
+#: 03030302.xhp#hd_id3150792.5.help.text
+msgctxt "03030302.xhp#hd_id3150792.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Исказ"
+
+#: 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 "Пример"
+
+#: 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 "Избери 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 "Печати \"број од 1 до 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 "Печати \"број од 6 до 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 "Печати \"поголемо од 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 "Печати \"надворешен опсег 1 до 10\""
+
+#: 03090404.xhp#par_id3156285.26.help.text
+msgctxt "03090404.xhp#par_id3156285.26.help.text"
+msgid "End Select"
+msgstr "Избери крај"
+
+#: 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 "Синтакса"
+
+#: 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 "[Излез за]"
+
+#: 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 "Следно [counter]"
+
+#: 03090202.xhp#hd_id3150400.9.help.text
+msgid "Variables:"
+msgstr "Променливи"
+
+#: 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 "Следно"
+
+#: 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 "Пример"
+
+#: 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 "Крај ако"
+
+#: 03090202.xhp#par_id3158446.51.help.text
+msgid "Next iCount2"
+msgstr "Следно iCount2"
+
+#: 03090202.xhp#par_id3150783.52.help.text
+msgctxt "03090202.xhp#par_id3150783.52.help.text"
+msgid "Next iCount"
+msgstr "Следно iПребројување"
+
+#: 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 "Следно iПребројување"
+
+#: 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 dialog box containing a message."
+
+#: 03010101.xhp#hd_id3153897.3.help.text
+msgctxt "03010101.xhp#hd_id3153897.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Параметар:"
+
+#: 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 dialog 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 dialog. 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 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:"
+
+#: 03010101.xhp#par_id3161832.9.help.text
+msgctxt "03010101.xhp#par_id3161832.9.help.text"
+msgid "0 : Display OK button only."
+msgstr "0 : Го прикажува само копчето во ред."
+
+#: 03010101.xhp#par_id3153726.10.help.text
+msgctxt "03010101.xhp#par_id3153726.10.help.text"
+msgid "1 : Display OK and Cancel buttons."
+msgstr "1 : Ги прикажува само копчињата откажи."
+
+#: 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 : Ги прикажува само копчињата да,не и откажи."
+
+#: 03010101.xhp#par_id3155412.13.help.text
+msgctxt "03010101.xhp#par_id3155412.13.help.text"
+msgid "4 : Display Yes and No buttons."
+msgstr "4 : Ги прикажува само копчињата да,не."
+
+#: 03010101.xhp#par_id3146119.14.help.text
+msgctxt "03010101.xhp#par_id3146119.14.help.text"
+msgid "5 : Display Retry and Cancel buttons."
+msgstr "5 : Ги прикажува само копчињата Обиди се повторно и откажи."
+
+#: 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 : Додади ја стоп иконата во дијалогот."
+
+#: 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 : Додади ја Question иконата во дијалогот."
+
+#: 03010101.xhp#par_id3147350.17.help.text
+msgid "48 : Add the Exclamation icon to the dialog."
+msgstr "48 : Add the Exclamation icon to the dialog."
+
+#: 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 : Додади ја иконата за информација во дијалогот."
+
+#: 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 dialog 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 dialog 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 dialog as default button."
+
+#: 03010101.xhp#hd_id3150715.22.help.text
+msgctxt "03010101.xhp#hd_id3150715.22.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 statement</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 Statement [Runtime]\">ThisComponent Statement [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."
+
+#: 03132200.xhp#hd_id3154346.3.help.text
+msgctxt "03132200.xhp#hd_id3154346.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Окт функција [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 "Синтакса"
+
+#: 03080802.xhp#par_id3150543.4.help.text
+msgid "Oct (Number)"
+msgstr "Oct (број)"
+
+#: 03080802.xhp#hd_id3153360.5.help.text
+msgctxt "03080802.xhp#hd_id3153360.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080802.xhp#par_id3154138.6.help.text
+msgctxt "03080802.xhp#par_id3154138.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03080802.xhp#hd_id3156422.7.help.text
+msgctxt "03080802.xhp#hd_id3156422.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03020405.xhp#par_id3146974.8.help.text
+msgctxt "03020405.xhp#par_id3146974.8.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03020405.xhp#hd_id3153728.9.help.text
+msgctxt "03020405.xhp#hd_id3153728.9.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Затвори #i број"
+
+#: 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 Краток преклед"
+
+#: 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 dialog 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 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 (\"\")."
+
+#: 03010201.xhp#hd_id3152347.4.help.text
+msgctxt "03010201.xhp#hd_id3152347.4.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03010201.xhp#par_id3145090.7.help.text
+msgctxt "03010201.xhp#par_id3145090.7.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03010201.xhp#hd_id3149346.8.help.text
+msgctxt "03010201.xhp#hd_id3149346.8.help.text"
+msgid "Parameter:"
+msgstr "Параметар:"
+
+#: 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 dialog 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 dialog 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 dialog. 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 dialog. 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 dialog is centered 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 "Пример"
+
+#: 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 "\"/\" Оператор [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 "Делење на две вредности"
+
+#: 03070400.xhp#hd_id3148946.3.help.text
+msgctxt "03070400.xhp#hd_id3148946.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 03070400.xhp#par_id3153360.4.help.text
+msgid "Result = Expression1 / Expression2 "
+msgstr "Резултат = израз1 / израз2 "
+
+#: 03070400.xhp#hd_id3150359.5.help.text
+msgctxt "03070400.xhp#hd_id3150359.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 = нула"
+
+#: 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 "Информации"
+
+#: 00000003.xhp#hd_id3148550.1.help.text
+msgctxt "00000003.xhp#hd_id3148550.1.help.text"
+msgid "Information"
+msgstr "Информации"
+
+#: 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>Tools - Options - 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 color values of the 16 basic colors are as follows:"
+
+#: 00000003.xhp#par_id3153091.3.help.text
+msgid "<emph>Color Value</emph>"
+msgstr "<emph>Бредност на боја</emph>"
+
+#: 00000003.xhp#par_id3154319.4.help.text
+msgid "<emph>Color Name</emph>"
+msgstr "<emph>Име на боја</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 "Црна"
+
+#: 00000003.xhp#par_id3154942.7.help.text
+msgid "128"
+msgstr "128"
+
+#: 00000003.xhp#par_id3154731.8.help.text
+msgid "Blue"
+msgstr "Сина"
+
+#: 00000003.xhp#par_id3145645.9.help.text
+msgid "32768"
+msgstr "32768"
+
+#: 00000003.xhp#par_id3149400.10.help.text
+msgid "Green"
+msgstr "Зелена"
+
+#: 00000003.xhp#par_id3150753.11.help.text
+msgid "32896"
+msgstr "32896"
+
+#: 00000003.xhp#par_id3153765.12.help.text
+msgid "Cyan"
+msgstr "Сино-зелена"
+
+#: 00000003.xhp#par_id3154756.13.help.text
+msgid "8388608"
+msgstr "8388608"
+
+#: 00000003.xhp#par_id3159266.14.help.text
+msgid "Red"
+msgstr "Црвена"
+
+#: 00000003.xhp#par_id3163807.15.help.text
+msgid "8388736"
+msgstr "8388736"
+
+#: 00000003.xhp#par_id3145150.16.help.text
+msgid "Magenta"
+msgstr "Пурпурна"
+
+#: 00000003.xhp#par_id3147002.17.help.text
+msgid "8421376"
+msgstr "8421376"
+
+#: 00000003.xhp#par_id3152778.18.help.text
+msgid "Yellow"
+msgstr "Жолта"
+
+#: 00000003.xhp#par_id3150088.19.help.text
+msgid "8421504"
+msgstr "8421504"
+
+#: 00000003.xhp#par_id3159239.20.help.text
+msgid "White"
+msgstr "Бела"
+
+#: 00000003.xhp#par_id3150206.21.help.text
+msgid "12632256"
+msgstr "12632256"
+
+#: 00000003.xhp#par_id3149817.22.help.text
+msgid "Gray"
+msgstr "Сива"
+
+#: 00000003.xhp#par_id3150363.23.help.text
+msgid "255"
+msgstr "255"
+
+#: 00000003.xhp#par_id3154576.24.help.text
+msgid "Light blue"
+msgstr "Светлосина"
+
+#: 00000003.xhp#par_id3150367.25.help.text
+msgid "65280"
+msgstr "65280"
+
+#: 00000003.xhp#par_id3150202.26.help.text
+msgid "Light green"
+msgstr "Светлозелена"
+
+#: 00000003.xhp#par_id3154487.27.help.text
+msgid "65535"
+msgstr "65535"
+
+#: 00000003.xhp#par_id3151332.28.help.text
+msgid "Light cyan"
+msgstr "Светла сино-зелена"
+
+#: 00000003.xhp#par_id3148702.29.help.text
+msgid "16711680"
+msgstr "16711680"
+
+#: 00000003.xhp#par_id3153067.30.help.text
+msgid "Light red"
+msgstr "Светлоцрвена"
+
+#: 00000003.xhp#par_id3153912.31.help.text
+msgid "16711935"
+msgstr "16711935"
+
+#: 00000003.xhp#par_id3159097.32.help.text
+msgid "Light magenta"
+msgstr "Светла пурпурна"
+
+#: 00000003.xhp#par_id3155266.33.help.text
+msgid "16776960"
+msgstr "16776960"
+
+#: 00000003.xhp#par_id3157978.34.help.text
+msgid "Light yellow"
+msgstr "Светло жолта"
+
+#: 00000003.xhp#par_id3153286.35.help.text
+msgid "16777215"
+msgstr "16777215"
+
+#: 00000003.xhp#par_id3151302.36.help.text
+msgid "Transparent white"
+msgstr "Проѕирна бела"
+
+#: 00000003.xhp#hd_id3152869.37.help.text
+#, fuzzy
+msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgstr "<variable id=\"errorcode\">Error Codes </variable>"
+
+#: 00000003.xhp#par_id315509599.help.text
+#, fuzzy
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr "<variable id=\"err18\">18 User interrupt occurred </variable>"
+
+#: 00000003.xhp#par_id3155095.38.help.text
+#, fuzzy
+msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgstr "<variable id=\"err2\">2 Unspecified syntax error </variable>"
+
+#: 00000003.xhp#par_id3149126.39.help.text
+#, fuzzy
+msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
+msgstr "<variable id=\"err3\">3 Return without Gosub </variable>"
+
+#: 00000003.xhp#par_id3153976.40.help.text
+#, fuzzy
+msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgstr "<variable id=\"err14\">14 Invalid parameter </variable>"
+
+#: 00000003.xhp#par_id3150891.41.help.text
+#, fuzzy
+msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgstr "<variable id=\"err5\">5 Invalid procedure call </variable>"
+
+#: 00000003.xhp#par_id3159227.42.help.text
+#, fuzzy
+msgid "<variable id=\"err6\">6 Overflow</variable>"
+msgstr "<variable id=\"err6\">6 Overflow </variable>"
+
+#: 00000003.xhp#par_id3154649.43.help.text
+#, fuzzy
+msgid "<variable id=\"err7\">7 Not enough memory</variable>"
+msgstr "<variable id=\"err7\">7 Out of memory </variable>"
+
+#: 00000003.xhp#par_id3150050.44.help.text
+#, fuzzy
+msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgstr "<variable id=\"err8\">8 Array already dimensioned </variable>"
+
+#: 00000003.xhp#par_id3148900.45.help.text
+#, fuzzy
+msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
+msgstr "<variable id=\"err9\">9 Subscript out of range </variable>"
+
+#: 00000003.xhp#par_id3153806.46.help.text
+#, fuzzy
+msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
+msgstr "<variable id=\"err10\">10 Duplicate definition </variable>"
+
+#: 00000003.xhp#par_id3146963.47.help.text
+#, fuzzy
+msgid "<variable id=\"err11\">11 Division by zero</variable>"
+msgstr "<variable id=\"err11\">11 Division by zero </variable>"
+
+#: 00000003.xhp#par_id3153013.48.help.text
+#, fuzzy
+msgid "<variable id=\"err12\">12 Variable not defined</variable>"
+msgstr "<variable id=\"err12\">12 Variable undefined </variable>"
+
+#: 00000003.xhp#par_id3155593.49.help.text
+#, fuzzy
+msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
+msgstr "<variable id=\"err13\">13 Type mismatch </variable>"
+
+#: 00000003.xhp#par_id3151197.50.help.text
+#, fuzzy
+msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
+msgstr "<variable id=\"err14\">14 Invalid parameter </variable>"
+
+#: 00000003.xhp#par_id3154710.51.help.text
+#, fuzzy
+msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
+msgstr "<variable id=\"err18\">18 User interrupt occurred </variable>"
+
+#: 00000003.xhp#par_id3147504.52.help.text
+#, fuzzy
+msgid "<variable id=\"err20\">20 Resume without error</variable>"
+msgstr "<variable id=\"err20\">20 Resume without error </variable>"
+
+#: 00000003.xhp#par_id3145319.53.help.text
+#, fuzzy
+msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
+msgstr "<variable id=\"err28\">28 Out of stack space </variable>"
+
+#: 00000003.xhp#par_id3146110.54.help.text
+#, fuzzy
+msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
+msgstr "<variable id=\"err35\">35 Sub or Function not defined </variable>"
+
+#: 00000003.xhp#par_id3147246.55.help.text
+#, fuzzy
+msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
+msgstr "<variable id=\"err48\">48 Error in loading DLL </variable>"
+
+#: 00000003.xhp#par_id3146101.56.help.text
+#, fuzzy
+msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
+msgstr "<variable id=\"err49\">49 Bad DLL calling convention </variable>"
+
+#: 00000003.xhp#par_id3153957.57.help.text
+#, fuzzy
+msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgstr "<variable id=\"err51\">51 Internal error </variable>"
+
+#: 00000003.xhp#par_id3154404.58.help.text
+#, fuzzy
+msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgstr "<variable id=\"err52\">52 Bad file name or number </variable>"
+
+#: 00000003.xhp#par_id3151338.59.help.text
+#, fuzzy
+msgid "<variable id=\"err53\">53 File not found</variable>"
+msgstr "<variable id=\"err53\">53 File not found </variable>"
+
+#: 00000003.xhp#par_id3147298.60.help.text
+#, fuzzy
+msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgstr "<variable id=\"err54\">54 Bad file mode </variable>"
+
+#: 00000003.xhp#par_id3148747.61.help.text
+#, fuzzy
+msgid "<variable id=\"err55\">55 File already open</variable>"
+msgstr "<variable id=\"err55\">55 File already open </variable>"
+
+#: 00000003.xhp#par_id3145233.62.help.text
+#, fuzzy
+msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgstr "<variable id=\"err57\">57 Device I/O error </variable>"
+
+#: 00000003.xhp#par_id3156399.63.help.text
+#, fuzzy
+msgid "<variable id=\"err58\">58 File already exists</variable>"
+msgstr "<variable id=\"err58\">58 File already exists </variable>"
+
+#: 00000003.xhp#par_id3149324.64.help.text
+#, fuzzy
+msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
+msgstr "<variable id=\"err59\">59 Bad record length </variable>"
+
+#: 00000003.xhp#par_id3147409.65.help.text
+#, fuzzy
+msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
+msgstr "<variable id=\"err61\">61 Disk full </variable>"
+
+#: 00000003.xhp#par_id3149146.66.help.text
+#, fuzzy
+msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
+msgstr "<variable id=\"err67\">67 Too many files </variable>"
+
+#: 00000003.xhp#par_id3150456.67.help.text
+#, fuzzy
+msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr "<variable id=\"err63\">63 Bad record number </variable>"
+
+#: 00000003.xhp#par_id3146883.68.help.text
+#, fuzzy
+msgid "<variable id=\"err67\">67 Too many files</variable>"
+msgstr "<variable id=\"err67\">67 Too many files </variable>"
+
+#: 00000003.xhp#par_id3146818.69.help.text
+#, fuzzy
+msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgstr "<variable id=\"err68\">68 Device not available </variable>"
+
+#: 00000003.xhp#par_id3145225.70.help.text
+#, fuzzy
+msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgstr "<variable id=\"err70\">70 Permission denied </variable>"
+
+#: 00000003.xhp#par_id3150372.71.help.text
+#, fuzzy
+msgid "<variable id=\"err71\">71 Disk not ready</variable>"
+msgstr "<variable id=\"err71\">71 Disk not ready </variable>"
+
+#: 00000003.xhp#par_id3148894.72.help.text
+#, fuzzy
+msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgstr "<variable id=\"err73\">73 Feature not implemented </variable>"
+
+#: 00000003.xhp#par_id3152981.73.help.text
+#, fuzzy
+msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgstr "<variable id=\"err74\">74 No rename with different drive </variable>"
+
+#: 00000003.xhp#par_id3149355.74.help.text
+#, fuzzy
+msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgstr "<variable id=\"err75\">75 Path/file access error </variable>"
+
+#: 00000003.xhp#par_id3150477.75.help.text
+#, fuzzy
+msgid "<variable id=\"err76\">76 Path not found</variable>"
+msgstr "<variable id=\"err76\">76 Path not found </variable>"
+
+#: 00000003.xhp#par_id3154678.76.help.text
+#, fuzzy
+msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgstr "<variable id=\"err91\">91 Object variable not set </variable>"
+
+#: 00000003.xhp#par_id3149890.77.help.text
+#, fuzzy
+msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgstr "<variable id=\"err93\">93 Invalid pattern string </variable>"
+
+#: 00000003.xhp#par_id3146942.78.help.text
+#, fuzzy
+msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgstr "<variable id=\"err4\">4 Redo from start </variable>"
+
+#: 00000003.xhp#par_id31469429.help.text
+#, fuzzy
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr "<variable id=\"err57\">57 Device I/O error </variable>"
+
+#: 00000003.xhp#par_id31469428.help.text
+#, fuzzy
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr "<variable id=\"err20\">20 Resume without error </variable>"
+
+#: 00000003.xhp#par_id31469427.help.text
+#, fuzzy
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr "<variable id=\"err68\">68 Device not available </variable>"
+
+#: 00000003.xhp#par_id31469426.help.text
+#, fuzzy
+msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
+msgstr "<variable id=\"err10\">10 Duplicate definition </variable>"
+
+#: 00000003.xhp#par_id31469425.help.text
+#, fuzzy
+msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
+msgstr "<variable id=\"err425\">425 Invalid use of object </variable>"
+
+#: 00000003.xhp#par_id31469424.help.text
+#, fuzzy
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr "<variable id=\"err28\">28 Out of stack space </variable>"
+
+#: 00000003.xhp#par_id31469423.help.text
+#, fuzzy
+msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
+msgstr "<variable id=\"err451\">451 Object not a collection </variable>"
+
+#: 00000003.xhp#par_id31469422.help.text
+#, fuzzy
+msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgstr "<variable id=\"err28\">28 Out of stack space </variable>"
+
+#: 00000003.xhp#par_id31469421.help.text
+#, fuzzy
+msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
+msgstr "<variable id=\"err8\">8 Array already dimensioned </variable>"
+
+#: 00000003.xhp#par_id31469420.help.text
+#, fuzzy
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr "<variable id=\"err51\">51 Internal error </variable>"
+
+#: 00000003.xhp#par_id31469419.help.text
+#, fuzzy
+msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgstr "<variable id=\"err3\">3 Return without Gosub </variable>"
+
+#: 00000003.xhp#par_id31469418.help.text
+#, fuzzy
+msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgstr "<variable id=\"err10\">10 Duplicate definition </variable>"
+
+#: 00000003.xhp#par_id31469417.help.text
+#, fuzzy
+msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgstr "<variable id=\"err93\">93 Invalid pattern string </variable>"
+
+#: 00000003.xhp#par_id31469416.help.text
+#, fuzzy
+msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
+msgstr "<variable id=\"err18\">18 User interrupt occurred </variable>"
+
+#: 00000003.xhp#par_id31469415.help.text
+#, fuzzy
+msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
+msgstr "<variable id=\"err423\">423 Property or method not found </variable>"
+
+#: 00000003.xhp#par_id31469414.help.text
+#, fuzzy
+msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgstr "<variable id=\"err460\">460 Invalid clipboard format </variable>"
+
+#: 00000003.xhp#par_id31469413.help.text
+#, fuzzy
+msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgstr "<variable id=\"err55\">55 File already open </variable>"
+
+#: 00000003.xhp#par_id31469412.help.text
+#, fuzzy
+msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgstr "<variable id=\"err76\">76 Path not found </variable>"
+
+#: 00000003.xhp#par_id31469411.help.text
+#, fuzzy
+msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
+msgstr "<variable id=\"err71\">71 Disk not ready </variable>"
+
+#: 00000003.xhp#par_id31469410.help.text
+#, fuzzy
+msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgstr "<variable id=\"err424\">424 Object required </variable>"
+
+#: 00000003.xhp#par_id3150028.79.help.text
+#, fuzzy
+msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgstr "<variable id=\"err323\">323 Can't load module </variable>"
+
+#: 00000003.xhp#par_id3148434.80.help.text
+#, fuzzy
+msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgstr "<variable id=\"err341\">341 Invalid object index </variable>"
+
+#: 00000003.xhp#par_id3143219.81.help.text
+#, fuzzy
+msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgstr "<variable id=\"err68\">68 Device not available </variable>"
+
+#: 00000003.xhp#par_id3144744.82.help.text
+#, fuzzy
+msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgstr "<variable id=\"err380\">380 Bad property value </variable>"
+
+#: 00000003.xhp#par_id3147420.83.help.text
+#, fuzzy
+msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgstr "<variable id=\"err382\">382 Property is read only </variable>"
+
+#: 00000003.xhp#par_id3147472.84.help.text
+#, fuzzy
+msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgstr "<variable id=\"err394\">394 Property is write only </variable>"
+
+#: 00000003.xhp#par_id3148583.85.help.text
+#, fuzzy
+msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
+msgstr "<variable id=\"err420\">420 Invalid object reference </variable>"
+
+#: 00000003.xhp#par_id3153329.86.help.text
+#, fuzzy
+msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgstr "<variable id=\"err423\">423 Property or method not found </variable>"
+
+#: 00000003.xhp#par_id3148738.87.help.text
+#, fuzzy
+msgid "<variable id=\"err424\">424 Object required</variable>"
+msgstr "<variable id=\"err424\">424 Object required </variable>"
+
+#: 00000003.xhp#par_id3159084.88.help.text
+#, fuzzy
+msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
+msgstr "<variable id=\"err425\">425 Invalid use of object </variable>"
+
+#: 00000003.xhp#par_id3146806.89.help.text
+#, fuzzy
+msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
+msgstr "<variable id=\"err440\">440 OLE automation error </variable>"
+
+#: 00000003.xhp#par_id3146130.90.help.text
+#, fuzzy
+msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
+msgstr "<variable id=\"err423\">423 Property or method not found </variable>"
+
+#: 00000003.xhp#par_id3154374.91.help.text
+#, fuzzy
+msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgstr "<variable id=\"err440\">440 OLE automation error </variable>"
+
+#: 00000003.xhp#par_id3149685.92.help.text
+#, fuzzy
+msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgstr "<variable id=\"err445\">445 Object doesn't support this action </variable>"
+
+#: 00000003.xhp#par_id3150282.93.help.text
+#, fuzzy
+msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgstr "<variable id=\"err448\">448 Named argument not found </variable>"
+
+#: 00000003.xhp#par_id3150142.94.help.text
+#, fuzzy
+msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
+msgstr "<variable id=\"err445\">445 Object doesn't support this action </variable>"
+
+#: 00000003.xhp#par_id3152771.95.help.text
+#, fuzzy
+msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgstr "<variable id=\"err448\">448 Named argument not found </variable>"
+
+#: 00000003.xhp#par_id3145145.96.help.text
+#, fuzzy
+msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
+msgstr "<variable id=\"err449\">449 Argument not optional </variable>"
+
+#: 00000003.xhp#par_id3154399.97.help.text
+#, fuzzy
+msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgstr "<variable id=\"err450\">450 Wrong number of arguments </variable>"
+
+#: 00000003.xhp#par_id3146137.98.help.text
+#, fuzzy
+msgid "<variable id=\"err451\">451 Object is not a list</variable>"
+msgstr "<variable id=\"err451\">451 Object not a collection </variable>"
+
+#: 00000003.xhp#par_id3149507.99.help.text
+#, fuzzy
+msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgstr "<variable id=\"err452\">452 Invalid ordinal </variable>"
+
+#: 00000003.xhp#par_id3154566.100.help.text
+#, fuzzy
+msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgstr "<variable id=\"err453\">453 Specified DLL function not found </variable>"
+
+#: 00000003.xhp#par_id3145595.101.help.text
+#, fuzzy
+msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgstr "<variable id=\"err460\">460 Invalid clipboard format </variable>"
+
+#: 00000003.xhp#par_id31455951.help.text
+#, fuzzy
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr "<variable id=\"err51\">51 Internal error </variable>"
+
+#: 00000003.xhp#par_id31455952.help.text
+#, fuzzy
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr "<variable id=\"err424\">424 Object required </variable>"
+
+#: 00000003.xhp#par_id31455953.help.text
+#, fuzzy
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr "<variable id=\"err53\">53 File not found </variable>"
+
+#: 00000003.xhp#par_id31455954.help.text
+#, fuzzy
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr "<variable id=\"err12\">12 Variable undefined </variable>"
+
+#: 00000003.xhp#par_id31455955.help.text
+#, fuzzy
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr "<variable id=\"err55\">55 File already open </variable>"
+
+#: 00000003.xhp#par_id31455956.help.text
+#, fuzzy
+msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgstr "<variable id=\"err53\">53 File not found </variable>"
+
+#: 00000003.xhp#par_id31455957.help.text
+#, fuzzy
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr "<variable id=\"err55\">55 File already open </variable>"
+
+#: 00000003.xhp#par_id31455958.help.text
+#, fuzzy
+msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
+msgstr "<variable id=\"err35\">35 Sub or Function not defined </variable>"
+
+#: 00000003.xhp#par_id31455959.help.text
+#, fuzzy
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr "<variable id=\"err55\">55 File already open </variable>"
+
+#: 00000003.xhp#par_id31455960.help.text
+#, fuzzy
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr "<variable id=\"err53\">53 File not found </variable>"
+
+#: 00000003.xhp#par_id31455961.help.text
+#, fuzzy
+msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
+msgstr "<variable id=\"err76\">76 Path not found </variable>"
+
+#: 00000003.xhp#par_id31455962.help.text
+#, fuzzy
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr "<variable id=\"err76\">76 Path not found </variable>"
+
+#: 00000003.xhp#par_id31455963.help.text
+#, fuzzy
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr "<variable id=\"err12\">12 Variable undefined </variable>"
+
+#: 00000003.xhp#par_id31455964.help.text
+#, fuzzy
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr "<variable id=\"err6\">6 Overflow </variable>"
+
+#: 00000003.xhp#par_id31455965.help.text
+#, fuzzy
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr "<variable id=\"err53\">53 File not found </variable>"
+
+#: 00000003.xhp#par_id31455966.help.text
+#, fuzzy
+msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
+msgstr "<variable id=\"err62\">62 Input past end of file </variable>"
+
+#: 00000003.xhp#par_id31455967.help.text
+#, fuzzy
+msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
+msgstr "<variable id=\"err76\">76 Path not found </variable>"
+
+#: 00000003.xhp#par_id31455968.help.text
+#, fuzzy
+msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
+msgstr "<variable id=\"err8\">8 Array already dimensioned </variable>"
+
+#: 00000003.xhp#par_id31455969.help.text
+#, fuzzy
+msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
+msgstr "<variable id=\"err76\">76 Path not found </variable>"
+
+#: 00000003.xhp#par_id31455970.help.text
+#, fuzzy
+msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
+msgstr "<variable id=\"err93\">93 Invalid pattern string </variable>"
+
+#: 00000003.xhp#par_id31455971.help.text
+#, fuzzy
+msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
+msgstr "<variable id=\"err8\">8 Array already dimensioned </variable>"
+
+#: 00000003.xhp#par_id31455972.help.text
+#, fuzzy
+msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
+msgstr "<variable id=\"err20\">20 Resume without error </variable>"
+
+#: 00000003.xhp#par_id31455973.help.text
+#, fuzzy
+msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
+msgstr "<variable id=\"err5\">5 Invalid procedure call </variable>"
+
+#: 00000003.xhp#par_id31455974.help.text
+#, fuzzy
+msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
+msgstr "<variable id=\"err94\">94 Invalid use of Null </variable>"
+
+#: 00000003.xhp#par_id31455975.help.text
+#, fuzzy
+msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
+msgstr "<variable id=\"err53\">53 File not found </variable>"
+
+#: 00000003.xhp#par_id31455976.help.text
+#, fuzzy
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr "<variable id=\"err76\">76 Path not found </variable>"
+
+#: 00000003.xhp#par_id31455977.help.text
+#, fuzzy
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr "<variable id=\"err67\">67 Too many files </variable>"
+
+#: 00000003.xhp#par_id31455978.help.text
+#, fuzzy
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr "<variable id=\"err76\">76 Path not found </variable>"
+
+#: 00000003.xhp#par_id31455979.help.text
+#, fuzzy
+msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgstr "<variable id=\"err71\">71 Disk not ready </variable>"
+
+#: 00000003.xhp#par_id31455980.help.text
+#, fuzzy
+msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgstr "<variable id=\"err91\">91 Object variable not set </variable>"
+
+#: 00000003.xhp#par_id31455981.help.text
+#, fuzzy
+msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgstr "<variable id=\"err438\">438 Object doesn't support method </variable>"
+
+#: 00000003.xhp#par_id31455982.help.text
+#, fuzzy
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr "<variable id=\"err10\">10 Duplicate definition </variable>"
+
+#: 00000003.xhp#par_id31455983.help.text
+#, fuzzy
+msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgstr "<variable id=\"err450\">450 Wrong number of arguments </variable>"
+
+#: 00000003.xhp#par_id31455984.help.text
+#, fuzzy
+msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgstr "<variable id=\"err48\">48 Error in loading DLL </variable>"
+
+#: 00000003.xhp#par_id31455985.help.text
+#, fuzzy
+msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgstr "<variable id=\"err51\">51 Internal error </variable>"
+
+#: 00000003.xhp#par_id31455986.help.text
+#, fuzzy
+msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgstr "<variable id=\"err12\">12 Variable undefined </variable>"
+
+#: 05060700.xhp#tit.help.text
+msgid "Macro"
+msgstr "Макро"
+
+#: 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> dialog, or in the <emph>Assign Macro</emph> dialog."
+
+#: 05060700.xhp#hd_id3150503.3.help.text
+msgctxt "05060700.xhp#hd_id3150503.3.help.text"
+msgid "Event"
+msgstr "Настан"
+
+#: 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 "Настан"
+
+#: 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-објект"
+
+#: 05060700.xhp#par_id3148451.27.help.text
+msgctxt "05060700.xhp#par_id3148451.27.help.text"
+msgid "Graphics"
+msgstr "Графика"
+
+#: 05060700.xhp#par_id3125863.28.help.text
+msgid "Frame"
+msgstr "Рамка"
+
+#: 05060700.xhp#par_id3154216.29.help.text
+msgid "AutoText"
+msgstr "Автоматски текст"
+
+#: 05060700.xhp#par_id3145785.30.help.text
+msgid "ImageMap area"
+msgstr "ImageMap area"
+
+#: 05060700.xhp#par_id3153138.31.help.text
+msgid "Hyperlink"
+msgstr "Хиперврска"
+
+#: 05060700.xhp#par_id3155306.32.help.text
+msgid "Click object"
+msgstr "Кликни објект"
+
+#: 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 "Глувчето над објектот"
+
+#: 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 "Вчитувањето на графиката е завршено"
+
+#: 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 "Погрешно вчитување на графиката"
+
+#: 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 "Промени големина на рамка"
+
+#: 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 "Премести рамка"
+
+#: 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 "Пред вметнување автом. текст"
+
+#: 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 "По вметнување автом. текст"
+
+#: 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 "Макроа"
+
+#: 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 "Категорија"
+
+#: 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 "Име на макро"
+
+#: 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 "Додели"
+
+#: 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 "Отстрани"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03090408.xhp#par_id3156023.4.help.text
+msgctxt "03090408.xhp#par_id3156023.4.help.text"
+msgid "Stop"
+msgstr "Запри"
+
+#: 03090408.xhp#hd_id3156344.5.help.text
+msgctxt "03090408.xhp#hd_id3156344.5.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Запри"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 03030106.xhp#par_id3147229.4.help.text
+msgid "Year (Number)"
+msgstr "Година (број)"
+
+#: 03030106.xhp#hd_id3154685.5.help.text
+msgctxt "03030106.xhp#hd_id3154685.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03030106.xhp#par_id3153970.6.help.text
+msgctxt "03030106.xhp#par_id3153970.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03030106.xhp#hd_id3150440.7.help.text
+msgctxt "03030106.xhp#hd_id3150440.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Врати ја вредноста 1994"
+
+#: 03030106.xhp#hd_id3146985.12.help.text
+msgctxt "03030106.xhp#hd_id3146985.12.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Функции за влез во екран"
+
+#: 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 dialogs are organized 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 dialogs"
+
+#: 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 dialogs:"
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "Математички оператори"
+
+#: 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 "Црвена функција [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 color code."
+
+#: 03010303.xhp#hd_id3148799.3.help.text
+msgctxt "03010303.xhp#hd_id3148799.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03010303.xhp#par_id3145173.6.help.text
+msgctxt "03010303.xhp#par_id3145173.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03010303.xhp#hd_id3154685.7.help.text
+msgctxt "03010303.xhp#hd_id3154685.7.help.text"
+msgid "Parameter:"
+msgstr "Параметар:"
+
+#: 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\">color 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 "Пример"
+
+#: 03010303.xhp#par_id3145365.10.help.text
+msgctxt "03010303.xhp#par_id3145365.10.help.text"
+msgid "Sub ExampleColor"
+msgstr "Sub ExampleColor"
+
+#: 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 color \" & 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= \" & црвена(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= \" & зелена(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= \" & сина(lVar) & Chr(13) , 64,\"colors\""
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Променливи"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120313.xhp#par_id3150669.6.help.text
+msgctxt "03120313.xhp#par_id3150669.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120313.xhp#hd_id3143270.7.help.text
+msgctxt "03120313.xhp#hd_id3143270.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 initialization 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 initialized"
+
+#: 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 "Крај на функциј"
+
+#: 03070500.xhp#tit.help.text
+msgid "\"^\" Operator [Runtime]"
+msgstr "\"^\" Оператор [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 "Подигни два броја на степен"
+
+#: 03070500.xhp#hd_id3147264.3.help.text
+msgctxt "03070500.xhp#hd_id3147264.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 03070500.xhp#par_id3149656.4.help.text
+msgid "Result = Expression ^ Exponent"
+msgstr "Резултат = израз ^ израз"
+
+#: 03070500.xhp#hd_id3151211.5.help.text
+msgctxt "03070500.xhp#hd_id3151211.5.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати ( 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 "Синтакса"
+
+#: 03080102.xhp#par_id3145172.6.help.text
+msgid "Cos (Number)"
+msgstr "Cos (број)"
+
+#: 03080102.xhp#hd_id3156214.7.help.text
+msgctxt "03080102.xhp#hd_id3156214.7.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080102.xhp#par_id3150449.8.help.text
+msgctxt "03080102.xhp#par_id3150449.8.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080102.xhp#hd_id3153969.9.help.text
+msgctxt "03080102.xhp#hd_id3153969.9.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "степен=(рдијан*180)/пи"
+
+#: 03080102.xhp#par_id3146985.13.help.text
+msgctxt "03080102.xhp#par_id3146985.13.help.text"
+msgid "radian=(degree*pi)/180"
+msgstr "радијан=(степен*пи)/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 "Пример"
+
+#: 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 "Нула функција [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 contains data."
+
+#: 03102600.xhp#hd_id3150670.3.help.text
+msgctxt "03102600.xhp#hd_id3150670.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 03102600.xhp#par_id3150984.4.help.text
+msgid "IsNull (Var)"
+msgstr "Е нула (Var)"
+
+#: 03102600.xhp#hd_id3149514.5.help.text
+msgctxt "03102600.xhp#hd_id3149514.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030202.xhp#par_id3150449.6.help.text
+msgctxt "03030202.xhp#par_id3150449.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03030202.xhp#hd_id3153193.7.help.text
+msgctxt "03030202.xhp#hd_id3153193.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Врати ја вредноста 30"
+
+#: 03030202.xhp#hd_id3150010.12.help.text
+msgctxt "03030202.xhp#hd_id3150010.12.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120403.xhp#par_id3156152.6.help.text
+msgctxt "03120403.xhp#par_id3156152.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03120403.xhp#hd_id3150984.7.help.text
+msgctxt "03120403.xhp#hd_id3150984.7.help.text"
+msgid "Parameter:"
+msgstr "Параметар:"
+
+#: 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 "Врати вредност"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030110.xhp#par_idN10622.help.text
+msgctxt "03030110.xhp#par_idN10622.help.text"
+msgid "A Variant containing a date."
+msgstr "Variant што содржи датум."
+
+#: 03030110.xhp#par_idN10625.help.text
+msgctxt "03030110.xhp#par_idN10625.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03030206.xhp#par_id3156424.6.help.text
+msgctxt "03030206.xhp#par_id3156424.6.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 03030206.xhp#hd_id3145172.7.help.text
+msgctxt "03030206.xhp#hd_id3145172.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03130800.xhp#par_id3148473.7.help.text
+msgctxt "03130800.xhp#par_id3148473.7.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03130800.xhp#hd_id3145609.8.help.text
+msgctxt "03130800.xhp#hd_id3145609.8.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати текстови"
+
+#: 03020204.xhp#par_id3163806.29.help.text
+msgctxt "03020204.xhp#par_id3163806.29.help.text"
+msgid "Close #iNumber"
+msgstr "Затвори #i број"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати текстови"
+
+#: 03020201.xhp#par_id3153764.28.help.text
+msgctxt "03020201.xhp#par_id3153764.28.help.text"
+msgid "Close #iNumber"
+msgstr "Затвори #i број"
+
+#: 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 "Затвори #i број"
+
+#: 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 "Отварање и затварање датотеки"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Примери:"
+
+#: 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 dialog:"
+
+#: 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 "Форматирај функција [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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03120301.xhp#par_id3148474.7.help.text
+msgctxt "03120301.xhp#par_id3148474.7.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03120301.xhp#hd_id3159176.8.help.text
+msgctxt "03120301.xhp#hd_id3159176.8.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Форматирање кодови"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметар"
+
+#: 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 minimized 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 maximized 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 "Minimized 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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> варијанта"
+
+#: 03102000.xhp#hd_id3151041.10.help.text
+msgctxt "03102000.xhp#hd_id3151041.10.help.text"
+msgid "Example:"
+msgstr "Пример"
+
+#: 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 "Основниот уредник"
+
+#: 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>Basic;loading and saving source 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\">Option </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 \"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 ""
+
+#: 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 "Листа на библиотеката"
+
+#: 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 "Каталог со објекти"
+
+#: 01030200.xhp#hd_id3148647.15.help.text
+msgid "Saving and Loading Basic Source Code"
+msgstr "Зачувување и вчитување основен изворен код"
+
+#: 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 "Не можете да го зачувате основниот диалог во текстуална датотека."
+
+#: 01030200.xhp#hd_id3149403.17.help.text
+msgid "Saving Source Code to a Text File"
+msgstr "Зачувување на изворниот код во текстуална датотека"
+
+#: 01030200.xhp#par_id3150327.18.help.text
+msgid "Select the module that you want to export as text from the object catalog."
+msgstr "Избери модул кој што сакаш да го изнесеш како текст од каталогот со објекти."
+
+#: 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 "Вчитување на извршен код од текстуална датотека"
+
+#: 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 catalog."
+
+#: 01030200.xhp#par_id3145230.23.help.text
+msgid "Position the cursor where you want to insert the program code."
+msgstr "Го позиционира покажувачот каде што сакаш бметнеш програмскиот код. "
+
+#: 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 "Синтакса"
+
+#: 03080202.xhp#par_id3154760.4.help.text
+msgid "Log (Number)"
+msgstr "Log (број)"
+
+#: 03080202.xhp#hd_id3149457.5.help.text
+msgctxt "03080202.xhp#hd_id3149457.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03080202.xhp#par_id3150791.6.help.text
+msgctxt "03080202.xhp#par_id3150791.6.help.text"
+msgid "Double"
+msgstr "Двојно"
+
+#: 03080202.xhp#hd_id3151211.7.help.text
+msgctxt "03080202.xhp#hd_id3151211.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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> тип променлива"
+
+#: 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> датум променлива"
+
+#: 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 нумериран од -15 до 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 "Пример"
+
+#: 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 "За i преброј = 1 до 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 "Следно iПребројување"
+
+#: 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 "За i преброј = 1 до 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 "Следно iПребројување"
+
+#: 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 "Библиотеки , Модули и дијалози"
+
+#: 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 dialogs 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 "Библиотеки"
+
+#: 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 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."
+
+#: 01020500.xhp#par_id3151112.7.help.text
+msgid "A library can contain up to 16,000 modules."
+msgstr "Библиотеката може да содржи до 16,000 модули."
+
+#: 01020500.xhp#hd_id3149262.8.help.text
+msgctxt "01020500.xhp#hd_id3149262.8.help.text"
+msgid "Modules"
+msgstr "Модули"
+
+#: 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 "Дијалог на модули"
+
+#: 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 "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\"."
+
+#: 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 "Синтакса"
+
+#: 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 "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03103000.xhp#par_id3149670.6.help.text
+msgctxt "03103000.xhp#par_id3149670.6.help.text"
+msgid "Integer"
+msgstr "Цел број"
+
+#: 03103000.xhp#hd_id3154347.7.help.text
+msgctxt "03103000.xhp#hd_id3154347.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Печати LBound(sVar())"
+
+#: 03103000.xhp#par_id3153092.14.help.text
+msgctxt "03103000.xhp#par_id3153092.14.help.text"
+msgid "print UBound(sVar())"
+msgstr "Печати 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 "Користејќи процедури и функции"
+
+#: 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 "Програмски код"
+
+#: 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 "Подиме(вредност1,вредност2,...)"
+
+#: 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 "Програмски код"
+
+#: 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 "Крај на функциј"
+
+#: 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 "Доделување вредност на променлива или референца"
+
+#: 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 "Опсег на променливи"
+
+#: 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. This property is controlled in a variable declaration through key words in the <emph>Dim</emph> statement."
+
+#: 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 "DIM 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 "DIM 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 "DIM 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 "Променливата е само валидна во овој модул."
+
+#: 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 "Променливата е само валидна во овој модул."
+
+#: 01020300.xhp#hd_id5097506.help.text
+msgid "Example for private variables"
+msgstr ""
+
+#: 01020300.xhp#par_id8738975.help.text
+msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+msgstr ""
+
+#: 01020300.xhp#par_id146488.help.text
+msgid "REM ***** Module1 *****"
+msgstr ""
+
+#: 01020300.xhp#par_id2042298.help.text
+msgid "Private myText As String"
+msgstr ""
+
+#: 01020300.xhp#par_id2969756.help.text
+msgid "Sub initMyText"
+msgstr ""
+
+#: 01020300.xhp#par_id9475997.help.text
+msgid "myText = \"Hello\""
+msgstr ""
+
+#: 01020300.xhp#par_id6933500.help.text
+msgid "print \"in module1 : \", myText"
+msgstr ""
+
+#: 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 ""
+
+#: 01020300.xhp#par_id6969512.help.text
+#, fuzzy
+msgid "'Option Explicit"
+msgstr "Option Explicit"
+
+#: 01020300.xhp#par_id1196935.help.text
+msgid "Sub demoBug"
+msgstr ""
+
+#: 01020300.xhp#par_id1423993.help.text
+msgid "CompatibilityMode( true )"
+msgstr ""
+
+#: 01020300.xhp#par_id6308786.help.text
+msgid "initMyText"
+msgstr ""
+
+#: 01020300.xhp#par_id4104129.help.text
+msgid "' Now returns empty string"
+msgstr ""
+
+#: 01020300.xhp#par_id7906125.help.text
+msgid "' (or rises error for Option Explicit)"
+msgstr ""
+
+#: 01020300.xhp#par_id8055970.help.text
+msgid "print \"Now in module2 : \", myText"
+msgstr ""
+
+#: 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 "DIM 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 "Синтакса"
+
+#: 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 "Врати вредност:"
+
+#: 03020404.xhp#par_id3153193.6.help.text
+msgctxt "03020404.xhp#par_id3153193.6.help.text"
+msgid "String"
+msgstr "Низа"
+
+#: 03020404.xhp#hd_id3153770.7.help.text
+msgctxt "03020404.xhp#hd_id3153770.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 : Нормални даотеки."
+
+#: 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 "Пример"
+
+#: 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 "Направи"
+
+#: 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 "Крај ако"
+
+#: 03020404.xhp#par_idN10700.help.text
+msgctxt "03020404.xhp#par_idN10700.help.text"
+msgid "End If"
+msgstr "Крај ако"
+
+#: 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 функција [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 "Синтакса"
+
+#: 03100600.xhp#par_id3147573.4.help.text
+msgid "CLng (Expression)"
+msgstr "CLng (Израз)"
+
+#: 03100600.xhp#hd_id3145610.5.help.text
+msgctxt "03100600.xhp#hd_id3145610.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03100600.xhp#par_id3153897.6.help.text
+msgctxt "03100600.xhp#par_id3153897.6.help.text"
+msgid "Long"
+msgstr "Долга"
+
+#: 03100600.xhp#hd_id3154760.7.help.text
+msgctxt "03100600.xhp#hd_id3154760.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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 "Пример"
+
+#: 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 "Претварање низа или нумерички израз во тип бајт."
+
+#: 03120105.xhp#hd_id3149811.3.help.text
+msgctxt "03120105.xhp#hd_id3149811.3.help.text"
+msgid "Syntax:"
+msgstr "Синтакса"
+
+#: 03120105.xhp#par_id3147573.4.help.text
+msgid "Cbyte( expression )"
+msgstr "Cbyte( израз )"
+
+#: 03120105.xhp#hd_id3145315.5.help.text
+msgctxt "03120105.xhp#hd_id3145315.5.help.text"
+msgid "Return value:"
+msgstr "Врати вредност:"
+
+#: 03120105.xhp#par_id3148473.6.help.text
+msgid "Byte"
+msgstr "Бајт"
+
+#: 03120105.xhp#hd_id3147530.7.help.text
+msgctxt "03120105.xhp#hd_id3147530.7.help.text"
+msgid "Parameters:"
+msgstr "Параметри:"
+
+#: 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/mk/helpcontent2/source/text/sbasic/shared/01.po b/source/mk/helpcontent2/source/text/sbasic/shared/01.po
new file mode 100644
index 00000000000..d0975bf0cc2
--- /dev/null
+++ b/source/mk/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-06 00:22+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Макро"
+
+#: 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 "Макро"
+
+#: 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>dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
+
+#: 06130000.xhp#hd_id3154145.3.help.text
+msgid "Macro name"
+msgstr "Име на макро"
+
+#: 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 dialog.</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 "Додели"
+
+#: 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 Customize dialog, where you can assign the selected macro to a menu command, a shortcut key combination, or an event.</ahelp>"
+
+#: 06130000.xhp#hd_id3145799.17.help.text
+msgctxt "06130000.xhp#hd_id3145799.17.help.text"
+msgid "Edit"
+msgstr "Уреди"
+
+#: 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 module or 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>. You can also create a new module, select it 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 "Организатор"
+
+#: 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 Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
+
+#: 06130000.xhp#hd_id3166447.29.help.text
+msgid "Module/Dialog"
+msgstr "Модул/Дијалог"
+
+#: 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 dialogs for the current application and any open documents.</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 some macros between the application and any open documents."
+
+#: 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 dialog or a macro, 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 "Уреди"
+
+#: 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 dialog for editing.</ahelp>"
+
+#: 06130000.xhp#hd_id3151214.36.help.text
+msgctxt "06130000.xhp#hd_id3151214.36.help.text"
+msgid "New"
+msgstr "Нов"
+
+#: 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\">Opens the $[officename] Basic editor and 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\">Opens the $[officename] Basic editor and creates a new dialog.</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 for the current application and any open documents.</ahelp>"
+
+#: 06130000.xhp#hd_id3145259.44.help.text
+msgid "Location"
+msgstr "Application / Document"
+
+#: 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 application or the document containing the macro libraries that you want to organize.</ahelp>"
+
+#: 06130000.xhp#hd_id3148460.46.help.text
+msgid "Library"
+msgstr "Библиотека"
+
+#: 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 existing macro libraries for the current application and any open documents.</ahelp>"
+
+#: 06130000.xhp#hd_id3145134.48.help.text
+msgctxt "06130000.xhp#hd_id3145134.48.help.text"
+msgid "Edit"
+msgstr "Уреди"
+
+#: 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 "Лозинка"
+
+#: 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.</ahelp>"
+
+#: 06130000.xhp#hd_id3154372.52.help.text
+msgctxt "06130000.xhp#hd_id3154372.52.help.text"
+msgid "New"
+msgstr "Нов"
+
+#: 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 "Име"
+
+#: 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 library or module.</ahelp>"
+
+#: 06130000.xhp#hd_id3151183.54.help.text
+msgid "Append"
+msgstr "Додај"
+
+#: 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 "Смени лозинка"
+
+#: 06130100.xhp#hd_id3159399.1.help.text
+msgctxt "06130100.xhp#hd_id3159399.1.help.text"
+msgid "Change Password"
+msgstr "Смени лозинка"
+
+#: 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 "Лозинка"
+
+#: 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 "Лозинка"
+
+#: 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 "Повтори"
+
+#: 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>Basic; adding 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 "Опции"
+
+#: 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 "Замени ги постоечките библиотеки"
+
+#: 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/mk/helpcontent2/source/text/sbasic/shared/02.po b/source/mk/helpcontent2/source/text/sbasic/shared/02.po
new file mode 100644
index 00000000000..b6781cc69ff
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/sbasic/shared/02.po
@@ -0,0 +1,867 @@
+#. 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-12 22:37+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Овозможи набљудување"
+
+#: 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 "Овозможи набљудување"
+
+#: 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>Enable Watch</emph> icon."
+
+#: 11010000.xhp#tit.help.text
+msgid "Library"
+msgstr "Библиотека"
+
+#: 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\">Библиотека</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 "Запри"
+
+#: 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 Ctrl+Alt+S.</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 src=\"cmd/sc_basicstepover.png\" id=\"img_id3143267\"><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 "Запри"
+
+#: 11020000.xhp#tit.help.text
+msgctxt "11020000.xhp#tit.help.text"
+msgid "Compile"
+msgstr "Компилирај"
+
+#: 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 "Компилирај"
+
+#: 11150000.xhp#tit.help.text
+msgctxt "11150000.xhp#tit.help.text"
+msgid "Save Source As"
+msgstr "Зачувај извор како"
+
+#: 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\" visibility=\"visible\">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 src=\"cmd/sc_save.png\" id=\"img_id3149182\"><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 "Зачувај извор како"
+
+#: 11070000.xhp#tit.help.text
+msgctxt "11070000.xhp#tit.help.text"
+msgid "Breakpoint"
+msgstr "Преломна точка"
+
+#: 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_managebreakpoints.png\" width=\"4.23mm\" height=\"4.23mm\"><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 "Преломна точка"
+
+#: 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 dialog 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.2228inch\" height=\"0.2228inch\"><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 dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
+
+#: 11100000.xhp#tit.help.text
+msgctxt "11100000.xhp#tit.help.text"
+msgid "Macros"
+msgstr "Макроа"
+
+#: 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> dialog.</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 "Макроа"
+
+#: 11180000.xhp#tit.help.text
+msgctxt "11180000.xhp#tit.help.text"
+msgid "Import Dialog"
+msgstr ""
+
+#: 11180000.xhp#hd_id3156183.1.help.text
+#, fuzzy
+msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
+
+#: 11180000.xhp#par_id3152363.2.help.text
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11180000.xhp#par_id3143267.help.text
+#, fuzzy
+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_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><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 ""
+
+#: 11190000.xhp#tit.help.text
+msgctxt "11190000.xhp#tit.help.text"
+msgid "Export Dialog"
+msgstr ""
+
+#: 11190000.xhp#hd_id3156183.1.help.text
+#, fuzzy
+msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</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 ""
+
+#: 11190000.xhp#par_id3143267.help.text
+#, fuzzy
+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_managebreakpoints.png\" width=\"0.2228inch\" height=\"0.2228inch\"><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 ""
+
+#: 11060000.xhp#tit.help.text
+msgctxt "11060000.xhp#tit.help.text"
+msgid "Procedure Step"
+msgstr "Чекор на процедура"
+
+#: 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\" visibility=\"visible\">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/11060000.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 src=\"cmd/sc_basicstepover.png\" id=\"img_id3143267\"><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 "Чекор на процедура"
+
+#: 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\">Функција од еден чекор</link>"
+
+#: 20000000.xhp#tit.help.text
+msgctxt "20000000.xhp#tit.help.text"
+msgid "Insert Controls"
+msgstr "Вметни контроли"
+
+#: 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 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>selections; 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 "Вметни контроли"
+
+#: 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 dialog\">properties dialog</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 "Копче"
+
+#: 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 "Контрола на слика"
+
+#: 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 "Поле за означување"
+
+#: 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 "Копче за опција"
+
+#: 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 "Текстуално поле"
+
+#: 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 "Поле за листа"
+
+#: 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 "Комбинирана листа"
+
+#: 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 dialog.</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 dialog.</ahelp>"
+
+#: 20000000.xhp#hd_id3150313.28.help.text
+msgid "Group Box"
+msgstr "Поле за групирање"
+
+#: 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 dialog.</ahelp>"
+
+#: 20000000.xhp#hd_id3145654.33.help.text
+msgid "Horizontal Line"
+msgstr "Хоризонтална линија"
+
+#: 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 dialog.</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 dialog.</ahelp>"
+
+#: 20000000.xhp#hd_id3154540.37.help.text
+msgid "Date Field"
+msgstr "Поле за датум"
+
+#: 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 "Поле за време"
+
+#: 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 "Нумеричко поле"
+
+#: 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 "Поле за валута"
+
+#: 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 "Форматирано поле"
+
+#: 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 "Поле за шема"
+
+#: 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 character mask. The input mask determines which user data can be entered. The character mask determines the state of the masked field when the form is loaded."
+
+#: 20000000.xhp#hd_id3146815.50.help.text
+msgid "File Selection"
+msgstr "Избор на датотека"
+
+#: 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 allows you to select a file.</ahelp>"
+
+#: 20000000.xhp#hd_id3155912.52.help.text
+msgid "Select"
+msgstr "Избери"
+
+#: 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 dialog so that you can edit them.</ahelp>"
+
+#: 20000000.xhp#hd_id3154055.54.help.text
+msgid "Properties"
+msgstr "Својства"
+
+#: 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 dialog 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 "Активирај пробен режим"
+
+#: 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. Use the dialog closer to return to design mode.</ahelp>"
+
+#: 20000000.xhp#hd_id2954191.help.text
+msgid "Manage Language"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 20000000.xhp#hd_id11902.help.text
+msgid "Tree Control"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 11050000.xhp#tit.help.text
+msgctxt "11050000.xhp#tit.help.text"
+msgid "Single Step"
+msgstr "Еден чекор"
+
+#: 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\" visibility=\"visible\">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/11060000.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 src=\"cmd/sc_basicstepinto.png\" id=\"img_id3153345\"><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 "Еден чекор"
+
+#: 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\">Функција за чекор на процедура</link>"
+
+#: 11090000.xhp#tit.help.text
+msgctxt "11090000.xhp#tit.help.text"
+msgid "Object Catalog"
+msgstr "Каталог со објекти"
+
+#: 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> dialog, 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 dialog and then click the <emph>Show</emph> icon to load and display that module or dialog."
+
+#: 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 "Каталог со објекти"
+
+#: 11090000.xhp#hd_id3155388.4.help.text
+msgctxt "11090000.xhp#hd_id3155388.4.help.text"
+msgid "Show"
+msgstr "Покажи"
+
+#: 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 dialog 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 "Покажи"
+
+#: 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 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>"
+
+#: 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 "Модули"
+
+#: 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> dialog.</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 "Модули"
+
+#: 11160000.xhp#tit.help.text
+msgctxt "11160000.xhp#tit.help.text"
+msgid "Step Out"
+msgstr "Чекор надвор"
+
+#: 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 "Чекор надвор"
+
+#: 11030000.xhp#tit.help.text
+msgctxt "11030000.xhp#tit.help.text"
+msgid "Run"
+msgstr "Изврши"
+
+#: 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 "Изврши"
+
+#: 11140000.xhp#tit.help.text
+msgid "Insert Source Text"
+msgstr "Вметни изворен текст"
+
+#: 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\" visibility=\"visible\">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 src=\"cmd/sc_open.png\" id=\"img_id3147571\"><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/mk/helpcontent2/source/text/scalc.po b/source/mk/helpcontent2/source/text/scalc.po
new file mode 100644
index 00000000000..8076843fb9e
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/scalc.po
@@ -0,0 +1,763 @@
+#. 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-06 00:22+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: main0112.xhp#tit.help.text
+msgid "Data"
+msgstr "Податоци"
+
+#: 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\">Податоци</link>"
+
+#: main0112.xhp#par_id3147264.2.help.text
+#, fuzzy
+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 "<ahelp hid=\".\">Користете ги командите од менито <emph>Податоци </emph>за да уредувате податоци во тековниот лист. Можете да одредите опсези, да сортирате и филтрирате податоци, да пресметувате резултати и да го отворите пилотот за податоци.</ahelp>"
+
+#: 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\">Дефинирај опсег</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\">Избери опсег</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\">Подреди</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\">Потсуми</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\">Валидност</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\">Повеќекратни операции</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\">Текст во колони</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\">Обедини</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\">Освежи опсег</link>"
+
+#: main0101.xhp#tit.help.text
+msgid "File"
+msgstr "Датотека"
+
+#: 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\">Датотека</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=\".\">Овие команди се применуваат на тековниот документ, отворете нов документ или затворете ја апликацијата.</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\">Отвори</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\">Зачувај како</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\">Верзии</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\">Својства</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\">Печати</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\">Поставувања на печатач</link>"
+
+#: main0206.xhp#tit.help.text
+msgid "Formula Bar"
+msgstr "Алатник за формули"
+
+#: 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\">Алатник за формули</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\">Користете ја оваа лента за да внесувате формули.</ahelp>"
+
+#: main0104.xhp#tit.help.text
+msgid "Insert"
+msgstr "Вметнување"
+
+#: 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\">Вметнување</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=\".\">Менито „Вметни“ содржи команди за вметнување нови елементи, како што се ќелии, редови, листови и имиња на ќелии во тековниот лист.</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\">Ќелии</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\">Лист</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\">Специјален знак</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\">Хиперврска</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\">Функција</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\">Листа на функции</link>"
+
+#: main0104.xhp#hd_id3145640.6.help.text
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/04050000.xhp\" name=\"Note\">Белешка</link></caseinline><defaultinline><link href=\"text/shared/01/04050000.xhp\" name=\"Note\">Белешка</link></defaultinline></switchinline>"
+
+#: 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\">Графикон</link>"
+
+#: main0104.xhp#par_id0302200904002496.help.text
+msgid "Inserts a chart."
+msgstr ""
+
+#: 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\">Лебдечка рамка</link>"
+
+#: main0214.xhp#tit.help.text
+msgid "Picture Bar"
+msgstr "Алатник за слики"
+
+#: 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\">Алатник за слики</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=\".\"><emph>Алатникот за слики</emph> се прикажува кога ќе вметнете или изберете слика во листот.</ahelp>"
+
+#: main0203.xhp#tit.help.text
+msgid "Drawing Object Properties Bar"
+msgstr "Алатник за својства на нацртаниот објект"
+
+#: 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\">Алатник за својства на нацртаниот објект</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\"><emph>Алатникот за својства на нацртаниот објект</emph> содржи наредби за форматирање и порамнување на објекти што сте ги избрале во листот.</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\">Стил на линија</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\">Ширина на линија</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\">Боја на линија</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 Color\">Боја на подлогата</link>"
+
+#: main0210.xhp#tit.help.text
+msgid "Page Preview Bar"
+msgstr "Алатник за преглед на страница"
+
+#: 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\">Алатник за преглед на страница</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\"><emph>Алатникот за преглед на страница</emph> е прикажан кога ќе избирате<emph>Датотека - Преглед на страница</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 "Добредојдовте во помошта на $[officename] Calc"
+
+#: main0000.xhp#hd_id3147338.1.help.text
+msgctxt "main0000.xhp#hd_id3147338.1.help.text"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Добредојдовте во помошта на $[officename] Calc"
+
+#: main0000.xhp#hd_id3153965.3.help.text
+msgid "How to Work With $[officename] Calc"
+msgstr "Како да работите со $[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\">Листа на функции по категорија</link>"
+
+#: main0000.xhp#hd_id3154659.6.help.text
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgstr "Менија, алатници и тастери во $[officename] Calc"
+
+#: main0000.xhp#hd_id3150883.4.help.text
+msgid "Help about the Help"
+msgstr "Помош за помошта"
+
+#: main0103.xhp#tit.help.text
+msgid "View"
+msgstr "Приказ"
+
+#: 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\">Приказ</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=\".\">Ова мени содржи команди за контролирање на екранскиот приказ на документот.</ahelp>"
+
+#: main0103.xhp#par_idN105AB.help.text
+msgid "Normal"
+msgstr "Нормален"
+
+#: main0103.xhp#par_idN105AF.help.text
+msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+msgstr "<ahelp hid=\".\">Го дава нормалниот приказ на листот.</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\">Зумирај</link>"
+
+#: main0100.xhp#tit.help.text
+msgid "Menus"
+msgstr "Менија"
+
+#: 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\">Менија</link></variable>"
+
+#: main0100.xhp#par_id3154760.2.help.text
+msgid "The following menu commands are available for spreadsheets."
+msgstr "Следните наредби од менито се достапни за табеларни пресметки."
+
+#: main0205.xhp#tit.help.text
+msgid "Text Formatting Bar"
+msgstr "Алатник за форматирање на текст"
+
+#: 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\">Алатник за форматирање на текст</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\"><emph>Алатникот за форматирање на текст</emph> е прикажан кога покажувачот се наоѓа во текстуален објект, како што е рамка за текст или нацртан објект, а содржи наредби за форматирање и порамнување.</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\">Боја на фонтот</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\">Проред: 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\">Проред: 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\">Проред: 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\">Порамни одлево</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\">Центрирано</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\">Порамни оддесно</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\">Порамни двострано</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\">Горен индекс</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\">Долен индекс</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\">Знак</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\">Пасус</link>"
+
+#: main0200.xhp#tit.help.text
+msgid "Toolbars"
+msgstr "Алатници"
+
+#: 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\">Алатници</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 "Ова подмени ги прикажува алатниците што се достапни во табеларните пресметки.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+
+#: main0503.xhp#tit.help.text
+msgid "$[officename] Calc Features"
+msgstr "Карактеристики на $[officename] Calc"
+
+#: 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</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 е програма за табеларни пресметки којашто може да ја користите за пресметување, анализирање и управување со Вашите податоци. Исто така може да внесувате и менувате табеларни пресметки од Microsoft Excel."
+
+#: main0503.xhp#hd_id3148797.4.help.text
+msgid "Calculations"
+msgstr "Пресметувања"
+
+#: 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 Ви дава на располагање <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">функции</link>, вклучително статистички и финансиски функции, што може да ги користите за креирање формули за изведување сложени пресметки на Вашите податоци."
+
+#: 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 "Исто така може да го користите <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">волшебникот за функции</link> за помош при креирањето на Вашите формули."
+
+#: main0503.xhp#hd_id3152596.13.help.text
+msgid "What-If Calculations"
+msgstr "Пресметувања „Што-ако“"
+
+#: 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 "Интересна карактеристика е можноста веднаш да ги видите резултатите од промените направени на еден фактор од пресметките што се составени од повеќе фактори. На пример, мозете да видите како промената на временскиот период во пресметката на заем влијае на каматната стапка или износите за враќање. Исто така, може да менаџирате големи табели со користење различни предодредени сценарија."
+
+#: main0503.xhp#hd_id3148576.7.help.text
+msgid "Database Functions"
+msgstr "Функции за бази на податоци"
+
+#: main0503.xhp#par_id3154011.8.help.text
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr "Користете ги табеларните пресметки за да ги подредувате, зачувувате и филтрирате Вашите податоци."
+
+#: 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 Ви овозможува да влечете-и-пуштате табели од бази на податоци. Или може да користите табеларна пресметка како извор на податоци за креирање циркуларни писма во $[officename] Writer."
+
+#: main0503.xhp#hd_id3145800.9.help.text
+msgid "Arranging Data"
+msgstr "Подредување на податоци"
+
+#: 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 "Со неколку кликнувања на глушецот може да ја реорганизирате Вашата табеларна пресметка за да покажете или скриете одредени опсези на податоци, или да форматирате опсези во зависност од одредени услови, или на брз начин да пресметате потсуми и суми."
+
+#: main0503.xhp#hd_id3155601.16.help.text
+msgid "Dynamic Charts"
+msgstr "Динамички графикони"
+
+#: 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 Ви овозможува да ги претставите податоците од табеларните пресметки во динамички графикони што се ажурираат автоматски кога податоците ќе се сменат."
+
+#: main0503.xhp#hd_id3153707.18.help.text
+msgid "Opening and Saving Microsoft Files"
+msgstr "Отворање и зачувување на Microsoft-датотеки."
+
+#: 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 "Користете ги филтрите на $[officename] за да претворите Excel-датотеки или да отворате и зачувувате во други <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">формати</link>."
+
+#: main0105.xhp#tit.help.text
+msgid "Format"
+msgstr "Форматирај"
+
+#: 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\">Форматирај</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\">Менито <emph>Форматирај</emph> содржи наредби за форматирање на избраните ќелии, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">објекти</link> и содржината на ќелиите во Вашиот документ.</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\">Ќелии</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\">Страница</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\">Знак</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\">Пасус</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\">Автоматско форматирање</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\">Условно форматирање</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\">Контрола</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\">Форма</link>"
+
+#: main0102.xhp#tit.help.text
+msgid "Edit"
+msgstr "Уредување"
+
+#: 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\">Уредување</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=\".\">Ова мени содржи команди за уредување на содржината на тековниот документ.</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\">Вметни специјално</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\">Спореди документ</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\">Најди и замени</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\">Заглавија и подножја</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\">Избриши содржина</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\">Избриши ќелии</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\">Врски</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\">МапаНаСлика</link>"
+
+#: main0208.xhp#tit.help.text
+msgid "Status Bar"
+msgstr "Статусна линија"
+
+#: 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\">Статусна линија</link>"
+
+#: main0208.xhp#par_id3149669.2.help.text
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
+msgstr "<emph>Статусната линија</emph> прикажува информација за тековниот лист."
+
+#: 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 ""
+
+#: main0106.xhp#tit.help.text
+msgid "Tools"
+msgstr "Алатки"
+
+#: 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\">Алатки</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=\".\">Менито <emph>Алатки </emph>содржи команди за проверка на правописот, за следење на референците на листот, за пронаоѓање на грешки и за дефинирање на сценарија.</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 "Исто така може и да креирате и да доделувате макроа и да го конфигурирате изгледот на алатниците, менијата, тастатурата како и да ги поставите стандардните опции за апликациите од $[officename]."
+
+#: 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\">Барање цел</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\">Сценарија</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\">Опции за авто корекција</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\">Прилагоди</link>"
+
+#: main0218.xhp#tit.help.text
+msgid "Tools Bar"
+msgstr "Алатник со алатки"
+
+#: 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\">Алатник со алатки</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\">Користете го алатникот со алатки за пристап кон често користените наредби.</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\">Контроли</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\">Избери теми</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\">Напреден филтер</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\">Стартувај</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\">Конвертор на евра</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\">Дефинирај</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\">Барање цел</link>"
+
+#: main0202.xhp#tit.help.text
+msgid "Formatting Bar"
+msgstr "Алатник за форматирање"
+
+#: 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\">Алатник за форматирање</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\"><emph>Алатникот за форматирање</emph> содржи основни наредби за применување рачно форматирање.</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\">Боја на фонтот</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\">Порамни одлево</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\">Порамни централно хоризонтално</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\">Порамни оддесно</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\">Порамни двострано</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\">Порамни од горе</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\">Порамни централно вертикално</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\">Порамни од долу</link>"
+
+#: main0202.xhp#par_idN10843.help.text
+msgid "Number Format : Date"
+msgstr "Формат на броеви : датум"
+
+#: main0202.xhp#par_idN10847.help.text
+msgid "<ahelp hid=\".\">Applies the date format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Го применува форматот за датум на избраните ќелии.</ahelp>"
+
+#: main0202.xhp#par_idN1085E.help.text
+msgid "Number Format: Exponential"
+msgstr "Формат на броеви: експоненцијален"
+
+#: main0202.xhp#par_idN10862.help.text
+msgid "<ahelp hid=\".\">Applies the exponential format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Го применува експоненцијалниот формат на избраните ќелии.</ahelp>"
+
+#: main0202.xhp#par_idN10871.help.text
+msgid "Additional icons"
+msgstr "Дополнителни икони"
+
+#: 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 "Ако е овозможена подршката за <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">изглед на комплексен текст (CTL)</link>, видлиди се две дополнителни икони."
+
+#: main0202.xhp#par_idN1088E.help.text
+msgid "Left-To-Right"
+msgstr "Одлево надесно"
+
+#: 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\">Икона одлево надесно</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\">Текстот се внесува одлево надесно.</ahelp>"
+
+#: main0202.xhp#par_idN108D1.help.text
+msgid "Right-To-Left"
+msgstr "Оддесно налево"
+
+#: 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\">Икона оддесно налево</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\">Текстот форматиран со изглед на комплексен текст се внесува оддесно налево.</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\">Ја порамнува содржината на ќелијата на лево.</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\">Ја порамнува содржината на ќелијата на десно.</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\">Хоризонтално ја центрира содржината на ќелијата.</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\">Ја порамнува содржината на ќелијата кон левите и десните граници на ќелијата.</ahelp>"
+
+#: main0107.xhp#tit.help.text
+msgid "Window"
+msgstr "Прозорец"
+
+#: 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\">Прозорец</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\">Содржи команди за манипулирање и прикажување на прозорците на документот.</ahelp>"
diff --git a/source/mk/helpcontent2/source/text/scalc/00.po b/source/mk/helpcontent2/source/text/scalc/00.po
new file mode 100644
index 00000000000..706fef26e30
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/scalc/00.po
@@ -0,0 +1,844 @@
+#. 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-06 00:22+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 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 "Мени Прозорец"
+
+#: 00000407.xhp#hd_id3155628.1.help.text
+msgctxt "00000407.xhp#hd_id3155628.1.help.text"
+msgid "Window Menu"
+msgstr "Мени Прозорец"
+
+#: 00000407.xhp#par_id3147335.2.help.text
+msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+msgstr "<variable id=\"fete\">Изберете <emph>Прозорец - Подели</emph></variable>"
+
+#: 00000407.xhp#par_id3153663.3.help.text
+msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+msgstr "<variable id=\"fefix\">Изберете <emph>Прозорец - Замрзни</emph></variable>"
+
+#: 00000402.xhp#tit.help.text
+msgctxt "00000402.xhp#tit.help.text"
+msgid "Edit Menu"
+msgstr "Мени за уредување"
+
+#: 00000402.xhp#hd_id3147303.1.help.text
+msgctxt "00000402.xhp#hd_id3147303.1.help.text"
+msgid "Edit Menu"
+msgstr "Мени за уредување"
+
+#: 00000402.xhp#par_id3155555.2.help.text
+msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+msgstr "<variable id=\"kopffuss\">Изберете <emph>Уреди - Заглавија и Подножја</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\">Изберете го ливчето <emph>Уреди - Заглавија и Подножја - Заглавие/Подножје</emph></variable>"
+
+#: 00000402.xhp#par_id3150443.4.help.text
+msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+msgstr "<variable id=\"bausfullen\">Изберете <emph>Уреди - Пополни</emph></variable>"
+
+#: 00000402.xhp#par_id3143267.5.help.text
+msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+msgstr "<variable id=\"bausunten\">Изберете <emph>Уреди - Пополни - Долу</emph></variable>"
+
+#: 00000402.xhp#par_id3153880.6.help.text
+msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+msgstr "<variable id=\"bausrechts\">Изберете <emph>Уреди - Пополни - Десно</emph></variable>"
+
+#: 00000402.xhp#par_id3151245.7.help.text
+msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+msgstr "<variable id=\"bausoben\">Изберете <emph>Уреди - Пополни - Горе</emph></variable>"
+
+#: 00000402.xhp#par_id3145068.8.help.text
+msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+msgstr "<variable id=\"bauslinks\">Изберете <emph>Уреди - Пополни - Лево</emph></variable>"
+
+#: 00000402.xhp#par_id3150400.9.help.text
+msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgstr "<variable id=\"baustab\">Изберете <emph>Уреди - Пополни - лист</emph></variable>"
+
+#: 00000402.xhp#par_id3154910.10.help.text
+msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+msgstr "<variable id=\"bausreihe\">Изберете <emph>Уреди - Пополни - примероци</emph></variable>"
+
+#: 00000402.xhp#par_id3154123.11.help.text
+msgid "Choose <emph>Edit - Delete Contents</emph>"
+msgstr "Choose <emph>Уреди - Бриши - Содржина</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\">Изберете <emph>Уреди - Избриши ќелии</emph></variable>"
+
+#: 00000402.xhp#par_id3153951.13.help.text
+msgid "Choose <emph>Edit – Sheet - Delete</emph>"
+msgstr "Изберете <emph>Уреди - Лист - Избриши</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 "Отвора контекстно мени за ливче од лист"
+
+#: 00000402.xhp#par_id3146119.14.help.text
+msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+msgstr "Изберете <emph>Уреди - Листови - Премести/Копирај</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 "Отвора контекстно мени за ливче од лист"
+
+#: 00000402.xhp#par_id3153093.15.help.text
+msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+msgstr "<variable id=\"bmaumloe\">Изберете <emph>Уреди - Избриши - Рачен прелом</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\">Изберете <emph>Уреди - Избриши - Рачен прелом - Прелом на страница</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\">Изберете <emph>Уреди - Избриши - Рачен прелом - Прелом на страница - Прелом на колона</emph></variable>"
+
+#: 00000403.xhp#tit.help.text
+msgctxt "00000403.xhp#tit.help.text"
+msgid "View Menu"
+msgstr "Поглед мени"
+
+#: 00000403.xhp#hd_id3145673.1.help.text
+msgctxt "00000403.xhp#hd_id3145673.1.help.text"
+msgid "View Menu"
+msgstr "Поглед мени"
+
+#: 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>Поглед - Заглавија за колони и редици</emph></variable>"
+
+#: 00000403.xhp#par_id3154514.3.help.text
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+msgstr "<variable id=\"awehe\">Изберете <emph>Поглед - означување</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\">Изберете <emph>Поглед - Алатници - Алатник за формули</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\">Изберете <emph>Поглед - Преглед на прелом на станица</emph></variable>"
+
+#: 00000404.xhp#tit.help.text
+msgctxt "00000404.xhp#tit.help.text"
+msgid "Insert Menu"
+msgstr "Вметни мени"
+
+#: 00000404.xhp#hd_id3149346.1.help.text
+msgctxt "00000404.xhp#hd_id3149346.1.help.text"
+msgid "Insert Menu"
+msgstr "Вметни мени"
+
+#: 00000404.xhp#par_id3149095.36.help.text
+msgid "<variable id=\"eimaum\">Choose <emph>Insert - Manual Break</emph></variable>"
+msgstr "<variable id=\"eimaum\">Изберете <emph>Вметни - Рачен прелом</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\">Изберете <emph>Вметни - Рачен прелом - Прелом на редица</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\">Изберете <emph>Вметни - Рачен прелом - Прелом на колона</emph></variable>"
+
+#: 00000404.xhp#par_id3149784.4.help.text
+msgid "Choose <emph>Insert - Cells</emph>"
+msgstr "Изберете <emph>Вметни - Ќелии</emph>"
+
+#: 00000404.xhp#par_id3154514.5.help.text
+msgid "Open <emph>Insert Cells</emph> toolbar from Tools bar:"
+msgstr "Отворете <emph>Вметни Алатник за ќелии</emph> од Алатникот:"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000404.xhp#par_id3151041.6.help.text
+msgid "Insert Cells"
+msgstr "Вметни ќелии"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000404.xhp#par_id3146985.7.help.text
+msgid "Insert Cells Down"
+msgstr "Вметни ќелии долу"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000404.xhp#par_id3145646.8.help.text
+msgid "Insert Cells Right"
+msgstr "Вметни ќелии десно"
+
+#: 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\">Икони</alt></image>"
+
+#: 00000404.xhp#par_id3150324.9.help.text
+msgid "Insert Rows"
+msgstr "Вметни редови"
+
+#: 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\">Икони</alt></image>"
+
+#: 00000404.xhp#par_id3155334.10.help.text
+msgid "Insert Columns"
+msgstr "Вметни колони"
+
+#: 00000404.xhp#par_id3148485.11.help.text
+msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
+msgstr "<variable id=\"eizei\">Изберете <emph>Вметни - Редици</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>Вметни - Колони</emph></variable>"
+
+#: 00000404.xhp#par_id3149033.13.help.text
+msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
+msgstr "<variable id=\"eitab\">Изберете <emph>Вметни - Лист</emph></variable>"
+
+#: 00000404.xhp#par_idN1082F.help.text
+msgid "<variable id=\"eitabfile\">Choose <emph>Insert - Sheet from file</emph></variable>"
+msgstr "<variable id=\"eitabfile\">Изберете <emph>Вметни - Лист од датотека</emph></variable>"
+
+#: 00000404.xhp#par_id3155115.14.help.text
+msgid "Choose <emph>Insert - Function</emph>"
+msgstr "Изберете <emph>Вметни - Функција</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\">Команда </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+
+#: 00000404.xhp#par_id3153269.15.help.text
+msgid "On <emph>Formula Bar</emph>, click"
+msgstr "На <emph>лентата со формули</emph>, кликнете"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000404.xhp#par_id3154370.16.help.text
+msgid "Function Wizard"
+msgstr "Волшебник за формули"
+
+#: 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>Вметни - Функција</emph> - Категорија <emph>База на податоци</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>Вметни - Функција</emph> - Категорија <emph>Датум и време</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>Вметни - Функција</emph> - Категорија <emph>Финансиски</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>Вметни - Функција</emph> - Категорија <emph>Информации</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>Вметни - Функција</emph> - Категорија <emph>Логички</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>Вметни - Функција</emph> - Категорија <emph>Математички</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>Вметни - Функција</emph> - Категорија <emph>Низа</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>Вметни - Финкција</emph> - Категорија <emph>Статистички</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>Вметни - Функција</emph> - Категорија <emph>Текстуални</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>Вметни - Функција</emph> - Категорија <emph>Табеларни пресметки</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>Вметни - Функција - </emph> - Категорија <emph>Додатоци</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>Вметни - Функција</emph> - Категорија <emph>Додаток</emph></variable>"
+
+#: 00000404.xhp#par_id3155383.33.help.text
+msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph></variable>"
+msgstr "<variable id=\"funktionsliste\">Изберете <emph>Вметни - Листа на функции</emph></variable>"
+
+#: 00000404.xhp#par_id3153250.28.help.text
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
+msgstr "<variable id=\"einamen\">Изберете <emph>Вметни - Имиња</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 "Изберете <emph>Вметни- Имиња - Дефинирај</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\">Команда </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\">Изберете <emph>Вметни - Имиња - Вметни</emph></variable>"
+
+#: 00000404.xhp#par_id3153558.31.help.text
+msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
+msgstr "<variable id=\"einaueb\">Изберете <emph>Вметни - Имиња - Креирај</emph></variable>"
+
+#: 00000404.xhp#par_id3153483.32.help.text
+msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
+msgstr "<variable id=\"einabesch\">Изберете <emph>Вметни - Имиња - Ознаки</emph></variable>"
+
+#: 00000004.xhp#tit.help.text
+msgid "To access this function..."
+msgstr "За да пристапите на оваа функција..."
+
+#: 00000004.xhp#hd_id3155535.1.help.text
+msgid "<variable id=\"wie\">To access this function... </variable>"
+msgstr "<variable id=\"wie\">За да пристапите на оваа функција... </variable>"
+
+#: 00000004.xhp#par_idN1056E.help.text
+msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+msgstr "<variable id=\"moreontop\">Повеќе објаснувања на врв на оваа страница. </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\">Во %PRODUCTNAME Calc функциите, параметрите се означени \"изборни\" може да бидат изоставени кога не следат параметри. На пример, во функција со четири параметри во која два параметри зе означени како \"изборни\", може да го изоставите параметарот 4 или параметрите 3 и 4, но не можете да го изоставите само параметарот 3. </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\">Кодовите поголеми од 127 може да зависат мапирањето на знаците на вашиот систем (на пример iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), и затоа може да не се портабилни.</variable>"
+
+#: 00000406.xhp#tit.help.text
+msgctxt "00000406.xhp#tit.help.text"
+msgid "Tools Menu"
+msgstr "Мени Алатки"
+
+#: 00000406.xhp#hd_id3147264.1.help.text
+msgctxt "00000406.xhp#hd_id3147264.1.help.text"
+msgid "Tools Menu"
+msgstr "Мени Алатки"
+
+#: 00000406.xhp#par_id3150541.2.help.text
+msgid "<variable id=\"exdektv\">Choose <emph>Tools - Detective</emph></variable>"
+msgstr "<variable id=\"exdektv\">Изберете <emph>Алатки - Детектив</emph></variable>"
+
+#: 00000406.xhp#par_id3153194.3.help.text
+msgid "Choose <emph>Tools - Detective - Trace Precedents</emph>"
+msgstr "Изберете <emph>Алатки - Детектив - Откриј приоритети</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\">Мени <emph>Алатки - Јазик - Хифернација</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\">Изберете <emph>Алатки - Детектив - Следи приоритети</emph></variable>"
+
+#: 00000406.xhp#par_id3155411.5.help.text
+msgid "Choose <emph>Tools - Detective - Trace Dependents</emph>"
+msgstr "Изберете <emph>Алатки - Детектив - Следи зависности</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\">Изберете <emph>Алатки - Детектив - Отстрани зависности</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\">Изберете <emph>Алатки - Детектив - Отстрани ги сите траги</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\">Изберете <emph>Алатки - Детектив - Следи грешки</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\">Избери <emph>Алатки - Детектив - Режим на пополнување</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\">Изберете <emph>Алатки - Детектив - Обележи невалидни податоци</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\">Изберете <emph>Алатки - Детектив - Освежи траги</emph></variable>"
+
+#: 00000406.xhp#par_id3147397.32.help.text
+msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph></variable>"
+msgstr "<variable id=\"automatisch\">Изберете <emph>Алатки - Детектив - Автоматско освежување </emph></variable>"
+
+#: 00000406.xhp#par_id3154018.12.help.text
+msgid "<variable id=\"exzws\">Choose <emph>Tools - Goal Seek</emph></variable>"
+msgstr "<variable id=\"exzws\">Изберете<emph>Алатки - Цел - Барај</emph></variable>"
+
+#: 00000406.xhp#par_id3269142.help.text
+msgid "<variable id=\"solver\">Choose Tools - Solver</variable>"
+msgstr "<variable id=\"solver\">Изберете Алатки - Решавач</variable>"
+
+#: 00000406.xhp#par_id8554338.help.text
+msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</variable>"
+msgstr "<variable id=\"solver_options\">Изберете го копчето Алатки - Решавач, Опции</variable>"
+
+#: 00000406.xhp#par_id3156277.13.help.text
+msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
+msgstr "<variable id=\"exsze\">Изберете <emph>Алатки - Сценарија</emph></variable>"
+
+#: 00000406.xhp#par_id3145640.14.help.text
+msgid "<variable id=\"exdos\">Choose <emph>Tools - Protect Document</emph></variable>"
+msgstr "<variable id=\"exdos\">Изберете <emph>Алатки - Заштити документ</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\">Изберете <emph>Алатки - Заштити документ - Лист </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\">Изберете <emph>Алатки - Заштити документ - Документ</emph></variable>"
+
+#: 00000406.xhp#par_id3147363.17.help.text
+msgid "<variable id=\"zellinhalte\">Choose <emph>Tools - Cell Contents</emph></variable>"
+msgstr "<variable id=\"zellinhalte\">Изберете <emph>Алатки - Содржина на ќелија - Содржина</emph></variable>"
+
+#: 00000406.xhp#par_id3146919.18.help.text
+msgid "Choose <emph>Tools - Cell Contents - Recalculate</emph>"
+msgstr "Изберете <emph>Алатки - Содржина на ќелија - Повторно пресметај</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\">Изберете <emph>Алатки - Содржина на ќелија - Автоматско пресметување</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\">Изберете <emph>Алатки - Содржина на ќелија - Автматско внесување</emph></variable>"
+
+#: 00000405.xhp#tit.help.text
+msgctxt "00000405.xhp#tit.help.text"
+msgid "Format Menu"
+msgstr "Мени за форматирање"
+
+#: 00000405.xhp#hd_id3150769.1.help.text
+msgctxt "00000405.xhp#hd_id3150769.1.help.text"
+msgid "Format Menu"
+msgstr "Мени за форматирање"
+
+#: 00000405.xhp#par_id3154685.2.help.text
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+msgstr "<variable id=\"fozelle\">Изберете <emph>Формат - Ќелии</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\">Изберете <emph>Формат - Ќелии - Заштита на ќелија </emph> tab </variable>"
+
+#: 00000405.xhp#par_id3155854.4.help.text
+msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+msgstr "<variable id=\"fozei\">Изберете <emph>Формат - Редица</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\">Изберете <emph>Формат - Редица - Оптимална висина</emph></variable>"
+
+#: 00000405.xhp#par_id3148645.6.help.text
+msgid "Choose <emph>Format - Row - Hide</emph>"
+msgstr "Изберете <emph>Формат - Редица - Сокриј</emph>"
+
+#: 00000405.xhp#par_id3153728.7.help.text
+msgid "Choose <emph>Format - Column - Hide</emph>"
+msgstr "Изберете <emph>Формат - Колона - Сокриј</emph>"
+
+#: 00000405.xhp#par_id3151114.8.help.text
+msgid "Choose <emph>Format - Sheet - Hide</emph>"
+msgstr "Изберете <emph>Формат - Лист - Сокриј</emph>"
+
+#: 00000405.xhp#par_id3148576.9.help.text
+msgid "Choose <emph>Format - Row - Show</emph>"
+msgstr "Изберете <emph>Формат - Редица - Покажи</emph>"
+
+#: 00000405.xhp#par_id3156286.10.help.text
+msgid "Choose <emph>Format - Column - Show</emph>"
+msgstr "Изберете <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\">Изберете <emph>Формат - Колона</emph></variable>"
+
+#: 00000405.xhp#par_id3145252.12.help.text
+msgid "Choose <emph>Format - Column - Optimal Width</emph>"
+msgstr "Изберете <emph>Формат - Колона - Оптимална широчина</emph>"
+
+#: 00000405.xhp#par_id3146971.36.help.text
+msgid "Double-click right column separator in column headers"
+msgstr "Кликнете два пати на десниот разделувачот на колоната во заглавјето на колоната"
+
+#: 00000405.xhp#par_id3147362.15.help.text
+msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
+msgstr "<variable id=\"fot\">Изберете <emph>Формат - Лист</emph></variable>"
+
+#: 00000405.xhp#par_id3163805.16.help.text
+msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
+msgstr "<variable id=\"fotu\">Изберете <emph>Формат - Лист - Преименувај</emph></variable>"
+
+#: 00000405.xhp#par_id3155333.17.help.text
+msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
+msgstr "<variable id=\"fotenb\">Изберете <emph>Формат - Лист - Покажи</emph></variable>"
+
+#: 00000405.xhp#par_idN1077A.help.text
+msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
+msgstr "<variable id=\"foste\">Изберете <emph>Формат - Страница</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\">Изберете <emph>Формат - Page - Лист</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\">Изберете <emph>Формат - Опсези за печатење</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\">Изберете <emph>Формат - Опсези за печатење - Дефинирај </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\">Изберете <emph>Формат - Опсези за печатење - Додај</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\">Изберете <emph>Формат - Опсези за печатење - Отстрани</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\">Изберете <emph>Формат - Опсези за печатење - Уреди</emph></variable>"
+
+#: 00000405.xhp#par_id3153916.31.help.text
+msgid "Choose <emph>Format - AutoFormat</emph>"
+msgstr "Choose <emph>Формат - Автом. форматирање</emph>"
+
+#: 00000405.xhp#par_id3154532.32.help.text
+msgid "On the Tools bar, click"
+msgstr "Кликнете на Алатникот"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000405.xhp#par_id3154060.33.help.text
+msgid "AutoFormat"
+msgstr "Автоматско форматирање"
+
+#: 00000405.xhp#par_id3154618.34.help.text
+msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
+msgstr "<variable id=\"bedingte\">Изберете <emph>Формат - Условно форматирање</emph></variable>"
+
+#: 00000412.xhp#tit.help.text
+msgctxt "00000412.xhp#tit.help.text"
+msgid "Data Menu"
+msgstr "Мени Податоци"
+
+#: 00000412.xhp#hd_id3145136.1.help.text
+msgctxt "00000412.xhp#hd_id3145136.1.help.text"
+msgid "Data Menu"
+msgstr "Мени Податоци"
+
+#: 00000412.xhp#par_id8366954.help.text
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+msgstr "<variable id=\"text2columns\">Изберете <emph>Податок - Текст во колони</emph></variable>"
+
+#: 00000412.xhp#par_id3147399.3.help.text
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+msgstr "<variable id=\"dbrbf\">Изберете <emph>Податоци - Дефинирај опсег</emph></variable>"
+
+#: 00000412.xhp#par_id3145345.4.help.text
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+msgstr "<variable id=\"dbrba\">Изберете <emph>Податоци - Изберете опсег</emph></variable>"
+
+#: 00000412.xhp#par_id3150443.5.help.text
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+msgstr "<variable id=\"dnsrt\">Изберете <emph>Податоци - Подреди</emph></variable>"
+
+#: 00000412.xhp#par_id3148491.6.help.text
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+msgstr "Изберете <emph>Податоци - Подреди - Критериум за подредување</emph> tab"
+
+#: 00000412.xhp#par_id3154516.7.help.text
+msgid "On Standard bar, click"
+msgstr "Кликнете на основната лента"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000412.xhp#par_id3150767.8.help.text
+msgid "Sort Ascending"
+msgstr "Подреди растечки"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000412.xhp#par_id3145364.9.help.text
+msgid "Sort Descending"
+msgstr "Подреди опаѓачки"
+
+#: 00000412.xhp#par_id3146984.10.help.text
+#, fuzzy
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
+msgstr "<variable id=\"dnstot\">Изберете <emph>Податоци - Подредување - Јазиче опции</emph></variable>"
+
+#: 00000412.xhp#par_id3155308.11.help.text
+msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+msgstr "<variable id=\"dnftr\">Изберете <emph>Податоци - Филтирање</emph></variable>"
+
+#: 00000412.xhp#par_id3148646.12.help.text
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
+msgstr "Изберете <emph>Податоци - Филтирање - Автоматско филтрирање</emph>"
+
+#: 00000412.xhp#par_id3151113.13.help.text
+msgid "On Tools bar or Table Data bar, click"
+msgstr "Кликнете на Алатникот или на Лентата за податоци на табелата"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000412.xhp#par_id3149401.14.help.text
+msgid "AutoFilter"
+msgstr "Автоматски филтер"
+
+#: 00000412.xhp#par_id3156278.17.help.text
+msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
+msgstr "<variable id=\"dnfspz\">Изберете <emph>Податоци - Филтирање - Напредно филтрирање</emph></variable>"
+
+#: 00000412.xhp#par_id3153764.18.help.text
+msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
+msgstr "Изберете <emph>Податоци - Филтирање - Старндно филтрирање - Копче повеќе>></emph>"
+
+#: 00000412.xhp#par_id3155444.19.help.text
+msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgstr "Изберете <emph>Податоци - Филтирање - Старндно филтрирање - Копче повеќе>></emph>"
+
+#: 00000412.xhp#par_id3156382.20.help.text
+msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
+msgstr "Изберете <emph>Податоци - Филтирање - Отстрани филтрирање</emph>"
+
+#: 00000412.xhp#par_id3155961.48.help.text
+msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+msgstr "Кликнете на лентата со податоци за табелата<emph>Отстрани филтрирање/подредување</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\">Икона</alt></image>"
+
+#: 00000412.xhp#par_id3149207.49.help.text
+msgid "Remove Filter/Sort"
+msgstr "Отстрани филтер/сортирање"
+
+#: 00000412.xhp#par_id3152778.21.help.text
+msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
+msgstr "<variable id=\"dnaftas\">Изберете <emph>Податоци - Филтирање - Сокриј автоматско филтрирање</emph></variable>"
+
+#: 00000412.xhp#par_id3166424.22.help.text
+msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+msgstr "<variable id=\"dntegs\">Изберете <emph>Податоци - Потсуми</emph></variable>"
+
+#: 00000412.xhp#par_id3154574.23.help.text
+#, fuzzy
+msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
+msgstr "<variable id=\"dntezd\">Изберете <emph>Податоци - Потсуми - јазичиња прва, втора, трета група</emph> tabs </variable>"
+
+#: 00000412.xhp#par_id3151277.24.help.text
+#, fuzzy
+msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
+msgstr "<variable id=\"dntopi\">Изберете <emph>Податоци - Потсуми - Јазиче опции</emph> tab </variable>"
+
+#: 00000412.xhp#par_id3145133.25.help.text
+msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+msgstr "<variable id=\"datengueltig\">Изберете <emph>Податоци - Валидност</emph></variable>"
+
+#: 00000412.xhp#par_id3152992.26.help.text
+#, fuzzy
+msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigwerte\">Мени <emph>Податоци - Валидност - јазиче критериум</emph></variable>"
+
+#: 00000412.xhp#par_id3150367.27.help.text
+#, fuzzy
+msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
+msgstr "<variable id=\"datengueltigeingabe\">Изберете <emph>Податоци - Валидност - јазиче внеси помош</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=\"datengueltigfehler\">Изберете <emph>Податоци - Валидност - таб Предупредување за грешка</emph></variable>"
+
+#: 00000412.xhp#par_id3146978.29.help.text
+msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
+msgstr "<variable id=\"dnmfo\">Изберете <emph>Податоци - Повеќекратни операции</emph></variable>"
+
+#: 00000412.xhp#par_id3155809.30.help.text
+msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
+msgstr "<variable id=\"dnksd\">Изберете <emph>Податоци - Здружи</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\">изберете <emph>Податок - Група и контура</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\">Изберете <emph>Податок - Група и контура - Сокриј детали</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\">Изберете <emph>Податок - Група и контура - Прикажи детали</emph></variable>"
+
+#: 00000412.xhp#par_id3146870.34.help.text
+msgid "Choose <emph>Data - Group and Outline - Group</emph>"
+msgstr "Изберете <emph>Податок - Група и контура - Група</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 "Кликнете на <emph>Алатникот</emph>"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000412.xhp#par_id3150214.36.help.text
+msgid "Group"
+msgstr "Групирај"
+
+#: 00000412.xhp#par_id3146781.37.help.text
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgstr "Изберете <emph>Податок - Група и контура - Одгрупирај</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\">Команда </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 "Кликнете на <emph>Алатникот</emph>"
+
+#: 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\">Икона</alt></image>"
+
+#: 00000412.xhp#par_id3153555.39.help.text
+msgid "Ungroup"
+msgstr "Одгрупирај"
+
+#: 00000412.xhp#par_id3153008.40.help.text
+msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
+msgstr "<variable id=\"dnglagl\">Изберете <emph>Податок - Група и контура - Авто контура</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\">Изберете <emph>Податок - Група и контура - Отстрани</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=\"dngdrill\">Изберете <emph>Податоци - Група и контура - Прикажи детали</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 - Податочен пилот</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=\"dndpa\">Изберете <emph>Податоци - Податочен пилот - Пушти</emph></variable>"
+
+#: 00000412.xhp#par_id3147558.53.help.text
+#, fuzzy
+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 "<variable id=\"dndq\">Изберете <emph>Податоци - Податочен пилот - Пушти</emph>, во дијалогот за избор на извор изберете ја опцијата <emph>Изворот на податоци е регистриран во $[officename]</emph>. </variable>"
+
+#: 00000412.xhp#par_id3153297.50.help.text
+#, fuzzy
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
+msgstr "Изберете <emph>Податоци - Податочен пилот - Пушти </emph>, во дијалогот за избор на извор изберете ја опцијата <emph>Тековен избор</emph>."
+
+#: 00000412.xhp#par_id3145118.54.help.text
+#, fuzzy
+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 "Изберете <emph>Податоци - Податочен пилот - Пушти</emph>, во дијалогот за избор на извор изберете ја опцијата <emph>Изворот на податоци се регистриран во $[officename]</emph>, кликнете <emph>Во ред</emph> за да го видите Дијалогот за избор на извор."
+
+#: 00000412.xhp#par_id3153294.44.help.text
+#, fuzzy
+msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
+msgstr "<variable id=\"dndpak\">Изберете <emph>Податоци - Податочен пилот - Освежи</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=\"dndploe\">Изберете <emph>Податоци - Податочен пилот - Избриши</emph></variable>"
+
+#: 00000412.xhp#par_id3150397.46.help.text
+msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
+msgstr "<variable id=\"dndakt\">Изберете <emph>Податоци - Опсег на освежување</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\">Изберете <emph>Податоци - Група и контура - Група</emph></variable>"
diff --git a/source/mk/helpcontent2/source/text/scalc/01.po b/source/mk/helpcontent2/source/text/scalc/01.po
new file mode 100644
index 00000000000..f5fe855871f
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/scalc/01.po
@@ -0,0 +1,28800 @@
+#. 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 18:14+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 04020000.xhp#tit.help.text
+msgid "Insert Cells"
+msgstr "Вметни ќелии"
+
+#: 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>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>."
+
+#: 04020000.xhp#hd_id3153768.3.help.text
+msgctxt "04020000.xhp#hd_id3153768.3.help.text"
+msgid "Selection"
+msgstr "Избор"
+
+#: 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 "Помести ќелии надолу"
+
+#: 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 "Помести ќелии надесно"
+
+#: 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 "Цел ред"
+
+#: 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 "Цела колона"
+
+#: 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 the columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to right."
+
+#: 05080000.xhp#tit.help.text
+msgid "Print Ranges"
+msgstr "Опсези за печатење"
+
+#: 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 "Условно форматирање"
+
+#: 05120000.xhp#hd_id3155132.1.help.text
+msgctxt "05120000.xhp#hd_id3155132.1.help.text"
+msgid "Conditional Formatting"
+msgstr "Условно форматирање"
+
+#: 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 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."
+
+#: 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 dialog, 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 "Стил на ќелија"
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 formulas 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id102720080230153.help.text
+msgid "In INDIRECT, the parameter is appended as the second parameter."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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;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 ""
+
+#: 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 "ADDRESS(1; 1; 2; \"Sheet2\") 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 -6, you can refer indirectly to the referenced cell using a function in B2 by entering =ABS(INDIRECT(B2)). 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 ""
+
+#: 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 "Пример"
+
+#: 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 "=AREAS(A1:B3;F2;G1) returns 3, as it is a reference to three cells and/or areas."
+
+#: 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 "=AREAS(All) 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 "Пример"
+
+#: 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=\"keycode\">=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=\"keycode\">=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 "Пример"
+
+#: 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 =ERRORTYPE(A1) 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 the content of a cell, specified by row and column number or an optional range name.</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 cell 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 number of the reference range, for which to return a value."
+
+#: 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 number of the reference range, for which to return a value."
+
+#: 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 "Пример"
+
+#: 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 "=INDEX(Prices;4;1) 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 "=INDEX(SumX;4;1) 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id3158419.58.help.text
+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 "=INDEX((multi);4;1) 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 2 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 "=INDEX(A1:B6;1;1) 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 ""
+
+#: 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)"
+
+#: 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 ""
+
+#: 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 "Пример"
+
+#: 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 "=INDIRECT(A1) equals 100 if A1 contains C108 as a reference and cell C108 contains a value of 100."
+
+#: 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 "=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3))) totals the cells in the area of A1 up to the cell, whose address is defined by row 1 and column 3. Therefore, 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 "Пример"
+
+#: 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 "=COLUMN(A1) 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 "=COLUMN(C3:E3) 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 "=COLUMN(D3:G10) 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 "{=COLUMN(B2:B7)} and =COLUMN(B2:B7) 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 "=COLUMN() 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 "{=COLUMN(Rabbit)} 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 "Пример"
+
+#: 04060109.xhp#par_id3149577.200.help.text
+msgid " <item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+msgstr "=COLUMNS(B5) 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 "=COLUMNS(A1:C5) 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 "=COLUMNS(Rabbit) returns 2 if \"Rabbit\" 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 to the same line of a specific array column named by index."
+
+#: 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(Search criterion;array;index;Sort order)"
+
+#: 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>Search criterion</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>Sort order</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE 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 "Пример"
+
+#: 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 neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains 100, E1 contains the name <emph>Vegetable Soup</emph>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <emph>Sort order</emph> 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 "=VLOOKUP(A1; D1:E100; 2)"
+
+#: 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 "Пример"
+
+#: 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 "=SHEET(Sheet2.A1) 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 "Пример"
+
+#: 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 "=SHEETS(Sheet1.A1:Sheet3.G12) 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(search criterion;lookup_array;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>Search Criterion</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>lookup_array</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 first one found. 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 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 "Пример"
+
+#: 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 "=MATCH(200; D1:D100) 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 cell 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 cells 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> 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> is the optional 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> is the optional 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 ""
+
+#: 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 ""
+
+#: 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 "Пример"
+
+#: 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 "=OFFSET(A1; 2; 2) returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value 100 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "=SUM(OFFSET(A1; 2; 2; 5; 6)) 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 or from an array.</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, 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(Search criterion;Search vector;result_vector)"
+
+#: 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>Search criterion</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>Search vector</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>result_vector</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 "Пример"
+
+#: 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 "=LOOKUP(A1; D1:D100;F1:F100) 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 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."
+
+#: 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 \"Standard\" 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 "Пример"
+
+#: 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 "=STYLE(\"Invisible\";60;\"Default\") 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 ""
+
+#: 04060109.xhp#par_id3668935.help.text
+msgid " <item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item> "
+msgstr ""
+
+#: 04060109.xhp#par_id3042085.help.text
+msgid "See also CURRENT() for another example."
+msgstr ""
+
+#: 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 "Пример"
+
+#: 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 "=CHOOSE(A1; B1; B2; B3; \"Today\"; \"Yesterday\"; \"Tomorrow\"), 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(search_criteria;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 "Пример"
+
+#: 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 "=ROW(B3) 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 "{=ROW(D5:D8)} 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 "=ROW(D5:D8) 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 "{=ROW(A1:E1)} and =ROW(A1:E1) both return 1 because the reference only contains row 1 as the first column 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 "=ROW() 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 "{=ROW(Rabbit)} 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 "Пример"
+
+#: 04060109.xhp#par_id3154725.212.help.text
+msgid " <item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+msgstr "=Rows(B5) 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 "=ROWS(A10:B12) 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 "=ROWS(Rabbit) 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>cell text</emph> parameter, the formula locates the URL, and then displays the text."
+
+#: 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;cell text)"
+
+#: 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>cell text</emph> parameter is the text that is displayed in the cell and the result of the function. If the <emph>cell text</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and in the result of the function."
+
+#: 04060109.xhp#par_id0907200912224576.help.text
+msgid "The number 0 is returned for empty cells and matrix elements."
+msgstr ""
+
+#: 04060109.xhp#par_idN11823.help.text
+msgctxt "04060109.xhp#par_idN11823.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "=HYPERLINK(\"http://www.example.org\") 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 "=HYPERLINK(\"http://www.example.org\";\"Click here\") 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 ""
+
+#: 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 "=HYPERLINK($B4) where cell B4 contains \"http://www.example.org\". 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 "=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\" 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#bm_id7682424.help.text
+#, fuzzy
+msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+msgstr "<bookmark_value>EDATE function</bookmark_value>"
+
+#: 04060109.xhp#hd_id3747062.help.text
+msgid "GETPIVOTDATA"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060109.xhp#hd_id9464094.help.text
+msgid "First Syntax"
+msgstr ""
+
+#: 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 ""
+
+#: 04060109.xhp#par_id9937131.help.text
+#, fuzzy
+msgid " <emph>pivot table</emph> has the same meaning as in the first syntax."
+msgstr "<emph>NOM</emph> is the nominal interest."
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12040201.xhp#tit.help.text
+msgctxt "12040201.xhp#tit.help.text"
+msgid "More"
+msgstr "Повеќе"
+
+#: 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 "Опции"
+
+#: 12040201.xhp#hd_id3154138.5.help.text
+msgctxt "12040201.xhp#hd_id3154138.5.help.text"
+msgid "Case sensitive"
+msgstr "Осетливо на мали/големи букви"
+
+#: 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 "Копирај резултати во"
+
+#: 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 "Регуларен израз"
+
+#: 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 "Без удвојување"
+
+#: 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 "Задржи ги критериумите за филтрирање"
+
+#: 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 "Содржина на ќелија"
+
+#: 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 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."
+
+#: 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 ""
+
+#: 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 formulas, 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 "Категорија"
+
+#: 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 "Функција"
+
+#: 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 "Низа"
+
+#: 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 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."
+
+#: 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 formulas 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 "Arguments 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 arguments 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 the required range in 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."
+
+#: 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 input entries that are required are indicated by bold argument names."
+
+#: 04060000.xhp#hd_id3153064.22.help.text
+msgid "f(x) (depending on the selected function)"
+msgstr "f(x) (dependent on 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 enter a nested 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 (dependent on 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 click a cell in the table.</ahelp>"
+
+#: 04060000.xhp#hd_id3154957.51.help.text
+msgctxt "04060000.xhp#hd_id3154957.51.help.text"
+msgid "Result"
+msgstr "Резултат"
+
+#: 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 "Формула"
+
+#: 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 with assistance of the Wizard.</ahelp>"
+
+#: 04060000.xhp#hd_id3153249.45.help.text
+msgid "Back"
+msgstr "Назад"
+
+#: 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 "Следно"
+
+#: 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 "Откажи"
+
+#: 04060000.xhp#par_id3147402.59.help.text
+msgid "Closes the dialog without implementing the formula."
+msgstr "Closes the dialog without implementing the formula."
+
+#: 04060000.xhp#hd_id3150534.32.help.text
+msgid "OK"
+msgstr "Во ред"
+
+#: 04060000.xhp#par_id3153029.33.help.text
+msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
+msgstr "Ends <emph>Function Wizard</emph> and transfer the formula into the selected cell or 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 "In 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 <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 "Структура"
+
+#: 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 rate</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;First coupon;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 "Settlement: 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 "Maturity: 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 "Issue: 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 "First coupon: 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 "Rate: 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 "Yield: 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 "Redemption: 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 "Frequency: 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;First coupon;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 "Settlement: 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 "Maturity: 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 "Issue: 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 "First coupon: 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 "Rate: 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 "Price: 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 "Redemption: 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 "Frequency: 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;Last interest;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 "Settlement: 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 "Maturity: 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 "Last interest: 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 "Rate: 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 "Yield: 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 "Redemption: 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 "Frequency: 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 "Пример"
+
+#: 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(\"2/7/1999\";\"6/15/1999\";\"10/15/1998\"; 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;Last interest;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 "Settlement: 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 "Maturity: 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 "Last interest: 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 "Rate: 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 "Price: 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 "Redemption: 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 "Frequency: 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 "Пример"
+
+#: 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(\"4/20/1999\";\"6/15/1999\"; \"10/15/1998\"; 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 "Cost: 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 "Salvage: 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 "Life: 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 "S: 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 "End: 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 "Factor (optional): 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 "Type (optional): 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 "Пример"
+
+#: 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 "VDB(35000;7500;36;10;20;2) = 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 "Values and dates: 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 "Guess (optional): a guess 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 "Пример"
+
+#: 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 "01/01/01"
+
+#: 04060118.xhp#par_id3145212.201.help.text
+msgid "-<item type=\"input\">10000</item>"
+msgstr "-10000"
+
+#: 04060118.xhp#par_id3146856.202.help.text
+msgid "<item type=\"input\">Received</item>"
+msgstr "Примено"
+
+#: 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 "2/1/2001"
+
+#: 04060118.xhp#par_id3151297.204.help.text
+msgid "<item type=\"input\">2000</item>"
+msgstr "2000"
+
+#: 04060118.xhp#par_id3149985.205.help.text
+msgid "<item type=\"input\">Deposited</item>"
+msgstr "Deposited"
+
+#: 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 "3/15/2001"
+
+#: 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 "5/12/2001"
+
+#: 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 "8/10/2001"
+
+#: 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 "Rate: 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 "Values and dates: 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 "Пример"
+
+#: 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 "=XNPV(0.06; B1:B5; A1:A5) 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 "P: 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 "PV: 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 "FV: 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 "Пример"
+
+#: 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 "RRI(4;7500;10000) = 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 "NPER: 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 "PMT: 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 "PV: 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 "FV (optional): 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 "Type (optional): 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 "GUESS (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 "Пример"
+
+#: 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 "RATE(3;10;900) = -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 "Settlement: 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 "Maturity: the date on which the security is sold."
+
+#: 04060118.xhp#par_id3154604.66.help.text
+msgid "<emph>Investment</emph> is the purchase price."
+msgstr "Investment: the purchase price."
+
+#: 04060118.xhp#par_id3154337.67.help.text
+msgid "<emph>Redemption</emph> is the selling price."
+msgstr "Redemption: the selling price."
+
+#: 04060118.xhp#hd_id3145380.68.help.text
+msgctxt "04060118.xhp#hd_id3145380.68.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 1/15/1990 for 1 million and sold on 5/5/2002 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(\"1/15/1990\"; \"5/5/2002\"; 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 "Settlement: 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 "Maturity: 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 "Frequency: 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 "Пример"
+
+#: 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 1.25.2001; the date of maturity is 11.15.2001. 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(\"1.25.2001\"; \"11.15.2001\"; 2; 3) returns 5.15.2001."
+
+#: 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 "Settlement: 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 "Maturity: 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 "Frequency: 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 "Пример"
+
+#: 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 1.25.2001; the date of maturity is 11.15.2001. 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(\"1.25.2001\"; \"11.15.2001\"; 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 "Settlement: 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 "Maturity: 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 "Frequency: 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 "Пример"
+
+#: 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 1.25.2001; the date of maturity is 11.15.2001. 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(\"1.25.2001\"; \"11.15.2001\"; 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 "Settlement: 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 "Maturity: 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 "Frequency: 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 "Пример"
+
+#: 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 1.25.2001; the date of maturity is 11.15.2001. 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(\"1.25.2001\"; \"11.15.2001\"; 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 "Settlement: 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 "Maturity: 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 "Frequency: 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 "Пример"
+
+#: 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 1.25.2001; the date of maturity is 11.15.2001. 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(\"1.25.2001\"; \"11.15.2001\"; 2; 3) returns 11.15.2000."
+
+#: 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 "Settlement: 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 "Maturity: 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 "Frequency: 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 "Пример"
+
+#: 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 1.25.2001; the date of maturity is 11.15.2001. 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(\"1.25.2001\"; \"11.15.2001\"; 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
+#, fuzzy
+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 "Пример"
+
+#: 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 "IPMT(5%;5;7;15000) = -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 "Rate: the periodic interest rate."
+
+#: 04060118.xhp#par_id3156029.282.help.text
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "NPER: 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 "PMT: 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 "PV (optional): 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 "Type (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 "Пример"
+
+#: 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 "FV(4%;2;750;2500) = -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 "Principal: 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 "Schedule: 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 "Пример"
+
+#: 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 "=FVSCHEDULE(1000; {0.03; 0.04; 0.05}) 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 "Rate: the periodic interest rate."
+
+#: 04060118.xhp#par_id3149042.295.help.text
+msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
+msgstr "PMT: 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 "PV: 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 "FV (optional): 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 "Type (optional): 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 "Пример"
+
+#: 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 "NPER(6%;153.75;2600) = -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 ""
+
+#: 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(Number 1; Number 2; ...Number 30)"
+
+#: 04060184.xhp#par_id3149568.6.help.text
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges. "
+msgstr "<emph>Number 1; Number 2;...Number 30</emph> are numerical values or ranges. "
+
+#: 04060184.xhp#hd_id3153963.7.help.text
+msgctxt "04060184.xhp#hd_id3153963.7.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "=MAX(A1;A2;A3;50;100;200) 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 "=MAX(A1:B100) 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 ""
+
+#: 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(Value 1; Value 2; ... Value 30)"
+
+#: 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>Value 1; Value 2;...Value 30</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 "Пример"
+
+#: 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 "=MAXA(A1;A2;A3;50;100;200;\"Text\") 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 "=MAXA(A1:B100) 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(Number 1; Number 2; ...Number 30)"
+
+#: 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>Number 1; Number 2;...Number 30</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 "Пример"
+
+#: 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: =MEDIAN(1; 5; 9; 20; 21) 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: =MEDIAN(1; 5; 9; 20) 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 ""
+
+#: 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(Number 1; Number 2; ...Number 30)"
+
+#: 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>Number 1; Number 2;...Number 30</emph> are numerical values or ranges."
+
+#: 04060184.xhp#hd_id3155523.24.help.text
+msgctxt "04060184.xhp#hd_id3155523.24.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060184.xhp#par_id3154734.25.help.text
+msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgstr "=MIN(A1:B100) 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 ""
+
+#: 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(Value 1; Value 2; ... Value 30)"
+
+#: 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>Value 1; Value 2;...Value 30</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 "Пример"
+
+#: 04060184.xhp#par_id3147401.154.help.text
+msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+msgstr "=MINA(1; \"Text\"; 20) 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 "=MINA(A1:B100) 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(Number 1; Number 2; ...Number 30)"
+
+#: 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>Number 1, Number 2,...Number 30</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 "Пример"
+
+#: 04060184.xhp#par_id3153122.33.help.text
+msgid " <item type=\"input\">=AVEDEV(A1:A50)</item> "
+msgstr "=AVEDEV(A1:A50)"
+
+#: 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(Number 1; Number 2; ...Number 30)"
+
+#: 04060184.xhp#par_id3150741.39.help.text
+msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+msgstr "<emph>Number 1; Number 2;...Number 30</emph> are numerical values or ranges."
+
+#: 04060184.xhp#hd_id3153039.40.help.text
+msgctxt "04060184.xhp#hd_id3153039.40.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060184.xhp#par_id3151232.41.help.text
+msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+msgstr "=AVERAGE(A1:A50)"
+
+#: 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(Value 1; Value 2; ... Value 30)"
+
+#: 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>Value 1; Value 2;...Value 30</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 "Пример"
+
+#: 04060184.xhp#par_id3150864.163.help.text
+msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgstr "=AVERAGEA(A1:A50)"
+
+#: 04060184.xhp#bm_id3153933.help.text
+msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr "<bookmark_value>заглавија;табеларни прикази</bookmark_value><bookmark_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(Number 1; Number 2; ...Number 30)"
+
+#: 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>Number 1; Number 2;...Number 30</emph> are numerical values or ranges."
+
+#: 04060184.xhp#hd_id3153571.48.help.text
+msgctxt "04060184.xhp#hd_id3153571.48.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060184.xhp#par_id3153733.49.help.text
+msgid "<item type=\"input\">=MODE(A1:A50)</item>"
+msgstr "=MODE(A1:A50)"
+
+#: 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 "Пример"
+
+#: 04060184.xhp#par_id3148770.59.help.text
+msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+msgstr "=NEGBINOMDIST(1; 1; 0.5) 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 "Пример"
+
+#: 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 "=NORMINV(0.9; 63; 5) 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> = 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 "Пример"
+
+#: 04060184.xhp#par_id3149283.80.help.text
+msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+msgstr "=NORMDIST(70; 63; 5; 0) returns 0.03."
+
+#: 04060184.xhp#par_id3149448.81.help.text
+msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+msgstr "=NORMDIST(70; 63; 5; 1) 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(Data_1; Data_2)"
+
+#: 04060184.xhp#par_id3151272.87.help.text
+msgid "<emph>Data1</emph> represents the array of the first data set."
+msgstr "<emph>Data_1</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>Data_2</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 "Пример"
+
+#: 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 "=PEARSON(A1:A30; B1:B30) 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 "Пример"
+
+#: 04060184.xhp#par_id3155849.98.help.text
+msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgstr "PHI(2.25) = 0.03"
+
+#: 04060184.xhp#par_id3143236.99.help.text
+msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgstr "PHI(-2.25) = 0.03"
+
+#: 04060184.xhp#par_id3149286.100.help.text
+msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgstr "PHI(0) = 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> = 0 calculates the density function; <emph>C</emph> = 1 calculates the distribution."
+
+#: 04060184.xhp#hd_id3159347.109.help.text
+msgctxt "04060184.xhp#hd_id3159347.109.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060184.xhp#par_id3150113.110.help.text
+msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+msgstr "=POISSON(60;50;1) 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 <emph>Alpha</emph> = 25%, the percentile means the first quartile; <emph>Alpha</emph> = 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 "Пример"
+
+#: 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 "=PERCENTILE(A1:A50; 0.1) 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 "Пример"
+
+#: 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 "=PERCENTRANK(A1:A50; 50) 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 "Пример"
+
+#: 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 "=QUARTILE(A1:A50; 2) 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; degrees_freedom_1; degrees_freedom_2)"
+
+#: 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>degrees_freedom_1</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>degrees_freedom_2</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 "Пример"
+
+#: 04060182.xhp#par_id3145073.10.help.text
+msgid " <item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+msgstr "=FINV(0.5; 5; 10) 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 "Пример"
+
+#: 04060182.xhp#par_id3149383.18.help.text
+msgid " <item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+msgstr "=FISHER(0.5) 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 "Пример"
+
+#: 04060182.xhp#par_id3150432.26.help.text
+msgid " <item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+msgstr "=FISHERINV(0.5) 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(Data_1; Data_2)"
+
+#: 04060182.xhp#par_id3150032.32.help.text
+msgid " <emph>Data1</emph> is the first record array."
+msgstr "<emph>Data_1</emph> is the first record array."
+
+#: 04060182.xhp#par_id3153018.33.help.text
+msgid " <emph>Data2</emph> is the second record array."
+msgstr "<emph>Data_2</emph> is the second record array."
+
+#: 04060182.xhp#hd_id3153123.34.help.text
+msgctxt "04060182.xhp#hd_id3153123.34.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "=FTEST(A1:A30; B1:B12) 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; degrees_freedom_1; degrees_freedom_2)"
+
+#: 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>degrees_freedom_1</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>degrees_freedom_2</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 "Пример"
+
+#: 04060182.xhp#par_id3150696.45.help.text
+msgid " <item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+msgstr "=FDIST(0.8; 8; 12) yields 0.61."
+
+#: 04060182.xhp#bm_id0119200903223192.help.text
+#, fuzzy
+msgid "<bookmark_value>GAMMA function</bookmark_value>"
+msgstr "<bookmark_value>GAMMAINV function</bookmark_value>"
+
+#: 04060182.xhp#hd_id0119200903205393.help.text
+msgid "GAMMA"
+msgstr ""
+
+#: 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 ""
+
+#: 04060182.xhp#hd_id0119200903271613.help.text
+msgctxt "04060182.xhp#hd_id0119200903271613.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060182.xhp#par_id0119200903271614.help.text
+#, fuzzy
+msgid " <emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+msgstr "<emph>Number</emph> is the value for which the Gamma distribution 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.</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 "Пример"
+
+#: 04060182.xhp#par_id3153331.55.help.text
+msgid " <item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+msgstr "=GAMMAINV(0.8; 1; 1) 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 "Пример"
+
+#: 04060182.xhp#par_id3153730.63.help.text
+msgid " <item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgstr "=GAMMALN(2) 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 ""
+
+#: 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> = 0 calculates the density function <emph>C</emph> = 1 the distribution."
+
+#: 04060182.xhp#hd_id3149535.73.help.text
+msgctxt "04060182.xhp#hd_id3149535.73.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060182.xhp#par_id3145354.74.help.text
+msgid " <item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgstr "=GAMMADIST(2; 1; 1; 1) 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 "Ова е 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 "Пример"
+
+#: 04060182.xhp#par_id3154867.82.help.text
+msgid " <item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgstr "GAUSS(0.19) = 0.08"
+
+#: 04060182.xhp#par_id3148594.83.help.text
+msgid " <item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
+msgstr "GAUSS(0.0375) = 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(Number 1; Number 2; ...Number 30)"
+
+#: 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>Number 1, Number 2,...Number 30</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 "Пример"
+
+#: 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 "GEOMEAN(23; 46; 69) = 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 "Пример"
+
+#: 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 "=TRIMMEAN(A1:A50; 0.1) 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\">Returns the two-tailed P value of a z test with standard distribution.</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; Number; 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 array of the data."
+
+#: 04060182.xhp#par_id3149977.108.help.text
+msgid " <emph>mu</emph> is the known mean of the population."
+msgstr "<emph>Number</emph> is the value to be tested."
+
+#: 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 standard deviation of the total population. If this argument is missing, the standard deviation of the sample in question will be processed."
+
+#: 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(Number 1; Number 2; ...Number 30)"
+
+#: 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>Number 1,Number 2,...Number 30</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 "Пример"
+
+#: 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 "HARMEAN(23;46;69) = 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; N_sample; Successes; N_population)"
+
+#: 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>N_sample</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>N_population </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 "Пример"
+
+#: 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 "=HYPGEOMDIST(2; 2; 90; 100) 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 ""
+
+#: 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 "TIMEVALUE(\"4PM\") 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 "TIMEVALUE(\"24:00\") 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 "Лист"
+
+#: 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 dialog 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 4<emph>th</emph>."
+
+#: 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(\"1/1/95\";1) returns 1 (1/1/95 was a Sunday)"
+
+#: 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(\"1/1/95\";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 "Повторно пресметај"
+
+#: 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 formulas in sheets</bookmark_value><bookmark_value>formulas; 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 the current sheet manually. Use this command to update all calculations in the document if you have deselected the automatic recalculation function, and also to update the NOW() function.</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 ""
+
+#: 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. Any charts contained in the sheet 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 ""
+
+#: 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>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</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 "Оператор"
+
+#: 04060199.xhp#par_id3157982.6.help.text
+msgctxt "04060199.xhp#par_id3157982.6.help.text"
+msgid "Name"
+msgstr "Име"
+
+#: 04060199.xhp#par_id3159096.7.help.text
+msgctxt "04060199.xhp#par_id3159096.7.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "Процент"
+
+#: 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 "Оператор"
+
+#: 04060199.xhp#par_id3150743.32.help.text
+msgctxt "04060199.xhp#par_id3150743.32.help.text"
+msgid "Name"
+msgstr "Име"
+
+#: 04060199.xhp#par_id3146877.33.help.text
+msgctxt "04060199.xhp#par_id3146877.33.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060199.xhp#par_id3148888.34.help.text
+msgid "= (equal sign)"
+msgstr "= (equal sign)"
+
+#: 04060199.xhp#par_id3154845.35.help.text
+msgid "Equal"
+msgstr "Еднакво"
+
+#: 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 "Оператор"
+
+#: 04060199.xhp#par_id3153048.55.help.text
+msgctxt "04060199.xhp#par_id3153048.55.help.text"
+msgid "Name"
+msgstr "Име"
+
+#: 04060199.xhp#par_id3149001.56.help.text
+msgctxt "04060199.xhp#par_id3149001.56.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 merge cell ranges."
+
+#: 04060199.xhp#par_id2324900.help.text
+msgid "Range has the highest precedence, then intersection, and then finally union."
+msgstr ""
+
+#: 04060199.xhp#par_id3158416.62.help.text
+msgctxt "04060199.xhp#par_id3158416.62.help.text"
+msgid "Operator"
+msgstr "Оператор"
+
+#: 04060199.xhp#par_id3152822.63.help.text
+msgctxt "04060199.xhp#par_id3152822.63.help.text"
+msgid "Name"
+msgstr "Име"
+
+#: 04060199.xhp#par_id3154949.64.help.text
+msgctxt "04060199.xhp#par_id3154949.64.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "Опсег"
+
+#: 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 ""
+
+#: 04060199.xhp#par_id838953.help.text
+msgid "Concatenation or union"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 12030000.xhp#tit.help.text
+msgctxt "12030000.xhp#tit.help.text"
+msgid "Sort"
+msgstr "Подреди"
+
+#: 12030000.xhp#hd_id3150275.1.help.text
+msgctxt "12030000.xhp#hd_id3150275.1.help.text"
+msgid "Sort"
+msgstr "Подреди"
+
+#: 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 recognizes 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 "Покажи"
+
+#: 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</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 value whose absolute value is to be calculated."
+
+#: 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 "Entering the value -56 will return an absolute value of 56."
+
+#: 04060106.xhp#par_id3148752.40.help.text
+msgid "<item type=\"input\">=ABS(12)</item> returns 12."
+msgstr "Entering the value 56 will return an absolute value of 56."
+
+#: 04060106.xhp#par_id320139.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ABS(0)</item> returns 0."
+msgstr "The inverse trigonometric sine of -1 returns the value -1.57."
+
+#: 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\">Враќа број на празни ќелии.</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 "<emph>range</emph> is the cell range in which the empty cells are counted."
+
+#: 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 "Entering = COUNTBLANK (A1:C3) in an empty cell range results in 9."
+
+#: 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 "<emph>Number</emph> is the value, whose inverse trigonometric cosine value is to be calculated."
+
+#: 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 ""
+
+#: 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 "The inverse trigonometric cosine of -1 returns the value 3.14."
+
+#: 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 ""
+
+#: 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 "<emph>Number</emph> is the value whose inverse hyperbolic cosine is to be calculated."
+
+#: 04060106.xhp#par_id6393932.help.text
+msgid " Number must be greater than or equal to 1."
+msgstr ""
+
+#: 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 "The inverse hyperbolic cosine of 1 returns the value 0."
+
+#: 04060106.xhp#par_id951567.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+msgstr "The inverse hyperbolic cosine of 1 returns the value 0."
+
+#: 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 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 "<emph>Number</emph> is the value whose inverse cotangent is to be calculated."
+
+#: 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 ""
+
+#: 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 "The inverse cotangent of -1 returns the value 2.36."
+
+#: 04060106.xhp#par_id8589434.help.text
+msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1. "
+msgstr ""
+
+#: 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 "<emph>Number</emph> is the value whose inverse hyperbolic cotangent is to be calculated."
+
+#: 04060106.xhp#par_id5818659.help.text
+msgid "An error results if Number is between -1 and 1 inclusive."
+msgstr ""
+
+#: 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 "The inverse hyperbolic cotangent of 1.1 returns the value 1.52."
+
+#: 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 "<emph>Number</emph> is the value whose inverse trigonometric sine is to be calculated."
+
+#: 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 ""
+
+#: 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 "The inverse trigonometric sine of -1 returns the value -1.57."
+
+#: 04060106.xhp#par_id6853846.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians). "
+msgstr "The inverse trigonometric tangent of -1 returns the value -0.79."
+
+#: 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 ""
+
+#: 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 "<emph>Number</emph> is the value whose inverse hyperbolic sine is to be calculated."
+
+#: 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 "The inverse hyperbolic sine of -90 returns the value -5.19."
+
+#: 04060106.xhp#par_id4808496.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+msgstr "The inverse trigonometric sine of -1 returns the value -1.57."
+
+#: 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 "<emph>Number</emph> is the value whose inverse trigonometric tangent value is to be calculated."
+
+#: 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 ""
+
+#: 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 "The inverse trigonometric tangent of -1 returns the value -0.79."
+
+#: 04060106.xhp#par_id8746299.help.text
+msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgstr ""
+
+#: 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(Number x; number y)"
+
+#: 04060106.xhp#par_id3151168.124.help.text
+msgid "<emph>NumberX</emph> is the value of the x coordinate."
+msgstr "<emph>Number x</emph> is the value for the x coordinate."
+
+#: 04060106.xhp#par_id3152798.125.help.text
+msgid "<emph>NumberY</emph> is the value of the y coordinate."
+msgstr "<emph>Number y</emph> is the value for 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 ""
+
+#: 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 ""
+
+#: 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 "Entering the value 45 for the x coordinate and the value 90 for the y coordinate will return an inverse trigonometric tangent of 1.11."
+
+#: 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 ""
+
+#: 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 "<emph>Number</emph> is the value whose inverse hyperbolic tangent is to be calculated."
+
+#: 04060106.xhp#par_id9357280.help.text
+msgid " Number must obey the condition -1 < number < 1."
+msgstr ""
+
+#: 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 "The inverse hyperbolic tangent of 0.99 returns the value 2.65."
+
+#: 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\">Дава косинус на дадениот агол (во радијанси).</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 "<emph>Number</emph> is the value whose cosine is to be calculated."
+
+#: 04060106.xhp#par_id831019.help.text
+msgid "To return the cosine of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 04060106.xhp#hd_id3153579.154.help.text
+msgctxt "04060106.xhp#hd_id3153579.154.help.text"
+msgid "Examples"
+msgstr "Example:"
+
+#: 04060106.xhp#par_id3147240.155.help.text
+msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
+msgstr "The angle 6.28 (2Pi) returns a cosine of 1."
+
+#: 04060106.xhp#par_id3147516.156.help.text
+msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+msgstr "The angle 3.14 (Pi) returns a cosine of -1."
+
+#: 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 "<emph>Number</emph> is the value whose hyperbolic cosine is to be calculated."
+
+#: 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 "Entering the value -5 will return a hyperbolic cosine of 74.21."
+
+#: 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.</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 "<emph>Number</emph> is the value whose cotangent is to be calculated."
+
+#: 04060106.xhp#par_id3444624.help.text
+msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 04060106.xhp#par_id6814477.help.text
+msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+msgstr ""
+
+#: 04060106.xhp#hd_id3149800.174.help.text
+msgid "Examples:"
+msgstr "Example:"
+
+#: 04060106.xhp#par_id3148616.175.help.text
+msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+msgstr "The angle -45 returns a cotangent of -0.62."
+
+#: 04060106.xhp#par_id3148986.176.help.text
+msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+msgstr "The angle 90 returns a cotangent of -0.5."
+
+#: 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 "<emph>Number</emph> is the value whose hyperbolic cotangent is to be calculated."
+
+#: 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 "Entering the value 90 returns a hyperbolic cotangent of 1."
+
+#: 04060106.xhp#bm_id6110552.help.text
+#, fuzzy
+msgid "<bookmark_value>CSC function</bookmark_value>"
+msgstr "<bookmark_value>ASIN 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
+msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 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>ASIN 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 "<emph>Number</emph> is the value whose hyperbolic cosine is to be calculated."
+
+#: 04060106.xhp#hd_id6037477.164.help.text
+msgctxt "04060106.xhp#hd_id6037477.164.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "DEG(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 value to be converted."
+
+#: 04060106.xhp#hd_id3669545.help.text
+msgctxt "04060106.xhp#hd_id3669545.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060106.xhp#par_id3459578.help.text
+msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+msgstr ""
+
+#: 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 "The result for e raised to the power -4 is 0.02."
+
+#: 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> FACT(0) returns 1. FACT(n) returns 1*2*3*4* ... *n."
+
+#: 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 "<emph>Number</emph> is the value whose factorial is to be calculated."
+
+#: 04060106.xhp#par_id3834650.help.text
+msgid "=FACT(0) returns 1 by definition. "
+msgstr ""
+
+#: 04060106.xhp#par_id8429517.help.text
+msgid "The factorial of a negative number returns the \"invalid argument\" error."
+msgstr ""
+
+#: 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 "FACT(10) returns 3628800."
+
+#: 04060106.xhp#par_id3147525.214.help.text
+msgid "<item type=\"input\">=FACT(0)</item> returns 1."
+msgstr "FACT(0) by definition 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 "<emph>Number</emph> is the number that is to be rounded down to the nearest integer."
+
+#: 04060106.xhp#par_id153508.help.text
+msgid "Negative numbers round down to the integer below."
+msgstr ""
+
+#: 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 "If you enter the number -0.1, -1 will be returned as the result."
+
+#: 04060106.xhp#par_id3147323.225.help.text
+msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
+msgstr "If you enter the number 23.74, 23 will be returned as the result."
+
+#: 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 nearest even integer and a negative number down to the nearest 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 "<emph>Number</emph> is the number that is to be rounded."
+
+#: 04060106.xhp#hd_id3155508.232.help.text
+msgctxt "04060106.xhp#hd_id3155508.232.help.text"
+msgid "Examples"
+msgstr "Example:"
+
+#: 04060106.xhp#par_id3154361.233.help.text
+msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+msgstr "If you enter the number 0.01, 2 will be returned as the result."
+
+#: 04060106.xhp#par_id8477736.help.text
+#, fuzzy
+msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
+msgstr "If you enter the number 0.01, 2 will be returned as the result."
+
+#: 04060106.xhp#par_id159611.help.text
+#, fuzzy
+msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
+msgstr "The inverse trigonometric sine of -1 returns the value -1.57."
+
+#: 04060106.xhp#par_id6097598.help.text
+#, fuzzy
+msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+msgstr "If you enter the number 0.01, 2 will be returned as the result."
+
+#: 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 ""
+
+#: 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(integer 1 to 30)"
+
+#: 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>Integer 1 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 "If you enter the numbers 512;1024 and 2000 in text boxes Integer 1;2 and 3, 16 will be returned as the result."
+
+#: 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 ""
+
+#: 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
+#, fuzzy
+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>: 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 "Пример"
+
+#: 04060106.xhp#par_id3159192.683.help.text
+msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
+msgstr "=GCD_ADD(5;15;25) 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 ""
+
+#: 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 "If you enter the value 642, TRUE will be returned as the result."
+
+#: 04060106.xhp#par_id8378856.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
+msgstr "If you enter the value 642, TRUE will be returned as the result."
+
+#: 04060106.xhp#par_id7154759.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+msgstr "If you enter the value 642, TRUE will be returned as the result."
+
+#: 04060106.xhp#par_id1912289.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+msgstr "If you enter the value 642, TRUE will be returned as the result."
+
+#: 04060106.xhp#par_id5627307.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+msgstr "If you enter the value 642, TRUE will be returned as the result."
+
+#: 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 ""
+
+#: 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 "If you enter the value 642, FALSE will be returned as the result."
+
+#: 04060106.xhp#par_id9392986.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+msgstr "If you enter the value 642, FALSE will be returned as the result."
+
+#: 04060106.xhp#par_id5971251.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+msgstr "If you enter the value 642, FALSE will be returned as the result."
+
+#: 04060106.xhp#par_id4136478.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+msgstr "If you enter the value 642, FALSE will be returned as the result."
+
+#: 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(integer 1 to 30)"
+
+#: 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>Integer 1 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 512;1024 and 2000 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 "Number(s): 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 "Пример"
+
+#: 04060106.xhp#par_id3145135.690.help.text
+msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+msgstr "=LCM_ADD(5;15;25) 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 a given number of objects.</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(count 1; count 2)"
+
+#: 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>Count 1</emph> is the total number of elements."
+
+#: 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>Count 2</emph> is the select count from the elements."
+
+#: 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 ""
+
+#: 04060106.xhp#par_id7414471.help.text
+msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+msgstr ""
+
+#: 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 "If you enter 2 in text boxes Count 1 and 2, 1 will be returned as the result."
+
+#: 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 for a given number of objects (repetition included).</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(count 1; count 2)"
+
+#: 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>Count 1</emph> is the total number of elements."
+
+#: 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>Count 2</emph> is the select count from the elements."
+
+#: 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 ""
+
+#: 04060106.xhp#par_id2052064.help.text
+msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+msgstr ""
+
+#: 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 "If you enter 2 in text boxes Count 1 and 2, 3 will be returned as the result."
+
+#: 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 of the number according to the precision specified in <emph>count</emph>.</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 "<emph>Number</emph> is the number whose decimal places are to be cut off."
+
+#: 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 "<emph>Count</emph> is the number of places after the decimal delimiter that are not to be truncated."
+
+#: 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 visible decimal places are specified in <link href=\"text/shared/optionen/01060500.xhp\">Tools - Options - %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 "If you enter the number 34.5678 and the count 1, 34.5 will be returned as the result."
+
+#: 04060106.xhp#par_id7050080.help.text
+#, fuzzy
+msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
+msgstr "If you enter the number 34.5678 and the count 1, 34.5 will be returned as the result."
+
+#: 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 "The natural logarithm to the base e of the value 3 will return the rounded value of 1.1 as the result."
+
+#: 04060106.xhp#par_id5747245.help.text
+#, fuzzy
+msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+msgstr "=GESTEP(5;1) returns 1."
+
+#: 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> is the base for the logarithm calculation."
+
+#: 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 "The logarithm of the number 10 to the base 3 will return 2.1 as the result."
+
+#: 04060106.xhp#par_id5577562.help.text
+#, fuzzy
+msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+msgstr "If you enter the number -0.1, -1 will be returned as the result."
+
+#: 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 "<emph>Number</emph> is the value whose logarithm to the base 10 is to be calculated."
+
+#: 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 "The logarithm to the base 10 of the value 3 will return 0.48 as the result."
+
+#: 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 <emph>Mode</emph> value is given and not equal to zero, and if <emph>Number</emph> and <emph>Significance</emph> are negative, then rounding is done based on the absolute value of <emph>Number</emph>. 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 <emph>Number</emph> and <emph>Significance</emph> 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 "=CEILING( -11; -2) returns -10"
+
+#: 04060106.xhp#par_id3145725.340.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
+msgstr "=CEILING( -11; -2; 0) returns -10"
+
+#: 04060106.xhp#par_id3145740.341.help.text
+msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
+msgstr "=CEILING( -11; -2; 1) 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 the value of PI (rounded value 3.14159).</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 "Pi is 3.14159... as a rounded value."
+
+#: 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 "Number(s): 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 "Пример"
+
+#: 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 "=MULTINOMIAL(F11:H11) returns 1260, if F11 to H11 contain the values 2, 3 and 4. 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 the result of a number raised to a power.</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; power) or base ^ power"
+
+#: 04060106.xhp#par_id3159540.354.help.text
+msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+msgstr "<emph>Base</emph> is the number that is to be raised to a given power."
+
+#: 04060106.xhp#par_id5081637.help.text
+msgid "The same result may be achieved by using the exponentiation operator ^:"
+msgstr ""
+
+#: 04060106.xhp#par_id9759514.help.text
+msgid "<item type=\"literal\">Base^Exponent</item>"
+msgstr ""
+
+#: 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 "If you enter 3 as the base and -2 as the power, 0.11 will be returned as the result."
+
+#: 04060106.xhp#par_id1614429.help.text
+msgid "=4^3 also returns 4 to the power of 3."
+msgstr ""
+
+#: 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=\"HID_AAI_FUNC_SERIESSUM\">Returns a sum of powers of the number x</ahelp> in accordance with the following formula:"
+
+#: 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 "x: the number as an independent variable"
+
+#: 04060106.xhp#par_id3144344.647.help.text
+msgid "<emph>N</emph> is the initial power"
+msgstr "n: the starting power"
+
+#: 04060106.xhp#par_id3144357.648.help.text
+msgid "<emph>M</emph> is the increment to increase N"
+msgstr "m: the increment"
+
+#: 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 "coefficients: 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(number 1 to 30)"
+
+#: 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>Number 1 to number 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 ""
+
+#: 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 "If you enter the numbers 2; 3 and 4 in the Number 1; 2 and 3 text boxes, 24 will be returned as the result."
+
+#: 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(number 1 to 30)"
+
+#: 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>Number 1 to number 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 2; 3 and 4 in the <emph>Number 1</emph>; <emph>2</emph> and <emph>3</emph> 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 after a number is divided by a divisor.</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 "<emph>Dividend</emph> is the value from which to find the remainder after dividing."
+
+#: 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 "<emph>Divisor</emph> is the number by which to divide the specified value."
+
+#: 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 "The value 17 in the Dividend field is to be divided by the divisor -1.4. -1.2 will be returned as the remainder."
+
+#: 04060106.xhp#par_id1278420.help.text
+#, fuzzy
+msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+msgstr "Entering the value 56 will return an absolute value of 56."
+
+#: 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 result 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3144674.656.help.text
+msgctxt "04060106.xhp#hd_id3144674.656.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060106.xhp#par_id3144687.657.help.text
+msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+msgstr "=QUOTIENT(11;3) returns 3. The remainder of 2 is omitted."
+
+#: 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."
+
+#: 04060106.xhp#hd_id876186.help.text
+msgctxt "04060106.xhp#hd_id876186.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 ""
+
+#: 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\">Returns a number rounded 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 "<emph>number</emph> is the number to be rounded."
+
+#: 04060106.xhp#par_id599688.help.text
+msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgstr ""
+
+#: 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 "If you enter the number 17.546 in the <emph>number</emph> field, with 1 specified as the number of rounding places, 17.5 will be returned as the result."
+
+#: 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 "=ROUND(-32.4834; 3) returns -32.483. Change the cell format to see all decimals."
+
+#: 04060106.xhp#par_id1371501.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+msgstr "If you enter the number 17.546 in the <emph>number</emph> field, with 1 specified as the number of rounding places, 17.5 will be returned as the result."
+
+#: 04060106.xhp#par_id4661702.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3. "
+msgstr "If you enter the number 1.01, 3 will be returned as the result."
+
+#: 04060106.xhp#par_id7868892.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+msgstr "Entering the value 123.343 and the value 2 in the <emph>count</emph> field will return the value 123.35."
+
+#: 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.</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 "<emph>number</emph> is the number to be rounded down."
+
+#: 04060106.xhp#par_id2188787.help.text
+msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+msgstr ""
+
+#: 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 "Entering the value 567.567 and the value 2 in the <emph>count</emph> field will return 567.56."
+
+#: 04060106.xhp#par_id5833307.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
+msgstr "Entering the value 567.567 and the value 2 in the <emph>count</emph> field will return 567.56."
+
+#: 04060106.xhp#par_id7726676.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
+msgstr "Entering the value 567.567 and the value 2 in the <emph>count</emph> field will return 567.56."
+
+#: 04060106.xhp#par_id3729361.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
+msgstr "Entering the value 567.567 and the value 2 in the <emph>count</emph> field will return 567.56."
+
+#: 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, according to the specified decimal place.</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 "<emph>number</emph> is the number to be rounded up."
+
+#: 04060106.xhp#par_id9573961.help.text
+msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgstr ""
+
+#: 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 "Entering the value 123.343 and the value 2 in the <emph>count</emph> field will return the value 123.35."
+
+#: 04060106.xhp#par_id7700430.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+msgstr "Entering the value 567.567 and the value 2 in the <emph>count</emph> field will return 567.56."
+
+#: 04060106.xhp#par_id1180455.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+msgstr "Entering the value 123.343 and the value 2 in the <emph>count</emph> field will return the value 123.35."
+
+#: 04060106.xhp#par_id3405560.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+msgstr "If you enter the number -4.5, -1 will be returned as the result."
+
+#: 04060106.xhp#par_id3409527.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgstr "Entering the value 123.343 and the value 2 in the <emph>count</emph> field will return the value 123.35."
+
+#: 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
+msgid "To return the secant of an angle in degrees, use the RADIANS function."
+msgstr ""
+
+#: 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 "<emph>Number</emph> is the number whose hyperbolic sine is to be calculated."
+
+#: 04060106.xhp#hd_id9838764.164.help.text
+msgctxt "04060106.xhp#hd_id9838764.164.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 number (angle).</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 "<emph>Number</emph> is 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 ""
+
+#: 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 "The sine of the angle (in radians) 3.14 (Pi) is 0."
+
+#: 04060106.xhp#par_id3916440.help.text
+#, fuzzy
+msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgstr "The angle 3.14 (Pi) returns a cosine of -1."
+
+#: 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 "<emph>Number</emph> is the number whose hyperbolic sine is to be calculated."
+
+#: 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 "If you enter the value -5, -74.2 will be returned as the hyperbolic sine."
+
+#: 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; number 2; ...; number 30)"
+
+#: 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 2; 3 and 4 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 "SUM(A1;A3;B5) calculates the sum of the three cells. SUM (A1:E10) 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 >=1.1.99 to <1.2.99. 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, 1.1.99, of the invoices to be included and C2 the date, 1.2.99, 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 "=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)"
+
+#: 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 key 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. 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. The SUM() function can also be used in this way, for example, as COUNTIF() with several criteria."
+
+#: 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; sum_range)"
+
+#: 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>Sum_range</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the <emph>Range</emph> 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 ""
+
+#: 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: SUMIF(A1:A10;\"<0\")"
+
+#: 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 ""
+
+#: 04060106.xhp#par_id6062196.help.text
+msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+msgstr ""
+
+#: 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.</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 "<emph>Number</emph> is 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 ""
+
+#: 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 "The tangent of the angle (in radians) 3.14 (Pi) is 0."
+
+#: 04060106.xhp#par_id1804864.help.text
+#, fuzzy
+msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+msgstr "The angle 90 returns a cotangent of -0.5."
+
+#: 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 "<emph>Number</emph> is the number whose hyperbolic tangent is to be calculated."
+
+#: 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 "If you enter the value -5, the system returns the hyperbolic tangent -1."
+
+#: 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 "Функција"
+
+#: 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 "=SUBTOTAL(9; B2:B5)"
+
+#: 04060106.xhp#bm_id3143672.help.text
+msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
+msgstr "<bookmark_value>Euro; converting in</bookmark_value><bookmark_value>CONVERT function</bookmark_value>"
+
+#: 04060106.xhp#hd_id3143672.564.help.text
+msgid "EUROCONVERT"
+msgstr "CONVERT"
+
+#: 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\">This function allows you to convert a European currency value into 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 "CONVERT(value;\"Text\"; \"Text\")"
+
+#: 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 in 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>Text</emph> is the official abbreviation for the currency in question (for example, \"EUR\"). The first <emph>Text</emph> parameter gives the source value to be converted, the second <emph>Text</emph> parameter gives the destination value."
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id3143819.570.help.text
+msgid "<emph>Examples</emph>"
+msgstr "<emph>Example:</emph>"
+
+#: 04060106.xhp#par_id3143837.571.help.text
+msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+msgstr "=CONVERT(100;\"ATS\";\"EUR\") converts 100 Austrian Schilling into Euro."
+
+#: 04060106.xhp#par_id3143853.572.help.text
+msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+msgstr "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euro into German Mark."
+
+#: 04060106.xhp#bm_id0908200902090676.help.text
+#, fuzzy
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr "<bookmark_value>COVAR function</bookmark_value>"
+
+#: 04060106.xhp#hd_id0908200902074836.help.text
+msgid "CONVERT"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id0908200902131152.help.text
+msgctxt "04060106.xhp#hd_id0908200902131152.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060106.xhp#par_id090820090213112.help.text
+msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+msgstr ""
+
+#: 04060106.xhp#par_id0908200902475431.help.text
+msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks. "
+msgstr ""
+
+#: 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 "<emph>Number</emph> is the number that is to be rounded."
+
+#: 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 "If you enter the number 1.01, 3 will be returned as the result."
+
+#: 04060106.xhp#par_id8746910.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ODD(1)</item> returns 1."
+msgstr "If you enter the number 1.01, 3 will be returned as the result."
+
+#: 04060106.xhp#par_id9636524.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgstr "If you enter the number 1.01, 3 will be returned as the result."
+
+#: 04060106.xhp#par_id5675527.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgstr "If you enter the number 1.01, 3 will be returned as the result."
+
+#: 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 <emph>Mode</emph> value is given and not equal to zero, and if <emph>Number</emph> and <emph>Significance</emph> 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 <emph>Number</emph> and <emph>Significance</emph> are negative, and if the <emph>Mode</emph> 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 "=FLOOR( -11; -2) returns -12"
+
+#: 04060106.xhp#par_id3163966.520.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+msgstr "=FLOOR( -11; -2; 0) returns -12"
+
+#: 04060106.xhp#par_id3163988.521.help.text
+msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
+msgstr "=FLOOR( -11; -2; 1) 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. </ahelp> The function returns the result 1 for a positive sign and -1 for a negative sign. If the number is zero, then the function likewise produces a zero."
+
+#: 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 "If you enter the number 3.4, 1 will be returned as the result."
+
+#: 04060106.xhp#par_id3164212.530.help.text
+msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+msgstr "If you enter the number -4.5, -1 will be returned as the result."
+
+#: 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\">The result is the nearest integer multiple of the 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 ""
+
+#: 04060106.xhp#par_id3068636.help.text
+msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3164333.662.help.text
+msgctxt "04060106.xhp#hd_id3164333.662.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "Which integer multiple of 3 is the number 15.5 closest to?"
+
+#: 04060106.xhp#par_idN14DD6.help.text
+msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
+msgstr "=MROUND(1.6;0.5) returns 1.5, the nearest integer multiple of 0.5 to approach 1.6."
+
+#: 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> The value of the number must be positive."
+
+#: 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 "<emph>Number</emph> is the number whose square root is to be calculated."
+
+#: 04060106.xhp#par_id6870021.help.text
+msgid " Number must be positive."
+msgstr ""
+
+#: 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 "The square root of 16 is 4."
+
+#: 04060106.xhp#par_id3591723.help.text
+msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+msgstr ""
+
+#: 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 a number*PI.</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 ""
+
+#: 04060106.xhp#par_id9929197.help.text
+msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgstr ""
+
+#: 04060106.xhp#hd_id3164641.669.help.text
+msgctxt "04060106.xhp#hd_id3164641.669.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060106.xhp#par_id3164654.670.help.text
+msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+msgstr "=SQRTPI(2) returns the rounded value 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 between <emph>Bottom</emph> and <emph>Top</emph> (both inclusive).</ahelp> To recalculate press Shift+Ctrl+F9."
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id3164772.675.help.text
+msgctxt "04060106.xhp#hd_id3164772.675.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060106.xhp#par_id3164785.676.help.text
+msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+msgstr "=RANDBETWEEN (20;30) 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#hd_id9089022.help.text
+msgctxt "04060106.xhp#hd_id9089022.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060106.xhp#par_id9569078.help.text
+msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgstr ""
+
+#: 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 elements 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 "An example can be found under SUM()."
+
+#: 04060106.xhp#par_id3581652.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
+msgstr ""
+
+#: 04060106.xhp#par_id708639.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+msgstr ""
+
+#: 04060106.xhp#par_id5169225.help.text
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060106.xhp#par_id6386913.help.text
+#, fuzzy
+msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgstr "To sum up only negative numbers: SUMIF(A1:A10;\"<0\")"
+
+#: 02180000.xhp#tit.help.text
+msgctxt "02180000.xhp#tit.help.text"
+msgid "Move or Copy a Sheet"
+msgstr "Преместување или копирање на лист"
+
+#: 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 "Преместување или копирање на лист"
+
+#: 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 "Копирај"
+
+#: 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 "Пополни лист"
+
+#: 02140500.xhp#hd_id3153897.1.help.text
+msgctxt "02140500.xhp#hd_id3153897.1.help.text"
+msgid "Fill Sheet"
+msgstr "Пополни лист"
+
+#: 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 spreadsheets or ranges of a certain spreadsheet.</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 Spreadsheet"
+
+#: 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 gray box in the upper left of the spreadsheet. 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 worksheet 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 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."
+
+#: 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 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."
+
+#: 05080200.xhp#tit.help.text
+msgctxt "05080200.xhp#tit.help.text"
+msgid "Remove"
+msgstr "Отстрани"
+
+#: 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 "Освежи опсег"
+
+#: 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 dialog 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 "Отстрани"
+
+#: 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 ""
+
+#: 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 "Пример"
+
+#: func_datevalue.xhp#par_id3155841.25.help.text
+msgid " <emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
+msgstr "DATEVALUE(\"7/20/54\") 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; Rank_c)"
+
+#: 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>Rank_c</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 "Пример"
+
+#: 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 "=LARGE(A1:C50; 2) 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; Rank_c)"
+
+#: 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>Rank_c</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 "Пример"
+
+#: 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 "=SMALL(A1:C50; 2) 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 "Пример"
+
+#: 04060183.xhp#par_id3153335.28.help.text
+msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
+msgstr "=CONFIDENCE(0.05; 1.5; 100) 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(Data_1; Data_2)"
+
+#: 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>Data_1</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>Data_2</emph> is the second data set."
+
+#: 04060183.xhp#hd_id3149720.36.help.text
+msgctxt "04060183.xhp#hd_id3149720.36.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "=CORREL(A1:A50; B1:B50) 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(Data_1; Data_2)"
+
+#: 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>Data_1</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>Data_2</emph> is the second data set."
+
+#: 04060183.xhp#hd_id3154677.45.help.text
+msgctxt "04060183.xhp#hd_id3154677.45.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060183.xhp#par_id3144748.46.help.text
+msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgstr "=COVAR(A1:A30; B1:B30)"
+
+#: 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 "Пример"
+
+#: 04060183.xhp#par_id3148740.56.help.text
+msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+msgstr "=CRITBINOM(100; 0.5; 0.1) 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(Number 1; Number 2; ...Number 30)"
+
+#: 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>Number 1,Number 2,...Number 30</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 "Пример"
+
+#: 04060183.xhp#par_id3150016.64.help.text
+msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+msgstr "=KURT(A1;A2;A3;A4;A5;A6)"
+
+#: 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 "Пример"
+
+#: 04060183.xhp#par_id3155623.74.help.text
+msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
+msgstr "=LOGINV(0.05; 0; 1) 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)"
+
+#: 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> 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> 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 ""
+
+#: 04060183.xhp#hd_id3153178.83.help.text
+msgctxt "04060183.xhp#hd_id3153178.83.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060183.xhp#par_id3149778.84.help.text
+msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+msgstr "=LOGNORMDIST(0.1; 0; 1) returns 0.01."
+
+#: 02140200.xhp#tit.help.text
+msgctxt "02140200.xhp#tit.help.text"
+msgid "Right"
+msgstr "Десно"
+
+#: 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> dialog 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>Move/Copy</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> dialog 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 "Лозинка (изборно)"
+
+#: 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 unauthorized 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> dialog 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 <emph>Months</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(Start date;Months)"
+
+#: func_edate.xhp#par_id3146860.217.help.text
+msgid "<emph>StartDate</emph> is a date."
+msgstr "<emph>Start date</emph>: 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>: the number of months."
+
+#: func_edate.xhp#hd_id3151289.219.help.text
+msgctxt "func_edate.xhp#hd_id3151289.219.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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 "=EDATE(\"3.31.2001\";-1) 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</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 "Пример"
+
+#: 04060110.xhp#par_id3154621.245.help.text
+msgid " <item type=\"input\">=ARABIC(\"MXIV\")</item> returns 1014"
+msgstr "ARABIC(\"MXIV\") returns 1014"
+
+#: 04060110.xhp#par_id3147553.246.help.text
+msgid " <item type=\"input\">=ARABIC(\"MMII\")</item> returns 2002"
+msgstr "ARABIC(\"MMII\") returns 2002"
+
+#: 04060110.xhp#bm_id8796349.help.text
+#, fuzzy
+msgid "<bookmark_value>ASC function</bookmark_value>"
+msgstr "<bookmark_value>ASIN function</bookmark_value>"
+
+#: 04060110.xhp#hd_id7723929.help.text
+msgid "ASC"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 04060110.xhp#par_id2355113.help.text
+msgid "See also JIS function."
+msgstr ""
+
+#: 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 "Синтакса"
+
+#: 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 "Пример"
+
+#: 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 "BAHTTEXT(12.65) 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; [Minimum length])"
+
+#: 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>Minimum length</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 "Пример"
+
+#: 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 "BASE(17;10;4) 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 "BASE(17;2) 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 "BASE(255;16;4) 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 "Пример"
+
+#: 04060110.xhp#par_id3149890.208.help.text
+msgid " <item type=\"input\">=CHAR(100)</item> returns the character d."
+msgstr "CHAR(100) returns the character \"d\"."
+
+#: 04060110.xhp#par_id0907200910283297.help.text
+msgid "=\"abc\" & CHAR(10) & \"def\" inserts a newline character into the string."
+msgstr ""
+
+#: 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 "Пример"
+
+#: 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 "CODE(\"Hieronymus\") returns 72, CODE(\"hieroglyphic\") 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(Text 1;...;Text 30)"
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3150008.173.help.text
+msgid " <item type=\"input\">=CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\")</item> returns: Good Morning Mrs. Doe."
+msgstr "CONCATENATE(\"Good \";\"Morning \";\"Mrs. \";\"Doe\") returns <emph>Good Morning Mrs. Doe</emph>."
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3145355.233.help.text
+msgid " <item type=\"input\">=DECIMAL(\"17\";10)</item> returns 17."
+msgstr "DECIMAL(\"17\";10) returns 17."
+
+#: 04060110.xhp#par_id3155622.234.help.text
+msgid " <item type=\"input\">=DECIMAL(\"FACE\";16)</item> returns 64206."
+msgstr "DECIMAL(\"FACE\";16) returns 64206."
+
+#: 04060110.xhp#par_id3151015.235.help.text
+msgid " <item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
+msgstr "DECIMAL(\"0101\";2) 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 "ДОЛАР"
+
+#: 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 <emph>value</emph> field enter the number to be converted to currency. Optionally, you may enter the number of decimal places in the <emph>decimals</emph> 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 "Пример"
+
+#: 04060110.xhp#par_id3153546.18.help.text
+msgid " <item type=\"input\">=DOLLAR(255)</item> returns $255.00."
+msgstr "DOLLAR(255) 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 "DOLLAR(367.456;2) 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(text_1;text_2)"
+
+#: 04060110.xhp#par_id3153224.82.help.text
+msgid " <emph>Text1</emph> refers to the first text to compare."
+msgstr "<emph>text_1</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>text_2</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 "Пример"
+
+#: 04060110.xhp#par_id3156263.85.help.text
+msgid " <item type=\"input\">=EXACT(\"microsystems\";\"Microsystems\")</item> returns FALSE."
+msgstr "EXACT(\"Sun microsystems\";\"Sun Microsystems\") 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(find_text; text; position)"
+
+#: 04060110.xhp#par_id3150608.48.help.text
+msgid " <emph>FindText</emph> refers to the text to be found."
+msgstr "<emph>find_text</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 "Пример"
+
+#: 04060110.xhp#par_id3156375.52.help.text
+msgid " <item type=\"input\">=FIND(76;998877665544)</item> returns 6."
+msgstr "FIND(76;998877665544) 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\">Specifies that a number be displayed with a fixed number of decimal places and with or without a thousands separator. This function can be used to apply a uniform format to a column of numbers.</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; no thousands separators)"
+
+#: 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>No thousands separators</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 "Пример"
+
+#: 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 "FIXED(1234567.89;3) returns 1,234,567.890. FIXED(1234567.89;3;1) returns 1234567.890."
+
+#: 04060110.xhp#par_id5282143.help.text
+#, fuzzy
+msgid " <item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgstr "FIXED(1234567.89;3) returns 1,234,567.890. FIXED(1234567.89;3;1) returns 1234567.890."
+
+#: 04060110.xhp#bm_id7319864.help.text
+#, fuzzy
+msgid "<bookmark_value>JIS function</bookmark_value>"
+msgstr "<bookmark_value>IF function</bookmark_value>"
+
+#: 04060110.xhp#hd_id3666188.help.text
+msgid "JIS"
+msgstr ""
+
+#: 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 ""
+
+#: 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
+#, fuzzy
+msgid "JIS(\"Text\")"
+msgstr "TRIM(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 ""
+
+#: 04060110.xhp#par_id3984496.help.text
+msgid "See also ASC function."
+msgstr ""
+
+#: 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\">Го дава првиот знак или знаци од текстот.</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 "Пример"
+
+#: 04060110.xhp#par_id3149141.102.help.text
+msgid " <item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
+msgstr "LEFT(\"output\";3) returns <emph>out</emph>."
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3156008.110.help.text
+msgid " <item type=\"input\">=LEN(\"Good Afternoon\")</item> returns 14."
+msgstr "LEN(\"Good Afternoon\") returns <emph>14</emph>."
+
+#: 04060110.xhp#par_id3154300.111.help.text
+msgid " <item type=\"input\">=LEN(12345.67)</item> returns 8."
+msgstr "LEN(12345.67) returns <emph>8</emph>."
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3155329.93.help.text
+msgid " <item type=\"input\">=LOWER(\"Sun\")</item> returns sun."
+msgstr "LOWER(\"Sun\") 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 segment of a character string. 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 "Пример"
+
+#: 04060110.xhp#par_id3158407.156.help.text
+msgid " <item type=\"input\">=MID(\"office\";2;2)</item> returns ff."
+msgstr "MID(\"Sun Microsystems\";5;5) returns <emph>Micro</emph>."
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3155364.76.help.text
+msgid " <item type=\"input\">=PROPER(\"open office\")</item> returns Open Office."
+msgstr "PROPER(\"sun microsystems\") returns Sun Microsystems."
+
+#: 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; new text)"
+
+#: 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>new text</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 "Пример"
+
+#: 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 "REPLACE(\"1234567\";1;1;\"444\") returns \"444234567\". One character at position 1 is replaced by the complete <emph>new text</emph>."
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3148626.200.help.text
+msgid " <item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
+msgstr "REPT(\"Good morning\"; 2) returns <emph>Good morningGood morning</emph>."
+
+#: 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\">Го враќа последниот знак или знаци од текстот.</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 "Пример"
+
+#: 04060110.xhp#par_id3151132.120.help.text
+msgid " <item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
+msgstr "RIGHT(\"Sun\";2) returns <emph>un</emph>."
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3151371.255.help.text
+msgid " <item type=\"input\">=ROMAN(999)</item> returns CMXCIX"
+msgstr "ROMAN(999) returns CMXCIX"
+
+#: 04060110.xhp#par_id3153938.256.help.text
+msgid " <item type=\"input\">=ROMAN(999;0)</item> returns CMXCIX"
+msgstr "ROMAN(999;0) returns CMXCIX"
+
+#: 04060110.xhp#par_id3148412.257.help.text
+msgid " <item type=\"input\">=ROMAN (999;1)</item> returns LMVLIV"
+msgstr "ROMAN (999;1) returns LMVLIV"
+
+#: 04060110.xhp#par_id3155421.258.help.text
+msgid " <item type=\"input\">=ROMAN(999;2)</item> returns XMIX"
+msgstr "ROMAN(999;2) returns XMIX"
+
+#: 04060110.xhp#par_id3149235.259.help.text
+msgid " <item type=\"input\">=ROMAN(999;3)</item> returns VMIV"
+msgstr "ROMAN(999;3) returns VMIV"
+
+#: 04060110.xhp#par_id3150624.260.help.text
+msgid " <item type=\"input\">=ROMAN(999;4)</item> returns IM"
+msgstr "ROMAN(999;4) 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(find_text; text; position)"
+
+#: 04060110.xhp#par_id3146080.126.help.text
+msgid " <emph>FindText</emph> is the text to be searched for."
+msgstr "<emph>find_text</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 "Пример"
+
+#: 04060110.xhp#par_id3154564.130.help.text
+msgid " <item type=\"input\">=SEARCH(54;998877665544)</item> returns 10."
+msgstr "SEARCH(54;998877665544) 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; search_text; new text; 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>search_text </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>new text</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 "Пример"
+
+#: 04060110.xhp#par_id3150412.183.help.text
+msgid " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\")</item> returns 12abc12abc12abc."
+msgstr "SUBSTITUTE(\"123123123\"; \"3\"; \"abc\") returns <emph>12abc12abc12abc</emph>."
+
+#: 04060110.xhp#par_id3154915.238.help.text
+msgid " <item type=\"input\">=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2)</item> returns 12312abc123."
+msgstr "SUBSTITUTE(\"123123123\"; \"3\"; \"abc\"; 2) returns <emph>12312abc123</emph>."
+
+#: 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 converts a number to a blank text string.</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 "<emph>value</emph> is the value to be converted. Also, a reference can be used as a parameter. If the referenced cell includes a number or a formula containing a numerical result, the result will be an empty string."
+
+#: 04060110.xhp#hd_id3155544.145.help.text
+msgctxt "04060110.xhp#hd_id3155544.145.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060110.xhp#par_id3151062.146.help.text
+msgid " <item type=\"input\">=T(12345)</item> returns an empty string. "
+msgstr "T(12345) becomes an empty string \"\", if 12345 is formatted as a number. T(\"12345\") returns 12345."
+
+#: 04060110.xhp#par_id4650105.help.text
+#, fuzzy
+msgid " <item type=\"input\">=T(\"12345\")</item> returns the string 12345."
+msgstr "T(12345) becomes an empty string \"\", if 12345 is formatted as a number. T(\"12345\") returns 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 "Пример"
+
+#: 04060110.xhp#par_id9044770.help.text
+msgid " <item type=\"input\">=TEXT(12.34567;\"###.##\")</item> returns the text 12.35"
+msgstr ""
+
+#: 04060110.xhp#par_id3674123.help.text
+msgid " <item type=\"input\">=TEXT(12.34567;\"000.00\")</item> returns the text 012.35"
+msgstr ""
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3156074.60.help.text
+msgid " <item type=\"input\">=TRIM(\"hello\")</item> returns hello."
+msgstr "TRIM(\" hello\") returns \"hello\"."
+
+#: 04060110.xhp#bm_id0907200904030935.help.text
+#, fuzzy
+msgid "<bookmark_value>UNICHAR function</bookmark_value>"
+msgstr "<bookmark_value>CHAR function</bookmark_value>"
+
+#: 04060110.xhp#hd_id0907200904022525.help.text
+msgid "UNICHAR"
+msgstr ""
+
+#: 04060110.xhp#par_id0907200904022538.help.text
+msgid "<ahelp hid=\".\">Converts a code number into a Unicode character or letter.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 04060110.xhp#hd_id0907200904123720.help.text
+msgctxt "04060110.xhp#hd_id0907200904123720.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060110.xhp#par_id090720090412378.help.text
+msgid "=UNICHAR(169) returns the Copyright character <emph>©</emph>."
+msgstr ""
+
+#: 04060110.xhp#bm_id0907200904033543.help.text
+#, fuzzy
+msgid "<bookmark_value>UNICODE function</bookmark_value>"
+msgstr "<bookmark_value>CODE function</bookmark_value>"
+
+#: 04060110.xhp#hd_id0907200904022588.help.text
+msgid "UNICODE"
+msgstr ""
+
+#: 04060110.xhp#par_id0907200904022594.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Returns the numeric code for the first Unicode 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_id0907200904123874.help.text
+msgctxt "04060110.xhp#hd_id0907200904123874.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060110.xhp#par_id0907200904123846.help.text
+#, fuzzy
+msgid "UNICODE(\"Text\")"
+msgstr "CODE(Text)"
+
+#: 04060110.xhp#hd_id0907200904123899.help.text
+msgctxt "04060110.xhp#hd_id0907200904123899.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060110.xhp#par_id0907200904123919.help.text
+msgid "=UNICODE(\"©\") returns the Unicode number 169 for the Copyright character."
+msgstr ""
+
+#: 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 "Пример"
+
+#: 04060110.xhp#par_id3146757.68.help.text
+msgid " <item type=\"input\">=UPPER(\"Good Morning\")</item> returns GOOD MORNING."
+msgstr "UPPER(\"Good Morning\") 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 "Пример"
+
+#: 04060110.xhp#par_id3144733.191.help.text
+msgid " <item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
+msgstr "VALUE(\"4321\") returns 4321."
+
+#: 12080300.xhp#tit.help.text
+msgid "Group"
+msgstr "Групирај"
+
+#: 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 "Вклучи"
+
+#: 12080300.xhp#hd_id3150448.6.help.text
+msgctxt "12080300.xhp#hd_id3150448.6.help.text"
+msgid "Rows"
+msgstr "Редови"
+
+#: 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 "Колони"
+
+#: 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 "Автоматски внес"
+
+#: 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 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."
+
+#: 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 "Автоматски филтер"
+
+#: 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 "Разделување"
+
+#: 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 "Разделување"
+
+#: 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 dialog 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> dialog 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>Automatic line break</emph> and the <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 check mark shows the current status."
+
+#: 02190100.xhp#tit.help.text
+msgctxt "02190100.xhp#tit.help.text"
+msgid "Row Break"
+msgstr "Прелом на ред"
+
+#: 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; row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value><bookmark_value>removing; manual row breaks</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 "Означи невалидни податоци"
+
+#: 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
+#, fuzzy
+msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgstr "<bookmark_value>calculating;Data Pilot</bookmark_value>"
+
+#: 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
+#, fuzzy
+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 "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=\"DataPilot\">DataPilot</link> dialog."
+
+#: 12090105.xhp#hd_id3152596.2.help.text
+msgctxt "12090105.xhp#hd_id3152596.2.help.text"
+msgid "Subtotals"
+msgstr "Подзбирови"
+
+#: 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 "Ништо"
+
+#: 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 "Автоматски"
+
+#: 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 "Кориснички дефинирано"
+
+#: 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 "Функција"
+
+#: 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 "Повеќе"
+
+#: 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 dialog. 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 "Опции"
+
+#: 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> dialog. 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 dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
+
+#: 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 "Тип"
+
+#: 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 "Тип"
+
+#: 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 "Нормален"
+
+#: 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
+#, fuzzy
+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 "Each result is divided by the total result for its row in the DataPilot 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. "
+
+#: 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 "Индекс"
+
+#: 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 "Rate: 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 "Period: 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 "NPER: 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 "PV. 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 "FV (optional): 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 "Type (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 "Пример"
+
+#: 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 "PPMT(8.75%/12;1;36;5000;8000;1) = -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 "Rate: 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 "NPER: 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 "PV: 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 "S: 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 "E: 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 "Type: 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 "Пример"
+
+#: 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 "CUMPRINC(5.5%/12;36;15000;10;18;0) = -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;Start period;End period;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 "Rate: 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 "NPER: 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 "PV: 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 "Start period: 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 "End period: 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 "Type: 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 "Пример"
+
+#: 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 "CUMPRINC_ADD(0.0075;360;125000;13;24;0) 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 "CUMPRINC_ADD(0.0075;360;125000;1;1;0) 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 "Rate: 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 "NPER: 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 "pv: 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 "S: 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 "E: 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 "Type: 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 "Пример"
+
+#: 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 "CUMIPMT(5.5%/12;24;5000;4;6;1) = -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;Start period;End period;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 "Rate: 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 "NPER: 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 "Pv: 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 "Start period: 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 "End period: 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 "Type: 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 "Пример"
+
+#: 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 "=CUMIPMT_ADD(0.0075;360;125000;13;24;0) 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 "=CUMIPMT_ADD(0.0075;360;125000;1;1;0) 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 "Settlement: 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 "Maturity: 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 "Rate: 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 "Yield: 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 "Redemption: 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 "Frequency: 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 "Пример"
+
+#: 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 2/15/1999; the maturity date is 11/15/2007. 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(\"2/15/1999\"; \"11/15/2007\"; 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 "Settlement: 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 "Maturity: 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 "Discount: 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 "Redemption: 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 "Пример"
+
+#: 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 2/15/1999; the maturity date is 3/1/1999. 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(\"2/15/1999\"; \"3/1/1999\"; 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 "Settlement: 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 "Maturity: 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 "Issue: 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 "Rate: 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 "Yield: the annual yield of the security."
+
+#: 04060119.xhp#hd_id3150507.42.help.text
+msgctxt "04060119.xhp#hd_id3150507.42.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 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(\"2/15/1999\";\"4/13/1999\";\"11/11/1998\"; 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 "Rate: 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 "PV: 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 "FV: 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 "Пример"
+
+#: 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 "COST: 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 "SALVAGE: 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 "LIFE: 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 "Пример"
+
+#: 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 "SLN(50000;3,500;84) = 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 "Settlement: 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 "Maturity: 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 "Coupon: 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 "Yield: 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 "Frequency: 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 "Пример"
+
+#: 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 1/1/2001; the maturity date is 1/1/2006. 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(\"1/1/2001\"; \"1/1/2006\"; 0.08; 0.09; 2; 3)"
+
+#: 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;Value 1;Value 2;...)"
+
+#: 04060119.xhp#par_id3150630.305.help.text
+msgid "<emph>Rate</emph> is the discount rate for a period."
+msgstr "RATE: 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 "Value1;... 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 "Пример"
+
+#: 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 "NPV(8.75%;10;20;30) = 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(EFFECT_RATE;NPERY)"
+
+#: 04060119.xhp#par_id3147521.315.help.text
+msgid "<emph>EffectiveRate</emph> is the effective interest rate"
+msgstr "EFFECT_RATE: 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 "NPERY: 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 "Пример"
+
+#: 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 "NOMINAL(13.5%;12) = 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(Effective rate;Npery)"
+
+#: 04060119.xhp#par_id3153777.233.help.text
+msgid "<emph>EffectiveRate</emph> is the effective annual rate of interest."
+msgstr "Effective rate: 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 "Npery: 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 "Пример"
+
+#: 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 "=NOMINAL_ADD(5.3543%; 4) 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 (Decimal dollar;Fraction)"
+
+#: 04060119.xhp#par_id3149558.212.help.text
+msgid "<emph>DecimalDollar</emph> is a decimal number."
+msgstr "Decimal dollar: 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 "Fraction: 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 "Пример"
+
+#: 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 "=DOLLARFR(1.125;16) 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 "=DOLLARFR(1.125;8) 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(Fractional dollar;Fraction)"
+
+#: 04060119.xhp#par_id3154111.203.help.text
+msgid "<emph>FractionalDollar</emph> is a number given as a decimal fraction."
+msgstr "Fractional dollar: 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 "Fraction: 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 "Пример"
+
+#: 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 "=DOLLARDE (1.02;16) 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 "=DOLLARDE (1.1;8) 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; reinvest_rate)"
+
+#: 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 "Values: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 "investment: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 "reinvest_rate: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 "Пример"
+
+#: 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=-5, A2=10, A3=15, and A4=8, 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 "Settlement: 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 "Maturity: 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 "Rate: 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 "Price: 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 "Redemption: 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 "Frequency: 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 "Пример"
+
+#: 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 2/15/1999. It matures on 11/15/2007. 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(\"2/15/1999\"; \"11/15/2007\"; 0.0575 ;95.04287; 100; 2; 0) returns 0.065 or 6.5 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 "Settlement: 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 "Maturity: 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 "Price: 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 "Redemption: 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 "Пример"
+
+#: 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 2/15/1999. It matures on 3/1/1999. 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(\"2/15/1999\"; \"3/1/1999\"; 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 "Settlement: 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 "Maturity: 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 "Issue: 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 "Rate: 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 "Price: 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 "Пример"
+
+#: 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 3/15/1999. It matures on 11/3/1999. The issue date was 11/8/1998. 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(\"3/15/1999\"; \"11/3/1999\"; \"11/8/1998\"; 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 "Rate: 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 "NPER: 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 "PV: 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 "FV (optional): 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 "Type (optional): 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 "Пример"
+
+#: 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 "PMT(1.99%/12;36;25000) = -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 "Settlement: 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 "Maturity: 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 "Discount: 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 "Пример"
+
+#: 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(\"3/31/99\";\"6/1/99\"; 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 "Settlement: 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 "Maturity: 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 "Discount: 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 "Пример"
+
+#: 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(\"3/31/99\";\"6/1/99\"; 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 "Settlement: 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 "Maturity: 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 "Price: 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 "Пример"
+
+#: 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(\"3/31/99\";\"6/1/99\"; 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 <emph>Date</emph>.</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;Return type)"
+
+#: func_weeknumadd.xhp#par_id3159277.226.help.text
+msgid "<emph>Date</emph> is the date within the calendar week."
+msgstr "<emph>Date</emph>: 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>Return type</emph>: 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 "Пример"
+
+#: 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 "=WEEKNUM_ADD(\"24.12.2001\";1) returns 52."
+
+#: 06031000.xhp#tit.help.text
+msgid "AutoRefresh"
+msgstr "Автоматско освежување"
+
+#: 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 "Филтер"
+
+#: 12090103.xhp#hd_id3153970.1.help.text
+msgctxt "12090103.xhp#hd_id3153970.1.help.text"
+msgid "Filter"
+msgstr "Филтер"
+
+#: 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 "Оператор"
+
+#: 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 "Име на полето"
+
+#: 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 "Услов"
+
+#: 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 "еднакво"
+
+#: 12090103.xhp#par_id3154254.15.help.text
+msgid "<"
+msgstr "<"
+
+#: 12090103.xhp#par_id3154703.16.help.text
+msgid "less than"
+msgstr "помало од"
+
+#: 12090103.xhp#par_id3155335.17.help.text
+msgid ">"
+msgstr ">"
+
+#: 12090103.xhp#par_id3147003.18.help.text
+msgid "greater than"
+msgstr "поголемо од"
+
+#: 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 "не е еднакво со"
+
+#: 12090103.xhp#hd_id3150886.25.help.text
+msgctxt "12090103.xhp#hd_id3150886.25.help.text"
+msgid "Value"
+msgstr "Вредност"
+
+#: 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 "Заштита на ќелија"
+
+#: 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 "Заштита"
+
+#: 05020600.xhp#hd_id3125864.9.help.text
+msgid "Hide all"
+msgstr "Скриј ги сите"
+
+#: 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 formulas and contents of the selected cells.</ahelp>"
+
+#: 05020600.xhp#hd_id3153190.5.help.text
+msgid "Protected"
+msgstr "Заштитено"
+
+#: 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 spreadsheet (<emph>Tools - Protect Document - Sheet</emph>)."
+
+#: 05020600.xhp#hd_id3149377.7.help.text
+msgid "Hide formula"
+msgstr "Скриј формула"
+
+#: 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 formulas in the selected cells.</ahelp>"
+
+#: 05020600.xhp#hd_id3155602.11.help.text
+msgctxt "05020600.xhp#hd_id3155602.11.help.text"
+msgid "Print"
+msgstr "Печати"
+
+#: 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 "Скриј при печатење"
+
+#: 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
+#, fuzzy
+msgctxt "12090102.xhp#tit.help.text"
+msgid "Pivot Table"
+msgstr "PivotTable"
+
+#: 12090102.xhp#bm_id2306894.help.text
+#, fuzzy
+msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
+msgstr "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+
+#: 12090102.xhp#hd_id3149165.1.help.text
+#, fuzzy
+msgctxt "12090102.xhp#hd_id3149165.1.help.text"
+msgid "Pivot Table"
+msgstr "PivotTable"
+
+#: 12090102.xhp#par_id3155922.13.help.text
+#, fuzzy
+msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the DataPilot.</ahelp>"
+
+#: 12090102.xhp#par_id3148798.34.help.text
+#, fuzzy
+msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
+msgstr "The DataPilot displays data fields as buttons which you can drag and drop to define the DataPilot table."
+
+#: 12090102.xhp#hd_id3154908.18.help.text
+msgctxt "12090102.xhp#hd_id3154908.18.help.text"
+msgid "Layout"
+msgstr "Изглед"
+
+#: 12090102.xhp#par_id3150768.19.help.text
+#, fuzzy
+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 "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a DataPilot 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 DataPilot table."
+
+#: 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> dialog. 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 "Отстрани"
+
+#: 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 "Опции"
+
+#: 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> dialog 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 "Повеќе"
+
+#: 12090102.xhp#par_id3145647.23.help.text
+#, fuzzy
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the DataPilot table.</ahelp>"
+
+#: 12090102.xhp#hd_id3151073.2.help.text
+msgctxt "12090102.xhp#hd_id3151073.2.help.text"
+msgid "Result"
+msgstr "Резултат"
+
+#: 12090102.xhp#par_id3155417.3.help.text
+#, fuzzy
+msgid "Specify the settings for displaying the results of the pivot table."
+msgstr "Specify the settings for displaying the results of the DataPilot table."
+
+#: 12090102.xhp#hd_id0509200913025625.help.text
+msgid "Selection from"
+msgstr ""
+
+#: 12090102.xhp#par_id0509200913025615.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
+msgstr "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
+
+#: 12090102.xhp#hd_id3155603.4.help.text
+msgid "Results to"
+msgstr "Резултати до"
+
+#: 12090102.xhp#par_id3153838.5.help.text
+#, fuzzy
+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 "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the DataPilot table.</ahelp>"
+
+#: 12090102.xhp#par_id3155961.6.help.text
+#, fuzzy
+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 "If the selected area contains data, the DataPilot overwrites the data. To prevent the loss of existing data, let the DataPilot automatically select the area to display the results."
+
+#: 12090102.xhp#hd_id3147364.7.help.text
+msgid "Ignore empty rows"
+msgstr "Игнорирај празни редови"
+
+#: 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 "Идентификувај категории"
+
+#: 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 next highest category as specified by a row label.</ahelp>"
+
+#: 12090102.xhp#hd_id3149207.14.help.text
+msgid "Total columns"
+msgstr "Вкупно колони"
+
+#: 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 "вкупно редови"
+
+#: 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
+#, fuzzy
+msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
+msgstr "<ahelp hid=\".\">Adds a Filter button to DataPilot tables that are based on spreadsheet data.</ahelp>"
+
+#: 12090102.xhp#par_idN108B2.help.text
+msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">Opens the Filter dialog.</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
+#, fuzzy
+msgid "To examine details inside a pivot table"
+msgstr "To examine details inside a DataPilot table"
+
+#: 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 - 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> dialog 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
+#, fuzzy
+msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
+msgstr "<link href=\"text/scalc/04/01020000.xhp\" name=\"DataPilot shortcut keys\">DataPilot shortcut keys</link>"
+
+#: 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 <emph>Months</emph> away from the <emph>Start 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 (Start date; Months)"
+
+#: func_eomonth.xhp#par_id3146787.235.help.text
+msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+msgstr "<emph>Start date</emph>: calculated from this point onwards."
+
+#: 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>: 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 "Пример"
+
+#: 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 "=EOMONTH(\"9.14.2001\";6) returns 3.31.2002."
+
+#: 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 ""
+
+#: 02120100.xhp#tit.help.text
+msgctxt "02120100.xhp#tit.help.text"
+msgid "Header/Footer"
+msgstr "Заглавие/Подножје"
+
+#: 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>стилови на страница; заглавија</bookmark_value><bookmark_value>стилови на страница; подножја</bookmark_value><bookmark_value>заглавија; дефинирање</bookmark_value><bookmark_value>подножја; дефинирање</bookmark_value><bookmark_value>имиња на датотеките во заглавието/подножјето</bookmark_value><bookmark_value>менување;датуми, автоматски</bookmark_value><bookmark_value>датуми;автоматско ажурирање</bookmark_value><bookmark_value>автоматски ажурирање на датуми</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\">Заглавие/Подножје</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\">Дефинира или форматира заглавие или подножје за Стил на страница.</ahelp>"
+
+#: 02120100.xhp#hd_id3145748.3.help.text
+msgid "Left Area"
+msgstr "Лева област"
+
+#: 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\">Внеси го текстот кој ќе се прикажува на левата страна од заглавието или подножјето.</ahelp>"
+
+#: 02120100.xhp#hd_id3148648.5.help.text
+msgid "Center Area"
+msgstr "Централна област"
+
+#: 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=\"HID_SC_HF_FLC\">Внеси го текстот кој ќе се прикажува во средина на заглавието или подножјето</ahelp>"
+
+#: 02120100.xhp#hd_id3154942.7.help.text
+msgid "Right Area"
+msgstr "Десна област"
+
+#: 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\">Внеси го текстот кој ќе се прикажува на десната страна до заглавието или подножјето.</ahelp>"
+
+#: 02120100.xhp#par_idN10811.help.text
+msgctxt "02120100.xhp#par_idN10811.help.text"
+msgid "Header/Footer"
+msgstr "Заглавие/Подножје"
+
+#: 02120100.xhp#par_idN10815.help.text
+msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+msgstr "<ahelp hid=\".\">Изберете веќе дефинирано заглавие или подножје од листата.</ahelp>"
+
+#: 02120100.xhp#hd_id3154729.9.help.text
+msgid "Text attributes"
+msgstr "Атрибути на текстот"
+
+#: 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\">Отвора прозорец за да доделите формати на новиот или избраниот текст.</ahelp> <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>."
+
+#: 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.25inch\" height=\"0.222inch\"><alt id=\"alt_id3156386\">Икона</alt></image>"
+
+#: 02120100.xhp#par_id3155336.25.help.text
+msgid "Text Attributes"
+msgstr "Атрибути на текст"
+
+#: 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.222inch\" height=\"0.1665inch\"><alt id=\"alt_id3150518\">Икона</alt></image>"
+
+#: 02120100.xhp#par_id3154487.26.help.text
+msgid "File Name"
+msgstr "Име на датотека"
+
+#: 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.25inch\" height=\"0.222inch\"><alt id=\"alt_id3148870\">Икона</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 "Страница"
+
+#: 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.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155386\">Икона</alt></image>"
+
+#: 02120100.xhp#par_id3150048.28.help.text
+msgctxt "02120100.xhp#par_id3150048.28.help.text"
+msgid "Page"
+msgstr "Страница"
+
+#: 02120100.xhp#hd_id3146962.17.help.text
+msgctxt "02120100.xhp#hd_id3146962.17.help.text"
+msgid "Pages"
+msgstr "Страници"
+
+#: 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.25inch\" height=\"0.222inch\"><alt id=\"alt_id3155757\">Икона</alt></image>"
+
+#: 02120100.xhp#par_id3147499.29.help.text
+msgctxt "02120100.xhp#par_id3147499.29.help.text"
+msgid "Pages"
+msgstr "Страници"
+
+#: 02120100.xhp#hd_id3149050.19.help.text
+msgctxt "02120100.xhp#hd_id3149050.19.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 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.25inch\" height=\"0.25inch\"><alt id=\"alt_id3150394\">Икона</alt></image>"
+
+#: 02120100.xhp#par_id3150540.30.help.text
+msgctxt "02120100.xhp#par_id3150540.30.help.text"
+msgid "Date"
+msgstr "Датум"
+
+#: 02120100.xhp#hd_id3147610.21.help.text
+msgctxt "02120100.xhp#hd_id3147610.21.help.text"
+msgid "Time"
+msgstr "Време"
+
+#: 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.25inch\" height=\"0.222inch\"><alt id=\"alt_id3146884\">Икона</alt></image>"
+
+#: 02120100.xhp#par_id3157904.31.help.text
+msgctxt "02120100.xhp#par_id3157904.31.help.text"
+msgid "Time"
+msgstr "Време"
+
+#: 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 "Пример"
+
+#: 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 "Пример"
+
+#: 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 "Пример"
+
+#: 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 "Пример"
+
+#: 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 "Дефинирај имиња"
+
+#: 04070100.xhp#hd_id3156330.1.help.text
+msgctxt "04070100.xhp#hd_id3156330.1.help.text"
+msgid "Define Names"
+msgstr "Дефинирај имиња"
+
+#: 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 dialog 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>dialog 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 formulas 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 "Име"
+
+#: 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 colored 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 "Повеќе"
+
+#: 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 "Тип на областа"
+
+#: 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 "Опсег за печатење"
+
+#: 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 "Филтер"
+
+#: 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 "Повтори колона"
+
+#: 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 "Повтори ред"
+
+#: 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 "Отстрани филтер"
+
+#: 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.</ahelp>"
+
+#: 12090000.xhp#tit.help.text
+#, fuzzy
+msgctxt "12090000.xhp#tit.help.text"
+msgid "Pivot Table"
+msgstr "PivotTable"
+
+#: 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/shared/01/01100500.xhp\" name=\"Priority Table\">Priority Table</link>"
+
+#: 12090000.xhp#par_id3153562.2.help.text
+#, fuzzy
+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 "A DataPilot table provides a summary of large amounts of data. You can then rearrange the DataPilot table to view different summaries of the data."
+
+#: 12090000.xhp#hd_id3155923.3.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+
+#: 12090000.xhp#par_idN105FB.help.text
+#, fuzzy
+msgctxt "12090000.xhp#par_idN105FB.help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">DataPilot dialog</link>"
+
+#: solver.xhp#tit.help.text
+msgid "Solver"
+msgstr ""
+
+#: 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 ""
+
+#: solver.xhp#hd_id9216284.help.text
+#, fuzzy
+msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgstr "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: solver.xhp#par_id7141026.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
+msgstr ""
+
+#: solver.xhp#par_id8531449.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+msgstr ""
+
+#: solver.xhp#par_id9183935.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+msgstr ""
+
+#: solver.xhp#par_id946684.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+msgstr ""
+
+#: solver.xhp#par_id9607226.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: solver.xhp#par_id2423780.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: solver.xhp#par_id5474410.help.text
+msgid "To solve equations with the solver"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: solver.xhp#par_id5323953.help.text
+msgid "The default solver engine supports only linear equations."
+msgstr ""
+
+#: solver_options.xhp#tit.help.text
+msgctxt "solver_options.xhp#tit.help.text"
+msgid "Options"
+msgstr "Опции"
+
+#: solver_options.xhp#hd_id2794274.help.text
+msgctxt "solver_options.xhp#hd_id2794274.help.text"
+msgid "Options"
+msgstr "Опции"
+
+#: 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 ""
+
+#: 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 ""
+
+#: solver_options.xhp#par_id5871761.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
+msgstr ""
+
+#: 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 ""
+
+#: solver_options.xhp#par_id3912778.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
+msgstr ""
+
+#: solver_options.xhp#par_id3163853.help.text
+msgid "Use the Options dialog to configure the current solver engine."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 02160000.xhp#tit.help.text
+msgctxt "02160000.xhp#tit.help.text"
+msgid "Delete Cells"
+msgstr "Избриши ќелии"
+
+#: 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; rows</bookmark_value><bookmark_value>deleting; columns</bookmark_value><bookmark_value>deleting; cells</bookmark_value>"
+
+#: 02160000.xhp#hd_id3153726.1.help.text
+msgctxt "02160000.xhp#hd_id3153726.1.help.text"
+msgid "Delete Cells"
+msgstr "Избриши ќелии"
+
+#: 02160000.xhp#par_id3154490.2.help.text
+#, fuzzy
+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 "<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."
+
+#: 02160000.xhp#hd_id3149121.3.help.text
+msgctxt "02160000.xhp#hd_id3149121.3.help.text"
+msgid "Selection"
+msgstr "Избор"
+
+#: 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 "Помести ќелии нагоре"
+
+#: 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 "Помести ќелии налево"
+
+#: 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 "Избриши цела(и) ред(ови)"
+
+#: 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 "Избриши цела(и) колона(и)"
+
+#: 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/02150000.xhp\" name=\"Delete Contents\">Избриши содржина</link>"
+
+#: 05040200.xhp#tit.help.text
+msgctxt "05040200.xhp#tit.help.text"
+msgid "Optimal Column Width"
+msgstr "Оптимална ширина на колона"
+
+#: 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 "Оптимална ширина на колона"
+
+#: 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 "Додај"
+
+#: 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 "Стандардна вредност"
+
+#: 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 "Филтер"
+
+#: 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 "Contains filter commands."
+
+#: 12040000.xhp#par_id3146119.7.help.text
+msgid "$[officename] automatically recognizes predefined database ranges."
+msgstr "$[officename] automatically recognizes 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 <item type=\"keycode\">Enter</item>.</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 "Дефинирај опсег на ознаки"
+
+#: 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 dialog 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 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."
+
+#: 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 "Опсег"
+
+#: 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 "За опсегот на податоци"
+
+#: 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 "Додај"
+
+#: 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 converts a date written as year, month, day to an internal serial number 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 the <emph>0</emph> number format, which displays the internal serial number of the date as a number."
+
+#: 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 9956 or 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 <emph>Tools - Options - $[officename] - General </emph>you can set from which year a two-digit number entry is recognized 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 between 1 and 12 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 a number between 1 and 31 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 higher, they are carried over to the next digit. If you enter =DATE(00;12;31) the result will be \"12/31/00.\" If, on the other hand, you enter =DATE(00;13;31) 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 "Пример"
+
+#: 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 "DATE(\"00;1;1\") yields 1/1/00"
+
+#: 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(Date_1;Date_2;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 Date_2 is earlier than Date_1, 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(\"1/1/2000\";NOW()) returns the number of interest days from January 1, 2000 until today."
+
+#: text2columns.xhp#tit.help.text
+msgid "Text to Columns"
+msgstr ""
+
+#: text2columns.xhp#bm_id8004394.help.text
+#, fuzzy
+msgid "<bookmark_value>text to columns</bookmark_value>"
+msgstr "<bookmark_value>Bessel functions</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\">Текст во колони</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 ""
+
+#: text2columns.xhp#hd_id9599597.help.text
+msgid "To expand cell contents to multiple cells"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: text2columns.xhp#par_id7242042.help.text
+msgid "Select the cell or cells that you want to expand."
+msgstr ""
+
+#: text2columns.xhp#par_id6999420.help.text
+msgid "Choose <emph>Data - Text to Columns</emph>."
+msgstr ""
+
+#: text2columns.xhp#par_id6334116.help.text
+msgid "You see the Text to Columns dialog."
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 05050300.xhp#tit.help.text
+msgctxt "05050300.xhp#tit.help.text"
+msgid "Show Sheet"
+msgstr "Покажи лист"
+
+#: 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 "Покажи лист"
+
+#: 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 "Следи претходни"
+
+#: 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 "Листа на функции"
+
+#: 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 "Листа на функции"
+
+#: 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 "Стил на страница"
+
+#: 05070000.xhp#hd_id3157910.1.help.text
+msgctxt "05070000.xhp#hd_id3157910.1.help.text"
+msgid "Page Style"
+msgstr "Стил на страница"
+
+#: 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 dialog 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 dialog."
+
+#: 02150000.xhp#hd_id3148575.3.help.text
+msgctxt "02150000.xhp#hd_id3148575.3.help.text"
+msgid "Selection"
+msgstr "Избор"
+
+#: 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 "Избриши ги сите"
+
+#: 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 "Низи"
+
+#: 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 strings only. Formats, formulas, numbers and dates are not affected.</ahelp>"
+
+#: 02150000.xhp#hd_id3153840.9.help.text
+msgid "Numbers"
+msgstr "Броеви"
+
+#: 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 formulas 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 formulas remain unchanged.</ahelp>"
+
+#: 02150000.xhp#hd_id3154703.13.help.text
+msgctxt "02150000.xhp#hd_id3154703.13.help.text"
+msgid "Formulas"
+msgstr "Формули"
+
+#: 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 formulas. 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 "Забелешки"
+
+#: 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 notes added to cells. All other elements remain unchanged.</ahelp>"
+
+#: 02150000.xhp#hd_id3155112.17.help.text
+msgid "Formats"
+msgstr "Формати"
+
+#: 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 "Објекти"
+
+#: 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 "Замрзни"
+
+#: 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 "Обединето од"
+
+#: 12070100.xhp#hd_id3151210.1.help.text
+msgctxt "12070100.xhp#hd_id3151210.1.help.text"
+msgid "Consolidate by"
+msgstr "Обединето од"
+
+#: 12070100.xhp#hd_id3125864.2.help.text
+msgctxt "12070100.xhp#hd_id3125864.2.help.text"
+msgid "Consolidate by"
+msgstr "Обединето од"
+
+#: 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 "Ознаки на редот"
+
+#: 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 "Опции"
+
+#: 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 "Навигатор"
+
+#: 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>Навигатор;за листови</bookmark_value><bookmark_value>навигација;низ табеларни пресметки</bookmark_value><bookmark_value>прикажување; имиња на сценарија</bookmark_value><bookmark_value>сценарија;прикажување имиња</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\">Навигатор</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\">Го активира и деактивира навигаторот.</ahelp> Навигаторот е <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">вклоплив прозорец</link>."
+
+#: 02110000.xhp#par_id3145271.40.help.text
+msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
+msgstr "Избери <emph>Уреди - Навигатор</emph> за да го видиш Навигаторот."
+
+#: 02110000.xhp#hd_id3159155.4.help.text
+msgctxt "02110000.xhp#hd_id3159155.4.help.text"
+msgid "Column"
+msgstr "Колона"
+
+#: 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\">Внеси ја буквата на колоната во<emph> Колона </emph><link href=\"text/shared/00/00000005.xhp#drehfeld\" name=\"spin box\">полето</link>. Притисни Ентер за да гопреместиш курсорот во таа колона во истиот ред.</ahelp>"
+
+#: 02110000.xhp#hd_id3147126.6.help.text
+msgctxt "02110000.xhp#hd_id3147126.6.help.text"
+msgid "Row"
+msgstr "Ред"
+
+#: 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\">Внеси го бројот на редот во <emph> Ред </emph>полето. Притисни Ентер за го преместиш курсорот во тој ред во истата колона.</ahelp>"
+
+#: 02110000.xhp#hd_id3150717.8.help.text
+msgctxt "02110000.xhp#hd_id3150717.8.help.text"
+msgid "Data Range"
+msgstr "Опсег на податоци"
+
+#: 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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147338\">Икона</alt></image>"
+
+#: 02110000.xhp#par_id3146919.9.help.text
+msgctxt "02110000.xhp#par_id3146919.9.help.text"
+msgid "Data Range"
+msgstr "Опсег на податоци"
+
+#: 02110000.xhp#hd_id3148488.14.help.text
+msgctxt "02110000.xhp#hd_id3148488.14.help.text"
+msgid "Start"
+msgstr "Пушти"
+
+#: 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\">Се поместува во ќелијата на почетокот на тековниот опсег на податоци, кој што можеш да го означиш сокопчето <emph>Опсег на податоци</emph>.</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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150515\">Икона</alt></image>"
+
+#: 02110000.xhp#par_id3154372.15.help.text
+msgctxt "02110000.xhp#par_id3154372.15.help.text"
+msgid "Start"
+msgstr "Пушти"
+
+#: 02110000.xhp#hd_id3146982.17.help.text
+msgctxt "02110000.xhp#hd_id3146982.17.help.text"
+msgid "End"
+msgstr "Крај"
+
+#: 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\">Се поместува во ќелијата на крај од тековниот опсег на податоци, кој што може да го означиш со копчето <emph>Опсег на податоци</emph>.</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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148871\">Икона</alt></image>"
+
+#: 02110000.xhp#par_id3147072.18.help.text
+msgctxt "02110000.xhp#par_id3147072.18.help.text"
+msgid "End"
+msgstr "Крај"
+
+#: 02110000.xhp#hd_id3150107.20.help.text
+msgctxt "02110000.xhp#hd_id3150107.20.help.text"
+msgid "Toggle"
+msgstr "Смени"
+
+#: 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\">Го менува прегледот на содржина. Само избраниот елемент од Навигаторот и неговите поделементи се гледаат.</ahelp> Повторно кликни на иконата за сите елементи да се гледаат."
+
+#: 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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149126\">Икона</alt></image>"
+
+#: 02110000.xhp#par_id3159229.21.help.text
+msgctxt "02110000.xhp#par_id3159229.21.help.text"
+msgid "Toggle"
+msgstr "Смени"
+
+#: 02110000.xhp#hd_id3149381.11.help.text
+msgctxt "02110000.xhp#hd_id3149381.11.help.text"
+msgid "Contents"
+msgstr "Содржина"
+
+#: 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\">Ви овозможува да ги криете/прикажувате содржините.</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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154738\">Икона</alt></image>"
+
+#: 02110000.xhp#par_id3150955.12.help.text
+msgctxt "02110000.xhp#par_id3150955.12.help.text"
+msgid "Contents"
+msgstr "Содржина"
+
+#: 02110000.xhp#hd_id3147244.23.help.text
+msgctxt "02110000.xhp#hd_id3147244.23.help.text"
+msgid "Scenarios"
+msgstr "Сценарија"
+
+#: 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\">Ги прикажува сите достапни сценарија. Двојно-кликнете на името за да го примените тоа сценарио.</ahelp> Резултатот се прикажува во листот. За повеќе информации, изберете<link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Алатки - Сценарија</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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149126\">Икона</alt></image>"
+
+#: 02110000.xhp#par_id3166466.24.help.text
+msgctxt "02110000.xhp#par_id3166466.24.help.text"
+msgid "Scenarios"
+msgstr "Сценарија"
+
+#: 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 "Ако Навигаторот прикажува сценарија, можете да ги употребите следниве командикога ќе десно-кликнете на некое сценарио:"
+
+#: 02110000.xhp#par_idN10A77.help.text
+msgctxt "02110000.xhp#par_idN10A77.help.text"
+msgid "Delete"
+msgstr "Избриши"
+
+#: 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\">Го брише избраното сценарио.</ahelp>"
+
+#: 02110000.xhp#par_idN10A92.help.text
+msgid "Properties"
+msgstr "Својства"
+
+#: 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\">Го отвара <link href=\"text/scalc/01/06050000.xhp\">Уреди сценарио</link> прозорчето, каде што можете да ги уредувате својствата на сценариото.</ahelp>"
+
+#: 02110000.xhp#hd_id3150037.26.help.text
+msgctxt "02110000.xhp#hd_id3150037.26.help.text"
+msgid "Drag Mode"
+msgstr "Режим на влечење"
+
+#: 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\">Отвора подмени за избирање на режимот на влечење. Исто така, можете да го изберете режимот на влечење преку контекст менито во прозорот од Навигаторот. Ќе изберете која акција ќе се изврши кога ќе го повлечете и пуштите објектот од Навигаторот во документот.Во зависност од режимот кој ќе го одберете, иконата означува дали е креирана хиперврска или копија.</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.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159119\">Икона</alt></image>"
+
+#: 02110000.xhp#par_id3150656.27.help.text
+msgctxt "02110000.xhp#par_id3150656.27.help.text"
+msgid "Drag Mode"
+msgstr "Режим на влечење"
+
+#: 02110000.xhp#hd_id3149009.29.help.text
+msgid "Insert as Hyperlink"
+msgstr "Вметни како хиперврска"
+
+#: 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\">Вметнува хиперврска кога ќе повлечете и пуштите објект од Навигаторот во документ. </ahelp> Потоа, можете да кликнете на хиперврската за да го поставите курсорот и погледот на тој објект."
+
+#: 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 "Ако вметнете хиперврска која е врзана на отворен документ, треба да го снимите документот пред да може да ја користите хиперврската."
+
+#: 02110000.xhp#hd_id3154682.31.help.text
+msgid "Insert as Link"
+msgstr "Вметни како врска"
+
+#: 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\">Креира врска кога ќе повлечете и пуштите објект од Навигаторот во документ.</ahelp>"
+
+#: 02110000.xhp#hd_id3145824.33.help.text
+msgid "Insert as Copy"
+msgstr "Вметни како копија"
+
+#: 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\">Генерира копија кога ќе повлечете и пуштите објект од Навигаторот во документ. </ahelp>"
+
+#: 02110000.xhp#hd_id3147423.38.help.text
+msgctxt "02110000.xhp#hd_id3147423.38.help.text"
+msgid "Objects"
+msgstr "Објекти"
+
+#: 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\">Ги прикажува сите објекти во вашиот документ.</ahelp>"
+
+#: 02110000.xhp#hd_id3150860.35.help.text
+msgid "Documents"
+msgstr "Документи"
+
+#: 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\">Ги прикажува имињата на сите отворени документи.</ahelp> За да се префрлите на друг отворен документ кликнете на името на документот во Навигаторот. Статусот (активен, неактивен) на документот ќе биде прикажан во загради по името. Можете да го смените активниот документ во менито <emph>Прозорец</emph>."
+
+#: 02200000.xhp#tit.help.text
+msgctxt "02200000.xhp#tit.help.text"
+msgid "Sheet"
+msgstr "Лист"
+
+#: 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(Complex number)"
+
+#: 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 "Complex number: the complex number is entered in the form \"x + yi\" or \"x + yj\""
+
+#: 04060116.xhp#hd_id3149697.49.help.text
+msgctxt "04060116.xhp#hd_id3149697.49.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3143222.50.help.text
+msgid " <item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+msgstr "=IMABS(\"5+12j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3151193.56.help.text
+msgctxt "04060116.xhp#hd_id3151193.56.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3155592.57.help.text
+msgid " <item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+msgstr "=IMAGINARY(\"4+3j\") 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(Complex number;Number)"
+
+#: 04060116.xhp#par_id3155743.63.help.text
+msgid " <emph>Number</emph> is the exponent."
+msgstr "Number: the exponent."
+
+#: 04060116.xhp#hd_id3149048.64.help.text
+msgctxt "04060116.xhp#hd_id3149048.64.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3151393.65.help.text
+msgid " <item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+msgstr "=IMPOWER(\"2+3i\";2) 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(Complex number)"
+
+#: 04060116.xhp#hd_id3153019.71.help.text
+msgctxt "04060116.xhp#hd_id3153019.71.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3159125.72.help.text
+msgid " <item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+msgstr "=IMARGUMENT(\"3+4j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3152980.78.help.text
+msgctxt "04060116.xhp#hd_id3152980.78.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3157901.79.help.text
+msgid " <item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
+msgstr "=IMCOS(\"3+4j\") 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 "Numerator, Denominator: the complex numbers 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 "Пример"
+
+#: 04060116.xhp#par_id3148440.86.help.text
+msgid " <item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+msgstr "=IMDIV(\"-238+240i\";\"10+24i\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3148581.92.help.text
+msgctxt "04060116.xhp#hd_id3148581.92.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3149253.93.help.text
+msgid " <item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+msgstr "=IMEXP(\"1+j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3153326.99.help.text
+msgctxt "04060116.xhp#hd_id3153326.99.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3149688.100.help.text
+msgid " <item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+msgstr "=IMCONJUGATE(\"1+j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3153565.106.help.text
+msgctxt "04060116.xhp#hd_id3153565.106.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3153736.107.help.text
+msgid " <item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+msgstr "=IMLN(\"1+j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3149003.113.help.text
+msgctxt "04060116.xhp#hd_id3149003.113.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3151021.114.help.text
+msgid " <item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+msgstr "=IMLOG10(\"1+j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3148768.120.help.text
+msgctxt "04060116.xhp#hd_id3148768.120.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3149536.121.help.text
+msgid " <item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+msgstr "=IMLOG2(\"1+j\") 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(Complex number;Complex number 1;...)"
+
+#: 04060116.xhp#hd_id3153228.127.help.text
+msgctxt "04060116.xhp#hd_id3153228.127.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3155815.128.help.text
+msgid " <item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+msgstr "=IMPRODUCT(\"3+4j\";\"5-3j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3155409.134.help.text
+msgctxt "04060116.xhp#hd_id3155409.134.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3155986.135.help.text
+msgid " <item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+msgstr "=IMREAL(\"1+3j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3150613.141.help.text
+msgctxt "04060116.xhp#hd_id3150613.141.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3154310.142.help.text
+msgid " <item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
+msgstr "=IMSIN(\"3+4j\") 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(Complex number 1;Complex number 2)"
+
+#: 04060116.xhp#hd_id3155833.148.help.text
+msgctxt "04060116.xhp#hd_id3155833.148.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3150963.149.help.text
+msgid " <item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+msgstr "=IMSUB(\"13+4j\";\"5+3j\") 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(Complex number 1;Complex number 2;...)"
+
+#: 04060116.xhp#hd_id3154640.155.help.text
+msgctxt "04060116.xhp#hd_id3154640.155.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3147081.156.help.text
+msgid " <item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+msgstr "=IMSUM(\"13+4j\";\"5+3j\") 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(Complex number)"
+
+#: 04060116.xhp#hd_id3147268.172.help.text
+msgctxt "04060116.xhp#hd_id3147268.172.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3152807.173.help.text
+msgid " <item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+msgstr "=IMSQRT(\"3+4i\") 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(Real num;I num;Suffix)"
+
+#: 04060116.xhp#par_id3153626.161.help.text
+msgid " <emph>RealNum</emph> is the real coefficient of the complex number."
+msgstr "Real num: 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 "I num: 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 "Suffix: list of options, \"i\" or \"j\"."
+
+#: 04060116.xhp#hd_id3145659.164.help.text
+msgctxt "04060116.xhp#hd_id3145659.164.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id3143229.165.help.text
+msgid " <item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+msgstr "=COMPLEX(3;4;j) 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 "Number: 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 "Places: 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 "Пример"
+
+#: 04060116.xhp#par_id3147260.224.help.text
+msgid " <item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
+msgstr "=OCT2BIN(3;3) 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 "Number: 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 "Пример"
+
+#: 04060116.xhp#par_id3154930.231.help.text
+msgid " <item type=\"input\">=OCT2DEC(144)</item> returns 100."
+msgstr "=OCT2DEC(144) 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 "Number: 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 "Places: 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 "Пример"
+
+#: 04060116.xhp#par_id3148802.239.help.text
+msgid " <item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
+msgstr "=OCT2HEX(144;4) 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 liter) 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 "Тежина"
+
+#: 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 "Должина"
+
+#: 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 "Време"
+
+#: 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 "Степен"
+
+#: 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 "Том"
+
+#: 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 "Област"
+
+#: 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 "Брзина"
+
+#: 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 ""
+
+#: 04060116.xhp#par_id0908200903090966.help.text
+msgid "ki kibi 1024"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903090958.help.text
+msgid "Mi mebi 1048576"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903090936.help.text
+msgid "Gi gibi 1073741824"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903090975.help.text
+msgid "Ti tebi 1099511627776"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903090930.help.text
+msgid "Pi pebi 1125899906842620"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903091070.help.text
+msgid "Ei exbi 1152921504606850000"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903091097.help.text
+msgid "Zi zebi 1180591620717410000000"
+msgstr ""
+
+#: 04060116.xhp#par_id0908200903091010.help.text
+msgid "Yi yobi 1208925819614630000000000"
+msgstr ""
+
+#: 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;From unit;To unit)"
+
+#: 04060116.xhp#par_id3147522.211.help.text
+msgid " <emph>Number</emph> is the number to be converted."
+msgstr "Number: 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 "From unit: 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 "To unit: the unit to which conversion is taking place."
+
+#: 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 "=CONVERT_ADD(10;\"HP\";\"PS\") 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 "=CONVERT_ADD(10;\"km\";\"mi\")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\">The result is the factorial of the number with increments of 2.</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 "Number: if the number is even, the following factorial is calculated: n*(N-2)*(n-4)*...*4*2."
+
+#: 04060116.xhp#par_id2480849.help.text
+msgid "For even numbers FACTDOUBLE(n) returns:"
+msgstr ""
+
+#: 04060116.xhp#par_id4181951.help.text
+msgid "2*4*6*8* ... *n"
+msgstr ""
+
+#: 04060116.xhp#par_id2927335.help.text
+msgid "For odd numbers FACTDOUBLE(n) returns:"
+msgstr ""
+
+#: 04060116.xhp#par_id2107303.help.text
+msgid "1*3*5*7* ... *n"
+msgstr ""
+
+#: 04060116.xhp#par_id4071779.help.text
+msgid "FACTDOUBLE(0) returns 1 by definition."
+msgstr ""
+
+#: 04060116.xhp#hd_id3154622.42.help.text
+msgctxt "04060116.xhp#hd_id3154622.42.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060116.xhp#par_id7844477.help.text
+#, fuzzy
+msgid " <item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+msgstr "=FACTDOUBLE(6) returns 48."
+
+#: 04060116.xhp#par_id3154116.43.help.text
+msgid " <item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+msgstr "=FACTDOUBLE(6) returns 48."
+
+#: 04060116.xhp#par_id6478469.help.text
+#, fuzzy
+msgid " <item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+msgstr "=FACTDOUBLE(6) returns 48."
+
+#: 05050100.xhp#tit.help.text
+msgctxt "05050100.xhp#tit.help.text"
+msgid "Rename Sheet"
+msgstr "Преименувај лист"
+
+#: 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 "Преименувај лист"
+
+#: 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 dialog 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 "Име"
+
+#: 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> Allowed characters are letters, numbers, spaces, and the underline character."
+
+#: 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>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 Ctrl </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 "Раздели"
+
+#: 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
+#, fuzzy
+msgid "NOW is a function without arguments."
+msgstr "<emph>Today</emph> 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 "Пример"
+
+#: 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 "=NOW()-A1 returns the difference between the date in A1 and now. Format the result as a number."
+
+#: 12120100.xhp#tit.help.text
+msgid "Criteria"
+msgstr "Критериуми"
+
+#: 12120100.xhp#bm_id1464278.help.text
+msgid "<bookmark_value>selection lists;validity</bookmark_value>"
+msgstr "<bookmark_value>selection lists;creating lists</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 "Дозволи"
+
+#: 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 "Услов"
+
+#: 12120100.xhp#par_id3155854.19.help.text
+msgid "Effect"
+msgstr "Ефект"
+
+#: 12120100.xhp#par_id3153092.20.help.text
+msgid "All values"
+msgstr "Сите вредности"
+
+#: 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 "Децимала"
+
+#: 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 "Датум"
+
+#: 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 dialog is called up."
+
+#: 12120100.xhp#par_id3146969.28.help.text
+msgctxt "12120100.xhp#par_id3146969.28.help.text"
+msgid "Time"
+msgstr "Време"
+
+#: 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 dialog 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 "Листа"
+
+#: 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.</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 "Извор"
+
+#: 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 "Елементи"
+
+#: 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 "Податоци"
+
+#: 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 "Вредност"
+
+#: 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 "Минимум"
+
+#: 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 "Максимум"
+
+#: 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 "Покажи детали"
+
+#: 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
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
+msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+
+#: 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 "Додај"
+
+#: 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 "Стандардна вредност"
+
+#: 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-ins</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 "Date: 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 "Пример"
+
+#: 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 2/29/68, 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(\"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 devided 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(Start date, End date, 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 "Start date: 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 "End date: 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 "Type: 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(Start date, End date, 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 "Start date: 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 "End date: 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 "Type: 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 "Text: Enter 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 "Date: 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 "Пример"
+
+#: 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 2/29/68, 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 "Date: 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 "Пример"
+
+#: 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 2/17/68, 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(Start date, End date, 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 "Start date: 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 "End date: 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 "Type: 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 "Date: 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 "Пример"
+
+#: 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 2/17/70, 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 6801, 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/99'"
+
+#: 04060102.xhp#par_id7096774.help.text
+msgid "(default)"
+msgstr "(стандардно)"
+
+#: 04060102.xhp#par_id5699942.help.text
+msgid "'01/01/1900'"
+msgstr "'01/01/00'"
+
+#: 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/04'"
+
+#: 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>Tools - Options - %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>Tools - Options - $[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 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\"."
+
+#: 04060102.xhp#par_idN1067A.help.text
+msgid "Functions"
+msgstr "Функции"
+
+#: 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 "Одгрупирај"
+
+#: 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 "Деактивирај за"
+
+#: 12080400.xhp#hd_id3156280.5.help.text
+msgctxt "12080400.xhp#hd_id3156280.5.help.text"
+msgid "Rows"
+msgstr "Редови"
+
+#: 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 "Колони"
+
+#: 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> Year 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#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 ""
+
+#: 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 ""
+
+#: func_eastersunday.xhp#par_id3156156.177.help.text
+msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
+msgstr "Easter Monday = EASTERSUNDAY() + 1"
+
+#: func_eastersunday.xhp#par_id3147521.178.help.text
+msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgstr "Good Friday = EASTERSUNDAY() - 2"
+
+#: func_eastersunday.xhp#par_id3146072.179.help.text
+msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+msgstr "Pentecost Sunday = EASTERSUNDAY() + 49"
+
+#: func_eastersunday.xhp#par_id3149553.180.help.text
+msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+msgstr "Pentecost Monday = EASTERSUNDAY() + 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 4/23/00"
+
+#: 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. If you use the MMDDYY date format, the result is 06/11/00."
+
+#: 05080300.xhp#tit.help.text
+msgctxt "05080300.xhp#tit.help.text"
+msgid "Edit Print Ranges"
+msgstr "Уреди опсези на печатење"
+
+#: 05080300.xhp#hd_id3153088.1.help.text
+msgctxt "05080300.xhp#hd_id3153088.1.help.text"
+msgid "Edit Print Ranges"
+msgstr "Уреди опсези на печатење"
+
+#: 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 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."
+
+#: 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 "Опсег за печатење"
+
+#: 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 "Редови за повторување"
+
+#: 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 dialog."
+
+#: 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 dialog."
+
+#: 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 "Year(1) returns 1899"
+
+#: func_year.xhp#par_id3151168.44.help.text
+msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
+msgstr "YEAR(2) returns 1900"
+
+#: func_year.xhp#par_id3150115.45.help.text
+msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+msgstr "YEAR(33333.33) returns 1991"
+
+#: 06030400.xhp#tit.help.text
+msgid "Remove Dependents"
+msgstr "Отстрани зависни"
+
+#: 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 "Креирај сценарио"
+
+#: 06050000.xhp#hd_id3156023.1.help.text
+msgctxt "06050000.xhp#hd_id3156023.1.help.text"
+msgid "Create Scenario"
+msgstr "Креирај сценарио"
+
+#: 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 "Име на сценарио"
+
+#: 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 "Коментар"
+
+#: 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 "Поставувања"
+
+#: 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 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."
+
+#: 06050000.xhp#hd_id3149582.20.help.text
+msgid "Copy back"
+msgstr "Копирај назад"
+
+#: 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 behavior 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 "Копирај цел лист"
+
+#: 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 behavior 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 "Скриј автоматски филтер"
+
+#: 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 "Избриши лист"
+
+#: 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 if changes to the document are being recorded, as in when <emph>Edit - Changes - Record</emph> is activated."
+
+#: 02170000.xhp#hd_id3147124.3.help.text
+msgid "Yes"
+msgstr "Да"
+
+#: 02170000.xhp#par_id3154943.4.help.text
+msgid "Deletes the current sheet."
+msgstr "Permanently deletes the active sheet."
+
+#: 02170000.xhp#hd_id3149412.5.help.text
+msgid "No"
+msgstr "Не"
+
+#: 02170000.xhp#par_id3154510.6.help.text
+msgid "Cancels the dialog. No delete is performed."
+msgstr "Cancels the dialog. 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> dialog, 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 "Детектив"
+
+#: 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>"
+
+#: 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 "Означување на вредности"
+
+#: 03080000.xhp#bm_id3151384.help.text
+#, fuzzy
+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 "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value>"
+
+#: 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\">Highlights numerical values in your sheet.</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, number cells in blue, and all other types of cells, such as formulas, logical values, and dates, are formatted in green."
+
+#: 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, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors 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 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."
+
+#: 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 "Преброј"
+
+#: 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 "Кол"
+
+#: 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 "Ред"
+
+#: 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 "Табулатор"
+
+#: 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 "Грешка"
+
+#: 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 "Вредност"
+
+#: 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 "Преброј"
+
+#: 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 "Кол"
+
+#: 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 "Ред"
+
+#: 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 "Табулатор"
+
+#: 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 "Грешка"
+
+#: 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 "Преброј"
+
+#: 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 "Кол"
+
+#: 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 "Ред"
+
+#: 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 "Табулатор"
+
+#: 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 "Грешка"
+
+#: 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 "Тип"
+
+#: 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 "Скриј детали"
+
+#: 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 the contents of C4 = 8/5/1901."
+
+#: 12020000.xhp#tit.help.text
+msgctxt "12020000.xhp#tit.help.text"
+msgid "Select Database Range"
+msgstr "Избери опсег на база на податоци"
+
+#: 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 "Избери опсег на базата на податоци"
+
+#: 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 "Опсези"
+
+#: 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 "Избриши"
+
+#: 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
+#, fuzzy
+msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected DataPilot table.</ahelp>"
+
+#: 06030600.xhp#tit.help.text
+msgid "Trace Error"
+msgstr "Грешка при следење"
+
+#: 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 "Рачен прелом"
+
+#: 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 (Start date;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>Start date</emph>: 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>: 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>: 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 "Пример"
+
+#: 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 comes 17 workdays after 1 December 2001? Enter the start date \"12/1/2001\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"12/24/2001\", \"12/25/2001\", \"12/26/2001\", \"12/31/2001\", \"1/1/2002\"."
+
+#: 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 12/28/2001. Format the serial date number as a date."
+
+#: 12030200.xhp#tit.help.text
+msgctxt "12030200.xhp#tit.help.text"
+msgid "Options"
+msgstr "Опции"
+
+#: 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\"> Опции</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\"> Поставува дополнителни опции за подредување.</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 dialog 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 <link href=\"text/shared/optionen/01060400.xhp\" name=\"Tools - Options - %PRODUCTNAME Calc - Sort Lists\"> Tools - Options - %PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
+
+#: 12030200.xhp#hd_id3149257.28.help.text
+msgctxt "12030200.xhp#hd_id3149257.28.help.text"
+msgid " Language"
+msgstr " Јазик"
+
+#: 12030200.xhp#hd_id3147004.29.help.text
+msgctxt "12030200.xhp#hd_id3147004.29.help.text"
+msgid " Language"
+msgstr " Јазик"
+
+#: 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 " Насока"
+
+#: 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 " Област на податоци"
+
+#: 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 "Режим на пополнување"
+
+#: 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 "Колона"
+
+#: 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 "Пополни низи"
+
+#: 02140600.xhp#hd_id3148664.1.help.text
+msgctxt "02140600.xhp#hd_id3148664.1.help.text"
+msgid "Fill Series"
+msgstr "Пополни низи"
+
+#: 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 dialog. 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> dialog."
+
+#: 02140600.xhp#hd_id3147435.4.help.text
+msgid "Direction"
+msgstr "Насока"
+
+#: 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 "Надолу"
+
+#: 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 "Десно"
+
+#: 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 "Нагоре"
+
+#: 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 "Лево"
+
+#: 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 "Линеарно"
+
+#: 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 "Прираст"
+
+#: 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 "Датум"
+
+#: 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 "Автоматско пополнување"
+
+#: 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 customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph>Tools - Options - %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 "Ден"
+
+#: 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 "Ден од недела"
+
+#: 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 "Месец"
+
+#: 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 "Година"
+
+#: 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 "Зголемување"
+
+#: 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 "Заштити документ"
+
+#: 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 "Обедини"
+
+#: 12070000.xhp#hd_id3148946.1.help.text
+msgctxt "12070000.xhp#hd_id3148946.1.help.text"
+msgid "Consolidate"
+msgstr "Обедини"
+
+#: 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 "Функција"
+
+#: 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 "Копирај резултати во"
+
+#: 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 "Додај"
+
+#: 12070000.xhp#par_id3155335.18.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
+
+#: 12070000.xhp#hd_id3148630.19.help.text
+msgctxt "12070000.xhp#hd_id3148630.19.help.text"
+msgid "More >>"
+msgstr "More >>"
+
+#: 12070000.xhp#par_id3159239.20.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
+
+#: 06030500.xhp#tit.help.text
+msgid "Remove All Traces"
+msgstr "Отстрани ги сите траги"
+
+#: 06030500.xhp#bm_id3153088.help.text
+msgid "<bookmark_value>cells; removing traces</bookmark_value>"
+msgstr "<bookmark_value>cells; removing traces</bookmark_value>"
+
+#: 06030500.xhp#hd_id3153088.1.help.text
+msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
+
+#: 06030500.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
+
+#: 04040000.xhp#tit.help.text
+msgctxt "04040000.xhp#tit.help.text"
+msgid "Columns"
+msgstr "Колони"
+
+#: 04040000.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
+
+#: 04040000.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
+msgstr " <link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
+
+#: 04040000.xhp#par_id3150791.2.help.text
+msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
+msgstr "<ahelp hid=\".uno:InsertColumns\" visibility=\"visible\">Inserts a new column to the left of the active cell.</ahelp>The number of columns inserted correspond to the number of columns selected. The existing columns are moved to the right."
+
+#: 02120000.xhp#tit.help.text
+msgctxt "02120000.xhp#tit.help.text"
+msgid "Headers & Footers"
+msgstr "Заглавија и подножја"
+
+#: 02120000.xhp#hd_id3145251.1.help.text
+msgctxt "02120000.xhp#hd_id3145251.1.help.text"
+msgid "Headers & Footers"
+msgstr "Заглавија и подножја"
+
+#: 02120000.xhp#par_id3151073.2.help.text
+msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Allows you to define and format headers and footers.</ahelp></variable>"
+msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Ви овозможува да ги дефинирате и форматирате заглавијата и подножјата.</ahelp></variable>"
+
+#: 02120000.xhp#par_id3153415.3.help.text
+msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
+msgstr "<emph> Заглавија/Подножја </emph>прозорецот ги содржи јазичињата за дефинирање заглавија и подножја. Таму има посебни јазичиња за левите и десните заглавија и подножја на страниците ако опцијата<emph>Иста содржина лево/десно</emph>е обележана во прозорецот <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Стил на страница</link>."
+
+#: 05080400.xhp#tit.help.text
+msgctxt "05080400.xhp#tit.help.text"
+msgid "Add"
+msgstr "Додај"
+
+#: 05080400.xhp#hd_id3149457.1.help.text
+msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
+msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
+
+#: 05080400.xhp#par_id3156423.2.help.text
+msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+msgstr "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+
+#: 06030200.xhp#tit.help.text
+msgid "Remove Precedents"
+msgstr "Remove Precedents"
+
+#: 06030200.xhp#bm_id3155628.help.text
+msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+msgstr "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+
+#: 06030200.xhp#hd_id3155628.1.help.text
+msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
+
+#: 06030200.xhp#par_id3149456.2.help.text
+msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
+msgstr "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
+
+#: 02140300.xhp#tit.help.text
+msgctxt "02140300.xhp#tit.help.text"
+msgid "Up"
+msgstr "Нагоре"
+
+#: 02140300.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
+msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
+
+#: 02140300.xhp#par_id3150793.2.help.text
+msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
+
+#: 02140300.xhp#par_id3150447.3.help.text
+msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
+msgstr "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
+
+#: 04060107.xhp#tit.help.text
+msgctxt "04060107.xhp#tit.help.text"
+msgid "Array Functions"
+msgstr "Array Functions"
+
+#: 04060107.xhp#bm_id3147273.help.text
+msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas;arrays</bookmark_value><bookmark_value>functions;array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating;conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
+msgstr "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>arrays</bookmark_value><bookmark_value>formulas;arrays</bookmark_value><bookmark_value>functions;arrays</bookmark_value><bookmark_value>creating; array formulas</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating;conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
+
+#: 04060107.xhp#hd_id3147273.1.help.text
+msgctxt "04060107.xhp#hd_id3147273.1.help.text"
+msgid "Array Functions"
+msgstr "Array Functions"
+
+#: 04060107.xhp#par_id3154744.2.help.text
+msgid "<variable id=\"matrixtext\">This category contains the array functions. </variable>"
+msgstr "<variable id=\"matrixtext\">This category contains the array functions. </variable>"
+
+#: 04060107.xhp#hd_id3146084.257.help.text
+msgid "What is an Array?"
+msgstr "What is an Array?"
+
+#: 04060107.xhp#par_id3154298.258.help.text
+msgid "<variable id=\"wasmatrix\">An array is a linked range of cells on a spreadsheet containing values. </variable> A square range of 3 rows and 3 columns is a 3 x 3 array:"
+msgstr "<variable id=\"wasmatrix\">An array is a linked range of cells on a spreadsheet containing values. </variable> A square range of 3 rows and 3 columns is a 3 x 3 array:"
+
+#: 04060107.xhp#par_id3154692.260.help.text
+msgctxt "04060107.xhp#par_id3154692.260.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_id3150117.261.help.text
+msgctxt "04060107.xhp#par_id3150117.261.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060107.xhp#par_id3155325.262.help.text
+msgctxt "04060107.xhp#par_id3155325.262.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060107.xhp#par_id3153104.263.help.text
+msgctxt "04060107.xhp#par_id3153104.263.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_id3146996.264.help.text
+msgctxt "04060107.xhp#par_id3146996.264.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "7"
+
+#: 04060107.xhp#par_id3150529.265.help.text
+msgid "<item type=\"input\">31</item>"
+msgstr "31"
+
+#: 04060107.xhp#par_id3148831.266.help.text
+msgctxt "04060107.xhp#par_id3148831.266.help.text"
+msgid "<item type=\"input\">33</item>"
+msgstr "33"
+
+#: 04060107.xhp#par_id3148943.267.help.text
+msgctxt "04060107.xhp#par_id3148943.267.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_id3149771.268.help.text
+msgid "<item type=\"input\">95</item>"
+msgstr "95"
+
+#: 04060107.xhp#par_id3158407.269.help.text
+msgctxt "04060107.xhp#par_id3158407.269.help.text"
+msgid "<item type=\"input\">17</item>"
+msgstr "17"
+
+#: 04060107.xhp#par_id3148806.270.help.text
+msgctxt "04060107.xhp#par_id3148806.270.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "2"
+
+#: 04060107.xhp#par_id3154904.271.help.text
+msgctxt "04060107.xhp#par_id3154904.271.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_id3150779.272.help.text
+msgctxt "04060107.xhp#par_id3150779.272.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "5"
+
+#: 04060107.xhp#par_id3148449.273.help.text
+msgctxt "04060107.xhp#par_id3148449.273.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "10"
+
+#: 04060107.xhp#par_id3147238.274.help.text
+msgid "<item type=\"input\">50</item>"
+msgstr "50"
+
+#: 04060107.xhp#par_id3153583.277.help.text
+msgid "The smallest possible array is a 1 x 2 or 2 x 1 array with two adjacent cells."
+msgstr "The smallest possible array is a 1 x 2 or 2 x 1 array with two adjacent cells."
+
+#: 04060107.xhp#hd_id3148474.275.help.text
+msgid "What is an array formula?"
+msgstr "What is an array formula?"
+
+#: 04060107.xhp#par_id3155355.276.help.text
+msgid "A formula in which the individual values in a cell range are evaluated is referred to as an array formula. The difference between an array formula and other formulas is that the array formula deals with several values simultaneously instead of just one."
+msgstr "A formula in which the individual values in a cell range are evaluated is referred to as an array formula. The difference between an array formula and other formulas is that the array formula deals with several values simultaneously instead of just one."
+
+#: 04060107.xhp#par_id3151052.278.help.text
+msgid "Not only can an array formula process several values, but it can also return several values. The results of an array formula is also an array."
+msgstr "Not only can an array formula process several values, but it can also return several values. The results of an array formula is also an array."
+
+#: 04060107.xhp#par_id3158432.279.help.text
+msgid "To multiply the values in the individual cells by 10 in the above array, you do not need to apply a formula to each individual cell or value. Instead you just need to use a single array formula. Select a range of 3 x 3 cells on another part of the spreadsheet, enter the formula <item type=\"input\">=10*A1:C3</item> and confirm this entry using the key combination <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The result is a 3 x 3 array in which the individual values in the cell range (A1:C3) are multiplied by a factor of 10."
+msgstr "To multiply the values in the individual cells by 10 in the above array, you do not need to apply a formula to each individual cell or value. Instead you just need to use a single array formula. Select a range of 3 x 3 cells on another part of the spreadsheet, enter the formula \"=10*A1:C3\" and confirm this entry using the key combination <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The result is a 3 x 3 array in which the individual values in the cell range (A1:C3) are multiplied by a factor of 10."
+
+#: 04060107.xhp#par_id3149156.280.help.text
+msgid "In addition to multiplication, you can also use other operators on the reference range (an array). With $[officename] Calc, you can add (+), subtract (-), multiply (*), divide (/), use exponents (^), concatenation (&) and comparisons (=, <>, <, >, <=, >=). The operators can be used on each individual value in the cell range and return the result as an array if the array formula was entered."
+msgstr "In addition to multiplication, you can also use other operators on the reference range (an array). With $[officename] Calc, you can add (+), subtract (-), multiply (*), divide (/), use exponents (^), concatenation (&) and comparisons (=, <>, <, >, <=, >=). The operators can be used on each individual value in the cell range and return the result as an array if the array formula was entered."
+
+#: 04060107.xhp#par_id3166456.326.help.text
+msgid "Comparison operators in an array formula treat empty cells in the same way as in a normal formula, that is, either as zero or as an empty string. For example, if cells A1 and A2 are empty the array formulas <item type=\"input\">{=A1:A2=\"\"}</item> and <item type=\"input\">{=A1:A2=0}</item> will both return a 1 column 2 row array of cells containing TRUE."
+msgstr "When you change comparison operators in an array formula, empty cells follow the same rules as single comparisons; that is, it could be represented either by 0 or as an empty string. Therefore, the array formulas {=A1:A2=\"\"} and {=A1:A2=0} will both return TRUE if cells A1 and A2 are empty."
+
+#: 04060107.xhp#hd_id3150713.281.help.text
+msgid "When do you use array formulas?"
+msgstr "When do you use array formulas?"
+
+#: 04060107.xhp#par_id3149787.282.help.text
+msgid "Use array formulas if you have to repeat calculations using different values. If you decide to change the calculation method later, you only have to update the array formula. To add an array formula, select the entire array range and then <link href=\"text/scalc/01/04060107.xhp\" name=\"make the required change to the array formula\">make the required change to the array formula</link>."
+msgstr "Use array formulas if you have to repeat calculations using different values. If you decide to change the calculation method later, you only have to update the array formula. To add an array formula, select the entire array range and then <link href=\"text/scalc/01/04060107.xhp\" name=\"make the required change to the array formula\">make the required change to the array formula</link>."
+
+#: 04060107.xhp#par_id3149798.283.help.text
+msgid "Array formulas are also a space saving option when several values must be calculated, since they are not very memory-intensive. In addition, arrays are an essential tool for carrying out complex calculations, because you can have several cell ranges included in your calculations. $[officename] has different math functions for arrays, such as the MMULT function for multiplying two arrays or the SUMPRODUCT function for calculating the scalar products of two arrays."
+msgstr "array formulas are also a space saving option when several values must be calculated, since they are not very memory-intensive. In addition, arrays are an essential tool for carrying out complex calculations, because you can have several cell ranges included in your calculations. $[officename] has different math functions for arrays, such as the MMULT function for multiplying two arrays or the SUMPRODUCT function for calculating the scalar products of two arrays."
+
+#: 04060107.xhp#hd_id3155588.284.help.text
+msgid "Using Array Formulas in $[officename] Calc"
+msgstr "Using Array Formulas in $[officename] Calc"
+
+#: 04060107.xhp#par_id3152876.285.help.text
+msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:"
+msgstr "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:"
+
+#: 04060107.xhp#hd_id3151271.313.help.text
+msgid "Creating Array Formulas"
+msgstr "Creating Array Formulas"
+
+#: 04060107.xhp#par_id3149102.314.help.text
+msgid "If you create an array formula using the <emph>Function Wizard</emph>, you must mark the <emph>Array</emph> check box each time so that the results are returned in an array. Otherwise, only the value in the upper-left cell of the array being calculated is returned."
+msgstr "If you create an array formula using the <emph>Function Wizard</emph>, you must mark the <emph>Array</emph> check box each time so that the results are returned in an array. Otherwise, only the value in the upper-left cell of the array being calculated is returned."
+
+#: 04060107.xhp#par_id3153392.4.help.text
+msgid "If you enter the array formula directly into the cell, you must use the key combination Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter instead of the Enter key. Only then does the formula become an array formula."
+msgstr "If you enter the array formula directly into the cell, you must use the key combination Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter instead of the Enter key. Only then does the formula become an array formula."
+
+#: 04060107.xhp#par_id3151120.315.help.text
+msgid "Array formulas appear in braces in $[officename] Calc. You cannot create array formulas by manually entering the braces."
+msgstr "Array formulas appear in braces in $[officename] Calc. You cannot create array formulas by manually entering the braces."
+
+#: 04060107.xhp#par_id3154342.5.help.text
+msgid "The cells in a results array are automatically protected against changes. However, you can edit or copy the array formula by selecting the entire array cell range."
+msgstr "The cells in a results array are automatically protected against changes. However, you can edit or copy the array formula by selecting the entire array cell range."
+
+#: 04060107.xhp#hd_id8834803.help.text
+msgid "Using Inline Array Constants in Formulas"
+msgstr ""
+
+#: 04060107.xhp#par_id985747.help.text
+msgid "Calc supports inline matrix/array constants in formulas. An inline array is surrounded by curly braces '{' and '}'. Elements can be each a number (including negatives), a logical constant (TRUE, FALSE), or a literal string. Non-constant expressions are not allowed. Arrays can be entered with one or more rows, and one or more columns. All rows must consist of the same number of elements, all columns must consist of the same number of elements. "
+msgstr ""
+
+#: 04060107.xhp#par_id936613.help.text
+msgid "The column separator (separating elements in one row) and the row separator are language and locale dependent. But in this help content, the ';' semicolon and '|' pipe symbol are used to indicate the column and row separators, respectively. For example, in the English locale, the ',' comma is used as the column separator, while the ';' semicolon is used as the row separator."
+msgstr ""
+
+#: 04060107.xhp#par_id1877498.help.text
+msgid "Arrays can not be nested."
+msgstr ""
+
+#: 04060107.xhp#par_id4262520.help.text
+msgid "<emph>Examples:</emph>"
+msgstr "<emph>Examples:</emph>"
+
+#: 04060107.xhp#par_id9387493.help.text
+msgid "={1;2;3}"
+msgstr ""
+
+#: 04060107.xhp#par_id8207037.help.text
+msgid "An array with one row consisting of the three numbers 1, 2, and 3."
+msgstr ""
+
+#: 04060107.xhp#par_id6757103.help.text
+msgid "To enter this array constant, you select three cells in a row, then you type the formula <item type=\"input\">={1;2;3}</item> using the curly braces and the semicolons, then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter."
+msgstr ""
+
+#: 04060107.xhp#par_id8868068.help.text
+msgid "={1;2;3|4;5;6}"
+msgstr ""
+
+#: 04060107.xhp#par_id6626483.help.text
+msgid "An array with two rows and three values in each row."
+msgstr ""
+
+#: 04060107.xhp#par_id5262916.help.text
+msgid "={0;1;2|FALSE;TRUE;\"two\"}"
+msgstr ""
+
+#: 04060107.xhp#par_id1623889.help.text
+msgid "A mixed data array."
+msgstr ""
+
+#: 04060107.xhp#par_id7781914.help.text
+msgid "=SIN({1;2;3})"
+msgstr ""
+
+#: 04060107.xhp#par_id300912.help.text
+msgid "Entered as a matrix formula, delivers the result of three SIN calculations with the arguments 1, 2, and 3."
+msgstr ""
+
+#: 04060107.xhp#hd_id3148660.316.help.text
+msgid "Editing Array Formulas"
+msgstr "Editing Array Formulas"
+
+#: 04060107.xhp#par_id3149241.317.help.text
+msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+/, where / is the Division key on the numeric keypad."
+msgstr ""
+
+#: 04060107.xhp#par_id3143274.318.help.text
+msgid "Either press F2 or position the cursor in the input line. Both of these actions let you edit the formula."
+msgstr "Either press F2 or position the cursor in the input line. Both of these actions let you edit the formula."
+
+#: 04060107.xhp#par_id3154798.319.help.text
+msgid "After you have made changes, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter."
+msgstr "After you have made changes, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter."
+
+#: 04060107.xhp#par_id3150628.334.help.text
+msgid "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want."
+msgstr "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want."
+
+#: 04060107.xhp#hd_id3145608.320.help.text
+msgid "Copying Array Formulas"
+msgstr "Copying Array Formulas"
+
+#: 04060107.xhp#par_id3149585.321.help.text
+msgctxt "04060107.xhp#par_id3149585.321.help.text"
+msgid "Select the cell range or array containing the array formula."
+msgstr "Select the cell range or array containing the array formula."
+
+#: 04060107.xhp#par_id3154619.322.help.text
+msgid "Either press F2 or position the cursor in the input line."
+msgstr "Either press F2 or position the cursor in the input line."
+
+#: 04060107.xhp#par_id3150994.323.help.text
+msgid "Copy the formula into the input line by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C."
+msgstr "Copy the formula into the input line by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C."
+
+#: 04060107.xhp#par_id3146787.324.help.text
+msgid "Select a range of cells where you want to insert the array formula and either press F2 or position the cursor in the input line."
+msgstr "Select a range of cells where you want to insert the array formula and either press F2 or position the cursor in the input line."
+
+#: 04060107.xhp#par_id3154419.325.help.text
+msgid "Paste the formula by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V in the selected space and confirm it by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The selected range now contains the array formula."
+msgstr "Paste the formula by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V in the selected space and confirm it by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter. The selected range now contains the array formula."
+
+#: 04060107.xhp#hd_id3154834.328.help.text
+msgid "Adjusting an Array Range"
+msgstr "Adjusting an Array Range"
+
+#: 04060107.xhp#par_id3148679.329.help.text
+msgid "If you want to edit the output array, do the following:"
+msgstr "If you want to edit the output array, do the following:"
+
+#: 04060107.xhp#par_id3151102.330.help.text
+msgctxt "04060107.xhp#par_id3151102.330.help.text"
+msgid "Select the cell range or array containing the array formula."
+msgstr "Select the cell range or array containing the array formula."
+
+#: 04060107.xhp#par_id3147096.331.help.text
+msgid "Below the selection, to the right, you will see a small icon with which you can zoom in or out on the range using your mouse."
+msgstr "Below the selection, to the right, you will see a small icon with which you can zoom in or out on the range using your mouse."
+
+#: 04060107.xhp#par_id3150974.332.help.text
+msgid "When you adjust the array range, the array formula will not automatically be adjusted. You are only changing the range in which the result will appear."
+msgstr "When you adjust the array range, the array formula will not automatically be adjusted. You are only changing the range in which the result will appear."
+
+#: 04060107.xhp#par_id3146080.333.help.text
+msgid "By holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, you can create a copy of the array formula in the given range."
+msgstr ""
+
+#: 04060107.xhp#par_idN10D47.help.text
+msgid "Conditional Array Calculations"
+msgstr "Conditional Array Calculations"
+
+#: 04060107.xhp#par_idN10D4B.help.text
+msgid "A conditional array calculation is an array or matrix formula that includes an IF() or CHOOSE() function. The condition argument in the formula is an area reference or a matrix result."
+msgstr "A conditional array calculation is an array or matrix formula that includes an IF() or CHOOSE() function. The condition argument in the formula is an area reference or a matrix result."
+
+#: 04060107.xhp#par_idN10D4E.help.text
+msgid "In the following example, the >0 test of the {=IF(A1:A3>0;\"yes\";\"no\")} formula is applied to each cell in the range A1:A3 and the result is copied to the corresponding cell."
+msgstr "In the following example, the >0 test of the {=IF(A1:A3>0;\"yes\";\"no\")} formula is applied to each cell in the range A1:A3 and the result is copied to the corresponding cell."
+
+#: 04060107.xhp#par_idN10D65.help.text
+msgctxt "04060107.xhp#par_idN10D65.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_idN10D6B.help.text
+msgctxt "04060107.xhp#par_idN10D6B.help.text"
+msgid "B (formula)"
+msgstr "B (formula)"
+
+#: 04060107.xhp#par_idN10B75.help.text
+msgctxt "04060107.xhp#par_idN10B75.help.text"
+msgid "B (result)"
+msgstr "B (result)"
+
+#: 04060107.xhp#par_idN10D79.help.text
+msgctxt "04060107.xhp#par_idN10D79.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10D80.help.text
+msgctxt "04060107.xhp#par_idN10D80.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10D86.help.text
+msgctxt "04060107.xhp#par_idN10D86.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr "{=IF(A1:A3>0;\"yes\";\"no\")}"
+
+#: 04060107.xhp#par_idN10D8C.help.text
+msgctxt "04060107.xhp#par_idN10D8C.help.text"
+msgid "yes"
+msgstr "yes"
+
+#: 04060107.xhp#par_idN10D94.help.text
+msgctxt "04060107.xhp#par_idN10D94.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN10D9B.help.text
+msgctxt "04060107.xhp#par_idN10D9B.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060107.xhp#par_idN10DA1.help.text
+msgctxt "04060107.xhp#par_idN10DA1.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr "{=IF(A1:A3>0;\"yes\";\"no\")}"
+
+#: 04060107.xhp#par_idN10DA7.help.text
+msgid "no"
+msgstr "no"
+
+#: 04060107.xhp#par_idN10DAF.help.text
+msgctxt "04060107.xhp#par_idN10DAF.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_idN10DB6.help.text
+msgctxt "04060107.xhp#par_idN10DB6.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10DBC.help.text
+msgctxt "04060107.xhp#par_idN10DBC.help.text"
+msgid "{=IF(A1:A3>0;\"yes\";\"no\")}"
+msgstr "{=IF(A1:A3>0;\"yes\";\"no\")}"
+
+#: 04060107.xhp#par_idN10DC2.help.text
+msgctxt "04060107.xhp#par_idN10DC2.help.text"
+msgid "yes"
+msgstr "yes"
+
+#: 04060107.xhp#par_idN10DD0.help.text
+msgid "The following functions provide forced array handling: CORREL, COVAR, FORECAST, FTEST, INTERCEPT, MDETERM, MINVERSE, MMULT, MODE, PEARSON, PROB, RSQ, SLOPE, STEYX, SUMPRODUCT, SUMX2MY2, SUMX2PY2, SUMXMY2, TTEST. If you use area references as arguments when you call one of these functions, the functions behave as array functions. The following table provides an example of forced array handling:"
+msgstr "The following functions provide forced array handling: CORREL, COVAR, FORECAST, FTEST, INTERCEPT, MDETERM, MINVERSE, MMULT, MODE, PEARSON, PROB, RSQ, SLOPE, STEYX, SUMPRODUCT, SUMX2MY2, SUMX2PY2, SUMXMY2, TTEST. If you use area references as arguments when you call one of these functions, the functions behave as array functions. The following table provides an example of forced array handling:"
+
+#: 04060107.xhp#par_idN10DE2.help.text
+msgctxt "04060107.xhp#par_idN10DE2.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_idN10DE8.help.text
+msgctxt "04060107.xhp#par_idN10DE8.help.text"
+msgid "B (formula)"
+msgstr "B (formula)"
+
+#: 04060107.xhp#par_idN10DEE.help.text
+msgctxt "04060107.xhp#par_idN10DEE.help.text"
+msgid "B (result)"
+msgstr "B (result)"
+
+#: 04060107.xhp#par_idN10DF4.help.text
+msgid "C (forced array formula)"
+msgstr "C (forced array formula)"
+
+#: 04060107.xhp#par_idN10DFA.help.text
+msgid "C (result)"
+msgstr "C (result)"
+
+#: 04060107.xhp#par_idN10E02.help.text
+msgctxt "04060107.xhp#par_idN10E02.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10E09.help.text
+msgctxt "04060107.xhp#par_idN10E09.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN10E0F.help.text
+msgctxt "04060107.xhp#par_idN10E0F.help.text"
+msgid "=A1:A2+1"
+msgstr "=A1:A2+1"
+
+#: 04060107.xhp#par_idN10E17.help.text
+msgctxt "04060107.xhp#par_idN10E17.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN10E1D.help.text
+msgctxt "04060107.xhp#par_idN10E1D.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr "=SUMPRODUCT(A1:A2+1)"
+
+#: 04060107.xhp#par_idN10E25.help.text
+msgctxt "04060107.xhp#par_idN10E25.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#par_idN10E2D.help.text
+msgctxt "04060107.xhp#par_idN10E2D.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN10E34.help.text
+msgctxt "04060107.xhp#par_idN10E34.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN10E3A.help.text
+msgctxt "04060107.xhp#par_idN10E3A.help.text"
+msgid "=A1:A2+1"
+msgstr "=A1:A2+1"
+
+#: 04060107.xhp#par_idN10E42.help.text
+msgctxt "04060107.xhp#par_idN10E42.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_idN10E48.help.text
+msgctxt "04060107.xhp#par_idN10E48.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr "=SUMPRODUCT(A1:A2+1)"
+
+#: 04060107.xhp#par_idN10E50.help.text
+msgctxt "04060107.xhp#par_idN10E50.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#par_idN10E58.help.text
+msgctxt "04060107.xhp#par_idN10E58.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_idN10E63.help.text
+msgctxt "04060107.xhp#par_idN10E63.help.text"
+msgid "=A1:A2+1"
+msgstr "=A1:A2+1"
+
+#: 04060107.xhp#par_idN10E6A.help.text
+msgid "#VALUE!"
+msgstr "#VALUE"
+
+#: 04060107.xhp#par_idN10E70.help.text
+msgctxt "04060107.xhp#par_idN10E70.help.text"
+msgid "=SUMPRODUCT(A1:A2+1)"
+msgstr "=SUMPRODUCT(A1:A2+1)"
+
+#: 04060107.xhp#par_idN10E78.help.text
+msgctxt "04060107.xhp#par_idN10E78.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#bm_id3158446.help.text
+msgid "<bookmark_value>MUNIT function</bookmark_value>"
+msgstr "<bookmark_value>MUNIT function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3158446.12.help.text
+msgid "MUNIT"
+msgstr "MUNIT"
+
+#: 04060107.xhp#par_id3154121.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">Returns the unitary square array of a certain size.</ahelp> The unitary array is a square array where the main diagonal elements equal 1 and all other array elements are equal to 0."
+msgstr "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">Returns the unitary square array of a certain size.</ahelp> The unitary array is a square array where the main diagonal elements equal 1 and all other array elements are equal to 0."
+
+#: 04060107.xhp#hd_id3155123.14.help.text
+msgctxt "04060107.xhp#hd_id3155123.14.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3156271.15.help.text
+msgid "MUNIT(Dimensions)"
+msgstr "MUNIT(Dimensions)"
+
+#: 04060107.xhp#par_id3159390.16.help.text
+msgid "<emph>Dimensions</emph> refers to the size of the array unit."
+msgstr "<emph>Dimensions</emph> refers to the size of the array unit."
+
+#: 04060107.xhp#par_idN10C9B.help.text
+msgctxt "04060107.xhp#par_idN10C9B.help.text"
+msgid "You can find a general introduction to Array functions at the top of this page."
+msgstr "You can find a general introduction to Array functions at the top of this page."
+
+#: 04060107.xhp#hd_id3156162.17.help.text
+msgctxt "04060107.xhp#hd_id3156162.17.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3150949.18.help.text
+msgid "Select a square range within the spreadsheet, for example, from A1 to E5."
+msgstr "Select a square range within the spreadsheet, for example, from A1 to E5."
+
+#: 04060107.xhp#par_id3151260.19.help.text
+msgid "Without deselecting the range, select the MUNIT function. Mark the <emph>Array</emph> check box. Enter the desired dimensions for the array unit, in this case <item type=\"input\">5</item>, and click <emph>OK</emph>."
+msgstr "Without deselecting the range, select the MUNIT function. Mark the <emph>Array</emph> check box. Enter the desired dimensions for the array unit, in this case 5, and click <emph>OK</emph>."
+
+#: 04060107.xhp#par_id3150403.20.help.text
+msgid "You can also enter the <item type=\"input\">=Munit(5)</item> formula in the last cell of the selected range (E5), and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>."
+msgstr "You can also enter the =Munit(5) formula in the last cell of the selected range (E5), and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter </caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>."
+
+#: 04060107.xhp#par_id3156143.21.help.text
+msgid "You now see a unit array with a range of A1:E5."
+msgstr "You now see a unit array with a range of A1:E5."
+
+#: 04060107.xhp#par_idN10FA7.help.text
+msgctxt "04060107.xhp#par_idN10FA7.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3159084.help.text
+msgid "<bookmark_value>FREQUENCY function</bookmark_value>"
+msgstr "<bookmark_value>FREQUENCY function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3159084.22.help.text
+msgid "FREQUENCY"
+msgstr "FREQUENCY"
+
+#: 04060107.xhp#par_id3145777.23.help.text
+msgid "<ahelp hid=\"HID_FUNC_HAEUFIGKEIT\">Indicates the frequency distribution in a one-column-array.</ahelp> The function counts the number of values in the Data array that are within the values given by the Classes array."
+msgstr "<ahelp hid=\"HID_FUNC_HAEUFIGKEIT\">Indicates the frequency distribution in a one-column-array.</ahelp> The function counts the number of values in the Data array that are within the values given by the Classes array."
+
+#: 04060107.xhp#hd_id3153347.24.help.text
+msgctxt "04060107.xhp#hd_id3153347.24.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3155498.25.help.text
+msgid "FREQUENCY(Data; Classes)"
+msgstr "FREQUENCY(Data; Classes)"
+
+#: 04060107.xhp#par_id3154352.26.help.text
+msgid "<emph>Data</emph> represents the reference to the values to be counted."
+msgstr "<emph>Data</emph> represents the reference to the values to be counted."
+
+#: 04060107.xhp#par_id3148402.27.help.text
+msgid "<emph>Classes</emph> represents the array of the limit values."
+msgstr "<emph>Classes</emph> represents the array of the limit values."
+
+#: 04060107.xhp#par_idN10D71.help.text
+msgctxt "04060107.xhp#par_idN10D71.help.text"
+msgid "You can find a general introduction to Array functions at the top of this page."
+msgstr "You can find a general introduction to Array functions at the top of this page."
+
+#: 04060107.xhp#hd_id3148981.28.help.text
+msgctxt "04060107.xhp#hd_id3148981.28.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3155904.219.help.text
+msgid "In the following table, column A lists unsorted measurement values. Column B contains the upper limit you entered for the classes into which you want to divide the data in column A. According to the limit entered in B1, the FREQUENCY function returns the number of measured values less than or equal to 5. As the limit in B2 is 10, the FREQUENCY function returns the second result as the number of measured values that are greater than 5 and less than or equal to 10. The text you entered in B6, \">25\", is only for reference purposes."
+msgstr "In the following table, column A lists unsorted measurement values. Column B contains the upper limit you entered for the classes into which you want to divide the data in column A. According to the limit entered in B1, the FREQUENCY function returns the number of measured values less than or equal to 5. As the limit in B2 is 10, the FREQUENCY function returns the second result as the number of measured values that are greater than 5 or greater than or equal to 10. The text you entered in B6, \">25\", is only for reference purposes."
+
+#: 04060107.xhp#par_id3155869.220.help.text
+msgid "<emph>A</emph>"
+msgstr "<emph>A</emph>"
+
+#: 04060107.xhp#par_id3149328.221.help.text
+msgid "<emph>B</emph>"
+msgstr "<emph>B</emph>"
+
+#: 04060107.xhp#par_id3152467.222.help.text
+msgid "<emph>C</emph>"
+msgstr "<emph>C</emph>"
+
+#: 04060107.xhp#par_id3154528.223.help.text
+msgctxt "04060107.xhp#par_id3154528.223.help.text"
+msgid "<emph>1</emph>"
+msgstr "<emph>1</emph>"
+
+#: 04060107.xhp#par_id3149744.224.help.text
+msgctxt "04060107.xhp#par_id3149744.224.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060107.xhp#par_id3147309.225.help.text
+msgctxt "04060107.xhp#par_id3147309.225.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#par_id3154199.226.help.text
+msgctxt "04060107.xhp#par_id3154199.226.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_id3159218.227.help.text
+msgctxt "04060107.xhp#par_id3159218.227.help.text"
+msgid "<emph>2</emph>"
+msgstr "<emph>2</emph>"
+
+#: 04060107.xhp#par_id3153263.228.help.text
+msgctxt "04060107.xhp#par_id3153263.228.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060107.xhp#par_id3156201.229.help.text
+msgctxt "04060107.xhp#par_id3156201.229.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060107.xhp#par_id3147552.230.help.text
+msgctxt "04060107.xhp#par_id3147552.230.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_id3149174.231.help.text
+msgctxt "04060107.xhp#par_id3149174.231.help.text"
+msgid "<emph>3</emph>"
+msgstr "<emph>3</emph>"
+
+#: 04060107.xhp#par_id3151201.232.help.text
+msgctxt "04060107.xhp#par_id3151201.232.help.text"
+msgid "24"
+msgstr "24"
+
+#: 04060107.xhp#par_id3150245.233.help.text
+msgctxt "04060107.xhp#par_id3150245.233.help.text"
+msgid "15"
+msgstr "15"
+
+#: 04060107.xhp#par_id3159194.234.help.text
+msgctxt "04060107.xhp#par_id3159194.234.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_id3146925.235.help.text
+msgctxt "04060107.xhp#par_id3146925.235.help.text"
+msgid "<emph>4</emph>"
+msgstr "<emph>4</emph>"
+
+#: 04060107.xhp#par_id3154128.236.help.text
+msgctxt "04060107.xhp#par_id3154128.236.help.text"
+msgid "11"
+msgstr "11"
+
+#: 04060107.xhp#par_id3151067.237.help.text
+msgctxt "04060107.xhp#par_id3151067.237.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060107.xhp#par_id3156033.238.help.text
+msgctxt "04060107.xhp#par_id3156033.238.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_id3149298.239.help.text
+msgctxt "04060107.xhp#par_id3149298.239.help.text"
+msgid "<emph>5</emph>"
+msgstr "<emph>5</emph>"
+
+#: 04060107.xhp#par_id3151382.240.help.text
+msgctxt "04060107.xhp#par_id3151382.240.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060107.xhp#par_id3155141.241.help.text
+msgid "25"
+msgstr "25"
+
+#: 04060107.xhp#par_id3145213.242.help.text
+msgctxt "04060107.xhp#par_id3145213.242.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_id3145268.243.help.text
+msgctxt "04060107.xhp#par_id3145268.243.help.text"
+msgid "<emph>6</emph>"
+msgstr "<emph>6</emph>"
+
+#: 04060107.xhp#par_id3163724.244.help.text
+msgctxt "04060107.xhp#par_id3163724.244.help.text"
+msgid "20"
+msgstr "20"
+
+#: 04060107.xhp#par_id3147132.245.help.text
+msgid ">25"
+msgstr ">25"
+
+#: 04060107.xhp#par_id3148903.246.help.text
+msgctxt "04060107.xhp#par_id3148903.246.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_id3151007.247.help.text
+msgctxt "04060107.xhp#par_id3151007.247.help.text"
+msgid "<emph>7</emph>"
+msgstr "<emph>7</emph>"
+
+#: 04060107.xhp#par_id3153294.248.help.text
+msgctxt "04060107.xhp#par_id3153294.248.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060107.xhp#par_id3147284.249.help.text
+msgctxt "04060107.xhp#par_id3147284.249.help.text"
+msgid "<emph>8</emph>"
+msgstr "<emph>8</emph>"
+
+#: 04060107.xhp#par_id3154914.250.help.text
+msgctxt "04060107.xhp#par_id3154914.250.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060107.xhp#par_id3154218.251.help.text
+msgctxt "04060107.xhp#par_id3154218.251.help.text"
+msgid "<emph>9</emph>"
+msgstr "<emph>9</emph>"
+
+#: 04060107.xhp#par_id3147226.252.help.text
+msgctxt "04060107.xhp#par_id3147226.252.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060107.xhp#par_id3149045.253.help.text
+msgid "<emph>10</emph>"
+msgstr "<emph>10</emph>"
+
+#: 04060107.xhp#par_id3155799.254.help.text
+msgctxt "04060107.xhp#par_id3155799.254.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060107.xhp#par_id3155076.255.help.text
+msgid "<emph>11</emph>"
+msgstr "<emph>11</emph>"
+
+#: 04060107.xhp#par_id3150217.256.help.text
+msgid "33"
+msgstr "33"
+
+#: 04060107.xhp#par_id3150312.29.help.text
+msgid "Select a single column range in which to enter the frequency according to the class limits. You must select one field more than the class ceiling. In this example, select the range C1:C6. Call up the FREQUENCY function in the <emph>Function Wizard</emph>. Select the <emph>Data</emph> range in (A1:A11), and then the <emph>Classes</emph> range in which you entered the class limits (B1:B6). Select the <emph>Array</emph> check box and click <emph>OK</emph>. You will see the frequency count in the range C1:C6."
+msgstr "Select a single column range in which to enter the frequency for values that are greater than the upper class limit. You must select one field more than the class ceiling. In this example, select the range C1:C6. Call up the FREQUENCY function in the <emph>Function Wizard</emph>. Select the <emph>Data</emph> range in (A1:A11), and then the <emph>Classes</emph> range in which you entered the class limits (B1:B6). Select the <emph>Array</emph> check box and click <emph>OK</emph>. You will see the frequency count in the range C1:C6."
+
+#: 04060107.xhp#par_idN11269.help.text
+msgctxt "04060107.xhp#par_idN11269.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3151030.help.text
+msgid "<bookmark_value>MDETERM function</bookmark_value><bookmark_value>determinants</bookmark_value>"
+msgstr "<bookmark_value>MDETERM function</bookmark_value><bookmark_value>determinants</bookmark_value>"
+
+#: 04060107.xhp#hd_id3151030.31.help.text
+msgid "MDETERM"
+msgstr "MDETERM"
+
+#: 04060107.xhp#par_id3154073.32.help.text
+msgid "<ahelp hid=\"HID_FUNC_MDET\">Returns the array determinant of an array.</ahelp> This function returns a value in the current cell; it is not necessary to define a range for the results."
+msgstr "<ahelp hid=\"HID_FUNC_MDET\">Returns the array determinant of an array.</ahelp> This function returns a value in the current cell; it is not necessary to define a range for the results."
+
+#: 04060107.xhp#hd_id3156366.33.help.text
+msgctxt "04060107.xhp#hd_id3156366.33.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3156380.34.help.text
+msgid "MDETERM(Array)"
+msgstr "MDETERM(array)"
+
+#: 04060107.xhp#par_id3150290.35.help.text
+msgid "<emph>Array</emph> represents a square array in which the determinants are defined."
+msgstr "<emph>Array</emph> represents a square array in which the determinants are defined."
+
+#: 04060107.xhp#par_idN11035.help.text
+msgid "You can find a general introduction to using Array functions on top of this page."
+msgstr "You can find a general introduction to using Array functions on top of this page."
+
+#: 04060107.xhp#par_idN11333.help.text
+msgctxt "04060107.xhp#par_idN11333.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3151348.help.text
+msgid "<bookmark_value>MINVERSE function</bookmark_value><bookmark_value>inverse arrays</bookmark_value>"
+msgstr "<bookmark_value>MINVERSE function</bookmark_value><bookmark_value>inverse arrays</bookmark_value>"
+
+#: 04060107.xhp#hd_id3151348.39.help.text
+msgid "MINVERSE"
+msgstr "MINVERSE"
+
+#: 04060107.xhp#par_id3145569.40.help.text
+msgid "<ahelp hid=\"HID_FUNC_MINV\">Returns the inverse array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MINV\">Returns the inverse array.</ahelp>"
+
+#: 04060107.xhp#hd_id3156072.41.help.text
+msgctxt "04060107.xhp#hd_id3156072.41.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3156085.42.help.text
+msgid "MINVERSE(Array)"
+msgstr "MINVERSE(array)"
+
+#: 04060107.xhp#par_id3157849.43.help.text
+msgid "<emph>Array</emph> represents a square array that is to be inverted."
+msgstr "<emph>Array</emph> represents a square array that is to be inverted."
+
+#: 04060107.xhp#par_idN113EE.help.text
+msgctxt "04060107.xhp#par_idN113EE.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3157868.44.help.text
+msgctxt "04060107.xhp#hd_id3157868.44.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3149638.45.help.text
+msgid "Select a square range and select MINVERSE. Select the output array, select the <emph>Array</emph> field and click <emph>OK</emph>."
+msgstr "Select a square range and select MINVERSE. Select the output array, select the <emph>Array</emph> field and click <emph>OK</emph>."
+
+#: 04060107.xhp#bm_id3148546.help.text
+msgid "<bookmark_value>MMULT function</bookmark_value>"
+msgstr "<bookmark_value>MMULT function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3148546.47.help.text
+msgid "MMULT"
+msgstr "MMULT"
+
+#: 04060107.xhp#par_id3148518.48.help.text
+msgid "<ahelp hid=\"HID_FUNC_MMULT\">Calculates the array product of two arrays.</ahelp> The number of columns for array 1 must match the number of rows for array 2. The square array has an equal number of rows and columns."
+msgstr "<ahelp hid=\"HID_FUNC_MMULT\">Calculates the array product of two arrays.</ahelp> The number of columns for array 1 must match the number of rows for array 2. The square array has an equal number of rows and columns."
+
+#: 04060107.xhp#hd_id3146767.49.help.text
+msgctxt "04060107.xhp#hd_id3146767.49.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3150798.50.help.text
+msgid "MMULT(Array; Array)"
+msgstr "MMULT(array; array)"
+
+#: 04060107.xhp#par_id3150812.51.help.text
+msgid "<emph>Array</emph> at first place represents the first array used in the array product."
+msgstr "<emph>Array</emph> at first place represents the first array used in the array product."
+
+#: 04060107.xhp#par_id3152553.52.help.text
+msgid "<emph>Array</emph> at second place represents the second array with the same number of rows."
+msgstr "<emph>Array</emph> at second place represents the second array with the same number of rows."
+
+#: 04060107.xhp#par_idN114C3.help.text
+msgctxt "04060107.xhp#par_idN114C3.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3152574.53.help.text
+msgctxt "04060107.xhp#hd_id3152574.53.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3146826.54.help.text
+msgid "Select a square range. Choose the MMULT function. Select the first <emph>Array</emph>, then select the second <emph>Array</emph>. Using <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. Click <emph>OK</emph>. The output array will appear in the first selected range."
+msgstr "Select a square range. Choose the MMULT function. Select the first <emph>Array</emph>, then select the second <emph>Array</emph>. Using <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. Click <emph>OK</emph>. The output array will appear in the first selected range."
+
+#: 04060107.xhp#bm_id3154970.help.text
+msgid "<bookmark_value>TRANSPOSE function</bookmark_value>"
+msgstr "<bookmark_value>TRANSPOSE function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3154970.56.help.text
+msgid "TRANSPOSE"
+msgstr "TRANSPOSE"
+
+#: 04060107.xhp#par_id3155276.57.help.text
+msgid "<ahelp hid=\"HID_FUNC_MTRANS\">Transposes the rows and columns of an array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_MTRANS\">Transposes the rows and columns of an array.</ahelp>"
+
+#: 04060107.xhp#hd_id3155294.58.help.text
+msgctxt "04060107.xhp#hd_id3155294.58.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3153843.59.help.text
+msgid "TRANSPOSE(Array)"
+msgstr "TRANSPOSE(array)"
+
+#: 04060107.xhp#par_id3153857.60.help.text
+msgid "<emph>Array</emph> represents the array in the spreadsheet that is to be transposed."
+msgstr "<emph>Array</emph> represents the array in the spreadsheet that is to be transposed."
+
+#: 04060107.xhp#par_idN115A5.help.text
+msgctxt "04060107.xhp#par_idN115A5.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3159352.61.help.text
+msgctxt "04060107.xhp#hd_id3159352.61.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3159366.62.help.text
+msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter</caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
+msgstr "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Shift+Command+Enter </caseinline><defaultinline>Shift+Ctrl+Enter</defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
+
+#: 04060107.xhp#bm_id3109846.help.text
+msgid "<bookmark_value>LINEST function</bookmark_value>"
+msgstr "<bookmark_value>LINEST function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3109846.64.help.text
+msgid "LINEST"
+msgstr "LINEST"
+
+#: 04060107.xhp#par_id3144733.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_RGP\">Returns a table of statistics for a straight line that best fits a data set.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RGP\">Returns the parameters of a linear trend.</ahelp>"
+
+#: 04060107.xhp#hd_id3152825.66.help.text
+msgctxt "04060107.xhp#hd_id3152825.66.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3152839.67.help.text
+msgid "LINEST(data_Y; data_X; linearType; stats)"
+msgstr "LINEST(Data_Y; Data_X; Linear_Type; Stats)"
+
+#: 04060107.xhp#par_id3152853.68.help.text
+msgid "<emph>data_Y</emph> is a single row or column range specifying the y coordinates in a set of data points."
+msgstr "<emph>Data_Y</emph> represents the Y Data array."
+
+#: 04060107.xhp#par_id3154428.69.help.text
+msgid "<emph>data_X</emph> is a corresponding single row or column range specifying the x coordinates. If <emph>data_X</emph> is omitted it defaults to <item type=\"literal\">1, 2, 3, ..., n</item>. If there is more than one set of variables <emph>data_X</emph> may be a range with corresponding multiple rows or columns."
+msgstr "<emph>Data_X</emph> (optional) represents the X Data array."
+
+#: 04060107.xhp#par_id0811200804502119.help.text
+msgid "LINEST finds a straight line <item type=\"literal\">y = a + bx</item> that best fits the data, using linear regression (the \"least squares\" method). With more than one set of variables the straight line is of the form <item type=\"literal\">y = a + b1x1 + b2x2 ... + bnxn</item>."
+msgstr ""
+
+#: 04060107.xhp#par_id3154448.70.help.text
+msgid " if<emph>linearType</emph> is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, <emph>linearType</emph> defaults to TRUE (the line is not forced through the origin)."
+msgstr "<emph>Linear_Type</emph> (optional). If the line goes through the zero point, then set Linear_Type = 0."
+
+#: 04060107.xhp#par_id3154142.71.help.text
+msgid "if<emph>stats</emph> is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned."
+msgstr "<emph>Stats</emph> (optional). If Stats=0, only the regression coefficient is to be calculated. Otherwise, you will see other stats."
+
+#: 04060107.xhp#par_id0811200804502261.help.text
+msgid "LINEST returns a table (array) of statistics as below and must be entered as an array formula (for example by using <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Return rather than just Return)."
+msgstr ""
+
+#: 04060107.xhp#par_idN11416.help.text
+msgctxt "04060107.xhp#par_idN11416.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060107.xhp#par_idN116C6.help.text
+msgctxt "04060107.xhp#par_idN116C6.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3154162.72.help.text
+msgctxt "04060107.xhp#hd_id3154162.72.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3154176.73.help.text
+msgid "This function returns an array and is handled in the same way as the other array functions. Select a range for the answers and then the function. Select <emph>data_Y</emph>. If you want, you can enter other parameters. Select <emph>Array</emph> and click <emph>OK</emph>."
+msgstr "This function returns an array and is handled in the same way as the other array functions. Select a range for the answers and then the function. Select Data_Y. If you want, you can enter other parameters. Select <emph>Array</emph> and click <emph>OK</emph>."
+
+#: 04060107.xhp#par_id3155468.74.help.text
+msgid "The results returned by the system (if <emph>stats</emph> = 0), will at least show the slope of the regression line and its intersection with the Y axis. If <emph>stats</emph> does not equal 0, other results are to be displayed."
+msgstr "The results returned by the system (if Stats = 0), will at least show the slope of the regression line and its intersection with the Y axis. If <emph>Stats</emph> do not equal 0, other results are to be displayed."
+
+#: 04060107.xhp#hd_id3155491.75.help.text
+msgid "Other LINEST Results:"
+msgstr "Other LINEST Results:"
+
+#: 04060107.xhp#par_id3159291.76.help.text
+msgid "Examine the following examples:"
+msgstr "Examine the following examples:"
+
+#: 04060107.xhp#par_id3157922.77.help.text
+msgctxt "04060107.xhp#par_id3157922.77.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_id3157945.78.help.text
+msgctxt "04060107.xhp#par_id3157945.78.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060107.xhp#par_id3152486.79.help.text
+msgctxt "04060107.xhp#par_id3152486.79.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060107.xhp#par_id3152509.80.help.text
+msgctxt "04060107.xhp#par_id3152509.80.help.text"
+msgid "D"
+msgstr "D"
+
+#: 04060107.xhp#par_id3152532.81.help.text
+msgctxt "04060107.xhp#par_id3152532.81.help.text"
+msgid "E"
+msgstr "E"
+
+#: 04060107.xhp#par_id3153431.82.help.text
+msgid "F"
+msgstr "F"
+
+#: 04060107.xhp#par_id3153454.83.help.text
+msgid "G"
+msgstr "G"
+
+#: 04060107.xhp#par_id3154995.84.help.text
+msgctxt "04060107.xhp#par_id3154995.84.help.text"
+msgid "<emph>1</emph>"
+msgstr "<emph>1</emph>"
+
+#: 04060107.xhp#par_id3155021.85.help.text
+msgid "<item type=\"input\">x1</item>"
+msgstr "x1"
+
+#: 04060107.xhp#par_id3155044.86.help.text
+msgid "<item type=\"input\">x2</item>"
+msgstr "x2"
+
+#: 04060107.xhp#par_id3163734.87.help.text
+msgid "<item type=\"input\">y</item>"
+msgstr "y"
+
+#: 04060107.xhp#par_id3163766.88.help.text
+msgid "<item type=\"input\">LIN</item><item type=\"input\">EST value</item>"
+msgstr "LINEST value"
+
+#: 04060107.xhp#par_id3145686.89.help.text
+msgctxt "04060107.xhp#par_id3145686.89.help.text"
+msgid "<emph>2</emph>"
+msgstr "<emph>2</emph>"
+
+#: 04060107.xhp#par_id3145713.90.help.text
+msgctxt "04060107.xhp#par_id3145713.90.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "4"
+
+#: 04060107.xhp#par_id3145736.91.help.text
+msgctxt "04060107.xhp#par_id3145736.91.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "7"
+
+#: 04060107.xhp#par_id3159427.92.help.text
+msgid "<item type=\"input\">100</item>"
+msgstr "100"
+
+#: 04060107.xhp#par_id3159460.93.help.text
+msgid "<item type=\"input\">4,17</item>"
+msgstr "4,17"
+
+#: 04060107.xhp#par_id3159483.94.help.text
+msgid "-<item type=\"input\">3,48</item>"
+msgstr "-3,48"
+
+#: 04060107.xhp#par_id3152381.95.help.text
+msgid "<item type=\"input\">82,33</item>"
+msgstr "82,33"
+
+#: 04060107.xhp#par_id3152408.96.help.text
+msgctxt "04060107.xhp#par_id3152408.96.help.text"
+msgid "<emph>3</emph>"
+msgstr "<emph>3</emph>"
+
+#: 04060107.xhp#par_id3152435.97.help.text
+msgctxt "04060107.xhp#par_id3152435.97.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "5"
+
+#: 04060107.xhp#par_id3152458.98.help.text
+msgctxt "04060107.xhp#par_id3152458.98.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "9"
+
+#: 04060107.xhp#par_id3155652.99.help.text
+msgid "<item type=\"input\">105</item>"
+msgstr "105"
+
+#: 04060107.xhp#par_id3155684.100.help.text
+msgid "<item type=\"input\">5,46</item>"
+msgstr "5,46"
+
+#: 04060107.xhp#par_id3155707.101.help.text
+msgid "<item type=\"input\">10,96</item>"
+msgstr "10,96"
+
+#: 04060107.xhp#par_id3155730.102.help.text
+msgid "<item type=\"input\">9,35</item>"
+msgstr "9,35"
+
+#: 04060107.xhp#par_id3159506.103.help.text
+msgctxt "04060107.xhp#par_id3159506.103.help.text"
+msgid "<emph>4</emph>"
+msgstr "<emph>4</emph>"
+
+#: 04060107.xhp#par_id3159533.104.help.text
+msgctxt "04060107.xhp#par_id3159533.104.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr "6"
+
+#: 04060107.xhp#par_id3159556.105.help.text
+msgctxt "04060107.xhp#par_id3159556.105.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr "11"
+
+#: 04060107.xhp#par_id3159579.106.help.text
+msgid "<item type=\"input\">104</item>"
+msgstr "104"
+
+#: 04060107.xhp#par_id3159611.107.help.text
+msgid "<item type=\"input\">0,87</item>"
+msgstr "0,87"
+
+#: 04060107.xhp#par_id3152606.108.help.text
+msgid "<item type=\"input\">5,06</item>"
+msgstr "5,06"
+
+#: 04060107.xhp#par_id3152629.109.help.text
+msgctxt "04060107.xhp#par_id3152629.109.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr "#NA"
+
+#: 04060107.xhp#par_id3152655.110.help.text
+msgctxt "04060107.xhp#par_id3152655.110.help.text"
+msgid "<emph>5</emph>"
+msgstr "<emph>5</emph>"
+
+#: 04060107.xhp#par_id3152682.111.help.text
+msgctxt "04060107.xhp#par_id3152682.111.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "7"
+
+#: 04060107.xhp#par_id3152705.112.help.text
+msgctxt "04060107.xhp#par_id3152705.112.help.text"
+msgid "<item type=\"input\">12</item>"
+msgstr "12"
+
+#: 04060107.xhp#par_id3152728.113.help.text
+msgid "<item type=\"input\">108</item>"
+msgstr "108"
+
+#: 04060107.xhp#par_id3144352.114.help.text
+msgid "<item type=\"input\">13,21</item>"
+msgstr "13,21"
+
+#: 04060107.xhp#par_id3144375.115.help.text
+msgctxt "04060107.xhp#par_id3144375.115.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "4"
+
+#: 04060107.xhp#par_id3144398.116.help.text
+msgctxt "04060107.xhp#par_id3144398.116.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr "#NA"
+
+#: 04060107.xhp#par_id3144425.117.help.text
+msgctxt "04060107.xhp#par_id3144425.117.help.text"
+msgid "<emph>6</emph>"
+msgstr "<emph>6</emph>"
+
+#: 04060107.xhp#par_id3144452.118.help.text
+msgctxt "04060107.xhp#par_id3144452.118.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "8"
+
+#: 04060107.xhp#par_id3144475.119.help.text
+msgid "<item type=\"input\">15</item>"
+msgstr "15"
+
+#: 04060107.xhp#par_id3144498.120.help.text
+msgid "<item type=\"input\">111</item>"
+msgstr "111"
+
+#: 04060107.xhp#par_id3158233.121.help.text
+msgid "<item type=\"input\">675,45</item>"
+msgstr "675,45"
+
+#: 04060107.xhp#par_id3158256.122.help.text
+msgid "<item type=\"input\">102,26</item>"
+msgstr "102,26"
+
+#: 04060107.xhp#par_id3158279.123.help.text
+msgctxt "04060107.xhp#par_id3158279.123.help.text"
+msgid "<item type=\"input\">#NA</item>"
+msgstr "#NA"
+
+#: 04060107.xhp#par_id3158306.124.help.text
+msgctxt "04060107.xhp#par_id3158306.124.help.text"
+msgid "<emph>7</emph>"
+msgstr "<emph>7</emph>"
+
+#: 04060107.xhp#par_id3158333.125.help.text
+msgctxt "04060107.xhp#par_id3158333.125.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "9"
+
+#: 04060107.xhp#par_id3158356.126.help.text
+msgctxt "04060107.xhp#par_id3158356.126.help.text"
+msgid "<item type=\"input\">17</item>"
+msgstr "17"
+
+#: 04060107.xhp#par_id3158379.127.help.text
+msgid "<item type=\"input\">120</item>"
+msgstr "120"
+
+#: 04060107.xhp#par_id3144560.128.help.text
+msgctxt "04060107.xhp#par_id3144560.128.help.text"
+msgid "<emph>8</emph>"
+msgstr "<emph>8</emph>"
+
+#: 04060107.xhp#par_id3144586.129.help.text
+msgctxt "04060107.xhp#par_id3144586.129.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "10"
+
+#: 04060107.xhp#par_id3144609.130.help.text
+msgid "<item type=\"input\">19</item>"
+msgstr "19"
+
+#: 04060107.xhp#par_id3144632.131.help.text
+msgid "<item type=\"input\">133</item>"
+msgstr "133"
+
+#: 04060107.xhp#par_id3144687.132.help.text
+msgid "Column A contains several X1 values, column B several X2 values and column C the Y values. You have already entered these values in your spreadsheet. You have now set up E2:G6 in the spreadsheet and activated the <emph>Function Wizard</emph>. For the LINEST function to work, you must have marked the <emph>Array</emph> check box in the <emph>Function Wizard</emph>. Next, select the following values in the spreadsheet (or enter them using the keyboard):"
+msgstr "Column A contains several X1 values, column B several X2 values and column C the Y values. You have already entered these values in your spreadsheet. You have now set up E2:G6 in the spreadsheet and activated the <emph>Function Wizard</emph>. For the LINEST function to work, you must have marked the <emph>Array</emph> check box in the <emph>Function Wizard</emph>. Next, select the following values in the spreadsheet (or enter them using the keyboard):"
+
+#: 04060107.xhp#par_id3158020.133.help.text
+msgid "<emph>data_Y</emph> is C2:C8"
+msgstr "<emph>Data_Y</emph> is C2:C8"
+
+#: 04060107.xhp#par_id3158039.134.help.text
+msgid "<emph>data_X</emph> is A2:B8"
+msgstr "<emph>Data_X</emph> is A2:B8"
+
+#: 04060107.xhp#par_id3158058.135.help.text
+msgid "<emph>linearType</emph> and <emph>stats</emph> are both set to 1."
+msgstr "<emph>Linear_Type</emph> and <emph>Stats</emph> are both set to 1."
+
+#: 04060107.xhp#par_id3158084.136.help.text
+msgid "As soon as you click <emph>OK</emph>, $[officename] Calc will fill the above example with the LINEST values as shown in the example."
+msgstr "As soon as you click <emph>OK</emph>, $[officename] Calc will fill the above example with the LINEST values as shown in the example."
+
+#: 04060107.xhp#par_id3158106.137.help.text
+msgid "The formula in the <emph>Formula</emph> Bar corresponds to each cell of the LINEST array <item type=\"input\">{=LINEST(C2:C8;A2:B8;1;1)}</item>"
+msgstr "The formula in the <emph>Formula</emph> Bar corresponds to each cell of the LINEST array {=LINEST(C2:C8;A2:B8;1;1)}"
+
+#: 04060107.xhp#par_id3158128.138.help.text
+msgid "<emph>This represents the calculated LINEST values:</emph>"
+msgstr "<emph>This represents the calculated LINEST values:</emph>"
+
+#: 04060107.xhp#bm_id3158146.help.text
+msgid "<bookmark_value>slopes, see also regression lines</bookmark_value><bookmark_value>regression lines;LINEST function</bookmark_value>"
+msgstr "<bookmark_value>slopes, see also regression lines</bookmark_value><bookmark_value>regression lines</bookmark_value>"
+
+#: 04060107.xhp#par_id3158146.139.help.text
+msgid "E2 and F2: Slope m of the regression line y=b+m*x for the x1 and x2 values. The values are given in reverse order; that is, the slope for x2 in E2 and the slope for x1 in F2."
+msgstr "E2 and F2: Slope <emph>m</emph> of the regression line y=b+m*x for the x1 and x2 values. The values are given in reverse order; that is, the slope for x2 in E2 and the slope for x1 in F2."
+
+#: 04060107.xhp#par_id3158184.140.help.text
+msgid "G2: Intersection b with the y axis."
+msgstr "G2: Intersection b with the y axis."
+
+#: 04060107.xhp#bm_id3158204.help.text
+msgid "<bookmark_value>standard errors;array functions</bookmark_value>"
+msgstr "<bookmark_value>standard errors</bookmark_value>"
+
+#: 04060107.xhp#par_id3158204.141.help.text
+msgid "E3 and F3: The standard error of the slope value."
+msgstr "E3 and F3: The standard error of the slope value."
+
+#: 04060107.xhp#par_id3145845.142.help.text
+msgid "G3: The standard error of the intercept"
+msgstr "G3: The standard error of the intercept"
+
+#: 04060107.xhp#bm_id3145859.help.text
+msgid "<bookmark_value>RSQ calculations</bookmark_value>"
+msgstr "<bookmark_value>RSQ calculations</bookmark_value>"
+
+#: 04060107.xhp#par_id3145859.143.help.text
+msgid "E4: RSQ"
+msgstr "E4: RSQ"
+
+#: 04060107.xhp#par_id3145880.144.help.text
+msgid "F4: The standard error of the regression calculated for the Y value."
+msgstr "F4: The standard error of the regression calculated for the Y value."
+
+#: 04060107.xhp#par_id3145894.145.help.text
+msgid "E5: The F value from the variance analysis."
+msgstr "E5: The F value from the variance analysis."
+
+#: 04060107.xhp#par_id3145915.146.help.text
+msgid "F5: The degrees of freedom from the variance analysis."
+msgstr "F5: The degrees of freedom from the variance analysis."
+
+#: 04060107.xhp#par_id3145937.147.help.text
+msgid "E6: The sum of the squared deviation of the estimated Y values from their linear mean."
+msgstr "E6: The sum of the squared deviation of the estimated Y values from their linear mean."
+
+#: 04060107.xhp#par_id3145952.148.help.text
+msgid "F6: The sum of the squared deviation of the estimated Y value from the given Y values."
+msgstr "F6: The sum of the squared deviation of the estimated Y value from the given Y values."
+
+#: 04060107.xhp#par_idN11B04.help.text
+msgctxt "04060107.xhp#par_idN11B04.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id1596728.help.text
+msgid "<bookmark_value>LOGEST function</bookmark_value>"
+msgstr "<bookmark_value>LOGEST function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3146009.150.help.text
+msgid "LOGEST"
+msgstr "LOGEST"
+
+#: 04060107.xhp#par_id3146037.151.help.text
+msgid "<ahelp hid=\"HID_FUNC_RKP\">This function calculates the adjustment of the entered data as an exponential regression curve (y=b*m^x).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RKP\">This function calculates the adjustment of the entered data as an exponential regression curve (y=b*m^x).</ahelp>"
+
+#: 04060107.xhp#hd_id3146056.152.help.text
+msgctxt "04060107.xhp#hd_id3146056.152.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3163123.153.help.text
+msgid "LOGEST(DataY; DataX; FunctionType; Stats)"
+msgstr "LOGEST(Data_Y; Data_X; Function_Type; Stats)"
+
+#: 04060107.xhp#par_id3163137.154.help.text
+msgctxt "04060107.xhp#par_id3163137.154.help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr "<emph>Data_Y</emph> represents the Y Data array."
+
+#: 04060107.xhp#par_id3163155.155.help.text
+msgctxt "04060107.xhp#par_id3163155.155.help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr "<emph>Data_X</emph> (optional) represents the X Data array."
+
+#: 04060107.xhp#par_id3163174.156.help.text
+msgid "<emph>FunctionType</emph> (optional). If Function_Type = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
+msgstr "<emph>Function_Type</emph> (optional). If Function_Type = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
+
+#: 04060107.xhp#par_id3163196.157.help.text
+msgid "<emph>Stats</emph> (optional). If Stats=0, only the regression coefficient is calculated."
+msgstr "<emph>Stats</emph> (optional). If Stats=0, only the regression coefficient is calculated."
+
+#: 04060107.xhp#par_idN118F7.help.text
+msgctxt "04060107.xhp#par_idN118F7.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060107.xhp#par_idN11BC3.help.text
+msgctxt "04060107.xhp#par_idN11BC3.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3163216.158.help.text
+msgctxt "04060107.xhp#hd_id3163216.158.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3163230.159.help.text
+msgid "See LINEST. However, no square sum will be returned."
+msgstr "See LINEST. However, no square sum will be returned."
+
+#: 04060107.xhp#bm_id3163286.help.text
+msgid "<bookmark_value>SUMPRODUCT function</bookmark_value><bookmark_value>scalar products</bookmark_value><bookmark_value>dot products</bookmark_value><bookmark_value>inner products</bookmark_value>"
+msgstr "<bookmark_value>SUMPRODUCT function</bookmark_value><bookmark_value>scalar products</bookmark_value><bookmark_value>dot products</bookmark_value><bookmark_value>inner products</bookmark_value>"
+
+#: 04060107.xhp#hd_id3163286.161.help.text
+msgid "SUMPRODUCT"
+msgstr "SUMPRODUCT"
+
+#: 04060107.xhp#par_id3163314.162.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMENPRODUKT\">Multiplies corresponding elements in the given arrays, and returns the sum of those products.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMMENPRODUKT\">Multiplies corresponding elements in the given arrays, and returns the sum of those products.</ahelp>"
+
+#: 04060107.xhp#hd_id3163334.163.help.text
+msgctxt "04060107.xhp#hd_id3163334.163.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3163347.164.help.text
+msgid "SUMPRODUCT(Array1; Array2...Array30)"
+msgstr "SUMPRODUCT(Array 1; Array 2...Array 30)"
+
+#: 04060107.xhp#par_id3163362.165.help.text
+msgid "<emph>Array1, Array2...Array30</emph> represent arrays whose corresponding elements are to be multiplied."
+msgstr "<emph>Array 1, Array 2...Array 30</emph> represent arrays whose corresponding elements are to be multiplied."
+
+#: 04060107.xhp#par_idN11B19.help.text
+msgid "At least one array must be part of the argument list. If only one array is given, all array elements are summed."
+msgstr "At least one array must be part of the argument list. If only one array is given, all array elements are summed."
+
+#: 04060107.xhp#par_idN11B1C.help.text
+msgctxt "04060107.xhp#par_idN11B1C.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_idN11B2F.help.text
+msgctxt "04060107.xhp#par_idN11B2F.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060107.xhp#par_idN11B35.help.text
+msgctxt "04060107.xhp#par_idN11B35.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060107.xhp#par_idN11B3B.help.text
+msgctxt "04060107.xhp#par_idN11B3B.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060107.xhp#par_idN11B41.help.text
+msgctxt "04060107.xhp#par_idN11B41.help.text"
+msgid "D"
+msgstr "D"
+
+#: 04060107.xhp#par_idN11B48.help.text
+msgctxt "04060107.xhp#par_idN11B48.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060107.xhp#par_idN11B4E.help.text
+msgctxt "04060107.xhp#par_idN11B4E.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "2"
+
+#: 04060107.xhp#par_idN11B54.help.text
+msgctxt "04060107.xhp#par_idN11B54.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "3"
+
+#: 04060107.xhp#par_idN11B5A.help.text
+msgctxt "04060107.xhp#par_idN11B5A.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "4"
+
+#: 04060107.xhp#par_idN11B60.help.text
+msgctxt "04060107.xhp#par_idN11B60.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "5"
+
+#: 04060107.xhp#par_idN11B67.help.text
+msgctxt "04060107.xhp#par_idN11B67.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060107.xhp#par_idN11B6D.help.text
+msgctxt "04060107.xhp#par_idN11B6D.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr "6"
+
+#: 04060107.xhp#par_idN11B73.help.text
+msgctxt "04060107.xhp#par_idN11B73.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "7"
+
+#: 04060107.xhp#par_idN11B79.help.text
+msgctxt "04060107.xhp#par_idN11B79.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "8"
+
+#: 04060107.xhp#par_idN11B7F.help.text
+msgctxt "04060107.xhp#par_idN11B7F.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "9"
+
+#: 04060107.xhp#par_idN11B86.help.text
+msgctxt "04060107.xhp#par_idN11B86.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060107.xhp#par_idN11B8C.help.text
+msgctxt "04060107.xhp#par_idN11B8C.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "10"
+
+#: 04060107.xhp#par_idN11B92.help.text
+msgctxt "04060107.xhp#par_idN11B92.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr "11"
+
+#: 04060107.xhp#par_idN11B98.help.text
+msgctxt "04060107.xhp#par_idN11B98.help.text"
+msgid "<item type=\"input\">12</item>"
+msgstr "12"
+
+#: 04060107.xhp#par_idN11B9E.help.text
+msgid "<item type=\"input\">13</item>"
+msgstr "13"
+
+#: 04060107.xhp#par_idN11BA1.help.text
+msgid "<item type=\"input\">=SUMPRODUCT(A1:B3;C1:D3)</item> returns 397."
+msgstr "=SUMPRODUCT(A1:B3;C1:D3) returns 397."
+
+#: 04060107.xhp#par_idN11BA4.help.text
+msgid "Calculation: A1*C1 + B1*D1 + A2*C2 + B2*D2 + A3*C3 + B3*D3"
+msgstr "Calculation: A1*C1 + B1*D1 + A2*C2 + B2*D2 + A3*C3 + B3*D3"
+
+#: 04060107.xhp#par_idN11BA7.help.text
+msgid "You can use SUMPRODUCT to calculate the scalar product of two vectors."
+msgstr "You can use SUMPRODUCT to calculate the scalar product of two vectors."
+
+#: 04060107.xhp#par_idN11BBC.help.text
+msgid "SUMPRODUCT returns a single number, it is not necessary to enter the function as an array function."
+msgstr "SUMPRODUCT returns a single number, it is not necessary to enter the function as an array function."
+
+#: 04060107.xhp#par_idN11C91.help.text
+msgctxt "04060107.xhp#par_idN11C91.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3144842.help.text
+msgid "<bookmark_value>SUMX2MY2 function</bookmark_value>"
+msgstr "<bookmark_value>SUMX2MY2 function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3144842.169.help.text
+msgid "SUMX2MY2"
+msgstr "SUMX2MY2"
+
+#: 04060107.xhp#par_id3144871.170.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMEX2MY2\">Returns the sum of the difference of squares of corresponding values in two arrays.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEX2MY2\">Returns the sum of the difference of squares of corresponding values in two arrays.</ahelp>"
+
+#: 04060107.xhp#hd_id3144889.171.help.text
+msgctxt "04060107.xhp#hd_id3144889.171.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3144903.172.help.text
+msgid "SUMX2MY2(ArrayX; ArrayY)"
+msgstr "SUMX2MY2(array X; array Y)"
+
+#: 04060107.xhp#par_id3144916.173.help.text
+#, fuzzy
+msgctxt "04060107.xhp#par_id3144916.173.help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
+msgstr "<emph>Array X</emph> represents the first array whose elements are to be squared and added."
+
+#: 04060107.xhp#par_id3144936.174.help.text
+msgid "<emph>ArrayY</emph> represents the second array whose elements are to be squared and subtracted."
+msgstr "<emph>Array Y</emph> represents the second array whose elements are to be squared and subtracted."
+
+#: 04060107.xhp#par_idN11D6B.help.text
+msgctxt "04060107.xhp#par_idN11D6B.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3145026.help.text
+msgid "<bookmark_value>SUMX2PY2 function</bookmark_value>"
+msgstr "<bookmark_value>SUMX2PY2 function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3145026.178.help.text
+msgid "SUMX2PY2"
+msgstr "SUMX2PY2"
+
+#: 04060107.xhp#par_id3145055.179.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMEX2PY2\">Returns the sum of the sum of squares of corresponding values in two arrays.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEX2PY2\">Returns the sum of the sum of squares of corresponding values in two arrays.</ahelp>"
+
+#: 04060107.xhp#hd_id3163390.180.help.text
+msgctxt "04060107.xhp#hd_id3163390.180.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3163404.181.help.text
+msgid "SUMX2PY2(ArrayX; ArrayY)"
+msgstr "SUMX2PY2(Array X; Array Y)"
+
+#: 04060107.xhp#par_id3163417.182.help.text
+msgctxt "04060107.xhp#par_id3163417.182.help.text"
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be squared and added."
+msgstr ""
+
+#: 04060107.xhp#par_id3163437.183.help.text
+msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be squared and added."
+msgstr "<emph>Array Y</emph> represents the second array, whose elements are to be added and squared."
+
+#: 04060107.xhp#par_idN11E45.help.text
+msgctxt "04060107.xhp#par_idN11E45.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3163527.help.text
+msgid "<bookmark_value>SUMXMY2 function</bookmark_value>"
+msgstr "<bookmark_value>SUMXMY2 function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3163527.187.help.text
+msgid "SUMXMY2"
+msgstr "SUMXMY2"
+
+#: 04060107.xhp#par_id3163556.188.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMMEXMY2\">Adds the squares of the variance between corresponding values in two arrays.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEXMY2\">Adds the squares of the variance between corresponding values in two arrays.</ahelp>"
+
+#: 04060107.xhp#hd_id3163574.189.help.text
+msgctxt "04060107.xhp#hd_id3163574.189.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3163588.190.help.text
+msgid "SUMXMY2(ArrayX; ArrayY)"
+msgstr "SUMXMY2(Array X; Array Y)"
+
+#: 04060107.xhp#par_id3163601.191.help.text
+msgid "<emph>ArrayX</emph> represents the first array whose elements are to be subtracted and squared."
+msgstr "<emph>Array X</emph> represents the first array whose elements are to be subtracted and squared."
+
+#: 04060107.xhp#par_id3163621.192.help.text
+msgid "<emph>ArrayY</emph> represents the second array, whose elements are to be subtracted and squared."
+msgstr "<emph>Array Y</emph> represents the second array, whose elements are to be subtracted and squared."
+
+#: 04060107.xhp#par_idN11F1F.help.text
+msgctxt "04060107.xhp#par_idN11F1F.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#bm_id3166062.help.text
+msgid "<bookmark_value>TREND function</bookmark_value>"
+msgstr "<bookmark_value>TREND function</bookmark_value>"
+
+#: 04060107.xhp#hd_id3166062.196.help.text
+msgid "TREND"
+msgstr "TREND"
+
+#: 04060107.xhp#par_id3166091.197.help.text
+msgid "<ahelp hid=\"HID_FUNC_TREND\">Returns values along a linear trend.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TREND\">Returns values along a linear trend.</ahelp>"
+
+#: 04060107.xhp#hd_id3166109.198.help.text
+msgctxt "04060107.xhp#hd_id3166109.198.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3166122.199.help.text
+msgid "TREND(DataY; DataX; NewDataX; LinearType)"
+msgstr "TREND(Data_Y; Data_X; New Data_X; Linear_Type)"
+
+#: 04060107.xhp#par_id3166137.200.help.text
+msgctxt "04060107.xhp#par_id3166137.200.help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr "<emph>Data_Y</emph> represents the Y Data array."
+
+#: 04060107.xhp#par_id3166156.201.help.text
+msgctxt "04060107.xhp#par_id3166156.201.help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr "<emph>Data_X</emph> (optional) represents the X Data array."
+
+#: 04060107.xhp#par_id3166176.202.help.text
+msgid "<emph>NewDataX</emph> (optional) represents the array of the X data, which are used for recalculating values."
+msgstr "<emph>New Data_X</emph> (optional) represents the array of the X data, which are used for recalculating values."
+
+#: 04060107.xhp#par_id3166196.203.help.text
+msgid "<emph>LinearType</emph>(Optional). If LinearType = 0, then lines will be calculated through the zero point. Otherwise, offset lines will also be calculated. The default is LinearType <> 0."
+msgstr "<emph>Linear_Type</emph>(Optional). If <emph>Linear_Type</emph> = 0, then lines will be calculated through the zero point. Otherwise, offset lines will also be calculated. The default is <emph>Linear_Type</emph> <> 0."
+
+#: 04060107.xhp#par_idN11D2F.help.text
+msgctxt "04060107.xhp#par_idN11D2F.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060107.xhp#par_idN12019.help.text
+msgctxt "04060107.xhp#par_idN12019.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3166231.204.help.text
+msgctxt "04060107.xhp#hd_id3166231.204.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3166245.205.help.text
+msgid "Select a spreadsheet range in which the trend data will appear. Select the function. Enter the output data or select it with the mouse. Mark the <emph>Array</emph> field. click <emph>OK</emph>. The trend data calculated from the output data is displayed."
+msgstr "Select a spreadsheet range in which the trend data will appear. Select the function. Enter the output data or select it with the mouse. Mark the <emph>Array</emph> field. click <emph>OK</emph>. The trend data calculated from the output data is displayed."
+
+#: 04060107.xhp#bm_id3166317.help.text
+msgid "<bookmark_value>GROWTH function</bookmark_value><bookmark_value>exponential trends in arrays</bookmark_value>"
+msgstr "<bookmark_value>GROWTH function</bookmark_value><bookmark_value>exponential trends in arrays</bookmark_value>"
+
+#: 04060107.xhp#hd_id3166317.207.help.text
+msgid "GROWTH"
+msgstr "GROWTH"
+
+#: 04060107.xhp#par_id3166346.208.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIATION\">Calculates the points of an exponential trend in an array.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIATION\">Calculates the points of an exponential trend in an array.</ahelp>"
+
+#: 04060107.xhp#hd_id3166364.209.help.text
+msgctxt "04060107.xhp#hd_id3166364.209.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060107.xhp#par_id3166377.210.help.text
+msgid "GROWTH(DataY; DataX; NewDataX; FunctionType)"
+msgstr "Growth(Data_Y;Data_X; New_Data_X; Function_type)"
+
+#: 04060107.xhp#par_id3166392.211.help.text
+msgctxt "04060107.xhp#par_id3166392.211.help.text"
+msgid "<emph>DataY</emph> represents the Y Data array."
+msgstr "<emph>Data_Y</emph> represents the Y Data array."
+
+#: 04060107.xhp#par_id3166411.212.help.text
+msgctxt "04060107.xhp#par_id3166411.212.help.text"
+msgid "<emph>DataX</emph> (optional) represents the X Data array."
+msgstr "<emph>Data_X</emph> (optional) represents the X Data array."
+
+#: 04060107.xhp#par_id3173797.213.help.text
+msgid "<emph>NewDataX</emph> (optional) represents the X data array, in which the values are recalculated."
+msgstr "<emph>New_Data_X</emph> (optional) represents the X data array, in which the values are recalculated."
+
+#: 04060107.xhp#par_id3173817.214.help.text
+msgid "<emph>FunctionType</emph>(optional). If FunctionType = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
+msgstr "<emph>Function_Type</emph>(optional). If Function_Type = 0, functions in the form y = m^x will be calculated. Otherwise, y = b*m^x functions will be calculated."
+
+#: 04060107.xhp#par_idN11DFD.help.text
+msgctxt "04060107.xhp#par_idN11DFD.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060107.xhp#par_idN12113.help.text
+msgctxt "04060107.xhp#par_idN12113.help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#moreontop\"/>"
+
+#: 04060107.xhp#hd_id3173839.215.help.text
+msgctxt "04060107.xhp#hd_id3173839.215.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060107.xhp#par_id3173852.216.help.text
+msgid "This function returns an array and is handled in the same way as the other array functions. Select a range where you want the answers to appear and select the function. Select DataY. Enter any other parameters, mark <emph>Array</emph> and click <emph>OK</emph>."
+msgstr "This function returns an array and is handled in the same way as the other array functions. Select a range where you want the answers to appear and select the function. Select Data_Y. Enter any other parameters, mark <emph>Array</emph> and click <emph>OK</emph>."
+
+#: 12080500.xhp#tit.help.text
+msgid "AutoOutline"
+msgstr "Автоматска контура"
+
+#: 12080500.xhp#hd_id3150275.1.help.text
+msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+
+#: 12080500.xhp#par_id3145069.2.help.text
+msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutoOutline\" visibility=\"visible\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
+
+#: 12080500.xhp#par_id3148798.10.help.text
+msgid "For example, consider the following table:"
+msgstr "For example, consider the following table:"
+
+#: 12080500.xhp#par_id3154123.11.help.text
+msgid "January"
+msgstr "јануари"
+
+#: 12080500.xhp#par_id3154011.12.help.text
+msgid "February"
+msgstr "февруари"
+
+#: 12080500.xhp#par_id3152460.13.help.text
+msgid "March"
+msgstr "март"
+
+#: 12080500.xhp#par_id3146119.14.help.text
+msgid "1st Quarter"
+msgstr "1st Quarter"
+
+#: 12080500.xhp#par_id3155854.15.help.text
+msgid "April"
+msgstr "април"
+
+#: 12080500.xhp#par_id3148575.16.help.text
+msgid "May"
+msgstr "мај"
+
+#: 12080500.xhp#par_id3145271.17.help.text
+msgid "June"
+msgstr "јуни"
+
+#: 12080500.xhp#par_id3145648.18.help.text
+msgid "2nd Quarter"
+msgstr "2nd Quarter"
+
+#: 12080500.xhp#par_id3153876.19.help.text
+msgctxt "12080500.xhp#par_id3153876.19.help.text"
+msgid "100"
+msgstr "100"
+
+#: 12080500.xhp#par_id3145251.20.help.text
+msgid "120"
+msgstr "120"
+
+#: 12080500.xhp#par_id3149400.21.help.text
+msgid "130"
+msgstr "130"
+
+#: 12080500.xhp#par_id3150328.22.help.text
+msgid "350"
+msgstr "350"
+
+#: 12080500.xhp#par_id3155443.23.help.text
+msgctxt "12080500.xhp#par_id3155443.23.help.text"
+msgid "100"
+msgstr "100"
+
+#: 12080500.xhp#par_id3153713.24.help.text
+msgctxt "12080500.xhp#par_id3153713.24.help.text"
+msgid "100"
+msgstr "100"
+
+#: 12080500.xhp#par_id3156385.25.help.text
+msgid "200"
+msgstr "200"
+
+#: 12080500.xhp#par_id3145230.26.help.text
+msgid "400"
+msgstr "400"
+
+#: 12080500.xhp#par_id3147363.27.help.text
+msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
+msgstr "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
+
+#: 12080500.xhp#par_id3146918.9.help.text
+msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
+msgstr "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Outline - Remove\">Data - Outline - Remove</link>."
+
+#: 06070000.xhp#tit.help.text
+msgid "AutoCalculate"
+msgstr "Автоматско пресметување"
+
+#: 06070000.xhp#bm_id3145673.help.text
+msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+msgstr "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+
+#: 06070000.xhp#hd_id3145673.1.help.text
+msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+
+#: 06070000.xhp#par_id3148798.2.help.text
+msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
+msgstr "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
+
+#: 06070000.xhp#par_id3145173.3.help.text
+msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
+msgstr "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed. If the<emph> AutoCalculate</emph> function is activated, the <emph>Recalculate</emph> function F9 is not available."
+
+#: 12050100.xhp#tit.help.text
+msgid "1st, 2nd, 3rd Group"
+msgstr "1st, 2nd, 3rd Group"
+
+#: 12050100.xhp#hd_id3149784.1.help.text
+msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
+msgstr "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
+
+#: 12050100.xhp#par_id3145068.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
+
+#: 12050100.xhp#par_id3148797.3.help.text
+msgid "To insert subtotal values into a table:"
+msgstr "To insert subtotal values into a table:"
+
+#: 12050100.xhp#par_id3154908.13.help.text
+msgid "Ensure that the columns of the table have labels."
+msgstr "Ensure that the columns of the table have labels."
+
+#: 12050100.xhp#par_id3153968.4.help.text
+msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
+msgstr "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
+
+#: 12050100.xhp#par_id3161831.5.help.text
+msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
+msgstr "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
+
+#: 12050100.xhp#par_id3153188.6.help.text
+msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
+msgstr "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
+
+#: 12050100.xhp#par_id3152460.14.help.text
+msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
+msgstr "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
+
+#: 12050100.xhp#par_id3154321.15.help.text
+msgctxt "12050100.xhp#par_id3154321.15.help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Click <emph>OK</emph>."
+
+#: 12050100.xhp#hd_id3156441.7.help.text
+msgctxt "12050100.xhp#hd_id3156441.7.help.text"
+msgid "Group by"
+msgstr "Групирај според"
+
+#: 12050100.xhp#par_id3154013.8.help.text
+msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
+
+#: 12050100.xhp#hd_id3154943.9.help.text
+msgid "Calculate subtotals for"
+msgstr "Пресметај суми за"
+
+#: 12050100.xhp#par_id3147125.10.help.text
+msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
+
+#: 12050100.xhp#hd_id3156283.11.help.text
+msgid "Use function"
+msgstr "Користи функција"
+
+#: 12050100.xhp#par_id3145647.12.help.text
+msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
+
+#: 12080700.xhp#tit.help.text
+#, fuzzy
+msgid "Show Details (Pivot Table)"
+msgstr "Покажи детали"
+
+#: 12080700.xhp#hd_id3344523.help.text
+#, fuzzy
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
+msgstr "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
+
+#: 12080700.xhp#par_id871303.help.text
+msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
+msgstr ""
+
+#: 12080700.xhp#par_id7132480.help.text
+msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
+msgstr ""
+
+#: 04050000.xhp#tit.help.text
+msgctxt "04050000.xhp#tit.help.text"
+msgid "Insert Sheet"
+msgstr "Вметни лист"
+
+#: 04050000.xhp#bm_id4522232.help.text
+#, fuzzy
+msgid "<bookmark_value>sheets;creating</bookmark_value>"
+msgstr "<bookmark_value>RSQ calculations</bookmark_value>"
+
+#: 04050000.xhp#hd_id3155629.1.help.text
+msgctxt "04050000.xhp#hd_id3155629.1.help.text"
+msgid "Insert Sheet"
+msgstr "Вметни лист"
+
+#: 04050000.xhp#par_id3147264.2.help.text
+#, fuzzy
+msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
+msgstr "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
+
+#: 04050000.xhp#hd_id3154684.19.help.text
+msgid "Position"
+msgstr "Позиција"
+
+#: 04050000.xhp#par_id3156281.20.help.text
+msgid "Specifies where the new sheet is to be inserted into your document."
+msgstr "Specifies where the new sheet is to be inserted into your document."
+
+#: 04050000.xhp#hd_id3154123.21.help.text
+msgid "Before current sheet"
+msgstr "Пред тековниот лист"
+
+#: 04050000.xhp#par_id3145787.22.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Inserts a new sheet directly before the current sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Inserts a new sheet directly before the current sheet.</ahelp>"
+
+#: 04050000.xhp#hd_id3155414.23.help.text
+msgid "After current sheet"
+msgstr "По тековниот лист"
+
+#: 04050000.xhp#par_id3145271.24.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Inserts a new sheet directly after the current sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Inserts a new sheet directly after the current sheet.</ahelp>"
+
+#: 04050000.xhp#hd_id3147428.25.help.text
+msgctxt "04050000.xhp#hd_id3147428.25.help.text"
+msgid "Sheet"
+msgstr "Креирај"
+
+#: 04050000.xhp#par_id3154012.26.help.text
+msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
+msgstr "Specifies whether a new sheet or an existing sheet is inserted into the document."
+
+#: 04050000.xhp#hd_id3147350.3.help.text
+msgid "New sheet"
+msgstr "Креирај"
+
+#: 04050000.xhp#par_id3149262.4.help.text
+msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
+msgstr "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field.</ahelp>"
+
+#: 04050000.xhp#hd_id3155418.27.help.text
+#, fuzzy
+msgid "No. of sheets"
+msgstr "No. of Sheets"
+
+#: 04050000.xhp#par_id3148457.28.help.text
+msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Specifies the number of sheets to be created.</ahelp>"
+msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Specifies the number of sheets to be created.</ahelp>"
+
+#: 04050000.xhp#hd_id3149379.7.help.text
+msgctxt "04050000.xhp#hd_id3149379.7.help.text"
+msgid "Name"
+msgstr "Име"
+
+#: 04050000.xhp#par_id3150718.8.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Specifies the name of the new sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Specifies the name of the new sheet. It may contain both letters and numbers.</ahelp>"
+
+#: 04050000.xhp#hd_id3155066.9.help.text
+msgid "From File"
+msgstr "Од датотека"
+
+#: 04050000.xhp#par_id3153714.10.help.text
+msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Inserts a sheet from an existing file into the current document.</ahelp>"
+msgstr "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Inserts a sheet from an existing file into the current document.</ahelp>"
+
+#: 04050000.xhp#hd_id3149020.15.help.text
+msgctxt "04050000.xhp#hd_id3149020.15.help.text"
+msgid "Browse"
+msgstr "Прелистај"
+
+#: 04050000.xhp#par_id3159267.16.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Opens a dialog for selecting a file.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Opens a dialog for selecting a file.</ahelp>"
+
+#: 04050000.xhp#hd_id3149255.29.help.text
+msgid "Available Sheets"
+msgstr "Available Sheets"
+
+#: 04050000.xhp#par_id3155336.30.help.text
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
+
+#: 04050000.xhp#hd_id3145791.17.help.text
+msgid "Link"
+msgstr "Врска"
+
+#: 04050000.xhp#par_id3152580.18.help.text
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
+msgstr "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
+
+#: 12060000.xhp#tit.help.text
+msgctxt "12060000.xhp#tit.help.text"
+msgid "Multiple Operations"
+msgstr "Повеќекратни операции"
+
+#: 12060000.xhp#hd_id3153381.1.help.text
+msgctxt "12060000.xhp#hd_id3153381.1.help.text"
+msgid "Multiple Operations"
+msgstr "Повеќекратни операции"
+
+#: 12060000.xhp#par_id3154140.2.help.text
+msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
+msgstr "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\" visibility=\"visible\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
+
+#: 12060000.xhp#par_id3152598.5.help.text
+msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
+msgstr "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
+
+#: 12060000.xhp#par_id3154011.16.help.text
+msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
+msgstr "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
+
+#: 12060000.xhp#hd_id3156441.3.help.text
+msgid "Defaults"
+msgstr "Defaults"
+
+#: 12060000.xhp#hd_id3154492.6.help.text
+msgctxt "12060000.xhp#hd_id3154492.6.help.text"
+msgid "Formulas"
+msgstr "Формули"
+
+#: 12060000.xhp#par_id3151073.7.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\" visibility=\"visible\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
+
+#: 12060000.xhp#hd_id3154729.8.help.text
+msgctxt "12060000.xhp#hd_id3154729.8.help.text"
+msgid "Row"
+msgstr "Ред"
+
+#: 12060000.xhp#par_id3148456.9.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\" visibility=\"visible\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
+
+#: 12060000.xhp#hd_id3150718.14.help.text
+msgctxt "12060000.xhp#hd_id3150718.14.help.text"
+msgid "Column"
+msgstr "Колона"
+
+#: 12060000.xhp#par_id3150327.15.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\" visibility=\"visible\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
+
+#: 04060115.xhp#tit.help.text
+msgctxt "04060115.xhp#tit.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Add-in Functions, List of Analysis Functions Part One"
+
+#: 04060115.xhp#bm_id3152871.help.text
+msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
+msgstr "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
+
+#: 04060115.xhp#hd_id3152871.1.help.text
+msgctxt "04060115.xhp#hd_id3152871.1.help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Add-in Functions, List of Analysis Functions Part One"
+
+#: 04060115.xhp#par_id3149873.102.help.text
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
+
+#: 04060115.xhp#par_id3145324.5.help.text
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
+
+#: 04060115.xhp#par_id3155751.156.help.text
+msgctxt "04060115.xhp#par_id3155751.156.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>"
+
+#: 04060115.xhp#bm_id3153074.help.text
+msgid "<bookmark_value>Bessel functions</bookmark_value>"
+msgstr "<bookmark_value>Bessel functions</bookmark_value>"
+
+#: 04060115.xhp#hd_id3153334.111.help.text
+msgid "BESSELI"
+msgstr "BESSELI"
+
+#: 04060115.xhp#par_id3153960.112.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
+
+#: 04060115.xhp#hd_id3150392.113.help.text
+msgctxt "04060115.xhp#hd_id3150392.113.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3147295.114.help.text
+msgid "BESSELI(X; N)"
+msgstr "BESSELI(x;n)"
+
+#: 04060115.xhp#par_id3151338.115.help.text
+msgctxt "04060115.xhp#par_id3151338.115.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "x: the value on which the function will be calculated."
+
+#: 04060115.xhp#par_id3151392.116.help.text
+msgctxt "04060115.xhp#par_id3151392.116.help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "n: the order of the Bessel function"
+
+#: 04060115.xhp#hd_id3153027.103.help.text
+msgid "BESSELJ"
+msgstr "BESSELJ"
+
+#: 04060115.xhp#par_id3153015.104.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
+
+#: 04060115.xhp#hd_id3146884.105.help.text
+msgctxt "04060115.xhp#hd_id3146884.105.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3150032.106.help.text
+msgid "BESSELJ(X; N)"
+msgstr "BESSELJ(x;n)"
+
+#: 04060115.xhp#par_id3150378.107.help.text
+msgctxt "04060115.xhp#par_id3150378.107.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "x: the value on which the function will be calculated."
+
+#: 04060115.xhp#par_id3145638.108.help.text
+msgctxt "04060115.xhp#par_id3145638.108.help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "n: the order of the Bessel function"
+
+#: 04060115.xhp#hd_id3149946.117.help.text
+msgid "BESSELK"
+msgstr "BESSELK"
+
+#: 04060115.xhp#par_id3159122.118.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
+
+#: 04060115.xhp#hd_id3150650.119.help.text
+msgctxt "04060115.xhp#hd_id3150650.119.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3149354.120.help.text
+msgid "BESSELK(X; N)"
+msgstr "BESSELK(x;n)"
+
+#: 04060115.xhp#par_id3150481.121.help.text
+msgctxt "04060115.xhp#par_id3150481.121.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "x: the value on which the function will be calculated."
+
+#: 04060115.xhp#par_id3150024.122.help.text
+msgctxt "04060115.xhp#par_id3150024.122.help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "n: the order of the Bessel function"
+
+#: 04060115.xhp#hd_id3145828.123.help.text
+msgid "BESSELY"
+msgstr "BESSELY"
+
+#: 04060115.xhp#par_id3146877.124.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
+
+#: 04060115.xhp#hd_id3146941.125.help.text
+msgctxt "04060115.xhp#hd_id3146941.125.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3148884.126.help.text
+msgid "BESSELY(X; N)"
+msgstr "BESSELY(x;n)"
+
+#: 04060115.xhp#par_id3147475.127.help.text
+msgctxt "04060115.xhp#par_id3147475.127.help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "x: the value on which the function will be calculated."
+
+#: 04060115.xhp#par_id3147421.128.help.text
+msgctxt "04060115.xhp#par_id3147421.128.help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "n: the order of the Bessel function"
+
+#: 04060115.xhp#bm_id3153034.help.text
+msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3153034.17.help.text
+msgid "BIN2DEC"
+msgstr "BIN2DEC"
+
+#: 04060115.xhp#par_id3144744.18.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
+
+#: 04060115.xhp#hd_id3145593.19.help.text
+msgctxt "04060115.xhp#hd_id3145593.19.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3149726.20.help.text
+msgid "BIN2DEC(Number)"
+msgstr "BIN2DEC (Number)"
+
+#: 04060115.xhp#par_id3150142.21.help.text
+msgctxt "04060115.xhp#par_id3150142.21.help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "Number: the binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+
+#: 04060115.xhp#hd_id3149250.22.help.text
+msgctxt "04060115.xhp#hd_id3149250.22.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3145138.23.help.text
+msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
+msgstr "=BIN2DEC(1100100) returns 100."
+
+#: 04060115.xhp#bm_id3149954.help.text
+msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3149954.24.help.text
+msgid "BIN2HEX"
+msgstr "BIN2HEX"
+
+#: 04060115.xhp#par_id3148585.25.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
+
+#: 04060115.xhp#hd_id3153936.26.help.text
+msgctxt "04060115.xhp#hd_id3153936.26.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3148753.27.help.text
+msgid "BIN2HEX(Number; Places)"
+msgstr "BIN2HEX(Number;Places)"
+
+#: 04060115.xhp#par_id3155255.28.help.text
+msgctxt "04060115.xhp#par_id3155255.28.help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "Number: the binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+
+#: 04060115.xhp#par_id3150860.29.help.text
+msgid "Places means the number of places to be output."
+msgstr "Places: the number of places to be output."
+
+#: 04060115.xhp#hd_id3155829.30.help.text
+msgctxt "04060115.xhp#hd_id3155829.30.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3149686.31.help.text
+msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
+msgstr "=BIN2HEX(1100100;6) returns 000064."
+
+#: 04060115.xhp#bm_id3153332.help.text
+msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3153332.9.help.text
+msgid "BIN2OCT"
+msgstr "BIN2OCT"
+
+#: 04060115.xhp#par_id3155951.10.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
+
+#: 04060115.xhp#hd_id3153001.11.help.text
+msgctxt "04060115.xhp#hd_id3153001.11.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3154508.12.help.text
+msgid "BIN2OCT(Number; Places)"
+msgstr "BIN2OCT(Number;Places)"
+
+#: 04060115.xhp#par_id3153567.13.help.text
+msgctxt "04060115.xhp#par_id3153567.13.help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr "Number: the binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+
+#: 04060115.xhp#par_id3155929.14.help.text
+msgctxt "04060115.xhp#par_id3155929.14.help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "Places: the number of places to be output."
+
+#: 04060115.xhp#hd_id3150128.15.help.text
+msgctxt "04060115.xhp#hd_id3150128.15.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3153733.16.help.text
+msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
+msgstr "=BIN2OCT(1100100;4) returns 0144."
+
+#: 04060115.xhp#bm_id3150014.help.text
+msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3150014.129.help.text
+msgid "DELTA"
+msgstr "DELTA"
+
+#: 04060115.xhp#par_id3148760.130.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
+
+#: 04060115.xhp#hd_id3155435.131.help.text
+msgctxt "04060115.xhp#hd_id3155435.131.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3145247.132.help.text
+msgid "DELTA(Number1; Number2)"
+msgstr "DELTA(Number 1;Number 2)"
+
+#: 04060115.xhp#hd_id3149002.133.help.text
+msgctxt "04060115.xhp#hd_id3149002.133.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3151020.134.help.text
+msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
+msgstr "=DELTA(1;2) returns 0."
+
+#: 04060115.xhp#bm_id3157971.help.text
+msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3157971.55.help.text
+msgid "DEC2BIN"
+msgstr "DEC2BIN"
+
+#: 04060115.xhp#par_id3153043.56.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
+
+#: 04060115.xhp#hd_id3145349.57.help.text
+msgctxt "04060115.xhp#hd_id3145349.57.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3150569.58.help.text
+msgid "DEC2BIN(Number; Places)"
+msgstr "DEC2BIN(Number;Places)"
+
+#: 04060115.xhp#par_id3148768.59.help.text
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
+msgstr "Number: the decimal number. If <emph>Number</emph> is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
+
+#: 04060115.xhp#par_id3149537.60.help.text
+msgctxt "04060115.xhp#par_id3149537.60.help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "Places: the number of places to be output."
+
+#: 04060115.xhp#hd_id3150265.61.help.text
+msgctxt "04060115.xhp#hd_id3150265.61.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3150662.62.help.text
+msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
+msgstr "=DEC2BIN(100;8) returns 01100100."
+
+#: 04060115.xhp#bm_id3149388.help.text
+msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3149388.71.help.text
+msgid "DEC2HEX"
+msgstr "DEC2HEX"
+
+#: 04060115.xhp#par_id3149030.72.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
+
+#: 04060115.xhp#hd_id3150691.73.help.text
+msgctxt "04060115.xhp#hd_id3150691.73.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3147535.74.help.text
+msgid "DEC2HEX(Number; Places)"
+msgstr "DEC2HEX(Number;Places)"
+
+#: 04060115.xhp#par_id3152820.75.help.text
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
+msgstr "Number: the decimal number. If <emph>Number</emph> is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
+
+#: 04060115.xhp#par_id3153221.76.help.text
+msgctxt "04060115.xhp#par_id3153221.76.help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "Places: the number of places to be output."
+
+#: 04060115.xhp#hd_id3154869.77.help.text
+msgctxt "04060115.xhp#hd_id3154869.77.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3150476.78.help.text
+msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
+msgstr "=DEC2HEX(100;4) returns 0064."
+
+#: 04060115.xhp#bm_id3154948.help.text
+msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3154948.63.help.text
+msgid "DEC2OCT"
+msgstr "DEC2OCT"
+
+#: 04060115.xhp#par_id3153920.64.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
+
+#: 04060115.xhp#hd_id3153178.65.help.text
+msgctxt "04060115.xhp#hd_id3153178.65.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3148427.66.help.text
+msgid "DEC2OCT(Number; Places)"
+msgstr "DEC2OCT(Number; Places)"
+
+#: 04060115.xhp#par_id3155991.67.help.text
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
+msgstr "Number: the decimal number. If <emph>Number</emph> is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
+
+#: 04060115.xhp#par_id3152587.68.help.text
+msgctxt "04060115.xhp#par_id3152587.68.help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "Places: the number of places to be output."
+
+#: 04060115.xhp#hd_id3147482.69.help.text
+msgctxt "04060115.xhp#hd_id3147482.69.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3154317.70.help.text
+msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
+msgstr "=DEC2OCT(100;4) returns 0144."
+
+#: 04060115.xhp#bm_id3083446.help.text
+msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
+
+#: 04060115.xhp#hd_id3083446.135.help.text
+msgid "ERF"
+msgstr "ERF"
+
+#: 04060115.xhp#par_id3150381.136.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
+
+#: 04060115.xhp#hd_id3152475.137.help.text
+msgctxt "04060115.xhp#hd_id3152475.137.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3163824.138.help.text
+msgid "ERF(LowerLimit; UpperLimit)"
+msgstr "ERF(Lower limit;Upper limit)"
+
+#: 04060115.xhp#par_id3149715.139.help.text
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgstr "Lower limit; lower limit of integral."
+
+#: 04060115.xhp#par_id3156294.140.help.text
+msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
+msgstr "Upper limit: optionally, the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
+
+#: 04060115.xhp#hd_id3154819.141.help.text
+msgctxt "04060115.xhp#hd_id3154819.141.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3152974.142.help.text
+msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
+msgstr "=ERF(0;1) returns 0.842701."
+
+#: 04060115.xhp#bm_id3145082.help.text
+msgid "<bookmark_value>ERFC function</bookmark_value>"
+msgstr "<bookmark_value>ERFC function</bookmark_value>"
+
+#: 04060115.xhp#hd_id3145082.143.help.text
+msgid "ERFC"
+msgstr "ERFC"
+
+#: 04060115.xhp#par_id3149453.144.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
+
+#: 04060115.xhp#hd_id3155839.145.help.text
+msgctxt "04060115.xhp#hd_id3155839.145.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3153220.146.help.text
+msgid "ERFC(LowerLimit)"
+msgstr "ERFC(Lower limit)"
+
+#: 04060115.xhp#par_id3147620.147.help.text
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
+msgstr "Lower limit; lower limit of integral"
+
+#: 04060115.xhp#hd_id3146861.148.help.text
+msgctxt "04060115.xhp#hd_id3146861.148.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3156102.149.help.text
+msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
+msgstr "=ERFC(1) returns 0.157299."
+
+#: 04060115.xhp#bm_id3152927.help.text
+msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
+msgstr "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
+
+#: 04060115.xhp#hd_id3152927.150.help.text
+msgid "GESTEP"
+msgstr "GESTEP"
+
+#: 04060115.xhp#par_id3150763.151.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <emph>Number</emph> is greater than or equal to <emph>Step</emph>.</ahelp>"
+
+#: 04060115.xhp#hd_id3150879.152.help.text
+msgctxt "04060115.xhp#hd_id3150879.152.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3145212.153.help.text
+msgid "GESTEP(Number; Step)"
+msgstr "GESTEP(Number; Step)"
+
+#: 04060115.xhp#hd_id3153275.154.help.text
+msgctxt "04060115.xhp#hd_id3153275.154.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3156132.155.help.text
+msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
+msgstr "=GESTEP(5;1) returns 1."
+
+#: 04060115.xhp#bm_id3147276.help.text
+msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+msgstr "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3147276.79.help.text
+msgid "HEX2BIN"
+msgstr "HEX2BIN"
+
+#: 04060115.xhp#par_id3150258.80.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
+
+#: 04060115.xhp#hd_id3156117.81.help.text
+msgctxt "04060115.xhp#hd_id3156117.81.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3155847.82.help.text
+msgid "HEX2BIN(Number; Places)"
+msgstr "HEX2BIN(Number;Places)"
+
+#: 04060115.xhp#par_id3152810.83.help.text
+msgctxt "04060115.xhp#par_id3152810.83.help.text"
+msgid "<emph>Number</emph> is a hexadecimal 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 "Number: the hexadecimal 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."
+
+#: 04060115.xhp#par_id3153758.84.help.text
+msgctxt "04060115.xhp#par_id3153758.84.help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "Places: the number of places to be output."
+
+#: 04060115.xhp#hd_id3154052.85.help.text
+msgctxt "04060115.xhp#hd_id3154052.85.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3156002.86.help.text
+msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
+msgstr "=HEX2BIN(64;8) returns 01100100."
+
+#: 04060115.xhp#bm_id3154742.help.text
+msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+msgstr "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3154742.87.help.text
+msgid "HEX2DEC"
+msgstr "HEX2DEC"
+
+#: 04060115.xhp#par_id3153626.88.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
+
+#: 04060115.xhp#hd_id3143233.89.help.text
+msgctxt "04060115.xhp#hd_id3143233.89.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3149293.90.help.text
+msgid "HEX2DEC(Number)"
+msgstr "HEX2DEC(Number)"
+
+#: 04060115.xhp#par_id3159176.91.help.text
+msgctxt "04060115.xhp#par_id3159176.91.help.text"
+msgid "<emph>Number</emph> is a hexadecimal 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 "Number: the hexadecimal 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."
+
+#: 04060115.xhp#hd_id3154304.92.help.text
+msgctxt "04060115.xhp#hd_id3154304.92.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3146093.93.help.text
+msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
+msgstr "=HEX2DEC(64) returns 100."
+
+#: 04060115.xhp#bm_id3149750.help.text
+msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+msgstr "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+
+#: 04060115.xhp#hd_id3149750.94.help.text
+msgid "HEX2OCT"
+msgstr "HEX2OCT"
+
+#: 04060115.xhp#par_id3153983.95.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
+
+#: 04060115.xhp#hd_id3145660.96.help.text
+msgctxt "04060115.xhp#hd_id3145660.96.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060115.xhp#par_id3151170.97.help.text
+msgid "HEX2OCT(Number; Places)"
+msgstr "HEX2OCT(Number;Places)"
+
+#: 04060115.xhp#par_id3152795.98.help.text
+msgctxt "04060115.xhp#par_id3152795.98.help.text"
+msgid "<emph>Number</emph> is a hexadecimal 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 "Number: the hexadecimal 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."
+
+#: 04060115.xhp#par_id3149204.99.help.text
+msgctxt "04060115.xhp#par_id3149204.99.help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "Places: the number of places to be output."
+
+#: 04060115.xhp#hd_id3153901.100.help.text
+msgctxt "04060115.xhp#hd_id3153901.100.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060115.xhp#par_id3159341.101.help.text
+msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
+msgstr "=HEX2OCT(64;4) returns 0144."
+
+#: 05110000.xhp#tit.help.text
+msgid "AutoFormat"
+msgstr "Автоматско форматирање"
+
+#: 05110000.xhp#hd_id3149666.1.help.text
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
+
+#: 05110000.xhp#par_id3145367.2.help.text
+msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
+msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
+
+#: 05110000.xhp#hd_id3148455.3.help.text
+msgid "Format"
+msgstr "Форматирај"
+
+#: 05110000.xhp#par_id3145799.4.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
+
+#: 05110000.xhp#hd_id3149410.5.help.text
+msgctxt "05110000.xhp#hd_id3149410.5.help.text"
+msgid "Add"
+msgstr "Додај"
+
+#: 05110000.xhp#par_id3154017.6.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
+
+#: 05110000.xhp#par_id3153708.29.help.text
+msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgstr "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
+
+#: 05110000.xhp#hd_id3150044.7.help.text
+msgctxt "05110000.xhp#hd_id3150044.7.help.text"
+msgid "More"
+msgstr "Повеќе"
+
+#: 05110000.xhp#par_id3146920.8.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
+
+#: 05110000.xhp#hd_id3155961.9.help.text
+msgid "Formatting"
+msgstr "Форматирање"
+
+#: 05110000.xhp#par_id3153965.10.help.text
+msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
+msgstr "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
+
+#: 05110000.xhp#hd_id3154021.11.help.text
+msgid "Number format"
+msgstr "Формат на броевите"
+
+#: 05110000.xhp#par_id3159239.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
+
+#: 05110000.xhp#hd_id3149530.13.help.text
+msgid "Borders"
+msgstr "Рамки"
+
+#: 05110000.xhp#par_id3145259.14.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
+
+#: 05110000.xhp#hd_id3154657.15.help.text
+msgid "Font"
+msgstr "Фонт"
+
+#: 05110000.xhp#par_id3152990.16.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
+
+#: 05110000.xhp#hd_id3155379.17.help.text
+msgid "Pattern"
+msgstr "Шема"
+
+#: 05110000.xhp#par_id3150368.18.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
+
+#: 05110000.xhp#hd_id3146115.19.help.text
+msgid "Alignment"
+msgstr "Порамнување"
+
+#: 05110000.xhp#par_id3156445.20.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
+
+#: 05110000.xhp#hd_id3155811.21.help.text
+msgid "AutoFit width and height"
+msgstr "AutoFit width and height"
+
+#: 05110000.xhp#par_id3148703.22.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
+
+#: 05110000.xhp#hd_id3159223.26.help.text
+msgid "Rename"
+msgstr "Преименувај"
+
+#: 05110000.xhp#par_id3153064.27.help.text
+msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
+msgstr "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
+
+#: 05110000.xhp#par_id3153912.28.help.text
+msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
+msgstr "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
+
+#: 05110000.xhp#hd_id3155264.23.help.text
+msgctxt "05110000.xhp#hd_id3155264.23.help.text"
+msgid "More"
+msgstr "Повеќе"
+
+#: 05110000.xhp#par_id3159094.24.help.text
+msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
+msgstr "Closes the <emph>Formatting</emph> options section, if it is currently open."
+
+#: 12120300.xhp#tit.help.text
+msgid "Error Alert"
+msgstr "Предупредување за грешка"
+
+#: 12120300.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+msgstr "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+
+#: 12120300.xhp#par_id3153379.2.help.text
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
+
+#: 12120300.xhp#par_id3154138.25.help.text
+msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
+msgstr "You can also start a macro with an error message. A sample macro is provided at the end of this page."
+
+#: 12120300.xhp#hd_id3156280.3.help.text
+msgid "Show error message when invalid values are entered."
+msgstr "Show error message when invalid values are entered."
+
+#: 12120300.xhp#par_id3150768.4.help.text
+msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_ERROR:TSB_SHOW\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If unchecked, the message is displayed to prevent an invalid entry."
+
+#: 12120300.xhp#par_id3146984.5.help.text
+msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
+msgstr "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
+
+#: 12120300.xhp#hd_id3152460.6.help.text
+msgctxt "12120300.xhp#hd_id3152460.6.help.text"
+msgid "Contents"
+msgstr "Содржина"
+
+#: 12120300.xhp#hd_id3148646.8.help.text
+msgid "Action"
+msgstr "Дејство"
+
+#: 12120300.xhp#par_id3151115.9.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
+msgstr "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
+
+#: 12120300.xhp#hd_id3156441.10.help.text
+msgctxt "12120300.xhp#hd_id3156441.10.help.text"
+msgid "Browse"
+msgstr "Прелистај"
+
+#: 12120300.xhp#par_id3153160.11.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
+
+#: 12120300.xhp#hd_id3153876.12.help.text
+msgctxt "12120300.xhp#hd_id3153876.12.help.text"
+msgid "Title"
+msgstr "Наслов"
+
+#: 12120300.xhp#par_id3149410.13.help.text
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
+
+#: 12120300.xhp#hd_id3154510.14.help.text
+msgid "Error message"
+msgstr "Порака на грешката"
+
+#: 12120300.xhp#par_id3149122.15.help.text
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
+
+#: 12120300.xhp#par_id3150752.16.help.text
+msgid "<emph>Sample macro:</emph>"
+msgstr "<emph>Sample macro:</emph>"
+
+#: func_time.xhp#tit.help.text
+msgid "TIME "
+msgstr "TIME "
+
+#: func_time.xhp#bm_id3154073.help.text
+msgid "<bookmark_value>TIME function</bookmark_value>"
+msgstr "<bookmark_value>TIME function</bookmark_value>"
+
+#: func_time.xhp#hd_id3154073.149.help.text
+msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
+msgstr "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
+
+#: func_time.xhp#par_id3145762.150.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
+msgstr "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
+
+#: func_time.xhp#hd_id3155550.151.help.text
+msgctxt "func_time.xhp#hd_id3155550.151.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_time.xhp#par_id3154584.152.help.text
+msgid "TIME(Hour; Minute; Second)"
+msgstr "TIME(hour; minute; second)"
+
+#: func_time.xhp#par_id3152904.153.help.text
+msgid "Use an integer to set the <emph>Hour</emph>."
+msgstr "Use an integer to set the <emph>hour</emph>."
+
+#: func_time.xhp#par_id3151346.154.help.text
+msgid "Use an integer to set the <emph>Minute</emph>."
+msgstr "Use an integer to set the <emph>minute</emph>."
+
+#: func_time.xhp#par_id3151366.155.help.text
+msgid "Use an integer to set the <emph>Second</emph>."
+msgstr "Use an integer to set the <emph>second</emph>."
+
+#: func_time.xhp#hd_id3145577.156.help.text
+msgctxt "func_time.xhp#hd_id3145577.156.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_time.xhp#par_id3156076.157.help.text
+msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
+msgstr "TIME(0;0;0) returns 00:00:00"
+
+#: func_time.xhp#par_id3156090.158.help.text
+msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
+msgstr "TIME(4;20;4) returns 04:20:04"
+
+#: 04060101.xhp#tit.help.text
+msgctxt "04060101.xhp#tit.help.text"
+msgid "Database Functions"
+msgstr "Database Functions"
+
+#: 04060101.xhp#bm_id3148946.help.text
+msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
+msgstr "<bookmark_value>Function Wizard; databases</bookmark_value><bookmark_value>functions; databases</bookmark_value><bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
+
+#: 04060101.xhp#hd_id3148946.1.help.text
+msgctxt "04060101.xhp#hd_id3148946.1.help.text"
+msgid "Database Functions"
+msgstr "Database Functions"
+
+#: 04060101.xhp#par_id3145173.2.help.text
+msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
+msgstr "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
+
+#: 04060101.xhp#par_id3154016.186.help.text
+msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
+msgstr "The <emph>Database</emph> category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the <emph>Database</emph> category in $[officename] Calc."
+
+#: 04060101.xhp#hd_id3150329.190.help.text
+msgid "Example Data:"
+msgstr "Example Data:"
+
+#: 04060101.xhp#par_id3153713.191.help.text
+msgid "The following data will be used in some of the function description examples:"
+msgstr "The following data will be used in some of the function description examples:"
+
+#: 04060101.xhp#par_id3155766.3.help.text
+msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
+msgstr "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
+
+#: 04060101.xhp#par_id3145232.4.help.text
+msgctxt "04060101.xhp#par_id3145232.4.help.text"
+msgid "A"
+msgstr "A"
+
+#: 04060101.xhp#par_id3146316.5.help.text
+msgctxt "04060101.xhp#par_id3146316.5.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060101.xhp#par_id3150297.6.help.text
+msgctxt "04060101.xhp#par_id3150297.6.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060101.xhp#par_id3150344.7.help.text
+msgctxt "04060101.xhp#par_id3150344.7.help.text"
+msgid "D"
+msgstr "D"
+
+#: 04060101.xhp#par_id3150785.8.help.text
+msgctxt "04060101.xhp#par_id3150785.8.help.text"
+msgid "E"
+msgstr "E"
+
+#: 04060101.xhp#par_id3150090.9.help.text
+msgctxt "04060101.xhp#par_id3150090.9.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060101.xhp#par_id3152992.10.help.text
+msgctxt "04060101.xhp#par_id3152992.10.help.text"
+msgid "<item type=\"input\">Name</item>"
+msgstr "Име"
+
+#: 04060101.xhp#par_id3155532.11.help.text
+msgctxt "04060101.xhp#par_id3155532.11.help.text"
+msgid "<item type=\"input\">Grade</item>"
+msgstr "Grade"
+
+#: 04060101.xhp#par_id3156448.12.help.text
+msgctxt "04060101.xhp#par_id3156448.12.help.text"
+msgid "<item type=\"input\">Age</item>"
+msgstr "Age"
+
+#: 04060101.xhp#par_id3154486.13.help.text
+msgctxt "04060101.xhp#par_id3154486.13.help.text"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "Distance to School"
+
+#: 04060101.xhp#par_id3152899.14.help.text
+msgctxt "04060101.xhp#par_id3152899.14.help.text"
+msgid "<item type=\"input\">Weight</item>"
+msgstr "Тежина"
+
+#: 04060101.xhp#par_id3153816.15.help.text
+msgctxt "04060101.xhp#par_id3153816.15.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060101.xhp#par_id3151240.16.help.text
+msgid "<item type=\"input\">Andy</item>"
+msgstr "Andy"
+
+#: 04060101.xhp#par_id3156016.17.help.text
+msgctxt "04060101.xhp#par_id3156016.17.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "3"
+
+#: 04060101.xhp#par_id3145073.18.help.text
+msgctxt "04060101.xhp#par_id3145073.18.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "9"
+
+#: 04060101.xhp#par_id3154956.19.help.text
+msgid "<item type=\"input\">150</item>"
+msgstr "150"
+
+#: 04060101.xhp#par_id3153976.20.help.text
+msgid "<item type=\"input\">40</item>"
+msgstr "40"
+
+#: 04060101.xhp#par_id3150894.21.help.text
+msgctxt "04060101.xhp#par_id3150894.21.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060101.xhp#par_id3152870.22.help.text
+msgid "<item type=\"input\">Betty</item>"
+msgstr "Betty"
+
+#: 04060101.xhp#par_id3149692.23.help.text
+msgctxt "04060101.xhp#par_id3149692.23.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "4"
+
+#: 04060101.xhp#par_id3154652.24.help.text
+msgctxt "04060101.xhp#par_id3154652.24.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "10"
+
+#: 04060101.xhp#par_id3149381.25.help.text
+msgctxt "04060101.xhp#par_id3149381.25.help.text"
+msgid "<item type=\"input\">1000</item>"
+msgstr "1000"
+
+#: 04060101.xhp#par_id3153812.26.help.text
+msgctxt "04060101.xhp#par_id3153812.26.help.text"
+msgid "<item type=\"input\">42</item>"
+msgstr "42"
+
+#: 04060101.xhp#par_id3146965.27.help.text
+msgctxt "04060101.xhp#par_id3146965.27.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060101.xhp#par_id3155596.28.help.text
+msgid "<item type=\"input\">Charles</item>"
+msgstr "Charles"
+
+#: 04060101.xhp#par_id3147244.29.help.text
+msgctxt "04060101.xhp#par_id3147244.29.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "3"
+
+#: 04060101.xhp#par_id3149871.30.help.text
+msgctxt "04060101.xhp#par_id3149871.30.help.text"
+msgid "<item type=\"input\">10</item>"
+msgstr "10"
+
+#: 04060101.xhp#par_id3155752.31.help.text
+msgid "<item type=\"input\">300</item>"
+msgstr "300"
+
+#: 04060101.xhp#par_id3149052.32.help.text
+msgid "<item type=\"input\">51</item>"
+msgstr "51"
+
+#: 04060101.xhp#par_id3146097.33.help.text
+msgctxt "04060101.xhp#par_id3146097.33.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060101.xhp#par_id3147296.34.help.text
+msgid "<item type=\"input\">Daniel</item>"
+msgstr "Daniel"
+
+#: 04060101.xhp#par_id3150393.35.help.text
+msgctxt "04060101.xhp#par_id3150393.35.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "5"
+
+#: 04060101.xhp#par_id3145236.36.help.text
+msgctxt "04060101.xhp#par_id3145236.36.help.text"
+msgid "<item type=\"input\">11</item>"
+msgstr "11"
+
+#: 04060101.xhp#par_id3150534.37.help.text
+msgctxt "04060101.xhp#par_id3150534.37.help.text"
+msgid "<item type=\"input\">1200</item>"
+msgstr "1200"
+
+#: 04060101.xhp#par_id3150375.38.help.text
+msgid "<item type=\"input\">48</item>"
+msgstr "48"
+
+#: 04060101.xhp#par_id3159121.39.help.text
+msgctxt "04060101.xhp#par_id3159121.39.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060101.xhp#par_id3150456.40.help.text
+msgid "<item type=\"input\">Eva</item>"
+msgstr "Eva"
+
+#: 04060101.xhp#par_id3146886.41.help.text
+msgctxt "04060101.xhp#par_id3146886.41.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "2"
+
+#: 04060101.xhp#par_id3149945.42.help.text
+msgctxt "04060101.xhp#par_id3149945.42.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "8"
+
+#: 04060101.xhp#par_id3157904.43.help.text
+msgid "<item type=\"input\">650</item>"
+msgstr "650"
+
+#: 04060101.xhp#par_id3149352.44.help.text
+msgctxt "04060101.xhp#par_id3149352.44.help.text"
+msgid "<item type=\"input\">33</item>"
+msgstr "33"
+
+#: 04060101.xhp#par_id3150028.45.help.text
+msgctxt "04060101.xhp#par_id3150028.45.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060101.xhp#par_id3145826.46.help.text
+msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
+msgstr "Frank"
+
+#: 04060101.xhp#par_id3150743.47.help.text
+msgctxt "04060101.xhp#par_id3150743.47.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "2"
+
+#: 04060101.xhp#par_id3154844.48.help.text
+msgctxt "04060101.xhp#par_id3154844.48.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "7"
+
+#: 04060101.xhp#par_id3148435.49.help.text
+msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
+msgstr "300"
+
+#: 04060101.xhp#par_id3148882.50.help.text
+msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
+msgstr "42"
+
+#: 04060101.xhp#par_id3150140.51.help.text
+msgctxt "04060101.xhp#par_id3150140.51.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060101.xhp#par_id3146137.52.help.text
+msgid "<item type=\"input\">Greta</item>"
+msgstr "Greta"
+
+#: 04060101.xhp#par_id3148739.53.help.text
+msgctxt "04060101.xhp#par_id3148739.53.help.text"
+msgid "<item type=\"input\">1</item>"
+msgstr "1"
+
+#: 04060101.xhp#par_id3148583.54.help.text
+msgctxt "04060101.xhp#par_id3148583.54.help.text"
+msgid "<item type=\"input\">7</item>"
+msgstr "7"
+
+#: 04060101.xhp#par_id3154556.55.help.text
+msgid "<item type=\"input\">200</item>"
+msgstr "200"
+
+#: 04060101.xhp#par_id3155255.56.help.text
+msgid "<item type=\"input\">36</item>"
+msgstr "36"
+
+#: 04060101.xhp#par_id3145141.57.help.text
+msgctxt "04060101.xhp#par_id3145141.57.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060101.xhp#par_id3153078.58.help.text
+msgid "<item type=\"input\">Harry</item>"
+msgstr "Harry"
+
+#: 04060101.xhp#par_id3149955.59.help.text
+msgctxt "04060101.xhp#par_id3149955.59.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "3"
+
+#: 04060101.xhp#par_id3150005.60.help.text
+msgctxt "04060101.xhp#par_id3150005.60.help.text"
+msgid "<item type=\"input\">9</item>"
+msgstr "9"
+
+#: 04060101.xhp#par_id3155951.61.help.text
+msgctxt "04060101.xhp#par_id3155951.61.help.text"
+msgid "<item type=\"input\">1200</item>"
+msgstr "1200"
+
+#: 04060101.xhp#par_id3145169.62.help.text
+msgid "<item type=\"input\">44</item>"
+msgstr "44"
+
+#: 04060101.xhp#par_id3153571.63.help.text
+msgctxt "04060101.xhp#par_id3153571.63.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060101.xhp#par_id3148761.64.help.text
+msgid "<item type=\"input\">Irene</item>"
+msgstr "Irene"
+
+#: 04060101.xhp#par_id3149877.65.help.text
+msgctxt "04060101.xhp#par_id3149877.65.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "2"
+
+#: 04060101.xhp#par_id3154327.66.help.text
+msgctxt "04060101.xhp#par_id3154327.66.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "8"
+
+#: 04060101.xhp#par_id3155435.67.help.text
+msgctxt "04060101.xhp#par_id3155435.67.help.text"
+msgid "<item type=\"input\">1000</item>"
+msgstr "1000"
+
+#: 04060101.xhp#par_id3145353.68.help.text
+msgctxt "04060101.xhp#par_id3145353.68.help.text"
+msgid "<item type=\"input\">42</item>"
+msgstr "42"
+
+#: 04060101.xhp#par_id3150662.69.help.text
+msgctxt "04060101.xhp#par_id3150662.69.help.text"
+msgid "11"
+msgstr "11"
+
+#: 04060101.xhp#par_id3150568.70.help.text
+msgctxt "04060101.xhp#par_id3150568.70.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060101.xhp#par_id3149393.71.help.text
+msgctxt "04060101.xhp#par_id3149393.71.help.text"
+msgid "13"
+msgstr "13"
+
+#: 04060101.xhp#par_id3153544.72.help.text
+msgctxt "04060101.xhp#par_id3153544.72.help.text"
+msgid "<item type=\"input\">Name</item>"
+msgstr "Име"
+
+#: 04060101.xhp#par_id3158414.73.help.text
+msgctxt "04060101.xhp#par_id3158414.73.help.text"
+msgid "<item type=\"input\">Grade</item>"
+msgstr "Grade"
+
+#: 04060101.xhp#par_id3152820.74.help.text
+msgctxt "04060101.xhp#par_id3152820.74.help.text"
+msgid "<item type=\"input\">Age</item>"
+msgstr "Age"
+
+#: 04060101.xhp#par_id3154866.75.help.text
+msgctxt "04060101.xhp#par_id3154866.75.help.text"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "Distance to School"
+
+#: 04060101.xhp#par_id3150471.76.help.text
+msgctxt "04060101.xhp#par_id3150471.76.help.text"
+msgid "<item type=\"input\">Weight</item>"
+msgstr "Тежина"
+
+#: 04060101.xhp#par_id3153920.77.help.text
+msgctxt "04060101.xhp#par_id3153920.77.help.text"
+msgid "14"
+msgstr "14"
+
+#: 04060101.xhp#par_id3148429.78.help.text
+msgid "<item type=\"input\">>600</item>"
+msgstr ">600"
+
+#: 04060101.xhp#par_id3152588.79.help.text
+msgctxt "04060101.xhp#par_id3152588.79.help.text"
+msgid "15"
+msgstr "15"
+
+#: 04060101.xhp#par_id3083286.80.help.text
+msgctxt "04060101.xhp#par_id3083286.80.help.text"
+msgid "16"
+msgstr "16"
+
+#: 04060101.xhp#par_id3163823.81.help.text
+msgid "<item type=\"input\">DCOUNT</item>"
+msgstr "DCOUNT"
+
+#: 04060101.xhp#par_id3145083.82.help.text
+msgctxt "04060101.xhp#par_id3145083.82.help.text"
+msgid "<item type=\"input\">5</item>"
+msgstr "5"
+
+#: 04060101.xhp#par_id3149282.83.help.text
+msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
+msgstr "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
+
+#: 04060101.xhp#hd_id3150962.192.help.text
+msgid "Database Function Parameters:"
+msgstr "Database Function Parameters:"
+
+#: 04060101.xhp#par_id3155837.84.help.text
+msgid "The following items are the parameter definitions for all database functions:"
+msgstr "The following are the parameter definitions for all database functions:"
+
+#: 04060101.xhp#par_id3149453.85.help.text
+msgid "<emph>Database</emph> is the cell range defining the database."
+msgstr "<emph>Database</emph> is the cell range defining the database."
+
+#: 04060101.xhp#par_id3151272.86.help.text
+msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
+msgstr "<emph>Database field</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
+
+#: 04060101.xhp#par_id3147083.87.help.text
+msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
+msgstr "<emph>Search criteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
+
+#: 04060101.xhp#par_id3151188.188.help.text
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
+msgstr "Choose <link href=\"text/shared/optionen/01060500.xhp\" name=\"Tools - Options - Spreadsheet - Calculate\">Tools - Options - %PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
+
+#: 04060101.xhp#par_id3882869.help.text
+msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
+msgstr ""
+
+#: 04060101.xhp#bm_id3150882.help.text
+msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
+msgstr "<bookmark_value>DCOUNT function</bookmark_value><bookmark_value>counting rows;with numeric values</bookmark_value>"
+
+#: 04060101.xhp#hd_id3150882.88.help.text
+msgid "DCOUNT"
+msgstr "DCOUNT"
+
+#: 04060101.xhp#par_id3156133.89.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
+
+#: 04060101.xhp#hd_id3156099.90.help.text
+msgctxt "04060101.xhp#hd_id3156099.90.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3153218.91.help.text
+msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
+msgstr "DCOUNT(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#par_id3153273.187.help.text
+msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+msgstr "For the Database Field parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+
+#: 04060101.xhp#hd_id3154743.92.help.text
+msgctxt "04060101.xhp#hd_id3154743.92.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3153623.93.help.text
+msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
+msgstr "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula =DCOUNT(A1:E10;0;A13:E14) in B16. The <emph>Function Wizard</emph> helps you to input ranges."
+
+#: 04060101.xhp#par_id3149142.94.help.text
+msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
+msgstr "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>Database field</emph> specifies the column for the search criteria: in this case, the whole database. <emph>Search criteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
+
+#: 04060101.xhp#par_id3145652.95.help.text
+msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
+msgstr "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter \"2\" in cell B14 under Grade, and enter >7 in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
+
+#: 04060101.xhp#bm_id3156123.help.text
+msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+msgstr "<bookmark_value>DCOUNTA function</bookmark_value><bookmark_value>records;counting in Calc databases</bookmark_value><bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+
+#: 04060101.xhp#hd_id3156123.97.help.text
+msgid "DCOUNTA"
+msgstr "DCOUNTA"
+
+#: 04060101.xhp#par_id3156110.98.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
+
+#: 04060101.xhp#hd_id3143228.99.help.text
+msgctxt "04060101.xhp#hd_id3143228.99.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3146893.100.help.text
+msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
+msgstr "DCOUNTA(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3149751.101.help.text
+msgctxt "04060101.xhp#hd_id3149751.101.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3153982.102.help.text
+msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
+msgstr "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read =DCOUNTA(A1:E10;0;A13:E14). Delete the old search criteria and enter >=E under <emph>Name</emph> in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value."
+
+#: 04060101.xhp#bm_id3147256.help.text
+msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>DGET function</bookmark_value><bookmark_value>cell contents;searching in Calc databases</bookmark_value><bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
+
+#: 04060101.xhp#hd_id3147256.104.help.text
+msgid "DGET"
+msgstr "DGET"
+
+#: 04060101.xhp#par_id3152801.105.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
+msgstr "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
+
+#: 04060101.xhp#hd_id3159344.106.help.text
+msgctxt "04060101.xhp#hd_id3159344.106.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3154696.107.help.text
+msgid "DGET(Database; DatabaseField; SearchCriteria)"
+msgstr "DGET(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3153909.108.help.text
+msgctxt "04060101.xhp#hd_id3153909.108.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3155388.109.help.text
+msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
+msgstr "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>Database field</emph>. Enter the following formula:"
+
+#: 04060101.xhp#par_id3153096.110.help.text
+msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
+msgstr "=DGET(A1:E10;\"Grade\";A13:E14)"
+
+#: 04060101.xhp#par_id3150524.111.help.text
+msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
+msgstr "Enter the name Frank in A14, and you see the result 2. Frank is in second grade. Enter \"Age\" instead of \"Grade\" and you will get Frank's age."
+
+#: 04060101.xhp#par_id3148833.112.help.text
+msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
+msgstr "Or enter the value 11 in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
+
+#: 04060101.xhp#par_id3149912.113.help.text
+msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
+msgstr "=DGET(A1:E10;\"Name\";A13:E14)"
+
+#: 04060101.xhp#par_id3148813.114.help.text
+msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
+msgstr "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
+
+#: 04060101.xhp#bm_id3149766.help.text
+msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
+msgstr "<bookmark_value>DMAX function</bookmark_value><bookmark_value>maximum values in Calc databases</bookmark_value><bookmark_value>searching;maximum values in columns</bookmark_value>"
+
+#: 04060101.xhp#hd_id3149766.115.help.text
+msgid "DMAX"
+msgstr "DMAX"
+
+#: 04060101.xhp#par_id3154903.116.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
+
+#: 04060101.xhp#hd_id3150771.117.help.text
+msgctxt "04060101.xhp#hd_id3150771.117.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3159157.118.help.text
+msgid "DMAX(Database; DatabaseField; SearchCriteria)"
+msgstr "DMAX(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3145420.119.help.text
+msgctxt "04060101.xhp#hd_id3145420.119.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3148442.120.help.text
+msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
+
+#: 04060101.xhp#par_id3148804.121.help.text
+msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "=DMAX(A1:E10;\"Weight\";A13:E14)"
+
+#: 04060101.xhp#par_id3150510.122.help.text
+msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
+msgstr "Under 'Grade', enter 1, 2, 3, and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
+
+#: 04060101.xhp#bm_id3159141.help.text
+msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
+msgstr "<bookmark_value>DMIN function</bookmark_value><bookmark_value>minimum values in Calc databases</bookmark_value><bookmark_value>searching;minimum values in columns</bookmark_value>"
+
+#: 04060101.xhp#hd_id3159141.123.help.text
+msgid "DMIN"
+msgstr "DMIN"
+
+#: 04060101.xhp#par_id3154261.124.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
+
+#: 04060101.xhp#hd_id3147238.125.help.text
+msgctxt "04060101.xhp#hd_id3147238.125.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3148479.126.help.text
+msgid "DMIN(Database; DatabaseField; SearchCriteria)"
+msgstr "DMIN(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3151050.127.help.text
+msgctxt "04060101.xhp#hd_id3151050.127.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3148925.128.help.text
+msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
+
+#: 04060101.xhp#par_id3149161.129.help.text
+msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr "=DMIN(A1:E10;\"Distance to School\";A13:E14)"
+
+#: 04060101.xhp#par_id3148917.130.help.text
+msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
+msgstr "In row 14, under Grade, enter 1, 2, 3, and so on, one after the other. The shortest distance to school for each grade appears."
+
+#: 04060101.xhp#bm_id3154274.help.text
+msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>DAVERAGE function</bookmark_value><bookmark_value>averages; in Calc databases</bookmark_value><bookmark_value>calculating;averages in Calc databases</bookmark_value>"
+
+#: 04060101.xhp#hd_id3154274.131.help.text
+msgid "DAVERAGE"
+msgstr "DAVERAGE"
+
+#: 04060101.xhp#par_id3166453.132.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
+
+#: 04060101.xhp#hd_id3146955.133.help.text
+msgctxt "04060101.xhp#hd_id3146955.133.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3150710.134.help.text
+msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
+msgstr "DAVERAGE(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3152943.135.help.text
+msgctxt "04060101.xhp#hd_id3152943.135.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3149104.136.help.text
+msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
+msgstr "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
+
+#: 04060101.xhp#par_id3153688.137.help.text
+msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "=DAVERAGE(A1:E10;\"Weight\";A13:E14)"
+
+#: 04060101.xhp#par_id3155587.138.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
+msgstr "In row 14, under Age, enter 7, 8, 9, and so on, one after the other. The average weight of all children of the same age appears."
+
+#: 04060101.xhp#bm_id3159269.help.text
+msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>DPRODUCT function</bookmark_value><bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+
+#: 04060101.xhp#hd_id3159269.139.help.text
+msgid "DPRODUCT"
+msgstr "DPRODUCT"
+
+#: 04060101.xhp#par_id3152879.140.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
+
+#: 04060101.xhp#hd_id3149966.141.help.text
+msgctxt "04060101.xhp#hd_id3149966.141.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3154854.142.help.text
+msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
+msgstr "DPRODUCT(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3149802.143.help.text
+msgctxt "04060101.xhp#hd_id3149802.143.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3148986.144.help.text
+msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
+msgstr "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
+
+#: 04060101.xhp#bm_id3148462.help.text
+msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
+msgstr "<bookmark_value>DSTDEV function</bookmark_value><bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
+
+#: 04060101.xhp#hd_id3148462.145.help.text
+msgid "DSTDEV"
+msgstr "DSTDEV"
+
+#: 04060101.xhp#par_id3154605.146.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
+msgstr "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
+
+#: 04060101.xhp#hd_id3149427.147.help.text
+msgctxt "04060101.xhp#hd_id3149427.147.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3148661.148.help.text
+msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
+msgstr "DSTDEV(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3153945.149.help.text
+msgctxt "04060101.xhp#hd_id3153945.149.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3149934.150.help.text
+msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
+msgstr "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
+
+#: 04060101.xhp#par_id3150630.151.help.text
+msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "=DSTDEV(A1:E10;\"Weight\";A13:E14)"
+
+#: 04060101.xhp#par_id3153536.152.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
+msgstr "In row 14, under Age, enter 7, 8, 9, and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
+
+#: 04060101.xhp#bm_id3150429.help.text
+msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
+msgstr "<bookmark_value>DSTDEVP function</bookmark_value><bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
+
+#: 04060101.xhp#hd_id3150429.153.help.text
+msgid "DSTDEVP"
+msgstr "DSTDEVP"
+
+#: 04060101.xhp#par_id3145598.154.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
+msgstr "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
+
+#: 04060101.xhp#hd_id3145307.155.help.text
+msgctxt "04060101.xhp#hd_id3145307.155.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3149484.156.help.text
+msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
+msgstr "DSTDEVP(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3153322.157.help.text
+msgctxt "04060101.xhp#hd_id3153322.157.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3155431.158.help.text
+msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgstr "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+
+#: 04060101.xhp#par_id3148411.159.help.text
+msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "=DSTDEVP(A1:E10;\"Weight\";A13:E14)"
+
+#: 04060101.xhp#par_id3143271.160.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
+msgstr "In row 14, under Age, enter 7, 8, 9, and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
+
+#: 04060101.xhp#bm_id3154794.help.text
+msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
+msgstr "<bookmark_value>DSUM function</bookmark_value><bookmark_value>calculating;sums in Calc databases</bookmark_value><bookmark_value>sums;cells in Calc databases</bookmark_value>"
+
+#: 04060101.xhp#hd_id3154794.161.help.text
+msgid "DSUM"
+msgstr "DSUM"
+
+#: 04060101.xhp#par_id3149591.162.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
+
+#: 04060101.xhp#hd_id3146128.163.help.text
+msgctxt "04060101.xhp#hd_id3146128.163.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3150989.164.help.text
+msgid "DSUM(Database; DatabaseField; SearchCriteria)"
+msgstr "DSUM(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3159079.165.help.text
+msgctxt "04060101.xhp#hd_id3159079.165.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3152766.166.help.text
+msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
+msgstr "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
+
+#: 04060101.xhp#par_id3151312.167.help.text
+msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgstr "=DSUM(A1:E10;\"Distance to School\";A13:E14)"
+
+#: 04060101.xhp#par_id3150596.168.help.text
+msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
+msgstr "Enter \"2\" in row 14 under \"Grade\". The sum (1950) of the distances to school of all the children who are in second grade is displayed."
+
+#: 04060101.xhp#bm_id3155614.help.text
+msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
+msgstr "<bookmark_value>DVAR function</bookmark_value><bookmark_value>variances;based on samples</bookmark_value>"
+
+#: 04060101.xhp#hd_id3155614.170.help.text
+msgid "DVAR"
+msgstr "DVAR"
+
+#: 04060101.xhp#par_id3154418.171.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
+msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
+
+#: 04060101.xhp#hd_id3154825.172.help.text
+msgctxt "04060101.xhp#hd_id3154825.172.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3156138.173.help.text
+msgid "DVAR(Database; DatabaseField; SearchCriteria)"
+msgstr "DVAR(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3151257.174.help.text
+msgctxt "04060101.xhp#hd_id3151257.174.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3153701.175.help.text
+msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
+msgstr "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
+
+#: 04060101.xhp#par_id3153676.176.help.text
+msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "=DVAR(A1:E10;\"Weight\";A13:E14)"
+
+#: 04060101.xhp#par_id3153798.177.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
+msgstr "In row 14, under Age, enter 7, 8, 9, and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
+
+#: 04060101.xhp#bm_id3153880.help.text
+msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
+msgstr "<bookmark_value>DVARP function</bookmark_value><bookmark_value>variances;based on populations</bookmark_value>"
+
+#: 04060101.xhp#hd_id3153880.178.help.text
+msgid "DVARP"
+msgstr "DVARP"
+
+#: 04060101.xhp#par_id3155119.179.help.text
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
+msgstr "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
+
+#: 04060101.xhp#hd_id3145774.180.help.text
+msgctxt "04060101.xhp#hd_id3145774.180.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060101.xhp#par_id3153776.181.help.text
+msgid "DVARP(Database; DatabaseField; SearchCriteria)"
+msgstr "DVARP(Database; Database Field; Search Criteria)"
+
+#: 04060101.xhp#hd_id3151110.182.help.text
+msgctxt "04060101.xhp#hd_id3151110.182.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060101.xhp#par_id3147099.183.help.text
+msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgstr "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+
+#: 04060101.xhp#par_id3147322.184.help.text
+msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
+msgstr "=DVARP(A1:E10;\"Weight\";A13:E14)"
+
+#: 04060101.xhp#par_id3146902.185.help.text
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
+msgstr "In row 14, under Age, enter 7, 8, 9, and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
+
+#: 06030900.xhp#tit.help.text
+msgid "Refresh Traces"
+msgstr "Освежи траги"
+
+#: 06030900.xhp#bm_id3152349.help.text
+msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
+msgstr "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
+
+#: 06030900.xhp#hd_id3152349.1.help.text
+msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
+
+#: 06030900.xhp#par_id3148947.2.help.text
+msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
+msgstr "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
+
+#: 06030900.xhp#par_id3148798.3.help.text
+msgid "Detective arrows in the document are updated under the following circumstances:"
+msgstr "Detective arrows in the document are updated under the following circumstances:"
+
+#: 06030900.xhp#par_id3153192.4.help.text
+msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
+msgstr "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
+
+#: 06030900.xhp#par_id3151041.5.help.text
+msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
+msgstr "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
+
+#: func_datedif.xhp#tit.help.text
+msgid "DATEDIF"
+msgstr ""
+
+#: func_datedif.xhp#bm_id3155511.help.text
+#, fuzzy
+msgid "<bookmark_value>DATEDIF function</bookmark_value>"
+msgstr "<bookmark_value>DATE function</bookmark_value>"
+
+#: func_datedif.xhp#hd_id3155511.help.text
+msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
+msgstr ""
+
+#: func_datedif.xhp#par_id3153551.help.text
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
+msgstr ""
+
+#: func_datedif.xhp#hd_id3148590.help.text
+msgctxt "func_datedif.xhp#hd_id3148590.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_datedif.xhp#par_id3150474.help.text
+msgid "DATEDIF(Start date; End date; Interval)"
+msgstr ""
+
+#: func_datedif.xhp#par_id3152815.help.text
+msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
+msgstr ""
+
+#: func_datedif.xhp#par_id3155817.help.text
+msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
+msgstr ""
+
+#: func_datedif.xhp#par_id3153183.help.text
+msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
+msgstr ""
+
+#: func_datedif.xhp#par_id5735953.help.text
+msgid "Value for \"Interval\""
+msgstr ""
+
+#: func_datedif.xhp#par_id8360850.help.text
+msgctxt "func_datedif.xhp#par_id8360850.help.text"
+msgid "Return value"
+msgstr "Повратна вредност"
+
+#: func_datedif.xhp#par_id9648731.help.text
+msgid "\"d\""
+msgstr ""
+
+#: func_datedif.xhp#par_id908841.help.text
+msgid "Number of whole days between Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id8193914.help.text
+msgid "\"m\""
+msgstr ""
+
+#: func_datedif.xhp#par_id9841608.help.text
+msgid "Number of whole months between Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id2701803.help.text
+msgid "\"y\""
+msgstr ""
+
+#: func_datedif.xhp#par_id2136295.help.text
+msgid "Number of whole years between Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id9200109.help.text
+msgid "\"ym\""
+msgstr ""
+
+#: func_datedif.xhp#par_id4186223.help.text
+msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id5766472.help.text
+msgid "\"md\""
+msgstr ""
+
+#: func_datedif.xhp#par_id1491134.help.text
+msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#par_id5866472.help.text
+msgid "\"yd\""
+msgstr ""
+
+#: func_datedif.xhp#par_id1591134.help.text
+msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgstr ""
+
+#: func_datedif.xhp#hd_id3147477.help.text
+msgctxt "func_datedif.xhp#hd_id3147477.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: func_datedif.xhp#par_id3152589.help.text
+msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
+msgstr ""
+
+#: func_datedif.xhp#par_id3252589.help.text
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
+msgstr ""
+
+#: func_datedif.xhp#par_id3352589.help.text
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgstr ""
+
+#: func_datedif.xhp#par_id3452589.help.text
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
+msgstr ""
+
+#: func_datedif.xhp#par_id3752589.help.text
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
+msgstr ""
+
+#: 12120000.xhp#tit.help.text
+msgctxt "12120000.xhp#tit.help.text"
+msgid "Validity"
+msgstr "Оправданост"
+
+#: 12120000.xhp#hd_id3156347.1.help.text
+msgctxt "12120000.xhp#hd_id3156347.1.help.text"
+msgid "Validity"
+msgstr "Оправданост"
+
+#: 12120000.xhp#par_id3153252.2.help.text
+msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
+msgstr "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
+
+#: 12120000.xhp#par_idN105D1.help.text
+msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
+msgstr "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
+
+#: 12090400.xhp#tit.help.text
+msgctxt "12090400.xhp#tit.help.text"
+msgid "Grouping"
+msgstr "Grouping"
+
+#: 12090400.xhp#par_idN1054D.help.text
+msgctxt "12090400.xhp#par_idN1054D.help.text"
+msgid "Grouping"
+msgstr "Grouping"
+
+#: 12090400.xhp#par_idN10551.help.text
+#, fuzzy
+msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
+msgstr "Grouping DataPilot tables displays the <emph>Grouping</emph> dialog for either values or dates."
+
+#: 12090400.xhp#par_idN10568.help.text
+msgctxt "12090400.xhp#par_idN10568.help.text"
+msgid "Start"
+msgstr "Пушти"
+
+#: 12090400.xhp#par_idN1056C.help.text
+msgid "Specifies the start of the grouping."
+msgstr "Specifies the start of the grouping."
+
+#: 12090400.xhp#par_idN1056F.help.text
+msgctxt "12090400.xhp#par_idN1056F.help.text"
+msgid "Automatically"
+msgstr "Автоматски"
+
+#: 12090400.xhp#par_idN10573.help.text
+msgid "Specifies whether to start grouping at the smallest value."
+msgstr "Specifies whether to start grouping at the smallest value."
+
+#: 12090400.xhp#par_idN10576.help.text
+msgctxt "12090400.xhp#par_idN10576.help.text"
+msgid "Manually at"
+msgstr "Manually at"
+
+#: 12090400.xhp#par_idN1057A.help.text
+msgid "Specifies whether to enter the start value for grouping yourself."
+msgstr "Specifies whether to enter the start value for grouping yourself."
+
+#: 12090400.xhp#par_idN1057D.help.text
+msgctxt "12090400.xhp#par_idN1057D.help.text"
+msgid "End"
+msgstr "Крај"
+
+#: 12090400.xhp#par_idN10581.help.text
+msgid "Specifies the end of the grouping."
+msgstr "Specifies the end of the grouping."
+
+#: 12090400.xhp#par_idN10584.help.text
+msgctxt "12090400.xhp#par_idN10584.help.text"
+msgid "Automatically"
+msgstr "Автоматски"
+
+#: 12090400.xhp#par_idN10588.help.text
+msgid "Specifies whether to end grouping at the largest value."
+msgstr "Specifies whether to end grouping at the largest value."
+
+#: 12090400.xhp#par_idN1058B.help.text
+msgctxt "12090400.xhp#par_idN1058B.help.text"
+msgid "Manually at"
+msgstr "Manually at"
+
+#: 12090400.xhp#par_idN1058F.help.text
+msgid "Specifies whether to enter the end value for grouping yourself."
+msgstr "Specifies whether to enter the end value for grouping yourself."
+
+#: 12090400.xhp#par_idN10592.help.text
+msgctxt "12090400.xhp#par_idN10592.help.text"
+msgid "Group by"
+msgstr "Групирај според"
+
+#: 12090400.xhp#par_idN10596.help.text
+msgid "Specifies the value range by which every group's limits are calculated."
+msgstr "Specifies the value range by which every group's limits are calculated."
+
+#: 12090400.xhp#par_idN10599.help.text
+msgid "Number of days"
+msgstr "Number of days"
+
+#: 12090400.xhp#par_idN1059D.help.text
+msgid "In the case of grouping date values, specifies the number of days to group by."
+msgstr "In the case of grouping date values, specifies the number of days to group by."
+
+#: 12090400.xhp#par_idN105A0.help.text
+msgid "Intervals"
+msgstr "Intervals"
+
+#: 12090400.xhp#par_idN105A4.help.text
+msgid "In the case of grouping date values, specifies the intervals to group by."
+msgstr "In the case of grouping date values, specifies the intervals to group by."
+
+#: 12090400.xhp#par_idN105B2.help.text
+msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+
+#: 12090101.xhp#tit.help.text
+msgctxt "12090101.xhp#tit.help.text"
+msgid "Select Data Source"
+msgstr "Избери извор на податоци"
+
+#: 12090101.xhp#hd_id3143268.1.help.text
+msgctxt "12090101.xhp#hd_id3143268.1.help.text"
+msgid "Select Data Source"
+msgstr "Избери извор на податоци"
+
+#: 12090101.xhp#par_id3148552.2.help.text
+msgid "Select the database and the table or query containing the data that you want to use."
+msgstr "Select the database and the table or query containing the data that you want to use."
+
+#: 12090101.xhp#hd_id3154140.3.help.text
+msgctxt "12090101.xhp#hd_id3154140.3.help.text"
+msgid "Selection"
+msgstr "Избор"
+
+#: 12090101.xhp#par_id3125863.4.help.text
+msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
+msgstr "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME. To register a data source, choose <emph>Tools - Options - %PRODUCTNAME Base - Databases</emph>.</ahelp>"
+
+#: 12090101.xhp#hd_id3151041.5.help.text
+msgid "Database"
+msgstr "База на податоци"
+
+#: 12090101.xhp#par_id3156424.6.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
+
+#: 12090101.xhp#hd_id3145364.7.help.text
+msgid "Data source"
+msgstr "Извор на податоци"
+
+#: 12090101.xhp#par_id3149260.8.help.text
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
+
+#: 12090101.xhp#hd_id3147428.9.help.text
+msgctxt "12090101.xhp#hd_id3147428.9.help.text"
+msgid "Type"
+msgstr "Тип"
+
+#: 12090101.xhp#par_id3150010.10.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
+
+#: 12090101.xhp#par_id3147348.11.help.text
+#, fuzzy
+msgctxt "12090101.xhp#par_id3147348.11.help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">DataPilot dialog</link>"
+
+#: 12010100.xhp#tit.help.text
+msgctxt "12010100.xhp#tit.help.text"
+msgid "Options"
+msgstr "Опции"
+
+#: 12010100.xhp#hd_id3154760.1.help.text
+msgctxt "12010100.xhp#hd_id3154760.1.help.text"
+msgid "Options"
+msgstr "Опции"
+
+#: 12010100.xhp#hd_id3153379.3.help.text
+msgctxt "12010100.xhp#hd_id3153379.3.help.text"
+msgid "Contains column labels"
+msgstr "Contains column labels"
+
+#: 12010100.xhp#par_id3148798.4.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
+
+#: 12010100.xhp#hd_id3153970.5.help.text
+msgid "Insert or delete cells"
+msgstr "Insert or delete cells"
+
+#: 12010100.xhp#par_id3154684.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
+
+#: 12010100.xhp#hd_id3153768.7.help.text
+msgid "Keep formatting"
+msgstr "Задржи го форматирањето"
+
+#: 12010100.xhp#par_id3147435.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
+
+#: 12010100.xhp#hd_id3155856.9.help.text
+msgid "Don't save imported data"
+msgstr "Don't save imported data"
+
+#: 12010100.xhp#par_id3153363.10.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
+
+#: 12010100.xhp#hd_id3147428.11.help.text
+msgid "Source:"
+msgstr "Source:"
+
+#: 12010100.xhp#par_id3148576.12.help.text
+msgid "Displays information about the current database source and any existing operators."
+msgstr "Displays information about the current database source and any existing operators."
+
+#: 12010100.xhp#hd_id3146976.13.help.text
+msgctxt "12010100.xhp#hd_id3146976.13.help.text"
+msgid "More <<"
+msgstr "More <<"
+
+#: 12010100.xhp#par_id3149664.14.help.text
+msgctxt "12010100.xhp#par_id3149664.14.help.text"
+msgid "Hides the additional options."
+msgstr "Hides the additional options."
+
+#: 12010000.xhp#tit.help.text
+msgctxt "12010000.xhp#tit.help.text"
+msgid "Define Database Range"
+msgstr "Дефинирај опсег на база на податоци"
+
+#: 12010000.xhp#hd_id3157909.1.help.text
+msgctxt "12010000.xhp#hd_id3157909.1.help.text"
+msgid "Define Database Range"
+msgstr "Дефинирај опсег на база на податоци"
+
+#: 12010000.xhp#par_id3155922.2.help.text
+msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
+msgstr "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
+
+#: 12010000.xhp#par_id3149456.5.help.text
+msgid "You can only select a rectangular cell range."
+msgstr "You can only select a rectangular cell range."
+
+#: 12010000.xhp#hd_id3156422.3.help.text
+msgctxt "12010000.xhp#hd_id3156422.3.help.text"
+msgid "Name"
+msgstr "Име"
+
+#: 12010000.xhp#par_id3150770.4.help.text
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
+msgstr "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
+
+#: 12010000.xhp#hd_id3147228.6.help.text
+msgctxt "12010000.xhp#hd_id3147228.6.help.text"
+msgid "Range"
+msgstr "Опсег"
+
+#: 12010000.xhp#par_id3150441.7.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
+
+#: 12010000.xhp#hd_id3153188.10.help.text
+msgctxt "12010000.xhp#hd_id3153188.10.help.text"
+msgid "Add/Modify"
+msgstr "Add/Modify"
+
+#: 12010000.xhp#par_id3153726.11.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
+
+#: 12010000.xhp#hd_id3150010.12.help.text
+msgctxt "12010000.xhp#hd_id3150010.12.help.text"
+msgid "More >>"
+msgstr "More >>"
+
+#: 12010000.xhp#par_id3153144.13.help.text
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
+
+#: func_weekday.xhp#tit.help.text
+msgid "WEEKDAY "
+msgstr "WEEKDAY "
+
+#: func_weekday.xhp#bm_id3154925.help.text
+msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
+msgstr "<bookmark_value>WEEKDAY function</bookmark_value>"
+
+#: func_weekday.xhp#hd_id3154925.136.help.text
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgstr "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+
+#: func_weekday.xhp#par_id3154228.137.help.text
+msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
+msgstr "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type = 1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
+
+#: func_weekday.xhp#hd_id3147217.138.help.text
+msgctxt "func_weekday.xhp#hd_id3147217.138.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_weekday.xhp#par_id3149033.139.help.text
+msgid "WEEKDAY(Number; Type)"
+msgstr "WEEKDAY(Number; Type)"
+
+#: func_weekday.xhp#par_id3149046.140.help.text
+msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
+msgstr "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
+
+#: func_weekday.xhp#par_id3154394.141.help.text
+msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
+msgstr "<emph>Type</emph> determines the type of calculation. For Type =1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type =2, the weekdays are counted starting from Monday =1. For Type = 3, the weekdays are counted starting from Monday = 0."
+
+#: func_weekday.xhp#par_id3156188.142.help.text
+msgid "These values apply only to the standard date format that you select under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>."
+msgstr "These values apply only to the standard date format that you select under <emph>Tools - Options - %PRODUCTNAME Calc - Calculate</emph>."
+
+#: func_weekday.xhp#hd_id3153836.143.help.text
+msgctxt "func_weekday.xhp#hd_id3153836.143.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_weekday.xhp#par_id3150317.144.help.text
+msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
+msgstr "WEEKDAY(\"6/14/2000\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
+
+#: func_weekday.xhp#par_id3153174.145.help.text
+msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
+msgstr "WEEKDAY(\"7/24/1996\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
+
+#: func_weekday.xhp#par_id3153525.146.help.text
+msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
+msgstr "WEEKDAY(\"7/24/1996\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
+
+#: func_weekday.xhp#par_id3150575.147.help.text
+msgid "=WEEKDAY(NOW()) returns the number of the current day."
+msgstr "WEEKDAY(NOW()) returns the number of the current day."
+
+#: func_weekday.xhp#par_id3150588.171.help.text
+msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
+msgstr "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
+
+#: 12050000.xhp#tit.help.text
+msgctxt "12050000.xhp#tit.help.text"
+msgid "Subtotals"
+msgstr "Подзбирови"
+
+#: 12050000.xhp#hd_id3153822.1.help.text
+msgctxt "12050000.xhp#hd_id3153822.1.help.text"
+msgid "Subtotals"
+msgstr "Подзбирови"
+
+#: 12050000.xhp#par_id3145119.2.help.text
+msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
+msgstr "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
+
+#: 12050000.xhp#par_id3153896.3.help.text
+msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
+msgstr "For example, you can generate a sales summary for a certain postal code based on data from a client database."
+
+#: 12050000.xhp#hd_id3163708.4.help.text
+msgctxt "12050000.xhp#hd_id3163708.4.help.text"
+msgid "Delete"
+msgstr "Избриши"
+
+#: 12050000.xhp#par_id3154125.5.help.text
+msgid "Deletes the subtotal rows in the selected area."
+msgstr "Deletes the subtotal rows in the selected area."
+
+#: 04010200.xhp#tit.help.text
+msgctxt "04010200.xhp#tit.help.text"
+msgid "Column Break"
+msgstr "Прелом на колона"
+
+#: 04010200.xhp#bm_id3155923.help.text
+msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
+
+#: 04010200.xhp#hd_id3155923.1.help.text
+msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
+
+#: 04010200.xhp#par_id3150447.2.help.text
+msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
+
+#: 04010200.xhp#par_id3145171.3.help.text
+msgid "The manual column break is indicated by a dark blue vertical line."
+msgstr "The manual column break is indicated by a dark blue vertical line."
+
+#: 05080100.xhp#tit.help.text
+msgid "Define"
+msgstr "Дефинирај"
+
+#: 05080100.xhp#hd_id3145673.1.help.text
+msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+
+#: 05080100.xhp#par_id3153896.2.help.text
+msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
+msgstr "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
+
+#: func_today.xhp#tit.help.text
+msgid "TODAY"
+msgstr "TODAY"
+
+#: func_today.xhp#bm_id3145659.help.text
+msgid "<bookmark_value>TODAY function</bookmark_value>"
+msgstr "<bookmark_value>TODAY function</bookmark_value>"
+
+#: func_today.xhp#hd_id3145659.29.help.text
+msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+msgstr "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+
+#: func_today.xhp#par_id3153759.30.help.text
+msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
+msgstr "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
+
+#: func_today.xhp#hd_id3154051.31.help.text
+msgctxt "func_today.xhp#hd_id3154051.31.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_today.xhp#par_id3153154.32.help.text
+msgid "TODAY()"
+msgstr "TODAY()"
+
+#: func_today.xhp#par_id3154741.33.help.text
+msgid " TODAY is a function without arguments."
+msgstr "<emph>Today</emph> is a function without arguments."
+
+#: func_today.xhp#hd_id3153627.34.help.text
+msgctxt "func_today.xhp#hd_id3153627.34.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: func_today.xhp#par_id3156106.35.help.text
+msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
+msgstr "TODAY() returns the current computer system date."
+
+#: 04060181.xhp#tit.help.text
+msgid "Statistical Functions Part One"
+msgstr "Statistical Functions Part One"
+
+#: 04060181.xhp#hd_id3146320.1.help.text
+msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
+msgstr "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
+
+#: 04060181.xhp#bm_id3145632.help.text
+msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
+msgstr "<bookmark_value>INTERCEPT function</bookmark_value><bookmark_value>points of intersection</bookmark_value><bookmark_value>intersections</bookmark_value>"
+
+#: 04060181.xhp#hd_id3145632.2.help.text
+msgid "INTERCEPT"
+msgstr "INTERCEPT"
+
+#: 04060181.xhp#par_id3146887.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
+
+#: 04060181.xhp#hd_id3150374.4.help.text
+msgctxt "04060181.xhp#hd_id3150374.4.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3149718.5.help.text
+msgid "INTERCEPT(DataY; DataX)"
+msgstr "INTERCEPT(data_Y; data_X)"
+
+#: 04060181.xhp#par_id3149947.6.help.text
+msgid " <emph>DataY</emph> is the dependent set of observations or data."
+msgstr "<emph>Data_Y</emph> is the dependent set of observations or data."
+
+#: 04060181.xhp#par_id3147412.7.help.text
+msgid " <emph>DataX</emph> is the independent set of observations or data."
+msgstr "<emph>Data_X</emph> is the independent set of observations or data."
+
+#: 04060181.xhp#par_id3152983.8.help.text
+msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
+msgstr "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
+
+#: 04060181.xhp#hd_id3157906.9.help.text
+msgctxt "04060181.xhp#hd_id3157906.9.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3148728.10.help.text
+msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
+msgstr "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
+
+#: 04060181.xhp#par_id3149013.11.help.text
+msgid " <item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgstr "INTERCEPT(D3:D9;C3:C9) = 2.15."
+
+#: 04060181.xhp#bm_id3148437.help.text
+msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
+msgstr "<bookmark_value>COUNT function</bookmark_value><bookmark_value>numbers;counting</bookmark_value>"
+
+#: 04060181.xhp#hd_id3148437.13.help.text
+msgctxt "04060181.xhp#hd_id3148437.13.help.text"
+msgid "COUNT"
+msgstr "COUNT"
+
+#: 04060181.xhp#par_id3150700.14.help.text
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
+
+#: 04060181.xhp#hd_id3153930.15.help.text
+msgctxt "04060181.xhp#hd_id3153930.15.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3148585.16.help.text
+msgid "COUNT(Value1; Value2; ... Value30)"
+msgstr "COUNT(value1; value2; ... value30)"
+
+#: 04060181.xhp#par_id3155827.17.help.text
+msgid " <emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
+msgstr "<emph>Value1; value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
+
+#: 04060181.xhp#hd_id3149254.18.help.text
+msgctxt "04060181.xhp#hd_id3149254.18.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3149953.19.help.text
+msgctxt "04060181.xhp#par_id3149953.19.help.text"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr "The entries <emph>2, 4, 6</emph> and <emph>eight</emph> in the <emph>value 1 - 4</emph> fields are to be counted."
+
+#: 04060181.xhp#par_id3154558.20.help.text
+msgid " <item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
+msgstr "COUNT(2;4;6;\"eight\") = 3. The count of numbers is therefore <emph>3</emph>."
+
+#: 04060181.xhp#bm_id3149729.help.text
+msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
+msgstr "<bookmark_value>COUNTA function</bookmark_value><bookmark_value>number of entries</bookmark_value>"
+
+#: 04060181.xhp#hd_id3149729.22.help.text
+msgctxt "04060181.xhp#hd_id3149729.22.help.text"
+msgid "COUNTA"
+msgstr "COUNTA"
+
+#: 04060181.xhp#par_id3150142.23.help.text
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
+msgstr "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
+
+#: 04060181.xhp#hd_id3148573.24.help.text
+msgctxt "04060181.xhp#hd_id3148573.24.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3153111.25.help.text
+msgid "COUNTA(Value1; Value2; ... Value30)"
+msgstr "COUNTA(value1; value2; ... value30)"
+
+#: 04060181.xhp#par_id3150001.26.help.text
+msgid " <emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
+msgstr "<emph>value1; value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
+
+#: 04060181.xhp#hd_id3150334.27.help.text
+msgctxt "04060181.xhp#hd_id3150334.27.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3154508.28.help.text
+msgctxt "04060181.xhp#par_id3154508.28.help.text"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr "The entries <emph>2, 4, 6</emph> and <emph>eight</emph> in the <emph>value 1 - 4</emph> fields are to be counted."
+
+#: 04060181.xhp#par_id3158000.29.help.text
+msgid " <item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
+msgstr "COUNTA(2;4;6;\"eight\") = 4. The count of values is therefore <emph>4</emph>."
+
+#: 04060181.xhp#bm_id3150267.help.text
+msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+msgstr "<bookmark_value>B function</bookmark_value><bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+
+#: 04060181.xhp#hd_id3150267.31.help.text
+msgctxt "04060181.xhp#hd_id3150267.31.help.text"
+msgid "B"
+msgstr "B"
+
+#: 04060181.xhp#par_id3156061.32.help.text
+msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
+
+#: 04060181.xhp#hd_id3150659.33.help.text
+msgctxt "04060181.xhp#hd_id3150659.33.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3148392.34.help.text
+msgid "B(Trials; SP; T1; T2)"
+msgstr "B(trials;SP;T_1;T_2)"
+
+#: 04060181.xhp#par_id3149002.35.help.text
+msgctxt "04060181.xhp#par_id3149002.35.help.text"
+msgid " <emph>Trials</emph> is the number of independent trials."
+msgstr "<emph>Trials</emph> is the number of independent trials."
+
+#: 04060181.xhp#par_id3148875.36.help.text
+msgctxt "04060181.xhp#par_id3148875.36.help.text"
+msgid " <emph>SP</emph> is the probability of success on each trial."
+msgstr "<emph>SP</emph> is the probability of success on each trial."
+
+#: 04060181.xhp#par_id3145352.37.help.text
+msgid " <emph>T1</emph> defines the lower limit for the number of trials."
+msgstr "<emph>T_1</emph> defines the lower limit for the number of trials."
+
+#: 04060181.xhp#par_id3149538.38.help.text
+msgid " <emph>T2</emph> (optional) defines the upper limit for the number of trials."
+msgstr "<emph>T_2</emph> (optional) defines the upper limit for the number of trials."
+
+#: 04060181.xhp#hd_id3148768.39.help.text
+msgctxt "04060181.xhp#hd_id3148768.39.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3154633.40.help.text
+msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
+msgstr "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
+
+#: 04060181.xhp#par_id3149393.41.help.text
+msgid " <item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
+msgstr "=B(10; 1/6; 2) returns a probability of 29%."
+
+#: 04060181.xhp#bm_id3158416.help.text
+msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
+msgstr "<bookmark_value>RSQ function</bookmark_value><bookmark_value>determination coefficients</bookmark_value><bookmark_value>regression analysis</bookmark_value>"
+
+#: 04060181.xhp#hd_id3158416.43.help.text
+msgid "RSQ"
+msgstr "RSQ"
+
+#: 04060181.xhp#par_id3154949.44.help.text
+msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
+msgstr "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
+
+#: 04060181.xhp#hd_id3152820.45.help.text
+msgctxt "04060181.xhp#hd_id3152820.45.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3155822.46.help.text
+msgid "RSQ(DataY; DataX)"
+msgstr "RSQ(Data_Y; Data_X)"
+
+#: 04060181.xhp#par_id3150470.47.help.text
+msgid " <emph>DataY</emph> is an array or range of data points."
+msgstr "<emph>Data_Y</emph> is an array or range of data points."
+
+#: 04060181.xhp#par_id3153181.48.help.text
+msgid " <emph>DataX</emph> is an array or range of data points."
+msgstr "<emph>Data_X</emph> is an array or range of data points."
+
+#: 04060181.xhp#hd_id3156258.49.help.text
+msgctxt "04060181.xhp#hd_id3156258.49.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3155991.50.help.text
+msgid " <item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
+msgstr "=RSQ(A1:A20; B1:B20) calculates the correlation coefficient for both data sets in columns A and B."
+
+#: 04060181.xhp#bm_id3145620.help.text
+msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+msgstr "<bookmark_value>BETAINV function</bookmark_value><bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+
+#: 04060181.xhp#hd_id3145620.52.help.text
+msgid "BETAINV"
+msgstr "BETAINV"
+
+#: 04060181.xhp#par_id3149825.53.help.text
+msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
+
+#: 04060181.xhp#hd_id3152479.54.help.text
+msgctxt "04060181.xhp#hd_id3152479.54.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3156300.55.help.text
+msgid "BETAINV(Number; Alpha; Beta; Start; End)"
+msgstr "BETAINV(Number;Alpha;Beta;Start;End)"
+
+#: 04060181.xhp#par_id3149266.56.help.text
+msgctxt "04060181.xhp#par_id3149266.56.help.text"
+msgid " <emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+
+#: 04060181.xhp#par_id3149710.57.help.text
+msgctxt "04060181.xhp#par_id3149710.57.help.text"
+msgid " <emph>Alpha</emph> is a parameter to the distribution."
+msgstr "<emph>Alpha</emph> is a parameter to the distribution."
+
+#: 04060181.xhp#par_id3156306.58.help.text
+msgctxt "04060181.xhp#par_id3156306.58.help.text"
+msgid " <emph>Beta</emph> is a parameter to the distribution."
+msgstr "<emph>Beta</emph> is a parameter to the distribution."
+
+#: 04060181.xhp#par_id3150960.59.help.text
+msgctxt "04060181.xhp#par_id3150960.59.help.text"
+msgid " <emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr "<emph>Start</emph> (optional) is the lower bound for <emph>number</emph>."
+
+#: 04060181.xhp#par_id3151268.60.help.text
+msgctxt "04060181.xhp#par_id3151268.60.help.text"
+msgid " <emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr "<emph>End</emph> (optional) is the upper bound for <emph>number</emph>."
+
+#: 04060181.xhp#par_idN109DF.help.text
+msgctxt "04060181.xhp#par_idN109DF.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060181.xhp#hd_id3147077.61.help.text
+msgctxt "04060181.xhp#hd_id3147077.61.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3146859.62.help.text
+msgid " <item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
+msgstr "=BETAINV(0.5; 5; 10) returns the value 0.33."
+
+#: 04060181.xhp#bm_id3156096.help.text
+msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+msgstr "<bookmark_value>BETADIST function</bookmark_value><bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+
+#: 04060181.xhp#hd_id3156096.64.help.text
+msgid "BETADIST"
+msgstr "BETADIST"
+
+#: 04060181.xhp#par_id3150880.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the cumulative beta probability density function.</ahelp>"
+
+#: 04060181.xhp#hd_id3150762.66.help.text
+msgctxt "04060181.xhp#hd_id3150762.66.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3147571.67.help.text
+msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
+msgstr "BETADIST(Number;Alpha;Beta;Start;End)"
+
+#: 04060181.xhp#par_id3156317.68.help.text
+msgctxt "04060181.xhp#par_id3156317.68.help.text"
+msgid " <emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgstr "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+
+#: 04060181.xhp#par_id3156107.69.help.text
+msgctxt "04060181.xhp#par_id3156107.69.help.text"
+msgid " <emph>Alpha</emph> is a parameter to the distribution."
+msgstr "<emph>Alpha</emph> is a parameter to the distribution."
+
+#: 04060181.xhp#par_id3153619.70.help.text
+msgctxt "04060181.xhp#par_id3153619.70.help.text"
+msgid " <emph>Beta</emph> is a parameter to the distribution."
+msgstr "<emph>Beta</emph> is a parameter to the distribution."
+
+#: 04060181.xhp#par_id3150254.71.help.text
+msgctxt "04060181.xhp#par_id3150254.71.help.text"
+msgid " <emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr "<emph>Start</emph> (optional) is the lower bound for <emph>number</emph>."
+
+#: 04060181.xhp#par_id3149138.72.help.text
+msgctxt "04060181.xhp#par_id3149138.72.help.text"
+msgid " <emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr "<emph>End</emph> (optional) is the upper bound for <emph>number</emph>."
+
+#: 04060181.xhp#par_id012020091254453.help.text
+msgid " <emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
+msgstr ""
+
+#: 04060181.xhp#par_idN10AB3.help.text
+msgctxt "04060181.xhp#par_idN10AB3.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060181.xhp#hd_id3145649.73.help.text
+msgctxt "04060181.xhp#hd_id3145649.73.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3156118.74.help.text
+msgid " <item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
+msgstr "=BETADIST(0.75; 3; 4) returns the value 0.96"
+
+#: 04060181.xhp#bm_id3143228.help.text
+msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
+msgstr "<bookmark_value>BINOMDIST function</bookmark_value>"
+
+#: 04060181.xhp#hd_id3143228.76.help.text
+msgid "BINOMDIST"
+msgstr "BINOMDIST"
+
+#: 04060181.xhp#par_id3146897.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
+
+#: 04060181.xhp#hd_id3149289.78.help.text
+msgctxt "04060181.xhp#hd_id3149289.78.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3156009.79.help.text
+msgid "BINOMDIST(X; Trials; SP; C)"
+msgstr "BINOMDIST(X;trials;SP;C)"
+
+#: 04060181.xhp#par_id3154304.80.help.text
+msgid " <emph>X</emph> is the number of successes in a set of trials."
+msgstr "<emph>X</emph> is the number of successes in a set of trials."
+
+#: 04060181.xhp#par_id3147492.81.help.text
+msgctxt "04060181.xhp#par_id3147492.81.help.text"
+msgid " <emph>Trials</emph> is the number of independent trials."
+msgstr "<emph>Trials</emph> is the number of independent trials."
+
+#: 04060181.xhp#par_id3146085.82.help.text
+msgctxt "04060181.xhp#par_id3146085.82.help.text"
+msgid " <emph>SP</emph> is the probability of success on each trial."
+msgstr "<emph>SP</emph> is the probability of success on each trial."
+
+#: 04060181.xhp#par_id3149760.83.help.text
+msgid " <emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
+msgstr "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
+
+#: 04060181.xhp#hd_id3151171.84.help.text
+msgctxt "04060181.xhp#hd_id3151171.84.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3145666.85.help.text
+msgid " <item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
+msgstr "=BINOMDIST(A1; 12; 0.5; 0) shows (if the values 0 to 12 are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
+
+#: 04060181.xhp#par_id3150120.86.help.text
+msgid " <item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
+msgstr "=BINOMDIST(A1; 12; 0.5; 1) shows the cumulative probabilities for the same series. For example, if A1 = 4, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
+
+#: 04060181.xhp#bm_id0119200902432928.help.text
+#, fuzzy
+msgid "<bookmark_value>CHISQINV function</bookmark_value>"
+msgstr "<bookmark_value>CHIINV function</bookmark_value>"
+
+#: 04060181.xhp#hd_id0119200902421451.help.text
+#, fuzzy
+msgid "CHISQINV"
+msgstr "CHIINV"
+
+#: 04060181.xhp#par_id0119200902421449.help.text
+msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
+msgstr ""
+
+#: 04060181.xhp#hd_id0119200902475241.help.text
+msgctxt "04060181.xhp#hd_id0119200902475241.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id0119200902475286.help.text
+#, fuzzy
+msgid " <emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
+msgstr "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+
+#: 04060181.xhp#par_id0119200902475282.help.text
+#, fuzzy
+msgctxt "04060181.xhp#par_id0119200902475282.help.text"
+msgid " <emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr "<emph>Degrees_freedom</emph> is the degrees of freedom of the experiment."
+
+#: 04060181.xhp#bm_id3148835.help.text
+msgid "<bookmark_value>CHIINV function</bookmark_value>"
+msgstr "<bookmark_value>CHIINV function</bookmark_value>"
+
+#: 04060181.xhp#hd_id3148835.88.help.text
+msgid "CHIINV"
+msgstr "CHIINV"
+
+#: 04060181.xhp#par_id3149906.89.help.text
+msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
+
+#: 04060181.xhp#hd_id3159157.90.help.text
+msgctxt "04060181.xhp#hd_id3159157.90.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3150504.91.help.text
+msgid "CHIINV(Number; DegreesFreedom)"
+msgstr "CHIINV(number; degrees_freedom)"
+
+#: 04060181.xhp#par_id3154898.92.help.text
+msgid " <emph>Number</emph> is the value of the error probability."
+msgstr "<emph>Number</emph> is the value of the error probability."
+
+#: 04060181.xhp#par_id3154294.93.help.text
+msgid " <emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
+msgstr "<emph>Degrees_freedom</emph> is the degrees of freedom of the experiment."
+
+#: 04060181.xhp#hd_id3154208.94.help.text
+msgctxt "04060181.xhp#hd_id3154208.94.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3150777.130.help.text
+msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
+msgstr "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
+
+#: 04060181.xhp#par_id3153062.131.help.text
+msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
+msgstr "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
+
+#: 04060181.xhp#par_id3148806.132.help.text
+msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
+msgstr "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
+
+#: 04060181.xhp#par_id3149763.95.help.text
+msgid " <item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
+msgstr "=CHIINV(0.05; 5) returns 11.07."
+
+#: 04060181.xhp#par_id3159142.133.help.text
+msgid " <item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
+msgstr "=CHIINV(0.02; 5) returns 13.39."
+
+#: 04060181.xhp#par_id3158401.134.help.text
+msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
+msgstr "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
+
+#: 04060181.xhp#bm_id3154260.help.text
+msgid "<bookmark_value>CHITEST function</bookmark_value>"
+msgstr "<bookmark_value>CHITEST function</bookmark_value>"
+
+#: 04060181.xhp#hd_id3154260.97.help.text
+msgid "CHITEST"
+msgstr "CHITEST"
+
+#: 04060181.xhp#par_id3151052.98.help.text
+msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
+msgstr "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
+
+#: 04060181.xhp#par_id3148925.135.help.text
+msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+msgstr "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+
+#: 04060181.xhp#hd_id3154280.99.help.text
+msgctxt "04060181.xhp#hd_id3154280.99.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3149162.100.help.text
+msgid "CHITEST(DataB; DataE)"
+msgstr "CHITEST(Data_B; Data_E)"
+
+#: 04060181.xhp#par_id3158421.101.help.text
+msgid " <emph>DataB</emph> is the array of the observations."
+msgstr "<emph>Data_B</emph> is the array of the observations."
+
+#: 04060181.xhp#par_id3166453.102.help.text
+msgid " <emph>DataE</emph> is the range of the expected values."
+msgstr "<emph>Data_E</emph> is the range of the expected values."
+
+#: 04060181.xhp#hd_id3146946.103.help.text
+msgctxt "04060181.xhp#hd_id3146946.103.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3154096.136.help.text
+msgid "Data_B (observed)"
+msgstr "Data_B (observed)"
+
+#: 04060181.xhp#par_id3152948.137.help.text
+msgid "Data_E (expected)"
+msgstr "Data_E (expected)"
+
+#: 04060181.xhp#par_id3152876.138.help.text
+msgctxt "04060181.xhp#par_id3152876.138.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060181.xhp#par_id3159279.139.help.text
+msgid " <item type=\"input\">195</item> "
+msgstr "195"
+
+#: 04060181.xhp#par_id3149105.140.help.text
+msgctxt "04060181.xhp#par_id3149105.140.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr "170"
+
+#: 04060181.xhp#par_id3149922.141.help.text
+msgctxt "04060181.xhp#par_id3149922.141.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060181.xhp#par_id3148621.142.help.text
+msgid " <item type=\"input\">151</item> "
+msgstr "151"
+
+#: 04060181.xhp#par_id3148987.143.help.text
+msgctxt "04060181.xhp#par_id3148987.143.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr "170"
+
+#: 04060181.xhp#par_id3149417.144.help.text
+msgctxt "04060181.xhp#par_id3149417.144.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060181.xhp#par_id3148661.145.help.text
+msgid " <item type=\"input\">148</item> "
+msgstr "148"
+
+#: 04060181.xhp#par_id3151128.146.help.text
+msgctxt "04060181.xhp#par_id3151128.146.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr "170"
+
+#: 04060181.xhp#par_id3148467.147.help.text
+msgctxt "04060181.xhp#par_id3148467.147.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060181.xhp#par_id3149237.148.help.text
+msgid " <item type=\"input\">189</item> "
+msgstr "189"
+
+#: 04060181.xhp#par_id3145304.149.help.text
+msgctxt "04060181.xhp#par_id3145304.149.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr "170"
+
+#: 04060181.xhp#par_id3149927.150.help.text
+msgctxt "04060181.xhp#par_id3149927.150.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060181.xhp#par_id3150630.151.help.text
+msgid " <item type=\"input\">183</item> "
+msgstr "183"
+
+#: 04060181.xhp#par_id3150423.152.help.text
+msgctxt "04060181.xhp#par_id3150423.152.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr "170"
+
+#: 04060181.xhp#par_id3143275.153.help.text
+msgctxt "04060181.xhp#par_id3143275.153.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060181.xhp#par_id3144750.154.help.text
+msgid " <item type=\"input\">154</item> "
+msgstr "154"
+
+#: 04060181.xhp#par_id3153947.155.help.text
+msgctxt "04060181.xhp#par_id3153947.155.help.text"
+msgid " <item type=\"input\">170</item> "
+msgstr "170"
+
+#: 04060181.xhp#par_id3149481.104.help.text
+msgid " <item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
+msgstr "=CHITEST(A1:A6; B1:B6) equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
+
+#: 04060181.xhp#bm_id3148690.help.text
+msgid "<bookmark_value>CHIDIST function</bookmark_value>"
+msgstr "<bookmark_value>CHIDIST function</bookmark_value>"
+
+#: 04060181.xhp#hd_id3148690.106.help.text
+msgid "CHIDIST"
+msgstr "CHIDIST"
+
+#: 04060181.xhp#par_id3156338.156.help.text
+msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
+msgstr "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
+
+#: 04060181.xhp#par_id3151316.157.help.text
+msgid "The probability determined by CHIDIST can also be determined by CHITEST."
+msgstr "The probability determined by CHIDIST can also be determined by CHITEST."
+
+#: 04060181.xhp#hd_id3155123.108.help.text
+msgctxt "04060181.xhp#hd_id3155123.108.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3158439.109.help.text
+msgid "CHIDIST(Number; DegreesFreedom)"
+msgstr "CHIDIST (Number; degrees_freedom)"
+
+#: 04060181.xhp#par_id3148675.110.help.text
+msgid " <emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+msgstr "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+
+#: 04060181.xhp#par_id3155615.111.help.text
+msgid " <emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr "<emph>Degrees_freedom</emph> are the degrees of freedom of the experiment."
+
+#: 04060181.xhp#hd_id3146787.112.help.text
+msgctxt "04060181.xhp#hd_id3146787.112.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3145774.113.help.text
+msgid " <item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
+msgstr "=CHIDIST(13.27; 5) equals 0.02."
+
+#: 04060181.xhp#par_id3156141.158.help.text
+msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
+msgstr "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
+
+#: 04060181.xhp#bm_id0119200902231887.help.text
+#, fuzzy
+msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
+msgstr "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
+
+#: 04060181.xhp#hd_id0119200901583452.help.text
+#, fuzzy
+msgid "CHISQDIST"
+msgstr "CHIDIST"
+
+#: 04060181.xhp#par_id0119200901583471.help.text
+msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
+msgstr ""
+
+#: 04060181.xhp#hd_id0119200902395520.help.text
+msgctxt "04060181.xhp#hd_id0119200902395520.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id0119200902395679.help.text
+msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
+msgstr ""
+
+#: 04060181.xhp#par_id011920090239564.help.text
+#, fuzzy
+msgid " <emph>Number</emph> is the number for which the function is to be calculated."
+msgstr "<emph>Number</emph> is the value for which the F distribution is to be calculated."
+
+#: 04060181.xhp#par_id0119200902395660.help.text
+#, fuzzy
+msgctxt "04060181.xhp#par_id0119200902395660.help.text"
+msgid " <emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr "<emph>Degrees_freedom</emph> is the degrees of freedom of the experiment."
+
+#: 04060181.xhp#par_id0119200902395623.help.text
+msgid " <emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
+msgstr ""
+
+#: 04060181.xhp#bm_id3150603.help.text
+msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
+msgstr "<bookmark_value>EXPONDIST function</bookmark_value><bookmark_value>exponential distributions</bookmark_value>"
+
+#: 04060181.xhp#hd_id3150603.115.help.text
+msgid "EXPONDIST"
+msgstr "EXPONDIST"
+
+#: 04060181.xhp#par_id3149563.116.help.text
+msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
+
+#: 04060181.xhp#hd_id3153789.117.help.text
+msgctxt "04060181.xhp#hd_id3153789.117.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060181.xhp#par_id3150987.118.help.text
+msgid "EXPONDIST(Number; Lambda; C)"
+msgstr "EXPONDIST(Number; lambda; C)"
+
+#: 04060181.xhp#par_id3154663.119.help.text
+msgid " <emph>Number</emph> is the value of the function."
+msgstr "<emph>Number</emph> is the value of the function."
+
+#: 04060181.xhp#par_id3154569.120.help.text
+msgid " <emph>Lambda</emph> is the parameter value."
+msgstr "<emph>Lambda</emph> is the parameter value."
+
+#: 04060181.xhp#par_id3147332.121.help.text
+msgid " <emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
+msgstr "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
+
+#: 04060181.xhp#hd_id3146133.122.help.text
+msgctxt "04060181.xhp#hd_id3146133.122.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060181.xhp#par_id3150357.123.help.text
+msgid " <item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
+msgstr "=EXPONDIST(3; 0.5; 1) returns 0.78."
+
+#: 04050100.xhp#tit.help.text
+msgid "Sheet from file"
+msgstr "Sheet from file"
+
+#: 04050100.xhp#par_idN105C1.help.text
+msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
+msgstr "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
+
+#: 04050100.xhp#par_idN105D1.help.text
+msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgstr "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+
+#: 04050100.xhp#par_idN105F7.help.text
+msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
+msgstr "Use the <link href=\"text/shared/01/01020000.xhp\">file open</link> dialog to locate the spreadsheet."
+
+#: 04050100.xhp#par_idN10609.help.text
+msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
+msgstr "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
+
+#: 04060185.xhp#tit.help.text
+msgid "Statistical Functions Part Five"
+msgstr "Statistical Functions Part Five"
+
+#: 04060185.xhp#hd_id3147072.1.help.text
+msgid "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">Statistical Functions Part Five</link></variable>"
+msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">Statistical Functions Part Five</link></variable>"
+
+#: 04060185.xhp#bm_id3155071.help.text
+msgid "<bookmark_value>RANK function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
+msgstr "<bookmark_value>RANK function</bookmark_value><bookmark_value>numbers;determining ranks</bookmark_value>"
+
+#: 04060185.xhp#hd_id3155071.2.help.text
+msgid "RANK"
+msgstr "RANK"
+
+#: 04060185.xhp#par_id3153976.3.help.text
+msgid "<ahelp hid=\"HID_FUNC_RANG\">Returns the rank of a number in a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_RANG\">Returns the rank of a number in a sample.</ahelp>"
+
+#: 04060185.xhp#hd_id3159206.4.help.text
+msgctxt "04060185.xhp#hd_id3159206.4.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3153250.5.help.text
+msgid "RANK(Value; Data; Type)"
+msgstr "RANK(Value; Data; Type)"
+
+#: 04060185.xhp#par_id3154543.6.help.text
+msgid " <emph>Value</emph> is the value, whose rank is to be determined."
+msgstr "<emph>Value</emph> is the value, whose rank is to be determined."
+
+#: 04060185.xhp#par_id3149130.7.help.text
+msgctxt "04060185.xhp#par_id3149130.7.help.text"
+msgid " <emph>Data</emph> is the array or range of data in the sample."
+msgstr "<emph>Data</emph> is the array or range of data in the sample."
+
+#: 04060185.xhp#par_id3150215.8.help.text
+msgid " <emph>Type</emph> (optional) is the sequence order."
+msgstr "<emph>Type</emph> (optional) is the sequence order."
+
+#: 04060185.xhp#par_id9305398.help.text
+msgid "Type = 0 means descending from the last item of the array to the first (this is the default), "
+msgstr "Type = 0 means descending from the last item of the array to the first (this is the default), "
+
+#: 04060185.xhp#par_id9996948.help.text
+msgid "Type = 1 means ascending from the first item of the range to the last."
+msgstr "Type = 1 means ascending from the first item of the range to the last."
+
+#: 04060185.xhp#hd_id3143223.9.help.text
+msgctxt "04060185.xhp#hd_id3143223.9.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3155919.10.help.text
+msgid " <item type=\"input\">=RANK(A10;A1:A50)</item> returns the ranking of the value in A10 in value range A1:A50. If <item type=\"literal\">Value</item> does not exist within the range an error message is displayed."
+msgstr "=RANK(A10; A1:A50) returns the ranking of the value in A10 in value range A1:A50. If <emph>Value</emph> does not exist within the range an error message is displayed."
+
+#: 04060185.xhp#bm_id3153556.help.text
+msgid "<bookmark_value>SKEW function</bookmark_value>"
+msgstr "<bookmark_value>SKEW function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3153556.12.help.text
+msgid "SKEW"
+msgstr "SKEW"
+
+#: 04060185.xhp#par_id3153485.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_SCHIEFE\">Returns the skewness of a distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SCHIEFE\">Returns the skewness of a distribution.</ahelp>"
+
+#: 04060185.xhp#hd_id3154733.14.help.text
+msgctxt "04060185.xhp#hd_id3154733.14.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3151191.15.help.text
+msgid "SKEW(Number1; Number2; ...Number30)"
+msgstr "SKEW(Number 1; number 2; ...number 30)"
+
+#: 04060185.xhp#par_id3155757.16.help.text
+msgid " <emph>Number1, Number2...Number30</emph> are numerical values or ranges."
+msgstr "<emph>Number 1, number 2...number 30</emph> are numerical values or ranges."
+
+#: 04060185.xhp#hd_id3153297.17.help.text
+msgctxt "04060185.xhp#hd_id3153297.17.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3145118.18.help.text
+msgid " <item type=\"input\">=SKEW(A1:A50)</item> calculates the value of skew for the data referenced."
+msgstr "=SKEW(A1:A50) calculates the value of skew for the data referenced."
+
+#: 04060185.xhp#bm_id3149051.help.text
+msgid "<bookmark_value>regression lines;FORECAST function</bookmark_value> <bookmark_value>extrapolations</bookmark_value> <bookmark_value>FORECAST function</bookmark_value>"
+msgstr "<bookmark_value>regression lines</bookmark_value><bookmark_value>extrapolations</bookmark_value><bookmark_value>FORECAST function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3149051.20.help.text
+msgid "FORECAST"
+msgstr "FORECAST"
+
+#: 04060185.xhp#par_id3153290.21.help.text
+msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on existing x and y values.</ahelp>"
+
+#: 04060185.xhp#hd_id3151343.22.help.text
+msgctxt "04060185.xhp#hd_id3151343.22.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3147404.23.help.text
+msgid "FORECAST(Value; DataY; DataX)"
+msgstr "FORECAST(Value; data_Y; data_X)"
+
+#: 04060185.xhp#par_id3148743.24.help.text
+msgid " <emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned."
+msgstr "<emph>Value</emph> is the x value, for which the y value on the linear regression is to be returned."
+
+#: 04060185.xhp#par_id3146325.25.help.text
+msgid " <emph>DataY</emph> is the array or range of known y's."
+msgstr "<emph>Data_Y</emph> is the array or range of known y's."
+
+#: 04060185.xhp#par_id3150536.26.help.text
+msgid " <emph>DataX</emph> is the array or range of known x's."
+msgstr "<emph>Data_X</emph> is the array or range of known x's."
+
+#: 04060185.xhp#hd_id3147416.27.help.text
+msgctxt "04060185.xhp#hd_id3147416.27.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3157874.28.help.text
+msgid " <item type=\"input\">=FORECAST(50;A1:A50;B1;B50)</item> returns the Y value expected for the X value of 50 if the X and Y values in both references are linked by a linear trend."
+msgstr "=FORECAST(50; A1:A50; B1;B50) returns the Y value expected for the X value of 50 if the X and Y values in both references are linked by a linear trend."
+
+#: 04060185.xhp#bm_id3149143.help.text
+msgid "<bookmark_value>STDEV function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a sample</bookmark_value>"
+msgstr "<bookmark_value>STDEV function</bookmark_value><bookmark_value>standard deviations in statistics;based on a sample</bookmark_value>"
+
+#: 04060185.xhp#hd_id3149143.30.help.text
+msgctxt "04060185.xhp#hd_id3149143.30.help.text"
+msgid "STDEV"
+msgstr "STDEV"
+
+#: 04060185.xhp#par_id3146888.31.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABW\">Estimates the standard deviation based on a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABW\">Estimates the standard deviation based on a sample.</ahelp>"
+
+#: 04060185.xhp#hd_id3146815.32.help.text
+msgctxt "04060185.xhp#hd_id3146815.32.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3149946.33.help.text
+msgid "STDEV(Number1; Number2; ...Number30)"
+msgstr "STDEV(Number 1;number 2;...number 30)"
+
+#: 04060185.xhp#par_id3157904.34.help.text
+msgid " <emph>Number1, Number2, ... Number30</emph> are numerical values or ranges representing a sample based on an entire population."
+msgstr "<emph>Number 1, number 2, ... number 30</emph> are numerical values or ranges representing a sample based on an entire population."
+
+#: 04060185.xhp#hd_id3150650.35.help.text
+msgctxt "04060185.xhp#hd_id3150650.35.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3149434.36.help.text
+msgid " <item type=\"input\">=STDEV(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
+msgstr "=STDEV(A1:A50) returns the estimated standard deviation based on the data referenced."
+
+#: 04060185.xhp#bm_id3144745.help.text
+msgid "<bookmark_value>STDEVA function</bookmark_value>"
+msgstr "<bookmark_value>STDEVA function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3144745.186.help.text
+msgid "STDEVA"
+msgstr "STDEVA"
+
+#: 04060185.xhp#par_id3151234.187.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABWA\">Calculates the standard deviation of an estimation based on a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABWA\">Calculates the standard deviation of an estimation based on a sample.</ahelp>"
+
+#: 04060185.xhp#hd_id3148884.188.help.text
+msgctxt "04060185.xhp#hd_id3148884.188.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3147422.189.help.text
+msgid "STDEVA(Value1;Value2;...Value30)"
+msgstr "STDEVA(Value 1;value 2;...value 30)"
+
+#: 04060185.xhp#par_id3154547.190.help.text
+msgid " <emph>Value1, Value2, ...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+msgstr "<emph>Value 1,value 2,...value 30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+
+#: 04060185.xhp#hd_id3155829.191.help.text
+msgctxt "04060185.xhp#hd_id3155829.191.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3148581.192.help.text
+msgid " <item type=\"input\">=STDEVA(A1:A50)</item> returns the estimated standard deviation based on the data referenced."
+msgstr "=STDEVA(A1:A50) returns the estimated standard deviation based on the data referenced."
+
+#: 04060185.xhp#bm_id3149734.help.text
+msgid "<bookmark_value>STDEVP function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
+msgstr "<bookmark_value>STDEVP function</bookmark_value><bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
+
+#: 04060185.xhp#hd_id3149734.38.help.text
+msgctxt "04060185.xhp#hd_id3149734.38.help.text"
+msgid "STDEVP"
+msgstr "STDEVP"
+
+#: 04060185.xhp#par_id3149187.39.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
+
+#: 04060185.xhp#hd_id3154387.40.help.text
+msgctxt "04060185.xhp#hd_id3154387.40.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3154392.41.help.text
+msgid "STDEVP(Number1;Number2;...Number30)"
+msgstr "STDEVP(Number 1;number 2;...number 30)"
+
+#: 04060185.xhp#par_id3155261.42.help.text
+msgid " <emph>Number 1,Number 2,...Number 30</emph> are numerical values or ranges representing a sample based on an entire population."
+msgstr "<emph>Number 1,number 2,...number 30</emph> are numerical values or ranges representing a sample based on an entire population."
+
+#: 04060185.xhp#hd_id3145591.43.help.text
+msgctxt "04060185.xhp#hd_id3145591.43.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3153933.44.help.text
+msgid " <item type=\"input\">=STDEVP(A1:A50)</item> returns a standard deviation of the data referenced."
+msgstr "=STDEVP(A1:A50) returns a standard deviation of the data referenced."
+
+#: 04060185.xhp#bm_id3154522.help.text
+msgid "<bookmark_value>STDEVPA function</bookmark_value>"
+msgstr "<bookmark_value>STDEVPA function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3154522.194.help.text
+msgid "STDEVPA"
+msgstr "STDEVPA"
+
+#: 04060185.xhp#par_id3149549.195.help.text
+msgid "<ahelp hid=\"HID_FUNC_STABWNA\">Calculates the standard deviation based on the entire population.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABWNA\">Calculates the standard deviation based on the entire population.</ahelp>"
+
+#: 04060185.xhp#hd_id3155950.196.help.text
+msgctxt "04060185.xhp#hd_id3155950.196.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3146851.197.help.text
+msgid "STDEVPA(Value1;Value2;...Value30)"
+msgstr "STDEVPA(Value 1;value 2;...value 30)"
+
+#: 04060185.xhp#par_id3153109.198.help.text
+msgid " <emph>Value1,value2,...value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+msgstr "<emph>Value 1,value 2,...value 30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+
+#: 04060185.xhp#hd_id3154506.199.help.text
+msgctxt "04060185.xhp#hd_id3154506.199.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3145163.200.help.text
+msgid " <item type=\"input\">=STDEVPA(A1:A50)</item> returns the standard deviation of the data referenced."
+msgstr "=STDEVPA(A1:A50) returns the standard deviation of the data referenced."
+
+#: 04060185.xhp#bm_id3155928.help.text
+msgid "<bookmark_value>STANDARDIZE function</bookmark_value> <bookmark_value>converting;random variables, into normalized values</bookmark_value>"
+msgstr "<bookmark_value>STANDARDIZE function</bookmark_value><bookmark_value>converting;random variables, into normalized values</bookmark_value>"
+
+#: 04060185.xhp#hd_id3155928.46.help.text
+msgid "STANDARDIZE"
+msgstr "STANDARDIZE"
+
+#: 04060185.xhp#par_id3149883.47.help.text
+msgid "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Converts a random variable to a normalized value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STANDARDISIERUNG\">Converts a random variable to a normalized value.</ahelp>"
+
+#: 04060185.xhp#hd_id3154330.48.help.text
+msgctxt "04060185.xhp#hd_id3154330.48.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3150132.49.help.text
+msgid "STANDARDIZE(Number; Mean; StDev)"
+msgstr "STANDARDIZE(Number; mean; STDEV)"
+
+#: 04060185.xhp#par_id3159139.50.help.text
+msgid " <emph>Number</emph> is the value to be standardized."
+msgstr "<emph>Number</emph> is the value to be standardized."
+
+#: 04060185.xhp#par_id3145241.51.help.text
+msgid " <emph>Mean</emph> is the arithmetic mean of the distribution."
+msgstr "<emph>Mean</emph> is the arithmetic mean of the distribution."
+
+#: 04060185.xhp#par_id3148874.52.help.text
+msgid " <emph>StDev</emph> is the standard deviation of the distribution."
+msgstr "<emph>STDEV</emph> is the standard deviation of the distribution."
+
+#: 04060185.xhp#hd_id3145351.53.help.text
+msgctxt "04060185.xhp#hd_id3145351.53.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3156067.54.help.text
+msgid " <item type=\"input\">=STANDARDIZE(11;10;1)</item> returns 1. The value 11 in a normal distribution with a mean of 10 and a standard deviation of 1 is as much above the mean of 10, as the value 1 is above the mean of the standard normal distribution."
+msgstr "=STANDARDIZE(11; 10; 1) returns 1. The value 11 in a normal distribution with a mean of 10 and a standard deviation of 1 is as much above the mean of 10, as the value 1 is above the mean of the standard normal distribution."
+
+#: 04060185.xhp#bm_id3157986.help.text
+msgid "<bookmark_value>NORMSINV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
+msgstr "<bookmark_value>NORMSINV function</bookmark_value><bookmark_value>normal distribution;inverse of standard</bookmark_value>"
+
+#: 04060185.xhp#hd_id3157986.56.help.text
+msgid "NORMSINV"
+msgstr "NORMSINV"
+
+#: 04060185.xhp#par_id3151282.57.help.text
+msgid "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
+
+#: 04060185.xhp#hd_id3153261.58.help.text
+msgctxt "04060185.xhp#hd_id3153261.58.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3154195.59.help.text
+msgid "NORMINV(Number)"
+msgstr "NORMINV(Number)"
+
+#: 04060185.xhp#par_id3148772.60.help.text
+msgid " <emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
+msgstr "<emph>Number</emph> is the probability to which the inverse standard normal distribution is calculated."
+
+#: 04060185.xhp#hd_id3150934.61.help.text
+msgctxt "04060185.xhp#hd_id3150934.61.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3149030.62.help.text
+msgid " <item type=\"input\">=NORMSINV(0.908789)</item> returns 1.3333."
+msgstr "NORMSINV(0.908789) returns 1.3333."
+
+#: 04060185.xhp#bm_id3147538.help.text
+msgid "<bookmark_value>NORMSDIST function</bookmark_value> <bookmark_value>normal distribution;statistics</bookmark_value>"
+msgstr "<bookmark_value>NORMSDIST function</bookmark_value><bookmark_value>normal distribution;statistics</bookmark_value>"
+
+#: 04060185.xhp#hd_id3147538.64.help.text
+msgid "NORMSDIST"
+msgstr "NORMSDIST"
+
+#: 04060185.xhp#par_id3150474.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
+
+#: 04060185.xhp#par_id8652302.help.text
+msgctxt "04060185.xhp#par_id8652302.help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr "Ова е GAUSS(x)=NORMSDIST(x)-0.5"
+
+#: 04060185.xhp#hd_id3155083.66.help.text
+msgctxt "04060185.xhp#hd_id3155083.66.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3158411.67.help.text
+msgid "NORMSDIST(Number)"
+msgstr "NORMSDIST(Number)"
+
+#: 04060185.xhp#par_id3154950.68.help.text
+msgid " <emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
+msgstr "<emph>Number</emph> is the value to which the standard normal cumulative distribution is calculated."
+
+#: 04060185.xhp#hd_id3153228.69.help.text
+msgctxt "04060185.xhp#hd_id3153228.69.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3155984.70.help.text
+msgid " <item type=\"input\">=NORMSDIST(1)</item> returns 0.84. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
+msgstr "=NORMSDIST(1) returns 0.84. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
+
+#: 04060185.xhp#bm_id3152592.help.text
+msgid "<bookmark_value>SLOPE function</bookmark_value>"
+msgstr "<bookmark_value>SLOPE function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3152592.72.help.text
+msgid "SLOPE"
+msgstr "SLOPE"
+
+#: 04060185.xhp#par_id3150386.73.help.text
+msgid "<ahelp hid=\"HID_FUNC_STEIGUNG\">Returns the slope of the linear regression line.</ahelp> The slope is adapted to the data points set in the y and x values."
+msgstr "<ahelp hid=\"HID_FUNC_STEIGUNG\">Returns the slope of the linear regression line.</ahelp> The slope is adapted to the data points set in the y and x values."
+
+#: 04060185.xhp#hd_id3154315.74.help.text
+msgctxt "04060185.xhp#hd_id3154315.74.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3149819.75.help.text
+msgid "SLOPE(DataY; DataX)"
+msgstr "SLOPE(data_Y; data_X)"
+
+#: 04060185.xhp#par_id3083446.76.help.text
+msgctxt "04060185.xhp#par_id3083446.76.help.text"
+msgid " <emph>DataY</emph> is the array or matrix of Y data."
+msgstr "<emph>Data_Y</emph> is the array or matrix of Y data."
+
+#: 04060185.xhp#par_id3152375.77.help.text
+msgctxt "04060185.xhp#par_id3152375.77.help.text"
+msgid " <emph>DataX</emph> is the array or matrix of X data."
+msgstr "<emph>Data_X</emph> is the array or matrix of X data."
+
+#: 04060185.xhp#hd_id3146061.78.help.text
+msgctxt "04060185.xhp#hd_id3146061.78.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3152480.79.help.text
+msgid " <item type=\"input\">=SLOPE(A1:A50;B1:B50)</item> "
+msgstr "=SLOPE(A1:A50; B1:B50)"
+
+#: 04060185.xhp#bm_id3155836.help.text
+msgid "<bookmark_value>STEYX function</bookmark_value> <bookmark_value>standard errors;statistical functions</bookmark_value>"
+msgstr "<bookmark_value>STEYX function</bookmark_value><bookmark_value>standard errors</bookmark_value>"
+
+#: 04060185.xhp#hd_id3155836.81.help.text
+msgid "STEYX"
+msgstr "STEYX"
+
+#: 04060185.xhp#par_id3149446.82.help.text
+msgid "<ahelp hid=\"HID_FUNC_STFEHLERYX\">Returns the standard error of the predicted y value for each x in the regression.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STFEHLERYX\">Returns the standard error of the predicted y value for each x in the regression.</ahelp>"
+
+#: 04060185.xhp#hd_id3147562.83.help.text
+msgctxt "04060185.xhp#hd_id3147562.83.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3151267.84.help.text
+msgid "STEYX(DataY; DataX)"
+msgstr "STEYX(data_Y; data_X)"
+
+#: 04060185.xhp#par_id3147313.85.help.text
+msgctxt "04060185.xhp#par_id3147313.85.help.text"
+msgid " <emph>DataY</emph> is the array or matrix of Y data."
+msgstr "<emph>Data_Y</emph> is the array or matrix of Y data."
+
+#: 04060185.xhp#par_id3156097.86.help.text
+msgctxt "04060185.xhp#par_id3156097.86.help.text"
+msgid " <emph>DataX</emph> is the array or matrix of X data."
+msgstr "<emph>Data_X</emph> is the array or matrix of X data."
+
+#: 04060185.xhp#hd_id3145204.87.help.text
+msgctxt "04060185.xhp#hd_id3145204.87.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3156131.88.help.text
+msgid " <item type=\"input\">=STEXY(A1:A50;B1:B50)</item> "
+msgstr "=STEXY(A1:A50; B1:B50)"
+
+#: 04060185.xhp#bm_id3150873.help.text
+msgid "<bookmark_value>DEVSQ function</bookmark_value> <bookmark_value>sums;of squares of deviations</bookmark_value>"
+msgstr "<bookmark_value>DEVSQ function</bookmark_value><bookmark_value>sum of squares of deviations</bookmark_value>"
+
+#: 04060185.xhp#hd_id3150873.90.help.text
+msgid "DEVSQ"
+msgstr "DEVSQ"
+
+#: 04060185.xhp#par_id3154748.91.help.text
+msgid "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Returns the sum of squares of deviations based on a sample mean.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SUMQUADABW\">Returns the sum of squares of deviations based on a sample mean.</ahelp>"
+
+#: 04060185.xhp#hd_id3156121.92.help.text
+msgctxt "04060185.xhp#hd_id3156121.92.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3146790.93.help.text
+msgid "DEVSQ(Number1; Number2; ...Number30)"
+msgstr "DEVSQ(Number 1; number 2; ...number 30)"
+
+#: 04060185.xhp#par_id3155995.94.help.text
+msgid " <emph>Number1, Number2, ...Number30</emph> numerical values or ranges representing a sample. "
+msgstr "<emph>Number 1,number 2,...number 30</emph> numerical values or ranges representing a sample."
+
+#: 04060185.xhp#hd_id3150254.95.help.text
+msgctxt "04060185.xhp#hd_id3150254.95.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3149136.96.help.text
+msgid " <item type=\"input\">=DEVSQ(A1:A50)</item> "
+msgstr "=DEVSQ(A1:A50)"
+
+#: 04060185.xhp#bm_id3149579.help.text
+msgid "<bookmark_value>TINV function</bookmark_value> <bookmark_value>inverse of t-distribution</bookmark_value>"
+msgstr "<bookmark_value>TINV function</bookmark_value><bookmark_value>inverse of t-distribution</bookmark_value>"
+
+#: 04060185.xhp#hd_id3149579.98.help.text
+msgid "TINV"
+msgstr "TINV"
+
+#: 04060185.xhp#par_id3143232.99.help.text
+msgid "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
+
+#: 04060185.xhp#hd_id3155101.100.help.text
+msgctxt "04060185.xhp#hd_id3155101.100.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3149289.101.help.text
+msgid "TINV(Number; DegreesFreedom)"
+msgstr "TINV(Number; degrees_freedom)"
+
+#: 04060185.xhp#par_id3154070.102.help.text
+msgid " <emph>Number</emph> is the probability associated with the two-tailed t-distribution."
+msgstr "<emph>Number</emph> is the probability associated with the two-tailed t-distribution."
+
+#: 04060185.xhp#par_id3155315.103.help.text
+msgctxt "04060185.xhp#par_id3155315.103.help.text"
+msgid " <emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr "<emph>Degrees_freedom</emph> is the number of degrees of freedom for the t-distribution."
+
+#: 04060185.xhp#hd_id3153885.104.help.text
+msgctxt "04060185.xhp#hd_id3153885.104.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3156010.105.help.text
+msgid " <item type=\"input\">=TINV(0.1;6)</item> returns 1.94"
+msgstr "=TINV(0.1; 6) returns 1.94"
+
+#: 04060185.xhp#bm_id3154129.help.text
+msgid "<bookmark_value>TTEST function</bookmark_value>"
+msgstr "<bookmark_value>TTEST function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3154129.107.help.text
+msgid "TTEST"
+msgstr "TTEST"
+
+#: 04060185.xhp#par_id3159184.108.help.text
+msgid "<ahelp hid=\"HID_FUNC_TTEST\">Returns the probability associated with a Student's t-Test.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TTEST\">Returns the probability associated with a Student's t-Test.</ahelp>"
+
+#: 04060185.xhp#hd_id3147257.109.help.text
+msgctxt "04060185.xhp#hd_id3147257.109.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3151175.110.help.text
+msgid "TTEST(Data1; Data2; Mode; Type)"
+msgstr "TTEST(Data_1; Data_2; Mode; Type)"
+
+#: 04060185.xhp#par_id3149202.111.help.text
+msgid " <emph>Data1</emph> is the dependent array or range of data for the first record."
+msgstr "<emph>Data_1</emph> is the dependent array or range of data for the first record."
+
+#: 04060185.xhp#par_id3145666.112.help.text
+msgid " <emph>Data2</emph> is the dependent array or range of data for the second record."
+msgstr "<emph>Data_2</emph> is the dependent array or range of data for the second record."
+
+#: 04060185.xhp#par_id3153903.113.help.text
+msgid " <emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
+msgstr "<emph>Mode</emph> = 1 calculates the one-tailed test, <emph>Mode</emph> = 2 the two- tailed test."
+
+#: 04060185.xhp#par_id3155327.114.help.text
+msgid " <emph>Type</emph> is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)."
+msgstr "<emph>Type</emph> is the kind of t-test to perform. Type 1 means paired. Type 2 means two samples, equal variance (homoscedastic). Type 3 means two samples, unequal variance (heteroscedastic)."
+
+#: 04060185.xhp#hd_id3159342.115.help.text
+msgctxt "04060185.xhp#hd_id3159342.115.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3150119.116.help.text
+msgid " <item type=\"input\">=TTEST(A1:A50;B1:B50;2;2)</item> "
+msgstr "=TTEST(A1:A50; B1:B50; 2; 2)"
+
+#: 04060185.xhp#bm_id3154930.help.text
+msgid "<bookmark_value>TDIST function</bookmark_value> <bookmark_value>t-distribution</bookmark_value>"
+msgstr "<bookmark_value>TDIST function</bookmark_value><bookmark_value>t-distribution</bookmark_value>"
+
+#: 04060185.xhp#hd_id3154930.118.help.text
+msgid "TDIST"
+msgstr "TDIST"
+
+#: 04060185.xhp#par_id3153372.119.help.text
+msgid "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
+
+#: 04060185.xhp#hd_id3149911.120.help.text
+msgctxt "04060185.xhp#hd_id3149911.120.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3150521.121.help.text
+msgid "TDIST(Number; DegreesFreedom; Mode)"
+msgstr "TDIST(Number; Degrees_freedom; Mode)"
+
+#: 04060185.xhp#par_id3146991.122.help.text
+msgid " <emph>Number</emph> is the value for which the t-distribution is calculated."
+msgstr "<emph>Number</emph> is the value for which the t-distribution is calculated."
+
+#: 04060185.xhp#par_id3148824.123.help.text
+msgctxt "04060185.xhp#par_id3148824.123.help.text"
+msgid " <emph>DegreesFreedom</emph> is the number of degrees of freedom for the t-distribution."
+msgstr "<emph>Degrees_freedom</emph> is the number of degrees of freedom for the t-distribution."
+
+#: 04060185.xhp#par_id3149340.124.help.text
+msgid " <emph>Mode</emph> = 1 returns the one-tailed test, <emph>Mode</emph> = 2 returns the two-tailed test."
+msgstr "<emph>Mode</emph> = 1 returns the one-tailed test, <emph>Mode</emph> = 2 returns the two-tailed test."
+
+#: 04060185.xhp#hd_id3159150.125.help.text
+msgctxt "04060185.xhp#hd_id3159150.125.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3149773.126.help.text
+msgid " <item type=\"input\">=TDIST(12;5;1)</item> "
+msgstr "=TDIST(12; 5; 1)"
+
+#: 04060185.xhp#bm_id3153828.help.text
+msgid "<bookmark_value>VAR function</bookmark_value> <bookmark_value>variances</bookmark_value>"
+msgstr "<bookmark_value>VAR function</bookmark_value><bookmark_value>variances</bookmark_value>"
+
+#: 04060185.xhp#hd_id3153828.128.help.text
+msgctxt "04060185.xhp#hd_id3153828.128.help.text"
+msgid "VAR"
+msgstr "VAR"
+
+#: 04060185.xhp#par_id3159165.129.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
+
+#: 04060185.xhp#hd_id3154286.130.help.text
+msgctxt "04060185.xhp#hd_id3154286.130.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3153054.131.help.text
+msgid "VAR(Number1; Number2; ...Number30)"
+msgstr "VAR(Number 1; number 2; ...number 30)"
+
+#: 04060185.xhp#par_id3148938.132.help.text
+msgid " <emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing a sample based on an entire population."
+msgstr "<emph>Number 1,number 2,...number 30</emph> are numerical values or ranges representing a sample based on an entire population."
+
+#: 04060185.xhp#hd_id3147233.133.help.text
+msgctxt "04060185.xhp#hd_id3147233.133.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3153575.134.help.text
+msgid " <item type=\"input\">=VAR(A1:A50)</item> "
+msgstr "=VAR(A1:A50)"
+
+#: 04060185.xhp#bm_id3151045.help.text
+msgid "<bookmark_value>VARA function</bookmark_value>"
+msgstr "<bookmark_value>VARA function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3151045.202.help.text
+msgid "VARA"
+msgstr "VARA"
+
+#: 04060185.xhp#par_id3155122.203.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZA\">Estimates a variance based on a sample. The value of text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZA\">Estimates a variance based on a sample. The value of text is 0.</ahelp>"
+
+#: 04060185.xhp#hd_id3149176.204.help.text
+msgctxt "04060185.xhp#hd_id3149176.204.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3149999.205.help.text
+msgid "VARA(Value1; Value2; ...Value30)"
+msgstr "VARA(Value 1; value 2; ...value 30)"
+
+#: 04060185.xhp#par_id3158421.206.help.text
+msgid " <emph>Value1, Value2,...Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+msgstr "<emph>Value 1,value 2,...value 30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
+
+#: 04060185.xhp#hd_id3149160.207.help.text
+msgctxt "04060185.xhp#hd_id3149160.207.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3154279.208.help.text
+msgid " <item type=\"input\">=VARA(A1:A50)</item> "
+msgstr "=VARA(A1:A50)"
+
+#: 04060185.xhp#bm_id3166441.help.text
+msgid "<bookmark_value>VARP function</bookmark_value>"
+msgstr "<bookmark_value>VARP function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3166441.136.help.text
+msgctxt "04060185.xhp#hd_id3166441.136.help.text"
+msgid "VARP"
+msgstr "VARP"
+
+#: 04060185.xhp#par_id3159199.137.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
+
+#: 04060185.xhp#hd_id3150706.138.help.text
+msgctxt "04060185.xhp#hd_id3150706.138.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3147282.139.help.text
+msgid "VARP(Number1; Number2; ...Number30)"
+msgstr "VARP(Number 1; number 2; ...number 30)"
+
+#: 04060185.xhp#par_id3149793.140.help.text
+msgid " <emph>Number1, Number2, ...Number30</emph> are numerical values or ranges representing an entire population."
+msgstr "<emph>Number 1,number 2,...number 30</emph> are numerical values or ranges representing an entire population."
+
+#: 04060185.xhp#hd_id3152939.141.help.text
+msgctxt "04060185.xhp#hd_id3152939.141.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3153385.142.help.text
+msgid " <item type=\"input\">=VARP(A1:A50)</item> "
+msgstr "=VARP(A1:A50)"
+
+#: 04060185.xhp#bm_id3153688.help.text
+msgid "<bookmark_value>VARPA function</bookmark_value>"
+msgstr "<bookmark_value>VARPA function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3153688.210.help.text
+msgid "VARPA"
+msgstr "VARPA"
+
+#: 04060185.xhp#par_id3149109.211.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIANZENA\">Calculates the variance based on the entire population. The value of text is 0.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZENA\">Calculates the variance based on the entire population. The value of text is 0.</ahelp>"
+
+#: 04060185.xhp#hd_id3152880.212.help.text
+msgctxt "04060185.xhp#hd_id3152880.212.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3149967.213.help.text
+msgid "VARPA(Value1; Value2; ...Value30)"
+msgstr "VARA(Value 1; value 2; ...value 30)"
+
+#: 04060185.xhp#par_id3149920.214.help.text
+msgid " <emph>Value1,value2,...Value30</emph> are values or ranges representing an entire population."
+msgstr "<emph>Value 1,value 2,...value 30</emph> are values or ranges representing an entire population."
+
+#: 04060185.xhp#hd_id3154862.215.help.text
+msgctxt "04060185.xhp#hd_id3154862.215.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3156203.216.help.text
+msgid " <item type=\"input\">=VARPA(A1:A50)</item> "
+msgstr "=VARPA(A1:A50)"
+
+#: 04060185.xhp#bm_id3154599.help.text
+msgid "<bookmark_value>PERMUT function</bookmark_value> <bookmark_value>number of permutations</bookmark_value>"
+msgstr "<bookmark_value>PERMUT function</bookmark_value><bookmark_value>number of permutations</bookmark_value>"
+
+#: 04060185.xhp#hd_id3154599.144.help.text
+msgid "PERMUT"
+msgstr "PERMUT"
+
+#: 04060185.xhp#par_id3154334.145.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Returns the number of permutations for a given number of objects.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN\">Returns the number of permutations for a given number of objects.</ahelp>"
+
+#: 04060185.xhp#hd_id3149422.146.help.text
+msgctxt "04060185.xhp#hd_id3149422.146.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3148466.147.help.text
+msgid "PERMUT(Count1; Count2)"
+msgstr "PERMUT(Count_1; Count_2)"
+
+#: 04060185.xhp#par_id3148656.148.help.text
+msgctxt "04060185.xhp#par_id3148656.148.help.text"
+msgid " <emph>Count1</emph> is the total number of objects."
+msgstr "<emph>Count_1</emph> is the total number of objects."
+
+#: 04060185.xhp#par_id3150826.149.help.text
+msgctxt "04060185.xhp#par_id3150826.149.help.text"
+msgid " <emph>Count2</emph> is the number of objects in each permutation."
+msgstr "<emph>Count_2</emph> is the number of objects in each permutation."
+
+#: 04060185.xhp#hd_id3153351.150.help.text
+msgctxt "04060185.xhp#hd_id3153351.150.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3150424.151.help.text
+msgid " <item type=\"input\">=PERMUT(6;3)</item> returns 120. There are 120 different possibilities, to pick a sequence of 3 playing cards out of 6 playing cards."
+msgstr "=PERMUT(6; 3) returns 120. There are 120 different possibilities, to pick a sequence of 3 playing cards out of 6 playing cards."
+
+#: 04060185.xhp#bm_id3143276.help.text
+msgid "<bookmark_value>PERMUTATIONA function</bookmark_value>"
+msgstr "<bookmark_value>PERMUTATIONA function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3143276.153.help.text
+msgid "PERMUTATIONA"
+msgstr "PERMUTATIONA"
+
+#: 04060185.xhp#par_id3144759.154.help.text
+msgid "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Returns the number of permutations for a given number of objects (repetition allowed).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIATIONEN2\">Returns the number of permutations for a given number of objects (repetition allowed).</ahelp>"
+
+#: 04060185.xhp#hd_id3145598.155.help.text
+msgctxt "04060185.xhp#hd_id3145598.155.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3149298.156.help.text
+msgid "PERMUTATIONA(Count1; Count2)"
+msgstr "PERMUTATIONA(Count_1; Count_2)"
+
+#: 04060185.xhp#par_id3156139.157.help.text
+msgctxt "04060185.xhp#par_id3156139.157.help.text"
+msgid " <emph>Count1</emph> is the total number of objects."
+msgstr "<emph>Count_1</emph> is the total number of objects."
+
+#: 04060185.xhp#par_id3149519.158.help.text
+msgctxt "04060185.xhp#par_id3149519.158.help.text"
+msgid " <emph>Count2</emph> is the number of objects in each permutation."
+msgstr "<emph>Count_2</emph> is the number of objects in each permutation."
+
+#: 04060185.xhp#hd_id3151382.159.help.text
+msgctxt "04060185.xhp#hd_id3151382.159.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3153949.160.help.text
+msgid "How often can 2 objects be selected from a total of 11 objects?"
+msgstr "How often can 2 objects be selected from a total of 11 objects?"
+
+#: 04060185.xhp#par_id3149233.161.help.text
+msgid " <item type=\"input\">=PERMUTATIONA(11;2)</item> returns 121."
+msgstr "PERMUTATIONA(11;2) returns 121."
+
+#: 04060185.xhp#par_id3150622.162.help.text
+msgid " <item type=\"input\">=PERMUTATIONA(6;3)</item> returns 216. There are 216 different possibilities to put a sequence of 3 playing cards together out of six playing cards if every card is returned before the next one is drawn."
+msgstr "PERMUTATIONA(6; 3) returns 216. There are 216 different possibilities to put a sequence of 3 playing cards together out of six playing cards if every card is returned before the next one is drawn."
+
+#: 04060185.xhp#bm_id3152952.help.text
+msgid "<bookmark_value>PROB function</bookmark_value>"
+msgstr "<bookmark_value>PROB function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3152952.164.help.text
+msgid "PROB"
+msgstr "PROB"
+
+#: 04060185.xhp#par_id3154110.165.help.text
+msgid "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\">Returns the probability that values in a range are between two limits.</ahelp> If there is no <item type=\"literal\">End</item> value, this function calculates the probability based on the principle that the Data values are equal to the value of <item type=\"literal\">Start</item>."
+msgstr "<ahelp hid=\"HID_FUNC_WAHRSCHBEREICH\">Returns the probability that values in a range are between two limits.</ahelp> If there is no <emph>End</emph> value, this function calculates the probability based on the principle that the Data values are equal to the value of <emph>Start</emph>."
+
+#: 04060185.xhp#hd_id3146810.166.help.text
+msgctxt "04060185.xhp#hd_id3146810.166.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3147330.167.help.text
+msgid "PROB(Data; Probability; Start; End)"
+msgstr "PROB(Data; Probability; Start; End)"
+
+#: 04060185.xhp#par_id3154573.168.help.text
+msgctxt "04060185.xhp#par_id3154573.168.help.text"
+msgid " <emph>Data</emph> is the array or range of data in the sample."
+msgstr "<emph>Data</emph> is the array or range of data in the sample."
+
+#: 04060185.xhp#par_id3156334.169.help.text
+msgid " <emph>Probability</emph> is the array or range of the corresponding probabilities."
+msgstr "<emph>Probability</emph> is the array or range of the corresponding probabilities."
+
+#: 04060185.xhp#par_id3151107.170.help.text
+msgid " <emph>Start</emph> is the start value of the interval whose probabilities are to be summed."
+msgstr "<emph>Start</emph> is the start value of the interval whose probabilities are to be summed."
+
+#: 04060185.xhp#par_id3153694.171.help.text
+msgid " <emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start </emph>value is calculated."
+msgstr "<emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start </emph>value is calculated."
+
+#: 04060185.xhp#hd_id3147574.172.help.text
+msgctxt "04060185.xhp#hd_id3147574.172.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3153666.173.help.text
+msgid " <item type=\"input\">=PROB(A1:A50;B1:B50;50;60)</item> returns the probability with which a value within the range of A1:A50 is also within the limits between 50 and 60. Every value within the range of A1:A50 has a probability within the range of B1:B50."
+msgstr "=PROB(A1:A50; B1:B50; 50; 60) returns the probability with which a value within the range of A1:A50 is also within the limits between 50 and 60. Every value within the range of A1:A50 has a probability within the range of B1:B50."
+
+#: 04060185.xhp#bm_id3150941.help.text
+msgid "<bookmark_value>WEIBULL function</bookmark_value>"
+msgstr "<bookmark_value>WEIBULL function</bookmark_value>"
+
+#: 04060185.xhp#hd_id3150941.175.help.text
+msgid "WEIBULL"
+msgstr "WEIBULL"
+
+#: 04060185.xhp#par_id3154916.176.help.text
+msgid "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
+
+#: 04060185.xhp#par_id0305200911372767.help.text
+msgid "The Weibull distribution is a continuous probability distribution, with parameters Alpha > 0 (shape) and Beta > 0 (scale). "
+msgstr ""
+
+#: 04060185.xhp#par_id0305200911372777.help.text
+msgid "If C is 0, WEIBULL calculates the probability density function."
+msgstr ""
+
+#: 04060185.xhp#par_id0305200911372743.help.text
+msgid "If C is 1, WEIBULL calculates the cumulative distribution function."
+msgstr ""
+
+#: 04060185.xhp#hd_id3159393.177.help.text
+msgctxt "04060185.xhp#hd_id3159393.177.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060185.xhp#par_id3154478.178.help.text
+msgid "WEIBULL(Number; Alpha; Beta; C)"
+msgstr "WEIBULL(Number; Alpha; Beta; C)"
+
+#: 04060185.xhp#par_id3151317.179.help.text
+msgid " <emph>Number</emph> is the value at which to calculate the Weibull distribution."
+msgstr "<emph>Number</emph> is the value at which to calculate the Weibull distribution."
+
+#: 04060185.xhp#par_id3158436.180.help.text
+msgid " <emph>Alpha </emph>is the shape parameter of the Weibull distribution."
+msgstr "<emph>Alpha </emph>is the Alpha parameter of the Weibull distribution."
+
+#: 04060185.xhp#par_id3154668.181.help.text
+msgid " <emph>Beta</emph> is the scale parameter of the Weibull distribution."
+msgstr "<emph>Beta</emph> is the Beta parameter of the Weibull distribution."
+
+#: 04060185.xhp#par_id3154825.182.help.text
+msgid " <emph>C</emph> indicates the type of function."
+msgstr "<emph>C</emph> indicates the type of function. If C equals 0 the form of the function is calculated, if C equals 1 the distribution is calculated."
+
+#: 04060185.xhp#hd_id3153794.183.help.text
+msgctxt "04060185.xhp#hd_id3153794.183.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060185.xhp#par_id3146077.184.help.text
+msgid " <item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
+msgstr "=WEIBULL(2; 1; 1; 1) returns 0.86."
+
+#: 04060185.xhp#par_id0305200911372899.help.text
+msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">Wiki page</link>."
+msgstr ""
+
+#: 04070000.xhp#tit.help.text
+msgid "Names"
+msgstr "Имиња"
+
+#: 04070000.xhp#hd_id3153951.1.help.text
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+
+#: 04070000.xhp#par_id3145801.2.help.text
+msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
+msgstr "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
+
+#: 04070000.xhp#hd_id3153878.3.help.text
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
+
+#: 04070000.xhp#hd_id3146969.4.help.text
+msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+
+#: 04070000.xhp#hd_id3155764.5.help.text
+msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
+msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
+
+#: 04070000.xhp#hd_id3156382.6.help.text
+msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
+msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
+
+#: 03090000.xhp#tit.help.text
+msgid "Formula Bar"
+msgstr "Лента за формули"
+
+#: 03090000.xhp#bm_id3147264.help.text
+msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
+msgstr "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
+
+#: 03090000.xhp#hd_id3147264.1.help.text
+msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
+
+#: 03090000.xhp#par_id3156423.2.help.text
+msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
+msgstr "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
+
+#: 03090000.xhp#par_id3154686.4.help.text
+msgid "To hide the Formula Bar, unmark the menu item."
+msgstr "To hide the Formula Bar, unmark the menu item."
+
+#: 03090000.xhp#par_id3145787.3.help.text
+msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
+msgstr "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
+
+#: 04010100.xhp#tit.help.text
+msgctxt "04010100.xhp#tit.help.text"
+msgid "Row Break"
+msgstr "Прелом на ред"
+
+#: 04010100.xhp#bm_id3153821.help.text
+msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
+msgstr "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
+
+#: 04010100.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
+
+#: 04010100.xhp#par_id3149656.2.help.text
+msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
+
+#: 04010100.xhp#par_id3156422.3.help.text
+msgid "The manual row break is indicated by a dark blue horizontal line."
+msgstr "The manual row break is indicated by a dark blue horizontal line."
+
+#: 02190200.xhp#tit.help.text
+msgctxt "02190200.xhp#tit.help.text"
+msgid "Column Break"
+msgstr "Прелом на колона"
+
+#: 02190200.xhp#bm_id3151384.help.text
+msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value><bookmark_value>removing; manual column breaks</bookmark_value>"
+
+#: 02190200.xhp#hd_id3151384.1.help.text
+msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
+
+#: 02190200.xhp#par_id3154124.2.help.text
+msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
+
+#: 02190200.xhp#par_id3145173.3.help.text
+msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
+msgstr "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
+
+#: 02140000.xhp#tit.help.text
+msgid "Fill"
+msgstr "Пополни"
+
+#: 02140000.xhp#bm_id8473769.help.text
+msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
+msgstr "<bookmark_value>пополнување;списоци на селекции</bookmark_value><bookmark_value>списоци на селекции;пополнување на ќелии</bookmark_value>"
+
+#: 02140000.xhp#hd_id3153876.1.help.text
+msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
+msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
+
+#: 02140000.xhp#par_id3156285.2.help.text
+msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
+msgstr "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
+
+#: 02140000.xhp#par_id3147343.9.help.text
+msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
+msgstr "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
+
+#: 02140000.xhp#hd_id3149207.7.help.text
+msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+
+#: 02140000.xhp#hd_id3155111.8.help.text
+msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
+msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Rows</link>"
+
+#: 02140000.xhp#par_id3152994.3.help.text
+msgid "<emph>Filling cells using context menus:</emph>"
+msgstr "<emph>Filling cells using context menus:</emph>"
+
+#: 02140000.xhp#par_id3145384.4.help.text
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgstr "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+
+#: 02140000.xhp#par_id3156450.5.help.text
+msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
+msgstr "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
+
+#: 02140000.xhp#par_id3148699.6.help.text
+msgid "Click one of the listed entries to copy it to the cell."
+msgstr "Click one of the listed entries to copy it to the cell."
+
+#: 12090106.xhp#tit.help.text
+msgctxt "12090106.xhp#tit.help.text"
+msgid "Data Field Options"
+msgstr "Data Field Options"
+
+#: 12090106.xhp#bm_id711386.help.text
+#, fuzzy
+msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
+msgstr "<bookmark_value>hiding;data fields, from calculations in Data Pilot</bookmark_value><bookmark_value>display options in Data Pilot</bookmark_value><bookmark_value>sorting;options in Data Pilot</bookmark_value><bookmark_value>data field options for Data Pilot</bookmark_value>"
+
+#: 12090106.xhp#par_idN10542.help.text
+msgctxt "12090106.xhp#par_idN10542.help.text"
+msgid "Data Field Options"
+msgstr "Data Field Options"
+
+#: 12090106.xhp#par_idN10546.help.text
+#, fuzzy
+msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
+msgstr "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">DataPilot</link>."
+
+#: 12090106.xhp#par_idN10557.help.text
+msgctxt "12090106.xhp#par_idN10557.help.text"
+msgid "Sort by"
+msgstr "Подреди по"
+
+#: 12090106.xhp#par_idN1055B.help.text
+msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
+msgstr "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
+
+#: 12090106.xhp#par_idN1055E.help.text
+msgctxt "12090106.xhp#par_idN1055E.help.text"
+msgid "Ascending"
+msgstr "Растечки"
+
+#: 12090106.xhp#par_idN10562.help.text
+msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value, that is, from A to Z or from 1 to 9. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+
+#: 12090106.xhp#par_idN10565.help.text
+msgctxt "12090106.xhp#par_idN10565.help.text"
+msgid "Descending"
+msgstr "Опаѓачки"
+
+#: 12090106.xhp#par_idN10569.help.text
+msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value, that is from Z to A or from 9 to 1. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+
+#: 12090106.xhp#par_idN1056C.help.text
+msgid "Manual"
+msgstr "Рачно"
+
+#: 12090106.xhp#par_idN10570.help.text
+msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
+msgstr "<ahelp hid=\"1495384582\">Sorts values alphabetically, that is , from A to Z.</ahelp>"
+
+#: 12090106.xhp#par_idN10585.help.text
+msgid "Display options"
+msgstr "Display options"
+
+#: 12090106.xhp#par_idN10589.help.text
+msgid "You can specify the display options for all row fields except for the last, innermost row field."
+msgstr "You can specify the display options for all row fields except for the last, innermost row field."
+
+#: 12090106.xhp#par_idN1058C.help.text
+msgctxt "12090106.xhp#par_idN1058C.help.text"
+msgid "Layout"
+msgstr "Изглед"
+
+#: 12090106.xhp#par_idN10590.help.text
+msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
+
+#: 12090106.xhp#par_idN10593.help.text
+msgid "Empty line after each item"
+msgstr "Empty line after each item"
+
+#: 12090106.xhp#par_idN10597.help.text
+#, fuzzy
+msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the DataPilot table.</ahelp>"
+
+#: 12090106.xhp#par_idN1059A.help.text
+msgid "Show automatically"
+msgstr "Show automatically"
+
+#: 12090106.xhp#par_idN1059E.help.text
+msgid "Displays the top or bottom nn items when you sort by a specified field."
+msgstr "Displays the top or bottom nn items when you sort by a specified field."
+
+#: 12090106.xhp#par_idN105A1.help.text
+msgctxt "12090106.xhp#par_idN105A1.help.text"
+msgid "Show"
+msgstr "Покажи"
+
+#: 12090106.xhp#par_idN105A5.help.text
+msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
+msgstr "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
+
+#: 12090106.xhp#par_idN105A8.help.text
+msgid "items"
+msgstr "items"
+
+#: 12090106.xhp#par_idN105AC.help.text
+msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgstr "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+
+#: 12090106.xhp#par_idN105AF.help.text
+msgid "From"
+msgstr "Од"
+
+#: 12090106.xhp#par_idN105B3.help.text
+msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgstr "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
+
+#: 12090106.xhp#par_idN105B6.help.text
+msgid "Using field"
+msgstr "Using field"
+
+#: 12090106.xhp#par_idN105BA.help.text
+msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
+msgstr "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
+
+#: 12090106.xhp#par_idN105BD.help.text
+msgid "Hide items"
+msgstr "Hide items"
+
+#: 12090106.xhp#par_idN105C1.help.text
+msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
+
+#: 12090106.xhp#par_idN105C4.help.text
+msgid "Hierarchy"
+msgstr "Hierarchy"
+
+#: 12090106.xhp#par_idN105C8.help.text
+#, fuzzy
+msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
+msgstr "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The DataPilot must be based on an external source data that contains data hierarchies.</ahelp>"
+
+#: 04070200.xhp#tit.help.text
+msgctxt "04070200.xhp#tit.help.text"
+msgid "Insert Name"
+msgstr "Вметни име"
+
+#: 04070200.xhp#bm_id3153195.help.text
+msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
+msgstr "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
+
+#: 04070200.xhp#hd_id3153195.1.help.text
+msgctxt "04070200.xhp#hd_id3153195.1.help.text"
+msgid "Insert Name"
+msgstr "Вметни име"
+
+#: 04070200.xhp#par_id3150011.2.help.text
+msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
+msgstr "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
+
+#: 04070200.xhp#par_id3149412.7.help.text
+msgid "You can only insert a cell area after having defined a name for the area."
+msgstr "You can only insert a cell area after having defined a name for the area."
+
+#: 04070200.xhp#hd_id3153160.3.help.text
+msgid "Insert name "
+msgstr "Insert name "
+
+#: 04070200.xhp#par_id3154944.4.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
+
+#: 04070200.xhp#hd_id3153418.5.help.text
+msgid "Insert All"
+msgstr "Insert All"
+
+#: 04070200.xhp#par_id3155066.6.help.text
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
+msgstr "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
+
+#: 12120200.xhp#tit.help.text
+msgid "Input Help"
+msgstr "Помош за внес"
+
+#: 12120200.xhp#hd_id3156280.1.help.text
+msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
+msgstr "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
+
+#: 12120200.xhp#par_id3147229.2.help.text
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
+
+#: 12120200.xhp#hd_id3146986.3.help.text
+msgid "Show input help when cell is selected"
+msgstr "Show input help when cell is selected"
+
+#: 12120200.xhp#par_id3153363.4.help.text
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
+
+#: 12120200.xhp#par_id3154730.5.help.text
+msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
+msgstr "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
+
+#: 12120200.xhp#hd_id3147394.6.help.text
+msgctxt "12120200.xhp#hd_id3147394.6.help.text"
+msgid "Contents"
+msgstr "Содржина"
+
+#: 12120200.xhp#hd_id3149582.8.help.text
+msgctxt "12120200.xhp#hd_id3149582.8.help.text"
+msgid "Title"
+msgstr "Наслов"
+
+#: 12120200.xhp#par_id3149400.9.help.text
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
+
+#: 12120200.xhp#hd_id3149121.10.help.text
+msgid "Input help"
+msgstr "Помош за внес"
+
+#: 12120200.xhp#par_id3150752.11.help.text
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
+
+#: 02210000.xhp#tit.help.text
+msgctxt "02210000.xhp#tit.help.text"
+msgid "Selecting Sheets"
+msgstr "Selecting Sheets"
+
+#: 02210000.xhp#hd_id3156023.5.help.text
+msgctxt "02210000.xhp#hd_id3156023.5.help.text"
+msgid "Selecting Sheets"
+msgstr "Selecting Sheets"
+
+#: 02210000.xhp#par_id3147265.1.help.text
+msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
+msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp>.</variable>"
+
+#: 02210000.xhp#hd_id3125863.2.help.text
+msgid "Selected Sheets"
+msgstr "Selected Sheets"
+
+#: 02210000.xhp#par_id3153969.3.help.text
+msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl (Mac: Command) while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
+msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
+
+#: 02140400.xhp#tit.help.text
+msgctxt "02140400.xhp#tit.help.text"
+msgid "Left"
+msgstr "Лево"
+
+#: 02140400.xhp#hd_id3153896.1.help.text
+msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
+msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
+
+#: 02140400.xhp#par_id3150793.2.help.text
+msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
+
+#: 02140400.xhp#par_id3156280.3.help.text
+msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
+msgstr "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
+
+#: 12090100.xhp#tit.help.text
+msgctxt "12090100.xhp#tit.help.text"
+msgid "Select Source"
+msgstr "Избери извор"
+
+#: 12090100.xhp#hd_id3153663.1.help.text
+msgctxt "12090100.xhp#hd_id3153663.1.help.text"
+msgid "Select Source"
+msgstr "Избери извор"
+
+#: 12090100.xhp#par_id3145119.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your DataPilot table, and then create your table.</ahelp>"
+
+#: 12090100.xhp#hd_id3154760.5.help.text
+msgctxt "12090100.xhp#hd_id3154760.5.help.text"
+msgid "Selection"
+msgstr "Избор"
+
+#: 12090100.xhp#par_id3150543.6.help.text
+#, fuzzy
+msgid "Select a data source for the pivot table."
+msgstr "Select a data source for the DataPilot table."
+
+#: 12090100.xhp#hd_id3148799.7.help.text
+msgid "Current Selection"
+msgstr "Current Selection"
+
+#: 12090100.xhp#par_id3125865.8.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_SELECTION\">Uses the selected cells as the data source for the DataPilot table.</ahelp>"
+
+#: 12090100.xhp#par_id3150011.13.help.text
+#, fuzzy
+msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
+msgstr "The data columns in the DataPilot table use the same number format as the first data row in the current selection."
+
+#: 12090100.xhp#hd_id3147348.9.help.text
+msgid "Data source registered in $[officename]"
+msgstr "Data source registered in $[officename]"
+
+#: 12090100.xhp#par_id3145271.10.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DAPITYPE:BTN_DATABASE\">Uses a table or query in a database that is registered in $[officename] as the data source for the DataPilot table.</ahelp>"
+
+#: 12090100.xhp#hd_id3146119.11.help.text
+msgid "External source/interface"
+msgstr "Надворешен извор/интерфејс"
+
+#: 12090100.xhp#par_id3145647.12.help.text
+#, fuzzy
+msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramData\">Го отвара дијалогот за<emph> податочната табела </emph>каде што можете да ги уредувате податоците на графиконот.</ahelp>"
+
+#: 12090100.xhp#par_idN10670.help.text
+#, fuzzy
+msgctxt "12090100.xhp#par_idN10670.help.text"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"DataPilot dialog\">DataPilot dialog</link>"
+
+#: 12050200.xhp#tit.help.text
+msgctxt "12050200.xhp#tit.help.text"
+msgid "Options"
+msgstr "Опции"
+
+#: 12050200.xhp#bm_id3154758.help.text
+msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
+msgstr "<bookmark_value>subtotals; sorting options</bookmark_value>"
+
+#: 12050200.xhp#hd_id3154758.1.help.text
+msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
+
+#: 12050200.xhp#par_id3154124.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
+
+#: 12050200.xhp#hd_id3156422.3.help.text
+msgid "Page break between groups"
+msgstr "Page break between groups"
+
+#: 12050200.xhp#par_id3147317.4.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
+
+#: 12050200.xhp#hd_id3146985.5.help.text
+msgctxt "12050200.xhp#hd_id3146985.5.help.text"
+msgid "Case sensitive"
+msgstr "Осетливо на мали/големи букви"
+
+#: 12050200.xhp#par_id3153190.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
+
+#: 12050200.xhp#hd_id3151119.7.help.text
+msgid "Pre-sort area according to groups"
+msgstr "Pre-sort area according to groups"
+
+#: 12050200.xhp#par_id3149664.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
+
+#: 12050200.xhp#hd_id3153951.9.help.text
+msgctxt "12050200.xhp#hd_id3153951.9.help.text"
+msgid "Sort"
+msgstr "Подреди"
+
+#: 12050200.xhp#hd_id3145252.11.help.text
+msgid "Include formats"
+msgstr "Вклучи формати"
+
+#: 12050200.xhp#par_id3147125.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
+
+#: 12050200.xhp#hd_id3155418.13.help.text
+msgid "Custom sort order"
+msgstr "Custom sort order"
+
+#: 12050200.xhp#par_id3149400.14.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined under <emph>Tools - Options - %PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
+
+#: 12050200.xhp#hd_id3149121.15.help.text
+msgctxt "12050200.xhp#hd_id3149121.15.help.text"
+msgid "Ascending"
+msgstr "Растечки"
+
+#: 12050200.xhp#par_id3155068.16.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value, for example, from A to Z or 0 to 9.</ahelp>"
+
+#: 12050200.xhp#hd_id3155443.17.help.text
+msgctxt "12050200.xhp#hd_id3155443.17.help.text"
+msgid "Descending"
+msgstr "Опаѓачки"
+
+#: 12050200.xhp#par_id3153766.18.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value, for example, from Z to A or 9 to 0.</ahelp>"
+
+#: 05070500.xhp#tit.help.text
+#, fuzzy
+msgctxt "05070500.xhp#tit.help.text"
+msgid "Sheet"
+msgstr "Лист"
+
+#: 05070500.xhp#bm_id3150542.help.text
+msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+msgstr "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+
+#: 05070500.xhp#hd_id3156329.1.help.text
+msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
+
+#: 05070500.xhp#par_id3151384.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_TABLE\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_TABLE\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
+
+#: 05070500.xhp#hd_id3150542.3.help.text
+msgctxt "05070500.xhp#hd_id3150542.3.help.text"
+msgid "Print"
+msgstr "Печати"
+
+#: 05070500.xhp#par_id3125863.4.help.text
+msgid "Defines which elements of the spreadsheet are to be printed."
+msgstr "Defines which elements of the spreadsheet are to be printed."
+
+#: 05070500.xhp#hd_id3151041.5.help.text
+msgid "Column and row headers"
+msgstr "Column and row headers"
+
+#: 05070500.xhp#par_id3147228.6.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
+
+#: 05070500.xhp#hd_id3150439.7.help.text
+msgid "Grid"
+msgstr "Мрежа"
+
+#: 05070500.xhp#par_id3147436.8.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph>Tools - Options - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
+
+#: 05070500.xhp#hd_id3145750.9.help.text
+msgctxt "05070500.xhp#hd_id3145750.9.help.text"
+msgid "Comments"
+msgstr "Забелешки"
+
+#: 05070500.xhp#par_id3150010.10.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Prints the notes defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
+
+#: 05070500.xhp#hd_id3154944.11.help.text
+msgid "Objects/graphics"
+msgstr "Објекти/графика"
+
+#: 05070500.xhp#par_id3149581.12.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
+
+#: 05070500.xhp#hd_id3149377.13.help.text
+msgid "Charts"
+msgstr "Графикони"
+
+#: 05070500.xhp#par_id3148455.14.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
+
+#: 05070500.xhp#hd_id3153418.15.help.text
+msgid "Drawing Objects"
+msgstr "Објекти за цртање"
+
+#: 05070500.xhp#par_id3149122.16.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
+
+#: 05070500.xhp#hd_id3150330.17.help.text
+msgctxt "05070500.xhp#hd_id3150330.17.help.text"
+msgid "Formulas"
+msgstr "Формули"
+
+#: 05070500.xhp#par_id3153715.18.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
+
+#: 05070500.xhp#hd_id3156385.19.help.text
+msgid "Zero Values"
+msgstr "Нулти вредности"
+
+#: 05070500.xhp#par_id3149258.20.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
+
+#: 05070500.xhp#hd_id3154022.21.help.text
+msgid "Page Order"
+msgstr "Page Order"
+
+#: 05070500.xhp#par_id3166423.22.help.text
+msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
+msgstr "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
+
+#: 05070500.xhp#hd_id3152580.23.help.text
+msgid "Top to bottom, then right"
+msgstr "Top to bottom, then right"
+
+#: 05070500.xhp#par_id3150205.24.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
+
+#: 05070500.xhp#hd_id3150786.25.help.text
+msgid "Left to right, then down"
+msgstr "Left to right, then down"
+
+#: 05070500.xhp#par_id3154657.26.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
+
+#: 05070500.xhp#hd_id3150887.27.help.text
+msgid "First page number"
+msgstr "Број на првата страница"
+
+#: 05070500.xhp#par_id3155378.28.help.text
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
+msgstr "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
+
+#: 05070500.xhp#par_id3145389.35.help.text
+msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Enter the number of the first page.</ahelp>"
+msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">The first page receives the page number specified in the spin box.</ahelp>"
+
+#: 05070500.xhp#hd_id3146978.29.help.text
+msgid "Scale"
+msgstr "Размер"
+
+#: 05070500.xhp#par_id3149408.30.help.text
+msgid "Defines a page scale for the printed spreadsheet."
+msgstr "Defines a page scale for the printed spreadsheet."
+
+#: 05070500.xhp#par_idN1096D.help.text
+msgid "Scaling mode"
+msgstr "Scaling mode"
+
+#: 05070500.xhp#par_idN10971.help.text
+msgid "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
+msgstr "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
+
+#: 05070500.xhp#hd_id3155089.31.help.text
+msgid "Reduce/enlarge printout"
+msgstr "Reduce/enlarge printout"
+
+#: 05070500.xhp#par_id3159171.32.help.text
+msgid "Specifies a scaling factor to scale all printed pages."
+msgstr "Specifies a scaling factor to scale all printed pages."
+
+#: 05070500.xhp#par_idN1099A.help.text
+msgid "Scaling factor"
+msgstr "Scaling factor"
+
+#: 05070500.xhp#par_id3152899.36.help.text
+msgid "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+msgstr "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+
+#: 05070500.xhp#par_idN109B2.help.text
+msgid "Fit print range(s) to width/height"
+msgstr "Fit print range(s) to width/height"
+
+#: 05070500.xhp#par_idN109B5.help.text
+msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed. "
+msgstr "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed. "
+
+#: 05070500.xhp#par_idN109BB.help.text
+msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
+msgstr "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
+
+#: 05070500.xhp#par_idN109BF.help.text
+msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgstr "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
+
+#: 05070500.xhp#par_idN109C3.help.text
+msgid "If you clear both boxes, this will result in a scaling factor of 100%."
+msgstr "If you clear both boxes, this will result in a scaling factor of 100%."
+
+#: 05070500.xhp#par_idN109CE.help.text
+msgid "Width in pages"
+msgstr "Width in pages"
+
+#: 05070500.xhp#par_idN109D1.help.text
+msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
+msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
+
+#: 05070500.xhp#par_idN109E8.help.text
+msgid "Height in pages"
+msgstr "Height in pages"
+
+#: 05070500.xhp#par_idN109EB.help.text
+msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
+msgstr "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
+
+#: 05070500.xhp#hd_id3148868.33.help.text
+msgid "Fit print range(s) on number of pages"
+msgstr "Fit print range(s) on number of pages"
+
+#: 05070500.xhp#par_id3145074.34.help.text
+msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
+msgstr "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
+
+#: 05070500.xhp#par_idN10A26.help.text
+msgid "Number of pages"
+msgstr "Број на страници"
+
+#: 05070500.xhp#par_id3144507.37.help.text
+msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
+msgstr "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
+
+#: 05030000.xhp#tit.help.text
+msgctxt "05030000.xhp#tit.help.text"
+msgid "Row"
+msgstr "Ред"
+
+#: 05030000.xhp#hd_id3147228.1.help.text
+msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
+msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
+
+#: 05030000.xhp#par_id3154685.2.help.text
+msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
+msgstr "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
+
+#: 05030000.xhp#hd_id3155132.3.help.text
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
+
+#: 05030000.xhp#hd_id3155854.4.help.text
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
+
+#: 03070000.xhp#tit.help.text
+msgid "Column & Row Headers"
+msgstr "Column & Row Headers"
+
+#: 03070000.xhp#bm_id3156024.help.text
+msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
+
+#: 03070000.xhp#hd_id3156024.1.help.text
+msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
+msgstr "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
+
+#: 03070000.xhp#par_id3147230.2.help.text
+msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
+msgstr "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
+
+#: 03070000.xhp#par_id3156280.4.help.text
+msgid "To hide the column and row headers unmark this menu entry."
+msgstr "To hide the column and row headers unmark this menu entry."
+
+#: 03070000.xhp#par_id3156441.3.help.text
+msgid "You can also set the view of the column and row headers in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>."
+msgstr "You can also set the view of the column and row headers in <link href=\"text/shared/optionen/01060100.xhp\" name=\"Tools - Options - Spreadsheet - View\"><emph>Tools - Options - %PRODUCTNAME Calc - View</emph></link>."
+
+#: 03100000.xhp#tit.help.text
+msgid "Page Break Preview"
+msgstr "Преглед на прелом на страница"
+
+#: 03100000.xhp#hd_id3151384.1.help.text
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
+
+#: 03100000.xhp#par_id3150792.2.help.text
+msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
+msgstr "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
+
+#: 03100000.xhp#par_id3153877.13.help.text
+msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
+msgstr "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
+
+#: 03100000.xhp#hd_id3154731.14.help.text
+msgid "Delete All Manual Breaks"
+msgstr "Delete All Manual Breaks"
+
+#: 03100000.xhp#par_id3149400.15.help.text
+msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
+
+#: 03100000.xhp#hd_id3155067.18.help.text
+msgid "Add Print Range"
+msgstr "Додај опсег за печатење"
+
+#: 03100000.xhp#par_id3155764.19.help.text
+msgid "Adds the selected cells to print ranges."
+msgstr "Adds the selected cells to print ranges."
+
+#: 12080000.xhp#tit.help.text
+msgid "Group and Outline"
+msgstr "Контура"
+
+#: 12080000.xhp#bm_id3152350.help.text
+msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
+msgstr "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
+
+#: 12080000.xhp#hd_id3152350.1.help.text
+msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
+msgstr "<link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>"
+
+#: 12080000.xhp#par_id3150793.2.help.text
+msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
+msgstr "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
+
+#: 12080000.xhp#hd_id3147229.3.help.text
+msgctxt "12080000.xhp#hd_id3147229.3.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>"
+
+#: 12080000.xhp#hd_id3153188.4.help.text
+msgctxt "12080000.xhp#hd_id3153188.4.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>"
+
+#: 01120000.xhp#tit.help.text
+msgid "Page Preview"
+msgstr "Преглед на страница"
+
+#: 01120000.xhp#hd_id1918698.help.text
+msgid "<link href=\"text/scalc/01/01120000.xhp\">Page Preview</link>"
+msgstr "<link href=\"text/scalc/01/01120000.xhp\">Преглед на страница</link>"
+
+#: 01120000.xhp#par_id3831598.help.text
+msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>"
+msgstr ""
+
+#: 01120000.xhp#par_id3145847.help.text
+msgid "Use the icons on the <emph>Page Preview Bar</emph> to scroll through the pages of the document or to print the document."
+msgstr ""
+
+#: 01120000.xhp#par_id9838862.help.text
+msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up and Ctrl+Page Down keys to scroll through the pages."
+msgstr ""
+
+#: 01120000.xhp#par_id7211828.help.text
+msgid "You cannot edit your document while you are in the page preview."
+msgstr ""
+
+#: 01120000.xhp#par_id460829.help.text
+msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the page preview, click the <emph>Close Preview</emph> button.</ahelp>"
+msgstr ""
+
+#: 01120000.xhp#par_id3155829.help.text
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
+
+#: 06040000.xhp#tit.help.text
+msgctxt "06040000.xhp#tit.help.text"
+msgid "Goal Seek"
+msgstr "Барање цел"
+
+#: 06040000.xhp#hd_id3155629.1.help.text
+msgctxt "06040000.xhp#hd_id3155629.1.help.text"
+msgid "Goal Seek"
+msgstr "Барање цел"
+
+#: 06040000.xhp#par_id3145119.2.help.text
+msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
+msgstr "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
+
+#: 06040000.xhp#hd_id3149656.3.help.text
+msgid "Default"
+msgstr "Стандардно"
+
+#: 06040000.xhp#par_id3151211.4.help.text
+msgid "In this section, you can define the variables in your formula."
+msgstr "In this section, you can define the variables in your formula."
+
+#: 06040000.xhp#hd_id3150869.5.help.text
+msgid "Formula cell"
+msgstr "Ќелија за формула"
+
+#: 06040000.xhp#par_id3153194.6.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
+
+#: 06040000.xhp#hd_id3154685.7.help.text
+msgid "Target value"
+msgstr "Целна вредност"
+
+#: 06040000.xhp#par_id3146984.8.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Specifies the value you want to achieve as a new result.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Specifies the value you want to achieve as a new result.</ahelp>"
+
+#: 06040000.xhp#hd_id3150012.9.help.text
+msgid "Variable cell"
+msgstr "Променлива ќелија"
+
+#: 06040000.xhp#par_id3147427.10.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
+
+#: func_month.xhp#tit.help.text
+msgid "MONTH "
+msgstr "MONTH "
+
+#: func_month.xhp#bm_id3149936.help.text
+msgid "<bookmark_value>MONTH function</bookmark_value>"
+msgstr "<bookmark_value>MONTH function</bookmark_value>"
+
+#: func_month.xhp#hd_id3149936.76.help.text
+msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgstr "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+
+#: func_month.xhp#par_id3153538.77.help.text
+msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
+msgstr "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
+
+#: func_month.xhp#hd_id3149517.78.help.text
+msgctxt "func_month.xhp#hd_id3149517.78.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_month.xhp#par_id3145602.79.help.text
+msgid "MONTH(Number)"
+msgstr "MONTH(Number)"
+
+#: func_month.xhp#par_id3149485.80.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
+msgstr "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
+
+#: func_month.xhp#hd_id3153322.81.help.text
+msgctxt "func_month.xhp#hd_id3153322.81.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_month.xhp#par_id3149244.83.help.text
+msgid "=MONTH(NOW()) returns the current month."
+msgstr "MONTH(NOW()) returns the current month"
+
+#: func_month.xhp#par_id3154790.84.help.text
+msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
+msgstr "MONTH(C4) returns 7 if contents of C4 = 7/7/00."
+
+#: 12090104.xhp#tit.help.text
+msgctxt "12090104.xhp#tit.help.text"
+msgid "Options"
+msgstr "Опции"
+
+#: 12090104.xhp#hd_id3149119.1.help.text
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+
+#: 12090104.xhp#par_id3147102.2.help.text
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
+msgstr "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
+
+#: 12090104.xhp#hd_id3147008.3.help.text
+msgctxt "12090104.xhp#hd_id3147008.3.help.text"
+msgid "Options"
+msgstr "Опции"
+
+#: 12090104.xhp#hd_id3153662.5.help.text
+msgctxt "12090104.xhp#hd_id3153662.5.help.text"
+msgid "Case sensitive"
+msgstr "Осетливо на мали/големи букви"
+
+#: 12090104.xhp#par_id3145673.6.help.text
+msgid "Distinguishes between uppercase and lowercase letters."
+msgstr "Distinguishes between uppercase and lowercase letters."
+
+#: 12090104.xhp#hd_id3156327.7.help.text
+msgid "Regular Expression"
+msgstr "Regular Expression"
+
+#: 12090104.xhp#par_id3151245.8.help.text
+msgid "Allows you to use wildcards in the filter definition."
+msgstr "Allows you to use wildcards in the filter definition."
+
+#: 12090104.xhp#par_id3147264.29.help.text
+msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
+msgstr "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
+
+#: 12090104.xhp#hd_id3153379.30.help.text
+msgid "Unique records only"
+msgstr "Unique records only"
+
+#: 12090104.xhp#par_id3154138.31.help.text
+msgid "Excludes duplicate rows in the list of filtered data."
+msgstr "Excludes duplicate rows in the list of filtered data."
+
+#: 12090104.xhp#hd_id3156282.32.help.text
+msgid "Data area"
+msgstr "Област на податоци"
+
+#: 12090104.xhp#par_id3150768.33.help.text
+msgid "Displays the name of the filtered data area in the table."
+msgstr "Displays the name of the filtered data area in the table."
+
+#: 12090104.xhp#hd_id3156424.34.help.text
+msgid "More<<"
+msgstr "More<<"
+
+#: 12090104.xhp#par_id3125864.35.help.text
+msgctxt "12090104.xhp#par_id3125864.35.help.text"
+msgid "Hides the additional options."
+msgstr "Hides the additional options."
+
+#: 12090104.xhp#par_id3154011.help.text
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
+msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
+
+#: 04060105.xhp#tit.help.text
+msgctxt "04060105.xhp#tit.help.text"
+msgid "Logical Functions"
+msgstr "Logical Functions"
+
+#: 04060105.xhp#bm_id3153484.help.text
+msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
+msgstr "<bookmark_value>logical functions</bookmark_value><bookmark_value>Function Wizard; logical</bookmark_value><bookmark_value>functions; logical</bookmark_value>"
+
+#: 04060105.xhp#hd_id3153484.1.help.text
+msgctxt "04060105.xhp#hd_id3153484.1.help.text"
+msgid "Logical Functions"
+msgstr "Logical Functions"
+
+#: 04060105.xhp#par_id3149312.2.help.text
+msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
+msgstr "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
+
+#: 04060105.xhp#bm_id3147505.help.text
+msgid "<bookmark_value>AND function</bookmark_value>"
+msgstr "<bookmark_value>AND function</bookmark_value>"
+
+#: 04060105.xhp#hd_id3147505.29.help.text
+msgid "AND"
+msgstr "AND"
+
+#: 04060105.xhp#par_id3153959.65.help.text
+msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
+msgstr "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
+
+#: 04060105.xhp#par_id3146100.66.help.text
+msgctxt "04060105.xhp#par_id3146100.66.help.text"
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+msgstr "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+
+#: 04060105.xhp#par_id3150538.67.help.text
+msgctxt "04060105.xhp#par_id3150538.67.help.text"
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+msgstr "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+
+#: 04060105.xhp#par_id3149128.68.help.text
+msgctxt "04060105.xhp#par_id3149128.68.help.text"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgstr "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE"
+
+#: 04060105.xhp#hd_id3150374.31.help.text
+msgctxt "04060105.xhp#hd_id3150374.31.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060105.xhp#par_id3159123.32.help.text
+msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr "AND(Logical value 1; Logical value 2 ...Logical value 30)"
+
+#: 04060105.xhp#par_id3150038.33.help.text
+msgid " <emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
+msgstr "<emph>Logical value 1; Logical value 2 ...Logical value 30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
+
+#: 04060105.xhp#hd_id3149143.34.help.text
+msgctxt "04060105.xhp#hd_id3149143.34.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060105.xhp#par_id3153123.35.help.text
+msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
+msgstr "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
+
+#: 04060105.xhp#par_id3145632.36.help.text
+msgid " <item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
+msgstr "AND(12<13; 14>12; 7<6) returns FALSE."
+
+#: 04060105.xhp#par_id3149946.60.help.text
+msgid " <item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
+msgstr "AND (FALSE;TRUE) returns FALSE."
+
+#: 04060105.xhp#bm_id3149015.help.text
+msgid "<bookmark_value>FALSE function</bookmark_value>"
+msgstr "<bookmark_value>FALSE function</bookmark_value>"
+
+#: 04060105.xhp#hd_id3149015.3.help.text
+msgid "FALSE"
+msgstr "FALSE"
+
+#: 04060105.xhp#par_id3149890.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
+msgstr "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
+
+#: 04060105.xhp#hd_id3146939.5.help.text
+msgctxt "04060105.xhp#hd_id3146939.5.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060105.xhp#par_id3150030.6.help.text
+msgid "FALSE()"
+msgstr "FALSE()"
+
+#: 04060105.xhp#hd_id3150697.7.help.text
+msgctxt "04060105.xhp#hd_id3150697.7.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060105.xhp#par_id3154842.8.help.text
+msgid " <item type=\"input\">=FALSE()</item> returns FALSE"
+msgstr "If A=TRUE and B=FALSE the following examples appear:"
+
+#: 04060105.xhp#par_id3147468.9.help.text
+msgid " <item type=\"input\">=NOT(FALSE())</item> returns TRUE"
+msgstr "=AND(A;B) returns FALSE"
+
+#: 04060105.xhp#bm_id3150141.help.text
+msgid "<bookmark_value>IF function</bookmark_value>"
+msgstr "<bookmark_value>IF function</bookmark_value>"
+
+#: 04060105.xhp#hd_id3150141.48.help.text
+msgid "IF"
+msgstr "IF"
+
+#: 04060105.xhp#par_id3148740.49.help.text
+msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
+
+#: 04060105.xhp#hd_id3153325.50.help.text
+msgctxt "04060105.xhp#hd_id3153325.50.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060105.xhp#par_id3154558.51.help.text
+msgid "IF(Test; ThenValue; OtherwiseValue)"
+msgstr "IF(Test; Then_value; Otherwise_value)"
+
+#: 04060105.xhp#par_id3149727.52.help.text
+msgid " <emph>Test</emph> is any value or expression that can be TRUE or FALSE."
+msgstr "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
+
+#: 04060105.xhp#par_id3155828.53.help.text
+msgid " <emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
+msgstr "<emph>Then_value</emph> (optional) is the value that is returned if the logical test is TRUE."
+
+#: 04060105.xhp#par_id3154811.54.help.text
+msgid " <emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
+msgstr "<emph>Otherwise_value</emph> (optional) is the value that is returned if the logical test is FALSE."
+
+#: 04060105.xhp#par_idN107FA.help.text
+msgctxt "04060105.xhp#par_idN107FA.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060105.xhp#hd_id3149507.55.help.text
+msgctxt "04060105.xhp#hd_id3149507.55.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: 04060105.xhp#par_id3150867.57.help.text
+msgid " <item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
+msgstr "IF(A1>5;100;\"too small\") If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, <emph>too small</emph> is entered in text format."
+
+#: 04060105.xhp#bm_id3155954.help.text
+msgid "<bookmark_value>NOT function</bookmark_value>"
+msgstr "<bookmark_value>NOT function</bookmark_value>"
+
+#: 04060105.xhp#hd_id3155954.12.help.text
+msgid "NOT"
+msgstr "NOT"
+
+#: 04060105.xhp#par_id3153570.13.help.text
+msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NICHT\">Reverses the logical value.</ahelp>"
+
+#: 04060105.xhp#hd_id3147372.14.help.text
+msgctxt "04060105.xhp#hd_id3147372.14.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060105.xhp#par_id3157996.15.help.text
+msgid "NOT(LogicalValue)"
+msgstr "NOT(Logical value)"
+
+#: 04060105.xhp#par_id3148766.16.help.text
+msgid " <emph>LogicalValue</emph> is any value to be complemented."
+msgstr "<emph>Logical Value</emph> is any value to be reversed."
+
+#: 04060105.xhp#hd_id3149884.17.help.text
+msgctxt "04060105.xhp#hd_id3149884.17.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060105.xhp#par_id3150132.18.help.text
+msgid " <item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
+msgstr "NOT(A). A=TRUE reverses to A=FALSE."
+
+#: 04060105.xhp#bm_id3148394.help.text
+msgid "<bookmark_value>OR function</bookmark_value>"
+msgstr "<bookmark_value>OR function</bookmark_value>"
+
+#: 04060105.xhp#hd_id3148394.20.help.text
+msgid "OR"
+msgstr "OR"
+
+#: 04060105.xhp#par_id3156060.61.help.text
+msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
+msgstr "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
+
+#: 04060105.xhp#par_id3148771.62.help.text
+msgctxt "04060105.xhp#par_id3148771.62.help.text"
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+msgstr "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+
+#: 04060105.xhp#par_id3153546.63.help.text
+msgctxt "04060105.xhp#par_id3153546.63.help.text"
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+msgstr "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
+
+#: 04060105.xhp#par_id3149027.64.help.text
+msgctxt "04060105.xhp#par_id3149027.64.help.text"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgstr "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE"
+
+#: 04060105.xhp#hd_id3155517.22.help.text
+msgctxt "04060105.xhp#hd_id3155517.22.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060105.xhp#par_id3150468.23.help.text
+msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
+msgstr "OR(Logical value 1; Logical value 2 ...Logical value 30)"
+
+#: 04060105.xhp#par_id3155819.24.help.text
+msgid " <emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
+msgstr "<emph>Logical value 1; Logical value 2 ...Logical value 30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
+
+#: 04060105.xhp#hd_id3153228.25.help.text
+msgctxt "04060105.xhp#hd_id3153228.25.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060105.xhp#par_id3154870.26.help.text
+msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
+msgstr "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
+
+#: 04060105.xhp#par_id3155371.27.help.text
+msgid " <item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
+msgstr "OR(12<11; 13>22; 45=45) returns TRUE."
+
+#: 04060105.xhp#par_id3158412.59.help.text
+msgid " <item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
+msgstr "OR(FALSE;TRUE) returns TRUE."
+
+#: 04060105.xhp#bm_id3156256.help.text
+msgid "<bookmark_value>TRUE function</bookmark_value>"
+msgstr "<bookmark_value>TRUE function</bookmark_value>"
+
+#: 04060105.xhp#hd_id3156256.38.help.text
+msgid "TRUE"
+msgstr "TRUE"
+
+#: 04060105.xhp#par_id3155985.39.help.text
+msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
+msgstr "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
+
+#: 04060105.xhp#hd_id3153717.40.help.text
+msgctxt "04060105.xhp#hd_id3153717.40.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060105.xhp#par_id3152590.41.help.text
+msgid "TRUE()"
+msgstr "TRUE()"
+
+#: 04060105.xhp#hd_id3147175.42.help.text
+msgctxt "04060105.xhp#hd_id3147175.42.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060105.xhp#par_id3146148.43.help.text
+msgid "If A=TRUE and B=FALSE the following examples appear:"
+msgstr "If A=TRUE and B=FALSE the following examples appear:"
+
+#: 04060105.xhp#par_id3083285.44.help.text
+msgid " <item type=\"input\">=AND(A;B)</item> returns FALSE"
+msgstr "=AND(A;B) returns FALSE"
+
+#: 04060105.xhp#par_id3083444.45.help.text
+msgid " <item type=\"input\">=OR(A;B)</item> returns TRUE"
+msgstr "=OR(A;B) returns TRUE"
+
+#: 04060105.xhp#par_id3154314.46.help.text
+msgid " <item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
+msgstr "=NOT(AND(A;B)) returns TRUE"
+
+#: func_yearfrac.xhp#tit.help.text
+msgid "YEARFRAC"
+msgstr "YEARFRAC"
+
+#: func_yearfrac.xhp#bm_id3148735.help.text
+msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
+msgstr "<bookmark_value>YEARFRAC function</bookmark_value>"
+
+#: func_yearfrac.xhp#hd_id3148735.196.help.text
+msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+msgstr "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+
+#: func_yearfrac.xhp#par_id3150899.197.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>Start date</emph> and <emph>End date</emph>.</ahelp>"
+
+#: func_yearfrac.xhp#hd_id3155259.198.help.text
+msgctxt "func_yearfrac.xhp#hd_id3155259.198.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_yearfrac.xhp#par_id3155823.199.help.text
+msgid "YEARFRAC(StartDate; EndDate; Basis)"
+msgstr "YEARFRAC (Start date;End date;Basis)"
+
+#: func_yearfrac.xhp#par_id3145144.200.help.text
+msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
+msgstr "<emph>Start date</emph> and <emph>end date</emph>: two date values."
+
+#: func_yearfrac.xhp#par_id3149954.201.help.text
+msgid "<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated."
+msgstr "<emph>Basis</emph>: is chosen from a list of options and indicates how the year is to be calculated."
+
+#: func_yearfrac.xhp#par_id3146847.202.help.text
+msgid "Basis"
+msgstr "Basis"
+
+#: func_yearfrac.xhp#par_id3155956.203.help.text
+msgid "Calculation"
+msgstr "Пресметување"
+
+#: func_yearfrac.xhp#par_id3154502.204.help.text
+msgctxt "func_yearfrac.xhp#par_id3154502.204.help.text"
+msgid "0 or missing"
+msgstr "0 or missing"
+
+#: func_yearfrac.xhp#par_id3149877.205.help.text
+msgid "US method (NASD), 12 months of 30 days each"
+msgstr "US method (NASD), 12 months of 30 days each"
+
+#: func_yearfrac.xhp#par_id3148766.250.help.text
+msgctxt "func_yearfrac.xhp#par_id3148766.250.help.text"
+msgid "1"
+msgstr "1"
+
+#: func_yearfrac.xhp#par_id3154326.206.help.text
+msgid "Exact number of days in months, exact number of days in year"
+msgstr "Exact number of days in months, exact number of days in year"
+
+#: func_yearfrac.xhp#par_id3145245.251.help.text
+msgctxt "func_yearfrac.xhp#par_id3145245.251.help.text"
+msgid "2"
+msgstr "2"
+
+#: func_yearfrac.xhp#par_id3155620.207.help.text
+msgid "Exact number of days in month, year has 360 days"
+msgstr "Exact number of days in month, year has 360 days"
+
+#: func_yearfrac.xhp#par_id3145297.252.help.text
+msgctxt "func_yearfrac.xhp#par_id3145297.252.help.text"
+msgid "3"
+msgstr "3"
+
+#: func_yearfrac.xhp#par_id3148394.208.help.text
+msgid "Exact number of days in month, year has 365 days"
+msgstr "Exact number of days in month, year has 365 days"
+
+#: func_yearfrac.xhp#par_id3151022.253.help.text
+msgctxt "func_yearfrac.xhp#par_id3151022.253.help.text"
+msgid "4"
+msgstr "4"
+
+#: func_yearfrac.xhp#par_id3150931.209.help.text
+msgid "European method, 12 months of 30 days each"
+msgstr "European method, 12 months of 30 days each"
+
+#: func_yearfrac.xhp#hd_id3145626.210.help.text
+msgctxt "func_yearfrac.xhp#hd_id3145626.210.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: func_yearfrac.xhp#par_id3149007.211.help.text
+msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
+msgstr "What fraction of the year 2001 lies between 1.1.2002 and 7.1.2001?"
+
+#: func_yearfrac.xhp#par_id3154632.212.help.text
+msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
+msgstr "=YEARFRAC(\"1.1.2002\"; \"7.1.2002\";1) returns 0.495890."
+
+#: 12090200.xhp#tit.help.text
+msgid "Refresh"
+msgstr "Освежи"
+
+#: 12090200.xhp#hd_id3151385.1.help.text
+msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
+msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
+
+#: 12090200.xhp#par_id3149456.2.help.text
+#, fuzzy
+msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
+msgstr "<ahelp hid=\".uno:RecalcPivotTable\">Updates the DataPilot table.</ahelp>"
+
+#: 12090200.xhp#par_id3150400.3.help.text
+#, fuzzy
+msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
+msgstr "After you import an Excel spreadsheet that contains a Pivot table, click in the table, and then choose <emph>Data - DataPilot - Refresh</emph>."
+
+#: 05020000.xhp#tit.help.text
+msgctxt "05020000.xhp#tit.help.text"
+msgid "Format Cells"
+msgstr "Форматирај ќелии"
+
+#: 05020000.xhp#bm_id3148663.help.text
+msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
+msgstr "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
+
+#: 05020000.xhp#hd_id3148663.1.help.text
+msgctxt "05020000.xhp#hd_id3148663.1.help.text"
+msgid "Format Cells"
+msgstr "Форматирај ќелии"
+
+#: 05020000.xhp#par_id3150448.2.help.text
+msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
+msgstr "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
+
+#: 05020000.xhp#hd_id3145785.3.help.text
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+
+#: 05020000.xhp#hd_id3146119.4.help.text
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+
+#: 12040300.xhp#tit.help.text
+msgctxt "12040300.xhp#tit.help.text"
+msgid "Advanced Filter"
+msgstr "Напреден филтер"
+
+#: 12040300.xhp#hd_id3158394.1.help.text
+msgctxt "12040300.xhp#hd_id3158394.1.help.text"
+msgid "Advanced Filter"
+msgstr "Напреден филтер"
+
+#: 12040300.xhp#par_id3156281.2.help.text
+msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
+msgstr "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
+
+#: 12040300.xhp#par_idN105EB.help.text
+msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+msgstr "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+
+#: 12040300.xhp#hd_id3153771.25.help.text
+msgid "Read filter criteria from"
+msgstr "Read filter criteria from"
+
+#: 12040300.xhp#par_id3147426.26.help.text
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
+msgstr "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
+
+#: 12040300.xhp#hd_id3153188.27.help.text
+msgctxt "12040300.xhp#hd_id3153188.27.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>"
+
+#: func_second.xhp#tit.help.text
+msgid "SECOND "
+msgstr "SECOND "
+
+#: func_second.xhp#bm_id3159390.help.text
+msgid "<bookmark_value>SECOND function</bookmark_value>"
+msgstr "<bookmark_value>SECOND function</bookmark_value>"
+
+#: func_second.xhp#hd_id3159390.86.help.text
+msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
+msgstr "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
+
+#: func_second.xhp#par_id3148974.87.help.text
+msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
+msgstr "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
+
+#: func_second.xhp#hd_id3154362.88.help.text
+msgctxt "func_second.xhp#hd_id3154362.88.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_second.xhp#par_id3148407.89.help.text
+msgid "SECOND(Number)"
+msgstr "SECOND(Number)"
+
+#: func_second.xhp#par_id3155904.90.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
+msgstr "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
+
+#: func_second.xhp#hd_id3149992.91.help.text
+msgctxt "func_second.xhp#hd_id3149992.91.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_second.xhp#par_id3153350.93.help.text
+msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
+msgstr "SECOND(NOW()) returns the current second"
+
+#: func_second.xhp#par_id3150831.94.help.text
+msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
+msgstr "SECOND(C4) returns 17 if contents of C4 = 12:20:17."
+
+#: 05100100.xhp#tit.help.text
+msgctxt "05100100.xhp#tit.help.text"
+msgid "Merge Cells"
+msgstr "Спој ќелии"
+
+#: 05100100.xhp#hd_id3154765.help.text
+msgctxt "05100100.xhp#hd_id3154765.help.text"
+msgid "Merge Cells"
+msgstr "Спој ќелии"
+
+#: 05100100.xhp#par_id3147406.help.text
+msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
+msgstr ""
+
+#: 05100100.xhp#par_id3154351.help.text
+msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
+msgstr ""
+
+#: func_networkdays.xhp#tit.help.text
+msgid "NETWORKDAYS"
+msgstr "NETWORKDAYS"
+
+#: func_networkdays.xhp#bm_id3151254.help.text
+msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
+msgstr "<bookmark_value>NETWORKDAYS function</bookmark_value>"
+
+#: func_networkdays.xhp#hd_id3151254.240.help.text
+msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+msgstr "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+
+#: func_networkdays.xhp#par_id3153788.241.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between <emph>Start date</emph> and <emph>End date</emph>. Holidays can be deducted.</ahelp>"
+
+#: func_networkdays.xhp#hd_id3148677.242.help.text
+msgctxt "func_networkdays.xhp#hd_id3148677.242.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_networkdays.xhp#par_id3145775.243.help.text
+msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
+msgstr "NETWORKDAYS (Start date;End date;Holidays)"
+
+#: func_networkdays.xhp#par_id3153885.244.help.text
+msgctxt "func_networkdays.xhp#par_id3153885.244.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>Start date</emph>: the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
+
+#: func_networkdays.xhp#par_id3151110.245.help.text
+msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+msgstr "<emph>End date</emph>: the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+
+#: func_networkdays.xhp#par_id3154115.246.help.text
+msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>Holidays</emph>: optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+
+#: func_networkdays.xhp#hd_id3146902.247.help.text
+msgctxt "func_networkdays.xhp#hd_id3146902.247.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: func_networkdays.xhp#par_id3154661.248.help.text
+msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date 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 "How many workdays fall between 12/15/2001 and 1/15/2002? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"12/24/2001\", \"12/25/2001\", \"12/26/2001\", \"12/31/2001\", \"1/1/2002\"."
+
+#: func_networkdays.xhp#par_id3147328.249.help.text
+msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
+msgstr "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
+
+#: 04060104.xhp#tit.help.text
+msgctxt "04060104.xhp#tit.help.text"
+msgid "Information Functions"
+msgstr "Information Functions"
+
+#: 04060104.xhp#bm_id3147247.help.text
+msgid "<bookmark_value>information functions</bookmark_value><bookmark_value>Function Wizard; information</bookmark_value><bookmark_value>functions; information functions</bookmark_value>"
+msgstr "<bookmark_value>information functions</bookmark_value><bookmark_value>Function Wizard; information</bookmark_value><bookmark_value>functions; information</bookmark_value>"
+
+#: 04060104.xhp#hd_id3147247.1.help.text
+msgctxt "04060104.xhp#hd_id3147247.1.help.text"
+msgid "Information Functions"
+msgstr "Information Functions"
+
+#: 04060104.xhp#par_id3147499.2.help.text
+msgid "<variable id=\"informationtext\">This category contains the <emph>Information</emph> functions. </variable>"
+msgstr "<variable id=\"informationtext\">This category contains the <emph>Information</emph> functions. </variable>"
+
+#: 04060104.xhp#par_id3159128.3.help.text
+msgid "The data in the following table serves as the basis for some of the examples in the function descriptions:"
+msgstr "The data in the following table serves as the basis for some of the examples in the function descriptions:"
+
+#: 04060104.xhp#par_id3146885.4.help.text
+msgctxt "04060104.xhp#par_id3146885.4.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060104.xhp#par_id3149944.5.help.text
+msgctxt "04060104.xhp#par_id3149944.5.help.text"
+msgid "D"
+msgstr "D"
+
+#: 04060104.xhp#par_id3150457.6.help.text
+msgctxt "04060104.xhp#par_id3150457.6.help.text"
+msgid "<emph>2</emph>"
+msgstr "<emph>2</emph>"
+
+#: 04060104.xhp#par_id3150024.7.help.text
+msgid "x <item type=\"input\">value</item>"
+msgstr "x value"
+
+#: 04060104.xhp#par_id3148725.8.help.text
+msgid "y <item type=\"input\">value</item>"
+msgstr "y value"
+
+#: 04060104.xhp#par_id3150480.9.help.text
+msgctxt "04060104.xhp#par_id3150480.9.help.text"
+msgid "<emph>3</emph>"
+msgstr "<emph>3</emph>"
+
+#: 04060104.xhp#par_id3148440.10.help.text
+msgid "<item type=\"input\">-5</item>"
+msgstr "-5"
+
+#: 04060104.xhp#par_id3148888.11.help.text
+msgid "<item type=\"input\">-3</item>"
+msgstr "-3"
+
+#: 04060104.xhp#par_id3153034.12.help.text
+msgctxt "04060104.xhp#par_id3153034.12.help.text"
+msgid "<emph>4</emph>"
+msgstr "<emph>4</emph>"
+
+#: 04060104.xhp#par_id3150139.13.help.text
+msgid "<item type=\"input\">-2</item>"
+msgstr "-2"
+
+#: 04060104.xhp#par_id3149542.14.help.text
+msgctxt "04060104.xhp#par_id3149542.14.help.text"
+msgid "<item type=\"input\">0</item>"
+msgstr "0"
+
+#: 04060104.xhp#par_id3149188.15.help.text
+msgctxt "04060104.xhp#par_id3149188.15.help.text"
+msgid "<emph>5</emph>"
+msgstr "<emph>5</emph>"
+
+#: 04060104.xhp#par_id3153329.16.help.text
+msgid "<item type=\"input\">-1</item>"
+msgstr "-1"
+
+#: 04060104.xhp#par_id3155257.17.help.text
+msgctxt "04060104.xhp#par_id3155257.17.help.text"
+msgid "<item type=\"input\">1</item>"
+msgstr "1"
+
+#: 04060104.xhp#par_id3145142.18.help.text
+msgctxt "04060104.xhp#par_id3145142.18.help.text"
+msgid "<emph>6</emph>"
+msgstr "<emph>6</emph>"
+
+#: 04060104.xhp#par_id3149956.19.help.text
+msgctxt "04060104.xhp#par_id3149956.19.help.text"
+msgid "<item type=\"input\">0</item>"
+msgstr "0"
+
+#: 04060104.xhp#par_id3145594.20.help.text
+msgctxt "04060104.xhp#par_id3145594.20.help.text"
+msgid "<item type=\"input\">3</item>"
+msgstr "3"
+
+#: 04060104.xhp#par_id3153113.21.help.text
+msgctxt "04060104.xhp#par_id3153113.21.help.text"
+msgid "<emph>7</emph>"
+msgstr "<emph>7</emph>"
+
+#: 04060104.xhp#par_id3148573.22.help.text
+msgctxt "04060104.xhp#par_id3148573.22.help.text"
+msgid "<item type=\"input\">2</item>"
+msgstr "2"
+
+#: 04060104.xhp#par_id3145166.23.help.text
+msgctxt "04060104.xhp#par_id3145166.23.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "4"
+
+#: 04060104.xhp#par_id3157998.24.help.text
+msgctxt "04060104.xhp#par_id3157998.24.help.text"
+msgid "<emph>8</emph>"
+msgstr "<emph>8</emph>"
+
+#: 04060104.xhp#par_id3150018.25.help.text
+msgctxt "04060104.xhp#par_id3150018.25.help.text"
+msgid "<item type=\"input\">4</item>"
+msgstr "4"
+
+#: 04060104.xhp#par_id3150129.26.help.text
+msgctxt "04060104.xhp#par_id3150129.26.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr "6"
+
+#: 04060104.xhp#par_id3145245.27.help.text
+msgctxt "04060104.xhp#par_id3145245.27.help.text"
+msgid "<emph>9</emph>"
+msgstr "<emph>9</emph>"
+
+#: 04060104.xhp#par_id3148389.28.help.text
+msgctxt "04060104.xhp#par_id3148389.28.help.text"
+msgid "<item type=\"input\">6</item>"
+msgstr "6"
+
+#: 04060104.xhp#par_id3156068.29.help.text
+msgctxt "04060104.xhp#par_id3156068.29.help.text"
+msgid "<item type=\"input\">8</item>"
+msgstr "8"
+
+#: 04060104.xhp#bm_id3691824.help.text
+msgid "<bookmark_value>INFO function</bookmark_value>"
+msgstr "<bookmark_value>INFO функција</bookmark_value>"
+
+#: 04060104.xhp#hd_id5787224.help.text
+msgid "INFO"
+msgstr "INFO"
+
+#: 04060104.xhp#par_id1507309.help.text
+msgid "Returns specific information about the current working environment. The function receives a single text argument and returns data depending on that parameter."
+msgstr "Returns specific information about the current working environment. The function receives a single text argument and returns data depending on that parameter."
+
+#: 04060104.xhp#hd_id7693411.help.text
+msgctxt "04060104.xhp#hd_id7693411.help.text"
+msgid "Syntax"
+msgstr "Синтакса"
+
+#: 04060104.xhp#par_id3928952.help.text
+msgid "INFO(\"Type\")"
+msgstr "INFO(type)"
+
+#: 04060104.xhp#par_id5206762.help.text
+msgid "The following table lists the values for the text parameter <item type=\"literal\">Type</item> and the return values of the INFO function."
+msgstr ""
+
+#: 04060104.xhp#par_id5735953.help.text
+msgid "Value for \"Type\""
+msgstr "Value for \"type\""
+
+#: 04060104.xhp#par_id8360850.help.text
+#, fuzzy
+msgctxt "04060104.xhp#par_id8360850.help.text"
+msgid "Return value"
+msgstr "Повратна вредност"
+
+#: 04060104.xhp#par_id9648731.help.text
+msgid "\"osversion\""
+msgstr "\"osversion\""
+
+#: 04060104.xhp#par_id908841.help.text
+msgid "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
+msgstr "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
+
+#: 04060104.xhp#par_id8193914.help.text
+msgid "\"system\""
+msgstr "\"system\""
+
+#: 04060104.xhp#par_id9841608.help.text
+msgid "The type of the operating system. <br/>\"WNT\" for Microsoft Windows <br/>\"LINUX\" for Linux <br/>\"SOLARIS\" for Solaris"
+msgstr "The type of the operating system. <br/>\"WNT\" for Microsoft Windows <br/>\"LINUX\" for Linux <br/>\"SOLARIS\" for Solaris"
+
+#: 04060104.xhp#par_id2701803.help.text
+msgid "\"release\""
+msgstr "\"release\""
+
+#: 04060104.xhp#par_id2136295.help.text
+msgid "The product release identifier, for example \"300m25(Build:9876)\""
+msgstr ""
+
+#: 04060104.xhp#par_id9200109.help.text
+msgid "\"numfile\""
+msgstr "\"numfile\""
+
+#: 04060104.xhp#par_id4186223.help.text
+msgid "Always 1, for compatibility reasons"
+msgstr "Always 1, for compatibility reasons"
+
+#: 04060104.xhp#par_id5766472.help.text
+msgid "\"recalc\""
+msgstr "\"recalc\""
+
+#: 04060104.xhp#par_id1491134.help.text
+msgid "Current formula recalculation mode, either \"Automatic\" or \"Manual\" (localized into %PRODUCTNAME language)"
+msgstr "Current formula recalculation mode, either \"Automatic\" or \"Manual\" (localized into %PRODUCTNAME language)"
+
+#: 04060104.xhp#par_id1161534.help.text
+msgid "Other spreadsheet applications may accept localized values for the <item type=\"literal\">Type</item> parameter, but %PRODUCTNAME Calc will only accept the English values."
+msgstr "Other spreadsheet applications may accept localized values for the \"type\" parameter, but %PRODUCTNAME Calc will only accept the English values."
+
+#: 04060104.xhp#hd_id5459456.help.text
+msgctxt "04060104.xhp#hd_id5459456.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3994567.help.text
+msgid "<item type=\"input\">=INFO(\"release\")</item> returns the product release number of the %PRODUCTNAME in use."
+msgstr "=INFO(\"release\") returns the product release number of the %PRODUCTNAME in use."
+
+#: 04060104.xhp#par_id2873622.help.text
+msgid "<item type=\"input\">=INFO(D5)</item> with cell <item type=\"literal\">D5</item> containing a text string <item type=\"literal\">system</item> returns the operation system type."
+msgstr ""
+
+#: 04060104.xhp#bm_id3155625.help.text
+msgid "<bookmark_value>CURRENT function</bookmark_value>"
+msgstr "<bookmark_value>CURRENT function</bookmark_value>"
+
+#: 04060104.xhp#hd_id3155625.30.help.text
+msgid "CURRENT"
+msgstr "CURRENT"
+
+#: 04060104.xhp#par_id3157975.31.help.text
+msgid "<ahelp hid=\"HID_FUNC_AKTUELL\">This function returns the result to date of evaluating the formula of which it is a part (in other words the result as far as that evaluation has got). Its main use is together with the STYLE() function to apply selected styles to a cell depending on the cell contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_AKTUELL\">Calculates the current value of a formula at the actual position.</ahelp>"
+
+#: 04060104.xhp#hd_id3148880.32.help.text
+msgctxt "04060104.xhp#hd_id3148880.32.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3150930.33.help.text
+msgid "CURRENT()"
+msgstr "CURRENT()"
+
+#: 04060104.xhp#hd_id3145629.34.help.text
+msgctxt "04060104.xhp#hd_id3145629.34.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id5919064.help.text
+msgid "<item type=\"input\">=1+2+CURRENT()</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id8751792.help.text
+msgid "The example returns 6. The formula is calculated from left to right as: 1 + 2 equals 3, giving the result to date when CURRENT() is encountered; CURRENT() therefore yields 3, which is added to the original 3 to give 6."
+msgstr ""
+
+#: 04060104.xhp#par_id5863826.help.text
+msgid "<item type=\"input\">=A2+B2+STYLE(IF(CURRENT()>10;”Red”;”Default”))</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id7463911.help.text
+msgid "The example returns A2 + B2 (STYLE returns 0 here). If this sum is greater than 10, the style Red is applied to the cell. See the <emph>STYLE</emph> function for more explanation."
+msgstr ""
+
+#: 04060104.xhp#par_id7318643.help.text
+msgid "<item type=\"input\">=\"choo\"&CURRENT()</item>"
+msgstr ""
+
+#: 04060104.xhp#par_id6019165.help.text
+msgid "The example returns choochoo."
+msgstr ""
+
+#: 04060104.xhp#bm_id3150688.help.text
+msgid "<bookmark_value>FORMULA function</bookmark_value><bookmark_value>formula cells;displaying formulas in other cells</bookmark_value><bookmark_value>displaying;formulas at any position</bookmark_value>"
+msgstr "<bookmark_value>FORMULA function</bookmark_value><bookmark_value>formula cells;displaying formulas in other cells</bookmark_value><bookmark_value>displaying;formulas at any position</bookmark_value>"
+
+#: 04060104.xhp#hd_id3150688.147.help.text
+msgid "FORMULA"
+msgstr "FORMULA"
+
+#: 04060104.xhp#par_id3158417.148.help.text
+msgid "<ahelp hid=\"HID_FUNC_FORMEL\">Displays the formula of a formula cell as a text string.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FORMEL\">Ја прикажува формулата на ќелијата со формула како текстуелна низа.</ahelp>"
+
+#: 04060104.xhp#hd_id3154954.149.help.text
+msgctxt "04060104.xhp#hd_id3154954.149.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3147535.150.help.text
+msgid "FORMULA(Reference)"
+msgstr "FORMULA(reference)"
+
+#: 04060104.xhp#par_id3014313.help.text
+msgid "<emph>Reference</emph> is a reference to a cell containing a formula."
+msgstr ""
+
+#: 04060104.xhp#par_id8857081.help.text
+msgid "An invalid reference or a reference to a cell with no formula results in the error value #N/A."
+msgstr ""
+
+#: 04060104.xhp#hd_id3152820.151.help.text
+msgctxt "04060104.xhp#hd_id3152820.151.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3153179.152.help.text
+msgid "If cell A8 contains the formula <item type=\"input\">=SUM(1;2;3)</item> then"
+msgstr "The cell A8 contains the result of a formula having the value 23. You can now use the <emph>Formula</emph> function in cell A1 to display the formula in cell A8."
+
+#: 04060104.xhp#par_id3153923.153.help.text
+msgid "<item type=\"input\">=FORMULA(A8)</item> returns the text =SUM(1;2;3)."
+msgstr "=FORMULA(A8)"
+
+#: 04060104.xhp#bm_id3155409.help.text
+msgid "<bookmark_value>ISREF function</bookmark_value><bookmark_value>references;testing cell contents</bookmark_value><bookmark_value>cell contents;testing for references</bookmark_value>"
+msgstr "<bookmark_value>ISREF function</bookmark_value><bookmark_value>references;testing cell contents</bookmark_value><bookmark_value>cell contents;testing for references</bookmark_value>"
+
+#: 04060104.xhp#hd_id3155409.37.help.text
+msgid "ISREF"
+msgstr "ISREF"
+
+#: 04060104.xhp#par_id3153723.38.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Tests if the argument is a reference.</ahelp> Returns TRUE if the argument is a reference, returns FALSE otherwise. When given a reference this function does not examine the value being referenced."
+msgstr "<ahelp hid=\"HID_FUNC_ISTBEZUG\">Tests if the content of one or several cells is a reference.</ahelp> Verifies the type of references in a cell or a range of cells."
+
+#: 04060104.xhp#hd_id3147175.39.help.text
+msgctxt "04060104.xhp#hd_id3147175.39.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3149821.40.help.text
+msgid "ISREF(Value)"
+msgstr "ISREF(value)"
+
+#: 04060104.xhp#par_id3146152.41.help.text
+msgid "<emph>Value</emph> is the value to be tested, to determine whether it is a reference."
+msgstr "<emph>Value</emph> is the value to be tested, to determine whether it is a reference."
+
+#: 04060104.xhp#hd_id3083448.42.help.text
+msgctxt "04060104.xhp#hd_id3083448.42.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3154317.43.help.text
+msgid "<item type=\"input\">=ISREF(C5)</item> returns the result TRUE because C5 is a valid reference."
+msgstr "ISREF(C5) returns the result TRUE"
+
+#: 04060104.xhp#par_id9728072.help.text
+msgid "<item type=\"input\">=ISREF(\"abcdef\")</item> returns always FALSE because a text can never be a reference."
+msgstr ""
+
+#: 04060104.xhp#par_id2131544.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISREF(4)</item> returns FALSE."
+msgstr "If you enter the value 642, TRUE will be returned as the result."
+
+#: 04060104.xhp#par_id4295480.help.text
+msgid "<item type=\"input\">=ISREF(INDIRECT(\"A6\"))</item> returns TRUE, because INDIRECT is a function that returns a reference."
+msgstr ""
+
+#: 04060104.xhp#par_id3626819.help.text
+msgid "<item type=\"input\">=ISREF(ADDRESS(1; 1; 2;\"Sheet2\"))</item> returns FALSE, because ADDRESS is a function that returns a text, although it looks like a reference."
+msgstr ""
+
+#: 04060104.xhp#bm_id3154812.help.text
+msgid "<bookmark_value>ISERR function</bookmark_value><bookmark_value>error codes;controlling</bookmark_value>"
+msgstr "<bookmark_value>ISERR function</bookmark_value><bookmark_value>error codes;controlling</bookmark_value>"
+
+#: 04060104.xhp#hd_id3154812.45.help.text
+msgid "ISERR"
+msgstr "ISERR"
+
+#: 04060104.xhp#par_id3149282.46.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTFEHL\">Tests for error conditions, except the #N/A error value, and returns TRUE or FALSE.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTFEHL\">Returns TRUE if the value refers to any error value except #N/A. </ahelp> You can use this function to control error values in certain cells."
+
+#: 04060104.xhp#hd_id3149450.47.help.text
+msgctxt "04060104.xhp#hd_id3149450.47.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3156312.48.help.text
+msgid "ISERR(Value)"
+msgstr "ISERR(value)"
+
+#: 04060104.xhp#par_id3146857.49.help.text
+msgid "<emph>Value</emph> is any value or expression which is tested to see whether an error value other than #N/A is present."
+msgstr "<emph>Value</emph> is any value or expression in which a test is performed to determine whether an error value not equal to #N/A is present."
+
+#: 04060104.xhp#hd_id3153212.50.help.text
+msgctxt "04060104.xhp#hd_id3153212.50.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3153276.51.help.text
+msgid "<item type=\"input\">=ISERR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
+msgstr "ISERR(C5) returns FALSE."
+
+#: 04060104.xhp#par_id8456984.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISERR(C9)</item> where cell C9 contains <item type=\"input\">=NA()</item> returns FALSE, because ISERR() ignores the #N/A error."
+msgstr "ISERR(C5) returns FALSE."
+
+#: 04060104.xhp#bm_id3147081.help.text
+msgid "<bookmark_value>ISERROR function</bookmark_value><bookmark_value>recognizing;general errors</bookmark_value>"
+msgstr "<bookmark_value>ISERROR function</bookmark_value><bookmark_value>recognizing;general errors</bookmark_value>"
+
+#: 04060104.xhp#hd_id3147081.53.help.text
+msgid "ISERROR"
+msgstr "ISERROR"
+
+#: 04060104.xhp#par_id3156316.54.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTFEHLER\">Tests for error conditions, including the #N/A error value, and returns TRUE or FALSE.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTFEHLER\">The ISERROR tests if the cells contain general error values. ISERROR recognizes the #N/A error value.</ahelp>"
+
+#: 04060104.xhp#hd_id3147569.55.help.text
+msgctxt "04060104.xhp#hd_id3147569.55.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3153155.56.help.text
+msgid "ISERROR(Value)"
+msgstr "ISERROR(value)"
+
+#: 04060104.xhp#par_id3154047.57.help.text
+msgid "<emph>Value</emph> is or refers to the value to be tested. ISERROR() returns TRUE if there is an error and FALSE if not."
+msgstr "<emph>Value</emph> is any value where a test is performed to determine whether it is an error value."
+
+#: 04060104.xhp#hd_id3155994.58.help.text
+msgctxt "04060104.xhp#hd_id3155994.58.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3150256.59.help.text
+msgid "<item type=\"input\">=ISERROR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
+msgstr "ISERROR(C8) returns FALSE."
+
+#: 04060104.xhp#par_id1889095.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISERROR(C9)</item> where cell C9 contains <item type=\"input\">=NA()</item> returns TRUE."
+msgstr "ISERROR(C8) returns FALSE."
+
+#: 04060104.xhp#bm_id3153618.help.text
+msgid "<bookmark_value>ISFORMULA function</bookmark_value><bookmark_value>recognizing formula cells</bookmark_value><bookmark_value>formula cells;recognizing</bookmark_value>"
+msgstr "<bookmark_value>ISFORMULA function</bookmark_value><bookmark_value>recognizing formula cells</bookmark_value><bookmark_value>formula cells;recognizing</bookmark_value>"
+
+#: 04060104.xhp#hd_id3153618.61.help.text
+msgid "ISFORMULA"
+msgstr "ISFORMULA"
+
+#: 04060104.xhp#par_id3149138.62.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTFORMEL\">Returns TRUE if a cell is a formula cell.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTFORMEL\">Returns TRUE if a cell is a formula cell.</ahelp>"
+
+#: 04060104.xhp#hd_id3155100.63.help.text
+msgctxt "04060104.xhp#hd_id3155100.63.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3143230.64.help.text
+msgid "ISFORMULA(Reference)"
+msgstr "ISFORMULA(reference)"
+
+#: 04060104.xhp#par_id3150150.65.help.text
+msgid "<emph>Reference</emph> indicates the reference to a cell in which a test will be performed to determine if it contains a formula."
+msgstr "<emph>Reference</emph> indicates the reference to a cell in which a test will be performed to determine if it contains a formula."
+
+#: 04060104.xhp#hd_id3147491.66.help.text
+msgctxt "04060104.xhp#hd_id3147491.66.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3159182.67.help.text
+msgid "<item type=\"input\">=ISFORMULA(C4)</item> returns FALSE if the cell C4 contains the number <item type=\"input\">5</item>."
+msgstr "ISFORMULA(C4) returns FALSE as a result."
+
+#: 04060104.xhp#bm_id3149760.help.text
+msgid "<bookmark_value>ISEVEN_ADD function</bookmark_value>"
+msgstr "<bookmark_value>ISEVEN_ADD function</bookmark_value>"
+
+#: 04060104.xhp#hd_id3149760.229.help.text
+msgid "ISEVEN_ADD"
+msgstr "ISEVEN_ADD"
+
+#: 04060104.xhp#par_id3147253.230.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ISEVEN\">Tests for even numbers. Returns 1 if the number divided by 2 returns a whole number.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ISEVEN\">Tests for even numbers. Returns TRUE (1) if the number returns a whole number when divided by 2.</ahelp>"
+
+#: 04060104.xhp#hd_id3152799.231.help.text
+msgctxt "04060104.xhp#hd_id3152799.231.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3149202.232.help.text
+msgid "ISEVEN_ADD(Number)"
+msgstr "ISEVEN_ADD(Number)"
+
+#: 04060104.xhp#par_id3151168.233.help.text
+msgctxt "04060104.xhp#par_id3151168.233.help.text"
+msgid "<emph>Number</emph> is the number to be tested."
+msgstr "Number: the number to be tested."
+
+#: 04060104.xhp#hd_id3150115.234.help.text
+msgctxt "04060104.xhp#hd_id3150115.234.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3153904.235.help.text
+msgid "<item type=\"input\">=ISEVEN_ADD(5)</item> returns 0."
+msgstr "=ISEVEN_ADD(5) returns 0."
+
+#: 04060104.xhp#par_id6238308.help.text
+#, fuzzy
+msgid "<item type=\"input\">=ISEVEN_ADD(A1)</item> returns 1 if cell A1 contains the number <item type=\"input\">2</item>."
+msgstr "ISNONTEXT(D9) returns TRUE."
+
+#: 04060104.xhp#bm_id3154692.help.text
+msgid "<bookmark_value>ISNONTEXT function</bookmark_value><bookmark_value>cell contents;no text</bookmark_value>"
+msgstr "<bookmark_value>ISNONTEXT function</bookmark_value><bookmark_value>cell contents;no text</bookmark_value>"
+
+#: 04060104.xhp#hd_id3154692.68.help.text
+msgid "ISNONTEXT"
+msgstr "ISNONTEXT"
+
+#: 04060104.xhp#par_id3155330.69.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTKTEXT\">Tests if the cell contents are text or numbers, and returns FALSE if the contents are text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTKTEXT\">Tests if the cell contents are text or numbers, and returns FALSE if the contents are text.</ahelp>"
+
+#: 04060104.xhp#par_id5719779.help.text
+msgid "If an error occurs, the function returns TRUE."
+msgstr ""
+
+#: 04060104.xhp#hd_id3154931.70.help.text
+msgctxt "04060104.xhp#hd_id3154931.70.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3148829.71.help.text
+msgid "ISNONTEXT(Value)"
+msgstr "ISNONTEXT(value)"
+
+#: 04060104.xhp#par_id3146992.72.help.text
+msgid "<emph>Value</emph> is any value or expression where a test is performed to determine whether it is a text or numbers or a Boolean value."
+msgstr "<emph>Value</emph> is any value or expression where a test is performed to determine whether it is a text or numbers or a Boolean value."
+
+#: 04060104.xhp#hd_id3150525.73.help.text
+msgctxt "04060104.xhp#hd_id3150525.73.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3149906.74.help.text
+msgid "<item type=\"input\">=ISNONTEXT(D2)</item> returns FALSE if cell D2 contains the text <item type=\"input\">abcdef</item>."
+msgstr "ISNONTEXT(D2) returns FALSE."
+
+#: 04060104.xhp#par_id3150777.75.help.text
+msgid "<item type=\"input\">=ISNONTEXT(D9)</item> returns TRUE if cell D9 contains the number <item type=\"input\">8</item>."
+msgstr "ISNONTEXT(D9) returns TRUE."
+
+#: 04060104.xhp#bm_id3159148.help.text
+msgid "<bookmark_value>ISBLANK function</bookmark_value><bookmark_value>blank cell contents</bookmark_value><bookmark_value>empty cells; recognizing</bookmark_value>"
+msgstr "<bookmark_value>ISBLANK function</bookmark_value><bookmark_value>blank cell contents</bookmark_value><bookmark_value>empty cells; recognizing</bookmark_value>"
+
+#: 04060104.xhp#hd_id3159148.77.help.text
+msgid "ISBLANK"
+msgstr "ISBLANK"
+
+#: 04060104.xhp#par_id3148800.78.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTLEER\">Returns TRUE if the reference to a cell is blank.</ahelp> This function is used to determine if the content of a cell is empty. A cell with a formula inside is not empty. "
+msgstr "<ahelp hid=\"HID_FUNC_ISTLEER\">Returns TRUE if the reference to a cell is blank.</ahelp> This function is used to determine if the content of a cell is empty. A cell with a formula inside is not empty. "
+
+#: 04060104.xhp#hd_id3159162.79.help.text
+msgctxt "04060104.xhp#hd_id3159162.79.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3158406.80.help.text
+msgid "ISBLANK(Value)"
+msgstr "ISBLANK(value)"
+
+#: 04060104.xhp#par_id3154212.81.help.text
+msgid "<emph>Value</emph> is the content to be tested."
+msgstr "<emph>Value</emph> is the content to be tested."
+
+#: 04060104.xhp#hd_id3147508.82.help.text
+msgctxt "04060104.xhp#hd_id3147508.82.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3147234.83.help.text
+msgid "<item type=\"input\">=ISBLANK(D2)</item> returns FALSE as a result."
+msgstr "ISBLANK(D2) returns FALSE as a result."
+
+#: 04060104.xhp#bm_id3155356.help.text
+msgid "<bookmark_value>ISLOGICAL function</bookmark_value><bookmark_value>number formats;logical</bookmark_value><bookmark_value>logical number formats</bookmark_value>"
+msgstr "<bookmark_value>ISLOGICAL function</bookmark_value><bookmark_value>number formats;logical</bookmark_value><bookmark_value>logical number formats</bookmark_value>"
+
+#: 04060104.xhp#hd_id3155356.85.help.text
+msgid "ISLOGICAL"
+msgstr "ISLOGICAL"
+
+#: 04060104.xhp#par_id3148926.86.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTLOG\">Tests for a logical value (TRUE or FALSE).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTLOG\">Returns TRUE if the cell contains a logical number format.</ahelp> The function is used in order to check for both TRUE and FALSE values in certain cells."
+
+#: 04060104.xhp#par_id3541062.help.text
+msgctxt "04060104.xhp#par_id3541062.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#: 04060104.xhp#hd_id3149162.87.help.text
+msgctxt "04060104.xhp#hd_id3149162.87.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3148918.88.help.text
+msgid "ISLOGICAL(Value)"
+msgstr "ISLOGICAL(value)"
+
+#: 04060104.xhp#par_id3146946.89.help.text
+msgid "Returns TRUE if <emph>Value</emph> is a logical value (TRUE or FALSE), and returns FALSE otherwise."
+msgstr "<emph>Value</emph> is the value to be tested for logical number format."
+
+#: 04060104.xhp#hd_id3150709.90.help.text
+msgctxt "04060104.xhp#hd_id3150709.90.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3166442.91.help.text
+msgid "<item type=\"input\">=ISLOGICAL(99)</item> returns FALSE, because 99 is a number, not a logical value."
+msgstr "ISLOGICAL(D5) returns FALSE as a result."
+
+#: 04060104.xhp#par_id3556016.help.text
+msgid "<item type=\"input\">=ISLOGICAL(ISNA(D4))</item> returns TRUE whatever the contents of cell D4, because ISNA() returns a logical value."
+msgstr ""
+
+#: 04060104.xhp#bm_id3153685.help.text
+msgid "<bookmark_value>ISNA function</bookmark_value><bookmark_value>#N/A error;recognizing</bookmark_value>"
+msgstr "<bookmark_value>ISNA function</bookmark_value><bookmark_value>#N/A error;recognizing</bookmark_value>"
+
+#: 04060104.xhp#hd_id3153685.93.help.text
+msgid "ISNA"
+msgstr "ISNA"
+
+#: 04060104.xhp#par_id3149105.94.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTNV\">Returns TRUE if a cell contains the #N/A (value not available) error value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTNV\">Returns TRUE if a cell contains the #N/A (value not available) error value.</ahelp>"
+
+#: 04060104.xhp#par_id6018860.help.text
+msgctxt "04060104.xhp#par_id6018860.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#: 04060104.xhp#hd_id3152947.95.help.text
+msgctxt "04060104.xhp#hd_id3152947.95.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3153748.96.help.text
+msgid "ISNA(Value)"
+msgstr "ISNA(value)"
+
+#: 04060104.xhp#par_id3152884.97.help.text
+msgid "<emph>Value</emph> is the value or expression to be tested."
+msgstr "<emph>Value</emph> is the value or expression to be tested."
+
+#: 04060104.xhp#hd_id3149964.98.help.text
+msgctxt "04060104.xhp#hd_id3149964.98.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3154852.99.help.text
+msgid "<item type=\"input\">=ISNA(D3)</item> returns FALSE as a result."
+msgstr "ISNA(D3) returns FALSE as a result."
+
+#: 04060104.xhp#bm_id3149426.help.text
+msgid "<bookmark_value>ISTEXT function</bookmark_value><bookmark_value>cell contents;text</bookmark_value>"
+msgstr "<bookmark_value>ISTEXT function</bookmark_value><bookmark_value>cell contents;text</bookmark_value>"
+
+#: 04060104.xhp#hd_id3149426.101.help.text
+msgid "ISTEXT"
+msgstr "ISTEXT"
+
+#: 04060104.xhp#par_id3145368.102.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTTEXT\">Returns TRUE if the cell contents refer to text.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTTEXT\">Returns TRUE if the cell contents refer to text.</ahelp>"
+
+#: 04060104.xhp#par_id6779686.help.text
+msgctxt "04060104.xhp#par_id6779686.help.text"
+msgid "If an error occurs, the function returns FALSE."
+msgstr ""
+
+#: 04060104.xhp#hd_id3154332.103.help.text
+msgctxt "04060104.xhp#hd_id3154332.103.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3148649.104.help.text
+msgid "ISTEXT(Value)"
+msgstr "ISTEXT(value)"
+
+#: 04060104.xhp#par_id3150417.105.help.text
+msgid "<emph>Value</emph> is a value, number, Boolean value, or an error value to be tested."
+msgstr "<emph>Value</emph> is a value, number, Boolean value, or an error value to be tested."
+
+#: 04060104.xhp#hd_id3149239.106.help.text
+msgctxt "04060104.xhp#hd_id3149239.106.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3144756.107.help.text
+msgid "<item type=\"input\">=ISTEXT(D9)</item> returns TRUE if cell D9 contains the text <item type=\"input\">abcdef</item>."
+msgstr "ISTEXT(D9) returns the result TRUE."
+
+#: 04060104.xhp#par_id3148416.108.help.text
+msgid "<item type=\"input\">=ISTEXT(C3)</item> returns FALSE if cell C3 contains the number <item type=\"input\">3</item>."
+msgstr "ISTEXT(C3) returns FALSE as a result."
+
+#: 04060104.xhp#bm_id3153939.help.text
+msgid "<bookmark_value>ISODD_ADD function</bookmark_value>"
+msgstr "<bookmark_value>ISODD_ADD function</bookmark_value>"
+
+#: 04060104.xhp#hd_id3153939.236.help.text
+msgid "ISODD_ADD"
+msgstr "ISODD_ADD"
+
+#: 04060104.xhp#par_id3153538.237.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ISODD\">Returns TRUE (1) if the number does not return a whole number when divided by 2.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ISODD\">Returns TRUE (1) if the number does not return a whole number when divided by 2.</ahelp>"
+
+#: 04060104.xhp#hd_id3145601.238.help.text
+msgctxt "04060104.xhp#hd_id3145601.238.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3149485.239.help.text
+msgid "ISODD_ADD(Number)"
+msgstr "ISODD_ADD(Number)"
+
+#: 04060104.xhp#par_id3153315.240.help.text
+msgctxt "04060104.xhp#par_id3153315.240.help.text"
+msgid "<emph>Number</emph> is the number to be tested."
+msgstr "Number: the number to be tested."
+
+#: 04060104.xhp#hd_id3143274.241.help.text
+msgctxt "04060104.xhp#hd_id3143274.241.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3154793.242.help.text
+msgid "<item type=\"input\">=ISODD_ADD(5)</item> returns 1."
+msgstr "=ISODD_ADD(5) returns 1."
+
+#: 04060104.xhp#bm_id3148688.help.text
+msgid "<bookmark_value>ISNUMBER function</bookmark_value><bookmark_value>cell contents;numbers</bookmark_value>"
+msgstr "<bookmark_value>ISNUMBER function</bookmark_value><bookmark_value>cell contents;numbers</bookmark_value>"
+
+#: 04060104.xhp#hd_id3148688.110.help.text
+msgid "ISNUMBER"
+msgstr "ISNUMBER"
+
+#: 04060104.xhp#par_id3154618.111.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISTZAHL\">Returns TRUE if the value refers to a number.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISTZAHL\">Returns TRUE if the value refers to a number.</ahelp>"
+
+#: 04060104.xhp#hd_id3152769.112.help.text
+msgctxt "04060104.xhp#hd_id3152769.112.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3150595.113.help.text
+msgid "ISNUMBER(Value)"
+msgstr "ISNUMBER(value)"
+
+#: 04060104.xhp#par_id3150351.114.help.text
+msgid "<emph>Value</emph> is any expression to be tested to determine whether it is a number or text."
+msgstr "<emph>Value</emph> is any expression to be tested to determine whether it is a number or text."
+
+#: 04060104.xhp#hd_id3146793.115.help.text
+msgctxt "04060104.xhp#hd_id3146793.115.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3155614.116.help.text
+msgid "<item type=\"input\">=ISNUMBER(C3)</item> returns TRUE if the cell C3 contains the number <item type=\"input\">4</item>."
+msgstr "ISNUMBER(C3) returns the result TRUE."
+
+#: 04060104.xhp#par_id3154417.117.help.text
+msgid "<item type=\"input\">=ISNUMBER(C2)</item> returns FALSE if the cell C2 contains the text <item type=\"input\">abcdef</item>."
+msgstr "ISNUMBER(C2) returns FALSE as a result."
+
+#: 04060104.xhp#bm_id3153694.help.text
+msgid "<bookmark_value>N function</bookmark_value>"
+msgstr "<bookmark_value>N function</bookmark_value>"
+
+#: 04060104.xhp#hd_id3153694.119.help.text
+msgid "N"
+msgstr "N"
+
+#: 04060104.xhp#par_id3150405.120.help.text
+msgid "<ahelp hid=\"HID_FUNC_N\">Returns the numeric value of the given parameter. Returns 0 if parameter is text or FALSE.</ahelp>"
+msgstr ""
+
+#: 04060104.xhp#par_id9115573.help.text
+msgid "If an error occurs the function returns the error value."
+msgstr ""
+
+#: 04060104.xhp#hd_id3145774.121.help.text
+msgctxt "04060104.xhp#hd_id3145774.121.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3153883.122.help.text
+msgid "N(Value)"
+msgstr "N(value)"
+
+#: 04060104.xhp#par_id3151101.123.help.text
+msgid "<emph>Value</emph> is the parameter to be converted into a number. N() returns the numeric value if it can. It returns the logical values TRUE and FALSE as 1 and 0 respectively. It returns text as 0."
+msgstr ""
+
+#: 04060104.xhp#hd_id3147097.124.help.text
+msgctxt "04060104.xhp#hd_id3147097.124.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3154117.125.help.text
+msgid "<item type=\"input\">=N(123)</item> returns 123"
+msgstr "N(TRUE) returns 1"
+
+#: 04060104.xhp#par_id2337717.help.text
+#, fuzzy
+msgid "<item type=\"input\">=N(TRUE)</item> returns 1"
+msgstr "N(FALSE) returns 0"
+
+#: 04060104.xhp#par_id3153781.126.help.text
+msgid "<item type=\"input\">=N(FALSE)</item> returns 0"
+msgstr "N(FALSE) returns 0"
+
+#: 04060104.xhp#par_id3154670.243.help.text
+msgid "<item type=\"input\">=N(\"abc\")</item> returns 0"
+msgstr "N(\"abc\") returns 0"
+
+#: 04060104.xhp#par_id3519089.help.text
+msgid "=N(1/0) returns #DIV/0!"
+msgstr ""
+
+#: 04060104.xhp#bm_id3156275.help.text
+msgid "<bookmark_value>NA function</bookmark_value><bookmark_value>#N/A error;assigning to a cell</bookmark_value>"
+msgstr "<bookmark_value>NA function</bookmark_value><bookmark_value>#N/A error;assigning to a cell</bookmark_value>"
+
+#: 04060104.xhp#hd_id3156275.129.help.text
+msgid "NA"
+msgstr "NA"
+
+#: 04060104.xhp#par_id3156161.130.help.text
+msgid "<ahelp hid=\"HID_FUNC_NV\">Returns the error value #N/A.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NV\">Returns the error value #N/A.</ahelp>"
+
+#: 04060104.xhp#hd_id3147532.131.help.text
+msgctxt "04060104.xhp#hd_id3147532.131.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3149563.132.help.text
+msgid "NA()"
+msgstr "NA()"
+
+#: 04060104.xhp#hd_id3155128.133.help.text
+msgctxt "04060104.xhp#hd_id3155128.133.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060104.xhp#par_id3154481.134.help.text
+msgid "<item type=\"input\">=NA()</item> converts the contents of the cell into #N/A."
+msgstr "NA() converts the contents of the cell into #N/A."
+
+#: 04060104.xhp#bm_id3151255.help.text
+msgid "<bookmark_value>TYPE function</bookmark_value>"
+msgstr "<bookmark_value>TYPE function</bookmark_value>"
+
+#: 04060104.xhp#hd_id3151255.136.help.text
+msgctxt "04060104.xhp#hd_id3151255.136.help.text"
+msgid "TYPE"
+msgstr "TYPE"
+
+#: 04060104.xhp#par_id3155900.137.help.text
+msgid "<ahelp hid=\"HID_FUNC_TYP\">Returns the type of value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TYP\">Returns the type of value.</ahelp>"
+
+#: 04060104.xhp#hd_id3149992.138.help.text
+msgctxt "04060104.xhp#hd_id3149992.138.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3148400.139.help.text
+msgid "TYPE(Value)"
+msgstr "TYPE(value)"
+
+#: 04060104.xhp#par_id3150830.140.help.text
+msgid "<emph>Value</emph> is a specific value for which the data type is determined. Value 1 = number, value 2 = text, value 4 = Boolean value, value 8 = formula, value 16 = error value."
+msgstr "<emph>Value</emph> is a specific value for which the data type is determined. Value 1 = number, value 2 = text, value 4 = Boolean value, value 8 = formula, value 16 = error value."
+
+#: 04060104.xhp#hd_id3154363.141.help.text
+msgid "Example (see example table above)"
+msgstr "Example (see example table above)"
+
+#: 04060104.xhp#par_id3153357.142.help.text
+msgid "<item type=\"input\">=TYPE(C2)</item> returns 2 as a result."
+msgstr "TYPE(C2) returns 2 as a result."
+
+#: 04060104.xhp#par_id3148980.143.help.text
+msgid "<item type=\"input\">=TYPE(D9)</item> returns 1 as a result."
+msgstr "TYPE(D9) returns 1 as a result."
+
+#: 04060104.xhp#bm_id3155509.help.text
+msgid "<bookmark_value>CELL function</bookmark_value><bookmark_value>cell information</bookmark_value><bookmark_value>information on cells</bookmark_value>"
+msgstr "<bookmark_value>CELL function</bookmark_value><bookmark_value>cell information</bookmark_value><bookmark_value>information on cells</bookmark_value>"
+
+#: 04060104.xhp#hd_id3155509.154.help.text
+msgid "CELL"
+msgstr "CELL"
+
+#: 04060104.xhp#par_id3153196.155.help.text
+msgid "<ahelp hid=\"HID_FUNC_ZELLE\">Returns information on address, formatting or contents of a cell.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ZELLE\">Returns information on address, formatting or contents of a cell.</ahelp>"
+
+#: 04060104.xhp#hd_id3149323.156.help.text
+msgctxt "04060104.xhp#hd_id3149323.156.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060104.xhp#par_id3147355.157.help.text
+msgid "CELL(\"InfoType\"; Reference)"
+msgstr "CELL(Info_type; Reference)"
+
+#: 04060104.xhp#par_id3154716.158.help.text
+msgid "<emph>InfoType</emph> is the character string that specifies the type of information. The character string is always in English. Upper or lower case is optional."
+msgstr "<emph>Info_type</emph> is the character string that specifies the type of information. The character string is always in English. Upper or lower case is optional."
+
+#: 04060104.xhp#par_id3150636.165.help.text
+msgid "InfoType"
+msgstr "Info_type"
+
+#: 04060104.xhp#par_id3149344.166.help.text
+msgid "Meaning"
+msgstr "Значење"
+
+#: 04060104.xhp#par_id3153266.167.help.text
+msgid "COL"
+msgstr "COL"
+
+#: 04060104.xhp#par_id3156204.168.help.text
+msgid "Returns the number of the referenced column."
+msgstr "Returns the number of the referenced column."
+
+#: 04060104.xhp#par_id3150094.162.help.text
+msgid "<item type=\"input\">=CELL(\"COL\";D2)</item> returns 4."
+msgstr "Cell(\"COL\";D2) returns 4."
+
+#: 04060104.xhp#par_id3151276.169.help.text
+msgctxt "04060104.xhp#par_id3151276.169.help.text"
+msgid "ROW"
+msgstr "ROW"
+
+#: 04060104.xhp#par_id3147583.170.help.text
+msgid "Returns the number of the referenced row."
+msgstr "Returns the number of the referenced row."
+
+#: 04060104.xhp#par_id3151222.163.help.text
+msgid "<item type=\"input\">=CELL(\"ROW\";D2)</item> returns 2."
+msgstr "Cell(\"ROW\";D2) returns 2."
+
+#: 04060104.xhp#par_id3159217.171.help.text
+msgctxt "04060104.xhp#par_id3159217.171.help.text"
+msgid "SHEET"
+msgstr "SHEET"
+
+#: 04060104.xhp#par_id3151201.172.help.text
+msgid "Returns the number of the referenced sheet."
+msgstr "Returns the number of the referenced sheet."
+
+#: 04060104.xhp#par_id3149169.164.help.text
+msgid "<item type=\"input\">=CELL(\"Sheet\";Sheet3.D2)</item> returns 3."
+msgstr "Cell(\"Sheet\";Sheet3.D2) returns 3."
+
+#: 04060104.xhp#par_id3149431.173.help.text
+msgctxt "04060104.xhp#par_id3149431.173.help.text"
+msgid "ADDRESS"
+msgstr "ADDRESS"
+
+#: 04060104.xhp#par_id3156054.174.help.text
+msgid "Returns the absolute address of the referenced cell."
+msgstr "Returns the absolute address of the referenced cell."
+
+#: 04060104.xhp#par_id3154136.175.help.text
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> returns $D$2."
+msgstr "CELL(\"ADDRESS\";D2) returns $D$2."
+
+#: 04060104.xhp#par_id3159198.176.help.text
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";Sheet3.D2)</item> returns $Sheet3.$D$2."
+msgstr "CELL(\"ADDRESS\";Sheet3.D2) returns $Sheet3.$D$2."
+
+#: 04060104.xhp#par_id3150245.177.help.text
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1.$D$2."
+msgstr "CELL(\"ADDRESS\";'X:\\dr\\test.sxc'#$Sheet1.D2) returns 'file:///X:/dr/test.sxc'#$Sheet1.$D$2."
+
+#: 04060104.xhp#par_id3146811.178.help.text
+msgid "FILENAME"
+msgstr "FILENAME"
+
+#: 04060104.xhp#par_id3151328.179.help.text
+msgid "Returns the file name and the sheet number of the referenced cell."
+msgstr "Returns the file name and the sheet number of the referenced cell."
+
+#: 04060104.xhp#par_id3148896.180.help.text
+msgid "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> returns 'file:///X:/dr/own.sxc'#$Sheet1, if the formula in the current document X:\\dr\\own.sxc is located in Sheet1."
+msgstr "CELL(\"FILENAME\";D2) returns 'file:///X:/dr/own.sxc'#$Sheet1, if the formula in the current document X:\\dr\\own.sxc is located in Sheet1."
+
+#: 04060104.xhp#par_id3155144.181.help.text
+msgid "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1."
+msgstr "CELL(\"FILENAME\";'X:\\dr\\test.sxc'#$Sheet1.D2) returns 'file:///X:/dr/test.sxc'#$Sheet1."
+
+#: 04060104.xhp#par_id3151381.182.help.text
+msgid "COORD"
+msgstr "COORD"
+
+#: 04060104.xhp#par_id3151004.183.help.text
+msgid "Returns the complete cell address in Lotus(TM) notation."
+msgstr "Returns the complete cell address in Lotus(TM) notation."
+
+#: 04060104.xhp#par_id3159104.184.help.text
+msgid "<item type=\"input\">=CELL(\"COORD\"; D2)</item> returns $A:$D$2."
+msgstr "CELL(\"COORD\"; D2) returns $A:$D$2."
+
+#: 04060104.xhp#par_id3163720.185.help.text
+msgid "<item type=\"input\">=CELL(\"COORD\"; Sheet3.D2)</item> returns $C:$D$2."
+msgstr "CELL(\"COORD\"; Sheet3.D2) returns $C:$D$2."
+
+#: 04060104.xhp#par_id3155910.186.help.text
+msgid "CONTENTS"
+msgstr "CONTENTS"
+
+#: 04060104.xhp#par_id3156041.187.help.text
+msgid "Returns the contents of the referenced cell, without any formatting."
+msgstr "Returns the contents of the referenced cell, without any formatting."
+
+#: 04060104.xhp#par_id3151069.188.help.text
+msgctxt "04060104.xhp#par_id3151069.188.help.text"
+msgid "TYPE"
+msgstr "TYPE"
+
+#: 04060104.xhp#par_id3155344.189.help.text
+msgid "Returns the type of cell contents."
+msgstr "Returns the type of cell contents."
+
+#: 04060104.xhp#par_id3145217.190.help.text
+msgid "b = blank. empty cell"
+msgstr "b = blank. empty cell"
+
+#: 04060104.xhp#par_id3155176.191.help.text
+msgid "l = label. Text, result of a formula as text"
+msgstr "l = label. Text, result of a formula as text"
+
+#: 04060104.xhp#par_id3147280.192.help.text
+msgid "v = value. Value, result of a formula as a number"
+msgstr "v = value. Value, result of a formula as a number"
+
+#: 04060104.xhp#par_id3156348.193.help.text
+msgid "WIDTH"
+msgstr "WIDTH"
+
+#: 04060104.xhp#par_id3154920.194.help.text
+msgid "Returns the width of the referenced column. The unit is the number of zeros (0) that fit into the column in the default text and the default size."
+msgstr "Returns the width of the referenced column. The unit is the number of zeros (0) that fit into the column in the default text and the default size."
+
+#: 04060104.xhp#par_id3152355.195.help.text
+msgid "PREFIX"
+msgstr "PREFIX"
+
+#: 04060104.xhp#par_id3154230.196.help.text
+msgid "Returns the alignment of the referenced cell."
+msgstr "Returns the alignment of the referenced cell."
+
+#: 04060104.xhp#par_id3155946.197.help.text
+msgid "' = align left or left-justified"
+msgstr "' = align left or left-justified"
+
+#: 04060104.xhp#par_id3147220.198.help.text
+msgid "\" = align right"
+msgstr "\" = align right"
+
+#: 04060104.xhp#par_id3149038.199.help.text
+msgid "^ = centered"
+msgstr "^ = centered"
+
+#: 04060104.xhp#par_id3153129.200.help.text
+msgid "\\ = repeating (currently inactive)"
+msgstr "\\ = repeating (currently inactive)"
+
+#: 04060104.xhp#par_id3154406.201.help.text
+msgid "PROTECT"
+msgstr "PROTECT"
+
+#: 04060104.xhp#par_id3145127.202.help.text
+msgid "Returns the status of the cell protection for the cell."
+msgstr "Returns the status of the cell protection for the cell."
+
+#: 04060104.xhp#par_id3155794.203.help.text
+msgid "1 = cell is protected"
+msgstr "1 = cell is protected"
+
+#: 04060104.xhp#par_id3155072.204.help.text
+msgid "0 = cell is not protected"
+msgstr "0 = cell is not protected"
+
+#: 04060104.xhp#par_id3156178.205.help.text
+msgid "FORMAT"
+msgstr "FORMAT"
+
+#: 04060104.xhp#par_id3150220.206.help.text
+msgid "Returns a character string that indicates the number format."
+msgstr "Returns a character string that indicates the number format."
+
+#: 04060104.xhp#par_id3153824.207.help.text
+msgid ", = number with thousands separator"
+msgstr ", = number with thousands separator"
+
+#: 04060104.xhp#par_id3153837.208.help.text
+msgid "F = number without thousands separator"
+msgstr "F = number without thousands separator"
+
+#: 04060104.xhp#par_id3150318.209.help.text
+msgid "C = currency format"
+msgstr "C = currency format"
+
+#: 04060104.xhp#par_id3153168.210.help.text
+msgid "S = exponential representation, for example, 1.234+E56"
+msgstr "S = exponential representation, for example, 1.234+E56"
+
+#: 04060104.xhp#par_id3153515.211.help.text
+msgid "P = percentage"
+msgstr "P = percentage"
+
+#: 04060104.xhp#par_id3154375.212.help.text
+msgid "In the above formats, the number of decimal places after the decimal separator is given as a number. Example: the number format #,##0.0 returns ,1 and the number format 00.000% returns P3"
+msgstr "In the above formats, the number of decimal places after the decimal separator is given as a number. Example: the number format #,##0.0 returns ,1 and the number format 00.000% returns P3"
+
+#: 04060104.xhp#par_id3150575.213.help.text
+msgid "D1 = MMM-D-YY, MM-D-YY and similar formats"
+msgstr "D1 = MMM-D-YY, MM-D-YY and similar formats"
+
+#: 04060104.xhp#par_id3150589.214.help.text
+msgid "D2 = DD-MM"
+msgstr "D2 = DD-MM"
+
+#: 04060104.xhp#par_id3151034.215.help.text
+msgid "D3 = MM-YY"
+msgstr "D3 = MM-YY"
+
+#: 04060104.xhp#par_id3156371.216.help.text
+msgid "D4 = DD-MM-YYYY HH:MM:SS"
+msgstr "D4 = DD-MM-YYYY HH:MM:SS"
+
+#: 04060104.xhp#par_id3157881.217.help.text
+msgid "D5 = MM-DD"
+msgstr "D5 = MM-DD"
+
+#: 04060104.xhp#par_id3157894.218.help.text
+msgid "D6 = HH:MM:SS AM/PM"
+msgstr "D6 = HH:MM:SS AM/PM"
+
+#: 04060104.xhp#par_id3154068.219.help.text
+msgid "D7 = HH:MM AM/PM"
+msgstr "D7 = HH:MM AM/PM"
+
+#: 04060104.xhp#par_id3150286.220.help.text
+msgid "D8 = HH:MM:SS"
+msgstr "D8 = HH:MM:SS"
+
+#: 04060104.xhp#par_id3145756.221.help.text
+msgid "D9 = HH:MM"
+msgstr "D9 = HH:MM"
+
+#: 04060104.xhp#par_id3145768.222.help.text
+msgid "G = All other formats"
+msgstr "G = All other formats"
+
+#: 04060104.xhp#par_id3153375.223.help.text
+msgid "- (Minus) at the end = negative numbers are formatted in color"
+msgstr "- (Minus) at the end = negative numbers are formatted in color"
+
+#: 04060104.xhp#par_id3155545.224.help.text
+msgid "() (brackets) at the end = there is an opening bracket in the format code"
+msgstr "() (brackets) at the end = there is an opening bracket in the format code"
+
+#: 04060104.xhp#par_id3154594.225.help.text
+msgid "COLOR"
+msgstr "COLOR"
+
+#: 04060104.xhp#par_id3152922.226.help.text
+msgid "Returns 1, if negative values have been formatted in color, otherwise 0."
+msgstr "Returns 1, if negative values have been formatted in color, otherwise 0."
+
+#: 04060104.xhp#par_id3145563.227.help.text
+msgid "PARENTHESES"
+msgstr "PARENTHESES"
+
+#: 04060104.xhp#par_id3156072.228.help.text
+msgid "Returns 1 if the format code contains an opening bracket (, otherwise 0."
+msgstr "Returns 1 if the format code contains an opening bracket (, otherwise 0."
+
+#: 04060104.xhp#par_id3156090.159.help.text
+msgid "<emph>Reference</emph> (list of options) is the position of the cell to be examined. If <emph>Reference</emph> is a range, the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
+msgstr "<emph>Reference</emph> (list of options) is the position of the cell to be examined. If <emph>Reference</emph> is a range, the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
+
+#: 04060103.xhp#tit.help.text
+msgctxt "04060103.xhp#tit.help.text"
+msgid "Financial Functions Part One"
+msgstr "Financial Functions Part One"
+
+#: 04060103.xhp#bm_id3143284.help.text
+msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
+msgstr "<bookmark_value>financial functions</bookmark_value><bookmark_value>functions; financial</bookmark_value><bookmark_value>Function Wizard; financial</bookmark_value><bookmark_value>amortizations, see also depreciations</bookmark_value>"
+
+#: 04060103.xhp#hd_id3143284.1.help.text
+msgctxt "04060103.xhp#hd_id3143284.1.help.text"
+msgid "Financial Functions Part One"
+msgstr "Financial Functions Part One"
+
+#: 04060103.xhp#par_id3149095.2.help.text
+msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
+msgstr "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
+
+#: 04060103.xhp#bm_id3153366.help.text
+msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
+msgstr "<bookmark_value>AMORDEGRC function</bookmark_value><bookmark_value>depreciations;degressive amortizations</bookmark_value>"
+
+#: 04060103.xhp#hd_id3153366.359.help.text
+msgid "AMORDEGRC"
+msgstr "AMORDEGRC"
+
+#: 04060103.xhp#par_id3147434.360.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
+
+#: 04060103.xhp#hd_id3155855.361.help.text
+msgctxt "04060103.xhp#hd_id3155855.361.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3147427.362.help.text
+msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr "AMORDEGRC(Cost;Date purchased;First period;Salvage;Period;Rate;Basis)"
+
+#: 04060103.xhp#par_id3147125.363.help.text
+msgid " <emph>Cost</emph> is the acquisition costs."
+msgstr "<emph>Cost</emph>: the acquisition costs."
+
+#: 04060103.xhp#par_id3151074.364.help.text
+msgctxt "04060103.xhp#par_id3151074.364.help.text"
+msgid " <emph>DatePurchased</emph> is the date of acquisition."
+msgstr "<emph>Date purchased</emph>: the date of acquisition."
+
+#: 04060103.xhp#par_id3144765.365.help.text
+msgctxt "04060103.xhp#par_id3144765.365.help.text"
+msgid " <emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr "<emph>First period</emph>: the end date of the first settlement period."
+
+#: 04060103.xhp#par_id3156286.366.help.text
+msgctxt "04060103.xhp#par_id3156286.366.help.text"
+msgid " <emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr "<emph>Salvage</emph>: The salvage value of the capital asset at the end of the depreciable life."
+
+#: 04060103.xhp#par_id3153415.367.help.text
+msgctxt "04060103.xhp#par_id3153415.367.help.text"
+msgid " <emph>Period</emph> is the settlement period to be considered."
+msgstr "<emph>Period</emph>: the settlement period to be considered."
+
+#: 04060103.xhp#par_id3155064.368.help.text
+msgctxt "04060103.xhp#par_id3155064.368.help.text"
+msgid " <emph>Rate</emph> is the rate of depreciation."
+msgstr "<emph>Rate</emph>: the rate of depreciation."
+
+#: 04060103.xhp#bm_id3153765.help.text
+msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
+msgstr "<bookmark_value>AMORLINC function</bookmark_value><bookmark_value>depreciations;linear amortizations</bookmark_value>"
+
+#: 04060103.xhp#hd_id3153765.369.help.text
+msgid "AMORLINC"
+msgstr "AMORLINC"
+
+#: 04060103.xhp#par_id3159264.370.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
+
+#: 04060103.xhp#hd_id3150044.371.help.text
+msgctxt "04060103.xhp#hd_id3150044.371.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3147363.372.help.text
+msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgstr "AMORLINC(Cost;Date purchased;First period;Salvage;Period;Rate;Basis)"
+
+#: 04060103.xhp#par_id3146920.373.help.text
+msgid " <emph>Cost</emph> means the acquisition costs."
+msgstr "<emph>Cost</emph>: the acquisition costs."
+
+#: 04060103.xhp#par_id3163807.374.help.text
+msgctxt "04060103.xhp#par_id3163807.374.help.text"
+msgid " <emph>DatePurchased</emph> is the date of acquisition."
+msgstr "<emph>Date purchased</emph>: the date of acquisition."
+
+#: 04060103.xhp#par_id3148488.375.help.text
+msgctxt "04060103.xhp#par_id3148488.375.help.text"
+msgid " <emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr "<emph>First period</emph>: the end date of the first settlement period."
+
+#: 04060103.xhp#par_id3149530.376.help.text
+msgctxt "04060103.xhp#par_id3149530.376.help.text"
+msgid " <emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr "<emph>Salvage</emph>: The salvage value of the capital asset at the end of the depreciable life."
+
+#: 04060103.xhp#par_id3148633.377.help.text
+msgctxt "04060103.xhp#par_id3148633.377.help.text"
+msgid " <emph>Period</emph> is the settlement period to be considered."
+msgstr "<emph>Period</emph>: the settlement period to be considered."
+
+#: 04060103.xhp#par_id3150982.378.help.text
+msgctxt "04060103.xhp#par_id3150982.378.help.text"
+msgid " <emph>Rate</emph> is the rate of depreciation."
+msgstr "<emph>Rate</emph>: the rate of depreciation."
+
+#: 04060103.xhp#bm_id3145257.help.text
+msgid "<bookmark_value>ACCRINT function</bookmark_value>"
+msgstr "<bookmark_value>ACCRINT function</bookmark_value>"
+
+#: 04060103.xhp#hd_id3145257.335.help.text
+msgid "ACCRINT"
+msgstr "ACCRINT"
+
+#: 04060103.xhp#bm_id3151276.help.text
+msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
+msgstr "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
+
+#: 04060103.xhp#par_id3151276.336.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
+
+#: 04060103.xhp#hd_id3152581.337.help.text
+msgctxt "04060103.xhp#hd_id3152581.337.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3159092.338.help.text
+msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
+msgstr "ACCRINT(Issue;First interest;Settlement;Rate;Par;Frequency;Basis)"
+
+#: 04060103.xhp#par_id3150519.339.help.text
+msgctxt "04060103.xhp#par_id3150519.339.help.text"
+msgid " <emph>Issue</emph> is the issue date of the security."
+msgstr "<emph>Issue</emph>: the issue date of the security."
+
+#: 04060103.xhp#par_id3155376.340.help.text
+msgid " <emph>FirstInterest</emph> is the first interest date of the security."
+msgstr "<emph>First interest</emph>: the first interest date of the security."
+
+#: 04060103.xhp#par_id3166431.341.help.text
+msgctxt "04060103.xhp#par_id3166431.341.help.text"
+msgid " <emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr "<emph>Settlement</emph>: the date at which the interest accrued up until then is to be calculated."
+
+#: 04060103.xhp#par_id3154486.342.help.text
+msgid " <emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr "<emph>Rate</emph>: the annual nominal rate of interest (coupon interest rate)"
+
+#: 04060103.xhp#par_id3156445.343.help.text
+msgctxt "04060103.xhp#par_id3156445.343.help.text"
+msgid " <emph>Par</emph> is the par value of the security."
+msgstr "<emph>Par</emph>: the par value of the security."
+
+#: 04060103.xhp#par_id3149406.344.help.text
+msgctxt "04060103.xhp#par_id3149406.344.help.text"
+msgid " <emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph>: number of interest payments per year (1, 2 or 4)."
+
+#: 04060103.xhp#hd_id3148699.345.help.text
+msgctxt "04060103.xhp#hd_id3148699.345.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3148599.346.help.text
+msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
+msgstr "A security is issued on 2.28.2001. First interest is set for 8.31.2001. The settlement date is 5.1.2001. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
+
+#: 04060103.xhp#par_id3148840.347.help.text
+msgid " <item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
+msgstr "=ACCRINT(\"2.28.2001\"; \"8.31.2001\"; \"5.1.2001\"; 0.1; 1000; 2; 0) returns 16.94444."
+
+#: 04060103.xhp#bm_id3151240.help.text
+msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
+msgstr "<bookmark_value>ACCRINTM function</bookmark_value><bookmark_value>accrued interests;one-off payments</bookmark_value>"
+
+#: 04060103.xhp#hd_id3151240.348.help.text
+msgid "ACCRINTM"
+msgstr "ACCRINTM"
+
+#: 04060103.xhp#par_id3157981.349.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
+
+#: 04060103.xhp#hd_id3159097.350.help.text
+msgctxt "04060103.xhp#hd_id3159097.350.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3147074.351.help.text
+msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
+msgstr "ACCRINTM(Issue;Settlement;Rate;Par;Basis)"
+
+#: 04060103.xhp#par_id3144773.352.help.text
+msgctxt "04060103.xhp#par_id3144773.352.help.text"
+msgid " <emph>Issue</emph> is the issue date of the security."
+msgstr "<emph>Issue</emph>: the issue date of the security."
+
+#: 04060103.xhp#par_id3154956.353.help.text
+msgctxt "04060103.xhp#par_id3154956.353.help.text"
+msgid " <emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr "<emph>Settlement</emph>: the date at which the interest accrued up until then is to be calculated."
+
+#: 04060103.xhp#par_id3153972.354.help.text
+msgid " <emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
+msgstr "<emph>Rate</emph>: the annual nominal rate of interest (coupon interest rate)."
+
+#: 04060103.xhp#par_id3159204.355.help.text
+msgctxt "04060103.xhp#par_id3159204.355.help.text"
+msgid " <emph>Par</emph> is the par value of the security."
+msgstr "<emph>Par</emph>: the par value of the security."
+
+#: 04060103.xhp#hd_id3155384.356.help.text
+msgctxt "04060103.xhp#hd_id3155384.356.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3154541.357.help.text
+msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
+msgstr "A security is issued on 4.1.2001. The maturity date is set for 6.15.2001. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
+
+#: 04060103.xhp#par_id3149128.358.help.text
+msgid " <item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
+msgstr "=ACCRINTM(\"4.1.2001\"; \"6.15.2001\"; 0.1; 1000; 3) returns 20.54795."
+
+#: 04060103.xhp#bm_id3145753.help.text
+msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
+msgstr "<bookmark_value>RECEIVED function</bookmark_value><bookmark_value>amount received for fixed-interest securities</bookmark_value>"
+
+#: 04060103.xhp#hd_id3145753.390.help.text
+msgid "RECEIVED"
+msgstr "RECEIVED"
+
+#: 04060103.xhp#par_id3150051.391.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
+
+#: 04060103.xhp#hd_id3149385.392.help.text
+msgctxt "04060103.xhp#hd_id3149385.392.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3145362.393.help.text
+msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
+msgstr "RECEIVED(Settlement;Maturity;Investment;Discount;Basis)"
+
+#: 04060103.xhp#par_id3154654.394.help.text
+msgctxt "04060103.xhp#par_id3154654.394.help.text"
+msgid " <emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph>: the date of purchase of the security."
+
+#: 04060103.xhp#par_id3153011.395.help.text
+msgctxt "04060103.xhp#par_id3153011.395.help.text"
+msgid " <emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph>: the date on which the security matures (expires)."
+
+#: 04060103.xhp#par_id3155525.396.help.text
+msgid " <emph>Investment</emph> is the purchase sum."
+msgstr "<emph>Investment</emph>: the purchase sum."
+
+#: 04060103.xhp#par_id3155760.397.help.text
+msgid " <emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr "<emph>Discount</emph>: the percentage discount on acquisition of the security."
+
+#: 04060103.xhp#hd_id3154710.398.help.text
+msgctxt "04060103.xhp#hd_id3154710.398.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3154735.399.help.text
+msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
+msgstr "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
+
+#: 04060103.xhp#par_id3146108.400.help.text
+msgid "The amount received on the maturity date is calculated as follows:"
+msgstr "The amount received on the maturity date is calculated as follows:"
+
+#: 04060103.xhp#par_id3147246.401.help.text
+msgid " <item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
+msgstr "=RECEIVED(\"2.15.99\";\"5.15.99\";1000; 0.0575;2) returns 1014.420266."
+
+#: 04060103.xhp#bm_id3147556.help.text
+msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
+msgstr "<bookmark_value>PV function</bookmark_value><bookmark_value>present values</bookmark_value><bookmark_value>calculating; present values</bookmark_value>"
+
+#: 04060103.xhp#hd_id3147556.3.help.text
+msgid "PV"
+msgstr "PV"
+
+#: 04060103.xhp#par_id3153301.4.help.text
+msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
+
+#: 04060103.xhp#par_id3146099.5.help.text
+msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
+msgstr "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
+
+#: 04060103.xhp#par_id3153334.6.help.text
+msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
+msgstr "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
+
+#: 04060103.xhp#hd_id3147407.7.help.text
+msgctxt "04060103.xhp#hd_id3147407.7.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3150395.8.help.text
+msgid "PV(Rate; NPer; Pmt; FV; Type)"
+msgstr "PV(Rate; NPER; PMT; FV; Type)"
+
+#: 04060103.xhp#par_id3151341.9.help.text
+msgid " <emph>Rate</emph> defines the interest rate per period."
+msgstr "<emph>Rate</emph> defines the interest rate per period."
+
+#: 04060103.xhp#par_id3153023.10.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)."
+
+#: 04060103.xhp#par_id3146323.11.help.text
+msgid " <emph>Pmt</emph> is the regular payment made per period."
+msgstr "<emph>PMT</emph> is the regular payment made per period."
+
+#: 04060103.xhp#par_id3150536.12.help.text
+msgid " <emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
+msgstr "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
+
+#: 04060103.xhp#par_id3146883.13.help.text
+msgid " <emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
+msgstr "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
+
+#: 04060103.xhp#par_idN10B13.help.text
+msgctxt "04060103.xhp#par_idN10B13.help.text"
+msgid " <embedvar href=\"text/scalc/00/00000004.xhp#optional\"/> "
+msgstr "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+
+#: 04060103.xhp#hd_id3150037.14.help.text
+msgctxt "04060103.xhp#hd_id3150037.14.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3145225.15.help.text
+msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
+msgstr "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
+
+#: 04060103.xhp#par_id3155907.16.help.text
+msgid " <item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
+msgstr "PV(8%/12;48;500;20000) = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
+
+#: 04060103.xhp#par_id3149150.17.help.text
+msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
+msgstr "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
+
+#: 04060103.xhp#bm_id3152978.help.text
+msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
+msgstr "<bookmark_value>calculating; depreciations</bookmark_value><bookmark_value>SYD function</bookmark_value><bookmark_value>depreciations; arithmetic declining</bookmark_value><bookmark_value>arithmetic declining depreciations</bookmark_value>"
+
+#: 04060103.xhp#hd_id3152978.19.help.text
+msgid "SYD"
+msgstr "SYD"
+
+#: 04060103.xhp#par_id3148732.20.help.text
+msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
+
+#: 04060103.xhp#par_id3149886.21.help.text
+msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
+msgstr "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
+
+#: 04060103.xhp#hd_id3149431.22.help.text
+msgctxt "04060103.xhp#hd_id3149431.22.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3150483.23.help.text
+msgid "SYD(Cost; Salvage; Life; Period)"
+msgstr "SYD(Cost;Salvage;Life;Period)"
+
+#: 04060103.xhp#par_id3146879.24.help.text
+msgctxt "04060103.xhp#par_id3146879.24.help.text"
+msgid " <emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Cost</emph> is the initial cost of an asset."
+
+#: 04060103.xhp#par_id3147423.25.help.text
+msgid " <emph>Salvage</emph> is the value of an asset after depreciation."
+msgstr "<emph>Salvage</emph> is the value of an asset after depreciation."
+
+#: 04060103.xhp#par_id3151229.26.help.text
+msgid " <emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
+msgstr "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
+
+#: 04060103.xhp#par_id3147473.27.help.text
+msgid " <emph>Period</emph> defines the period for which the depreciation is to be calculated."
+msgstr "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
+
+#: 04060103.xhp#hd_id3148434.28.help.text
+msgctxt "04060103.xhp#hd_id3148434.28.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3149688.29.help.text
+msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
+msgstr "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
+
+#: 04060103.xhp#par_id3150900.30.help.text
+msgid " <item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
+msgstr "SYD(50000;10000;5;1)=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
+
+#: 04060103.xhp#par_id3146142.31.help.text
+msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
+msgstr "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
+
+#: 04060103.xhp#par_id3155258.32.help.text
+msgid " <emph>A</emph> "
+msgstr "<emph>A</emph>"
+
+#: 04060103.xhp#par_id3154558.33.help.text
+msgid " <emph>B</emph> "
+msgstr "<emph>B</emph>"
+
+#: 04060103.xhp#par_id3152372.34.help.text
+msgid " <emph>C</emph> "
+msgstr "<emph>C</emph>"
+
+#: 04060103.xhp#par_id3149949.35.help.text
+msgid " <emph>D</emph> "
+msgstr "<emph>D</emph>"
+
+#: 04060103.xhp#par_id3145123.36.help.text
+msgid " <emph>E</emph> "
+msgstr "<emph>E</emph>"
+
+#: 04060103.xhp#par_id3149504.37.help.text
+msgctxt "04060103.xhp#par_id3149504.37.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060103.xhp#par_id3153778.38.help.text
+msgid " <item type=\"input\">Initial Cost</item> "
+msgstr "Initial Cost"
+
+#: 04060103.xhp#par_id3159083.39.help.text
+msgid " <item type=\"input\">Salvage Value</item> "
+msgstr "Salvage Value"
+
+#: 04060103.xhp#par_id3150002.40.help.text
+msgid " <item type=\"input\">Useful Life</item> "
+msgstr "Useful Life"
+
+#: 04060103.xhp#par_id3153006.41.help.text
+msgid " <item type=\"input\">Time Period</item> "
+msgstr "Time Period"
+
+#: 04060103.xhp#par_id3154505.42.help.text
+msgid " <item type=\"input\">Deprec. SYD</item> "
+msgstr "Deprec. SYD"
+
+#: 04060103.xhp#par_id3150336.43.help.text
+msgctxt "04060103.xhp#par_id3150336.43.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060103.xhp#par_id3155926.44.help.text
+msgid " <item type=\"input\">50,000 currency units</item> "
+msgstr "50,000 currency units"
+
+#: 04060103.xhp#par_id3153736.45.help.text
+msgid " <item type=\"input\">10,000 currency units</item> "
+msgstr "10,000 currency units"
+
+#: 04060103.xhp#par_id3150131.46.help.text
+msgctxt "04060103.xhp#par_id3150131.46.help.text"
+msgid " <item type=\"input\">5</item> "
+msgstr "5"
+
+#: 04060103.xhp#par_id3148766.47.help.text
+msgid " <item type=\"input\">1</item> "
+msgstr "1"
+
+#: 04060103.xhp#par_id3159136.48.help.text
+msgid " <item type=\"input\">13,333.33 currency units</item> "
+msgstr "13,333.33 currency units"
+
+#: 04060103.xhp#par_id3151018.49.help.text
+msgctxt "04060103.xhp#par_id3151018.49.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060103.xhp#par_id3148397.50.help.text
+msgid " <item type=\"input\">2</item> "
+msgstr "2"
+
+#: 04060103.xhp#par_id3146907.51.help.text
+msgid " <item type=\"input\">10,666.67 currency units</item> "
+msgstr "10,666.67 currency units"
+
+#: 04060103.xhp#par_id3147356.52.help.text
+msgctxt "04060103.xhp#par_id3147356.52.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060103.xhp#par_id3150267.53.help.text
+msgid " <item type=\"input\">3</item> "
+msgstr "3"
+
+#: 04060103.xhp#par_id3145628.54.help.text
+msgid " <item type=\"input\">8,000.00 currency units</item> "
+msgstr "8,000.00 currency units"
+
+#: 04060103.xhp#par_id3149004.55.help.text
+msgctxt "04060103.xhp#par_id3149004.55.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060103.xhp#par_id3153545.56.help.text
+msgid " <item type=\"input\">4</item> "
+msgstr "4"
+
+#: 04060103.xhp#par_id3154634.57.help.text
+msgid " <item type=\"input\">5,333.33 currency units</item> "
+msgstr "5,333.33 currency units"
+
+#: 04060103.xhp#par_id3147537.58.help.text
+msgctxt "04060103.xhp#par_id3147537.58.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060103.xhp#par_id3155085.59.help.text
+msgctxt "04060103.xhp#par_id3155085.59.help.text"
+msgid " <item type=\"input\">5</item> "
+msgstr "5"
+
+#: 04060103.xhp#par_id3158413.60.help.text
+msgid " <item type=\"input\">2,666.67 currency units</item> "
+msgstr "2,666.67 currency units"
+
+#: 04060103.xhp#par_id3154866.61.help.text
+msgctxt "04060103.xhp#par_id3154866.61.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060103.xhp#par_id3155404.62.help.text
+msgid " <item type=\"input\">6</item> "
+msgstr "6"
+
+#: 04060103.xhp#par_id3148431.63.help.text
+msgid " <item type=\"input\">0.00 currency units</item> "
+msgstr "0.00 currency units"
+
+#: 04060103.xhp#par_id3156261.64.help.text
+msgctxt "04060103.xhp#par_id3156261.64.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060103.xhp#par_id3083286.65.help.text
+msgid " <item type=\"input\">7</item> "
+msgstr "7"
+
+#: 04060103.xhp#par_id3083443.67.help.text
+msgctxt "04060103.xhp#par_id3083443.67.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060103.xhp#par_id3154815.68.help.text
+msgid " <item type=\"input\">8</item> "
+msgstr "8"
+
+#: 04060103.xhp#par_id3145082.70.help.text
+msgctxt "04060103.xhp#par_id3145082.70.help.text"
+msgid "10"
+msgstr "10"
+
+#: 04060103.xhp#par_id3156307.71.help.text
+msgid " <item type=\"input\">9</item> "
+msgstr "9"
+
+#: 04060103.xhp#par_id3147564.73.help.text
+msgctxt "04060103.xhp#par_id3147564.73.help.text"
+msgid "11"
+msgstr "11"
+
+#: 04060103.xhp#par_id3146856.74.help.text
+msgid " <item type=\"input\">10</item> "
+msgstr "10"
+
+#: 04060103.xhp#par_id3150880.76.help.text
+msgctxt "04060103.xhp#par_id3150880.76.help.text"
+msgid "12"
+msgstr "12"
+
+#: 04060103.xhp#par_id3145208.77.help.text
+msgctxt "04060103.xhp#par_id3145208.77.help.text"
+msgid "13"
+msgstr "13"
+
+#: 04060103.xhp#par_id3156113.78.help.text
+msgid " <item type=\"input\">>0</item> "
+msgstr ">0"
+
+#: 04060103.xhp#par_id3153625.79.help.text
+msgid " <item type=\"input\">Total</item> "
+msgstr "Вкупно"
+
+#: 04060103.xhp#par_id3151297.80.help.text
+msgid " <item type=\"input\">40,000.00 currency units</item> "
+msgstr "40,000.00 currency units"
+
+#: 04060103.xhp#par_id3149979.81.help.text
+msgid "The formula in E2 is as follows:"
+msgstr "The formula in E2 is as follows:"
+
+#: 04060103.xhp#par_id3155849.82.help.text
+msgid " <item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item> "
+msgstr "=SYD($A$2;$B$2;$C$2;D2)"
+
+#: 04060103.xhp#par_id3156124.83.help.text
+msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
+msgstr "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
+
+#: 04060103.xhp#par_id3147270.84.help.text
+msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
+msgstr "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
+
+#: 04060103.xhp#par_id3152811.85.help.text
+msgid " <item type=\"input\">=SUMIF(E2:E11;A13)</item> "
+msgstr "=SUMIF(E2:E11;A13)"
+
+#: 04060103.xhp#par_id3155998.86.help.text
+msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
+msgstr "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
+
+#: 04060103.xhp#bm_id3155104.help.text
+msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
+msgstr "<bookmark_value>DISC function</bookmark_value><bookmark_value>allowances</bookmark_value><bookmark_value>discounts</bookmark_value>"
+
+#: 04060103.xhp#hd_id3155104.379.help.text
+msgid "DISC"
+msgstr "DISC"
+
+#: 04060103.xhp#par_id3153891.380.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
+
+#: 04060103.xhp#hd_id3153982.381.help.text
+msgctxt "04060103.xhp#hd_id3153982.381.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3149756.382.help.text
+msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
+msgstr "DISC(Settlement;Maturity;Price;Redemption;Basis)"
+
+#: 04060103.xhp#par_id3156014.383.help.text
+msgctxt "04060103.xhp#par_id3156014.383.help.text"
+msgid " <emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph>: the date of purchase of the security."
+
+#: 04060103.xhp#par_id3154304.384.help.text
+msgctxt "04060103.xhp#par_id3154304.384.help.text"
+msgid " <emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph>: the date on which the security matures (expires)."
+
+#: 04060103.xhp#par_id3159180.385.help.text
+msgid " <emph>Price</emph> is the price of the security per 100 currency units of par value."
+msgstr "<emph>Price</emph>: The price of the security per 100 currency units of par value."
+
+#: 04060103.xhp#par_id3147253.386.help.text
+msgid " <emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
+msgstr "<emph>Redemption</emph>: the redemption value of the security per 100 currency units of par value."
+
+#: 04060103.xhp#hd_id3151174.387.help.text
+msgctxt "04060103.xhp#hd_id3151174.387.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3155902.388.help.text
+msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
+msgstr "A security is purchased on 1.25.2001; the maturity date is 11.15.2001. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
+
+#: 04060103.xhp#par_id3152797.389.help.text
+msgid " <item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
+msgstr "=DISC(\"1.25.2001\"; \"11.15.2001\"; 97; 100; 3) returns 0.03840 or 3.84 per cent."
+
+#: 04060103.xhp#bm_id3154695.help.text
+msgid "<bookmark_value>DURATION_ADD function</bookmark_value> <bookmark_value>Microsoft Excel functions</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
+msgstr "<bookmark_value>DURATION_ADD function</bookmark_value><bookmark_value>Microsoft Excel functions</bookmark_value><bookmark_value>durations;fixed interest securities</bookmark_value>"
+
+#: 04060103.xhp#hd_id3154695.402.help.text
+msgid "DURATION_ADD"
+msgstr "DURATION_ADD"
+
+#: 04060103.xhp#par_id3145768.403.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
+
+#: 04060103.xhp#hd_id3153904.404.help.text
+msgctxt "04060103.xhp#hd_id3153904.404.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3153373.405.help.text
+msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
+msgstr "DURATION_ADD(Settlement;Maturity;Coupon;Yield;Frequency;Basis)"
+
+#: 04060103.xhp#par_id3155397.406.help.text
+msgctxt "04060103.xhp#par_id3155397.406.help.text"
+msgid " <emph>Settlement</emph> is the date of purchase of the security."
+msgstr "<emph>Settlement</emph>: the date of purchase of the security."
+
+#: 04060103.xhp#par_id3148558.407.help.text
+msgctxt "04060103.xhp#par_id3148558.407.help.text"
+msgid " <emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "<emph>Maturity</emph>: the date on which the security matures (expires)."
+
+#: 04060103.xhp#par_id3153096.408.help.text
+msgid " <emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
+msgstr "<emph>Coupon</emph>: the annual coupon interest rate (nominal rate of interest)"
+
+#: 04060103.xhp#par_id3154594.409.help.text
+msgid " <emph>Yield</emph> is the annual yield of the security."
+msgstr "<emph>Yield</emph>: the annual yield of the security."
+
+#: 04060103.xhp#par_id3149906.410.help.text
+msgctxt "04060103.xhp#par_id3149906.410.help.text"
+msgid " <emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "<emph>Frequency</emph>: number of interest payments per year (1, 2 or 4)."
+
+#: 04060103.xhp#hd_id3146995.411.help.text
+msgctxt "04060103.xhp#hd_id3146995.411.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3148834.412.help.text
+msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon 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 duration?"
+msgstr "A security is purchased on 1.1.2001; the maturity date is 1.1.2006. The Coupon 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 duration?"
+
+#: 04060103.xhp#par_id3154902.413.help.text
+msgid " <item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item> "
+msgstr "=DURATION_ADD(\"1.1.2001\"; \"1.1.2006\"; 0.08; 0.09; 2; 3)"
+
+#: 04060103.xhp#bm_id3159147.help.text
+msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
+msgstr "<bookmark_value>annual net interest rates</bookmark_value><bookmark_value>calculating; annual net interest rates</bookmark_value><bookmark_value>net annual interest rates</bookmark_value><bookmark_value>EFFECTIVE function</bookmark_value>"
+
+#: 04060103.xhp#hd_id3159147.88.help.text
+msgid "EFFECTIVE"
+msgstr "EFFECTIVE"
+
+#: 04060103.xhp#par_id3154204.89.help.text
+msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
+
+#: 04060103.xhp#par_id3145417.90.help.text
+msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
+msgstr "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
+
+#: 04060103.xhp#hd_id3150510.91.help.text
+msgctxt "04060103.xhp#hd_id3150510.91.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3148805.92.help.text
+msgid "EFFECTIVE(Nom; P)"
+msgstr "EFFECTIVE(NOM;P)"
+
+#: 04060103.xhp#par_id3149768.93.help.text
+msgid " <emph>Nom</emph> is the nominal interest."
+msgstr "<emph>NOM</emph> is the nominal interest."
+
+#: 04060103.xhp#par_id3149334.94.help.text
+msgid " <emph>P</emph> is the number of interest payment periods per year."
+msgstr "<emph>P</emph> is the number of interest payment periods per year."
+
+#: 04060103.xhp#hd_id3154223.95.help.text
+msgctxt "04060103.xhp#hd_id3154223.95.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3144499.96.help.text
+msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
+msgstr "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
+
+#: 04060103.xhp#par_id3150772.97.help.text
+msgid " <item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
+msgstr "EFFECTIVE(9.75%;4) = 10.11% The annual effective rate is therefore 10.11%."
+
+#: 04060103.xhp#bm_id3147241.help.text
+msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
+msgstr "<bookmark_value>effective interest rates</bookmark_value><bookmark_value>EFFECT_ADD function</bookmark_value>"
+
+#: 04060103.xhp#hd_id3147241.414.help.text
+msgid "EFFECT_ADD"
+msgstr "EFFECT_ADD"
+
+#: 04060103.xhp#par_id3147524.415.help.text
+msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
+
+#: 04060103.xhp#hd_id3155364.416.help.text
+msgctxt "04060103.xhp#hd_id3155364.416.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3155118.417.help.text
+msgid "EFFECT_ADD(NominalRate; NPerY)"
+msgstr "EFFECT_ADD(Nominal rate;Npery)"
+
+#: 04060103.xhp#par_id3148907.418.help.text
+msgid " <emph>NominalRate</emph> is the annual nominal rate of interest."
+msgstr "Nominal rate: the annual nominal rate of interest."
+
+#: 04060103.xhp#par_id3154274.419.help.text
+msgid " <emph>NPerY </emph>is the number of interest payments per year."
+msgstr "Npery: the number of interest payments per year."
+
+#: 04060103.xhp#hd_id3149156.420.help.text
+msgctxt "04060103.xhp#hd_id3149156.420.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3158426.421.help.text
+msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
+msgstr "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
+
+#: 04060103.xhp#par_id3148927.422.help.text
+msgid " <item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
+msgstr "=EFFECT_ADD(0.0525; 4) returns 0.053543 or 5.3534%."
+
+#: 04060103.xhp#bm_id3149998.help.text
+msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
+msgstr "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value><bookmark_value>arithmetic-degressive depreciations</bookmark_value><bookmark_value>depreciations;arithmetic-degressive</bookmark_value><bookmark_value>DDB function</bookmark_value>"
+
+#: 04060103.xhp#hd_id3149998.99.help.text
+msgid "DDB"
+msgstr "DDB"
+
+#: 04060103.xhp#par_id3159190.100.help.text
+msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
+
+#: 04060103.xhp#par_id3152361.101.help.text
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgstr "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+
+#: 04060103.xhp#hd_id3156038.102.help.text
+msgctxt "04060103.xhp#hd_id3156038.102.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3166452.103.help.text
+msgid "DDB(Cost; Salvage; Life; Period; Factor)"
+msgstr "DDB(Cost;Salvage;Life;Period;Factor)"
+
+#: 04060103.xhp#par_id3153237.104.help.text
+msgid " <emph>Cost</emph> fixes the initial cost of an asset."
+msgstr "<emph>Cost</emph> fixes the initial cost of an asset."
+
+#: 04060103.xhp#par_id3149787.105.help.text
+msgid " <emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+
+#: 04060103.xhp#par_id3152945.106.help.text
+msgid " <emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgstr "<emph>Life</emph> is the number of periods defining how long the asset is to be used."
+
+#: 04060103.xhp#par_id3149736.107.help.text
+msgid " <emph>Period</emph> states the period for which the value is to be calculated."
+msgstr "<emph>Period</emph> defines the length of the period. The length must be entered in the same time unit as life."
+
+#: 04060103.xhp#par_id3150243.108.help.text
+msgid " <emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgstr "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+
+#: 04060103.xhp#hd_id3159274.109.help.text
+msgctxt "04060103.xhp#hd_id3159274.109.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3152882.110.help.text
+msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
+msgstr "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
+
+#: 04060103.xhp#par_id3154106.111.help.text
+msgid " <item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
+msgstr "DDB(75000;1;60;12;2) = 1,721.81 currency units. Therefore, the double-declining depreciation during the first month after purchase is 1,721.81 currency units."
+
+#: 04060103.xhp#bm_id3149962.help.text
+msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
+msgstr "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value><bookmark_value>geometric-degressive depreciations</bookmark_value><bookmark_value>depreciations;geometric-degressive</bookmark_value><bookmark_value>DB function</bookmark_value>"
+
+#: 04060103.xhp#hd_id3149962.113.help.text
+msgid "DB"
+msgstr "DB"
+
+#: 04060103.xhp#par_id3148989.114.help.text
+msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the double-declining balance method.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the double-declining balance method.</ahelp>"
+
+#: 04060103.xhp#par_id3156213.115.help.text
+msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
+msgstr "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
+
+#: 04060103.xhp#hd_id3149807.116.help.text
+msgctxt "04060103.xhp#hd_id3149807.116.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3153349.117.help.text
+msgid "DB(Cost; Salvage; Life; Period; Month)"
+msgstr "DB(Cost;Salvage;Life;Period;Month)"
+
+#: 04060103.xhp#par_id3148462.118.help.text
+msgctxt "04060103.xhp#par_id3148462.118.help.text"
+msgid " <emph>Cost</emph> is the initial cost of an asset."
+msgstr "<emph>Cost</emph> is the initial cost of an asset."
+
+#: 04060103.xhp#par_id3148658.119.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."
+
+#: 04060103.xhp#par_id3145371.120.help.text
+msgid " <emph>Life</emph> defines the period over which an asset is depreciated."
+msgstr "<emph>Life</emph> Life defines the period over which an asset is depreciated."
+
+#: 04060103.xhp#par_id3154608.121.help.text
+msgid " <emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
+msgstr "<emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
+
+#: 04060103.xhp#par_id3150829.122.help.text
+msgid " <emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
+msgstr "<emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
+
+#: 04060103.xhp#hd_id3151130.123.help.text
+msgctxt "04060103.xhp#hd_id3151130.123.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3156147.124.help.text
+msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
+msgstr "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
+
+#: 04060103.xhp#par_id3149513.125.help.text
+msgid " <item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
+msgstr "DB(25000;1000;36;1;6) = 1,075.00 currency units"
+
+#: 04060103.xhp#par_id3159242.126.help.text
+msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
+msgstr "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
+
+#: 04060103.xhp#bm_id3153948.help.text
+msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
+msgstr "<bookmark_value>IRR function</bookmark_value><bookmark_value>calculating;internal rates of return, regular payments</bookmark_value><bookmark_value>internal rates of return;regular payments</bookmark_value>"
+
+#: 04060103.xhp#hd_id3153948.128.help.text
+msgid "IRR"
+msgstr "IRR"
+
+#: 04060103.xhp#par_id3143282.129.help.text
+msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgstr "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+
+#: 04060103.xhp#hd_id3150599.130.help.text
+msgctxt "04060103.xhp#hd_id3150599.130.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3155427.131.help.text
+msgid "IRR(Values; Guess)"
+msgstr "IRR(Values;Guess)"
+
+#: 04060103.xhp#par_id3144758.132.help.text
+msgid " <emph>Values</emph> represents an array containing the values."
+msgstr "<emph>Values</emph> represents an array containing the values."
+
+#: 04060103.xhp#par_id3149233.133.help.text
+msgid " <emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
+msgstr "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
+
+#: 04060103.xhp#hd_id3151258.134.help.text
+msgctxt "04060103.xhp#hd_id3151258.134.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3150630.135.help.text
+msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
+msgstr "Under the assumption that cell contents are A1=-10000, A2=3500, A3=7600 and A4=1000, the formula =IRR(A1:A4) gives a result of 80.24%."
+
+#: 04060103.xhp#bm_id3151012.help.text
+msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
+msgstr "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value><bookmark_value>interests for unchanged amortization installments</bookmark_value><bookmark_value>ISPMT function</bookmark_value>"
+
+#: 04060103.xhp#hd_id3151012.314.help.text
+msgid "ISPMT"
+msgstr "ISPMT"
+
+#: 04060103.xhp#par_id3148693.315.help.text
+msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
+
+#: 04060103.xhp#hd_id3154661.316.help.text
+msgctxt "04060103.xhp#hd_id3154661.316.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: 04060103.xhp#par_id3146070.317.help.text
+msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
+msgstr "ISPMT(Rate; Period; Total_periods; Invest)"
+
+#: 04060103.xhp#par_id3148672.318.help.text
+msgid " <emph>Rate</emph> sets the periodic interest rate."
+msgstr "<emph>Rate</emph> sets the periodic interest rate."
+
+#: 04060103.xhp#par_id3145777.319.help.text
+msgid " <emph>Period</emph> is the number of installments for calculation of interest."
+msgstr "<emph>Period</emph> is the number of installments for calculation of interest."
+
+#: 04060103.xhp#par_id3153678.320.help.text
+msgid " <emph>TotalPeriods</emph> is the total number of installment periods."
+msgstr "<emph>Total_periods</emph> is the total number of installment periods."
+
+#: 04060103.xhp#par_id3159390.321.help.text
+msgid " <emph>Invest</emph> is the amount of the investment."
+msgstr "<emph>Invest</emph> is the amount of the investment."
+
+#: 04060103.xhp#hd_id3156162.322.help.text
+msgctxt "04060103.xhp#hd_id3156162.322.help.text"
+msgid "Example"
+msgstr "Пример"
+
+#: 04060103.xhp#par_id3149558.323.help.text
+msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
+msgstr "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
+
+#: 04060103.xhp#par_id3150949.324.help.text
+msgid " <item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
+msgstr "ISPMT(1%;18;24;120000) = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
+
+#: 04060103.xhp#par_id3146812.426.help.text
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
+
+#: 04060103.xhp#par_id3154411.427.help.text
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
+
+#: func_days.xhp#tit.help.text
+msgid "DAYS "
+msgstr "DAYS "
+
+#: func_days.xhp#bm_id3151328.help.text
+msgid "<bookmark_value>DAYS function</bookmark_value>"
+msgstr "<bookmark_value>DAYS function</bookmark_value>"
+
+#: func_days.xhp#hd_id3151328.116.help.text
+msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
+msgstr "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
+
+#: func_days.xhp#par_id3155139.117.help.text
+msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
+msgstr "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
+
+#: func_days.xhp#hd_id3155184.118.help.text
+msgctxt "func_days.xhp#hd_id3155184.118.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_days.xhp#par_id3149578.119.help.text
+msgid "DAYS(Date2; Date1)"
+msgstr "DAYS(Date_2;Date_1)"
+
+#: func_days.xhp#par_id3151376.120.help.text
+msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
+msgstr "<emph>Date_1</emph> is the start date, <emph>Date_2</emph> is the end date. If <emph>Date_2</emph> is an earlier date than <emph>Date_1</emph> the result is a negative number."
+
+#: func_days.xhp#hd_id3151001.121.help.text
+msgctxt "func_days.xhp#hd_id3151001.121.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_days.xhp#par_id3159101.123.help.text
+msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
+msgstr "DAYS(\"1/1/2010\"; NOW()) returns the number of days from today until January 1, 2010."
+
+#: func_days.xhp#par_id3163720.172.help.text
+msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
+msgstr "DAYS(\"10/10/1990\";\"10/10/1980\") returns 3652."
+
+#: 02140100.xhp#tit.help.text
+msgctxt "02140100.xhp#tit.help.text"
+msgid "Down"
+msgstr "Надолу"
+
+#: 02140100.xhp#hd_id3150792.1.help.text
+msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
+msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
+
+#: 02140100.xhp#par_id3153969.2.help.text
+msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
+msgstr "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
+
+#: 02140100.xhp#par_id3145787.3.help.text
+msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
+msgstr "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
+
+#: 04030000.xhp#tit.help.text
+msgctxt "04030000.xhp#tit.help.text"
+msgid "Rows"
+msgstr "Редови"
+
+#: 04030000.xhp#bm_id3150541.help.text
+msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
+
+#: 04030000.xhp#hd_id3150541.1.help.text
+msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
+
+#: 04030000.xhp#par_id3150767.2.help.text
+msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
+msgstr "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
+
+#: 04060108.xhp#tit.help.text
+msgctxt "04060108.xhp#tit.help.text"
+msgid "Statistics Functions"
+msgstr "Statistics Functions"
+
+#: 04060108.xhp#bm_id3153018.help.text
+msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
+msgstr "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics</bookmark_value>"
+
+#: 04060108.xhp#hd_id3153018.1.help.text
+msgctxt "04060108.xhp#hd_id3153018.1.help.text"
+msgid "Statistics Functions"
+msgstr "Statistics Functions"
+
+#: 04060108.xhp#par_id3157874.2.help.text
+msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
+msgstr "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
+
+#: 04060108.xhp#par_id3149001.9.help.text
+msgid "Some of the examples use the following data table:"
+msgstr "Some of the examples use the following data table:"
+
+#: 04060108.xhp#par_id3148775.10.help.text
+msgctxt "04060108.xhp#par_id3148775.10.help.text"
+msgid "C"
+msgstr "C"
+
+#: 04060108.xhp#par_id3145297.11.help.text
+msgctxt "04060108.xhp#par_id3145297.11.help.text"
+msgid "D"
+msgstr "D"
+
+#: 04060108.xhp#par_id3150661.12.help.text
+msgctxt "04060108.xhp#par_id3150661.12.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060108.xhp#par_id3153551.13.help.text
+msgid "x value"
+msgstr "x value"
+
+#: 04060108.xhp#par_id3147536.14.help.text
+msgid "y value"
+msgstr "y value"
+
+#: 04060108.xhp#par_id3153224.15.help.text
+msgctxt "04060108.xhp#par_id3153224.15.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060108.xhp#par_id3150475.16.help.text
+msgctxt "04060108.xhp#par_id3150475.16.help.text"
+msgid "-5"
+msgstr "-5"
+
+#: 04060108.xhp#par_id3155367.17.help.text
+msgid "-3"
+msgstr "-3"
+
+#: 04060108.xhp#par_id3149783.18.help.text
+msgctxt "04060108.xhp#par_id3149783.18.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060108.xhp#par_id3153181.19.help.text
+msgid "-2"
+msgstr "-2"
+
+#: 04060108.xhp#par_id3148429.20.help.text
+msgctxt "04060108.xhp#par_id3148429.20.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060108.xhp#par_id3152588.21.help.text
+msgctxt "04060108.xhp#par_id3152588.21.help.text"
+msgid "5"
+msgstr "5"
+
+#: 04060108.xhp#par_id3147483.22.help.text
+msgid "-1"
+msgstr "-1"
+
+#: 04060108.xhp#par_id3083443.23.help.text
+msgctxt "04060108.xhp#par_id3083443.23.help.text"
+msgid "1"
+msgstr "1"
+
+#: 04060108.xhp#par_id3149826.24.help.text
+msgctxt "04060108.xhp#par_id3149826.24.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060108.xhp#par_id3163820.25.help.text
+msgctxt "04060108.xhp#par_id3163820.25.help.text"
+msgid "0"
+msgstr "0"
+
+#: 04060108.xhp#par_id3154816.26.help.text
+msgctxt "04060108.xhp#par_id3154816.26.help.text"
+msgid "3"
+msgstr "3"
+
+#: 04060108.xhp#par_id3149276.27.help.text
+msgctxt "04060108.xhp#par_id3149276.27.help.text"
+msgid "7"
+msgstr "7"
+
+#: 04060108.xhp#par_id3149267.28.help.text
+msgctxt "04060108.xhp#par_id3149267.28.help.text"
+msgid "2"
+msgstr "2"
+
+#: 04060108.xhp#par_id3156310.29.help.text
+msgctxt "04060108.xhp#par_id3156310.29.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060108.xhp#par_id3154639.30.help.text
+msgctxt "04060108.xhp#par_id3154639.30.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060108.xhp#par_id3145205.31.help.text
+msgctxt "04060108.xhp#par_id3145205.31.help.text"
+msgid "4"
+msgstr "4"
+
+#: 04060108.xhp#par_id3153276.32.help.text
+msgctxt "04060108.xhp#par_id3153276.32.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060108.xhp#par_id3150756.33.help.text
+msgctxt "04060108.xhp#par_id3150756.33.help.text"
+msgid "9"
+msgstr "9"
+
+#: 04060108.xhp#par_id3156095.34.help.text
+msgctxt "04060108.xhp#par_id3156095.34.help.text"
+msgid "6"
+msgstr "6"
+
+#: 04060108.xhp#par_id3152929.35.help.text
+msgctxt "04060108.xhp#par_id3152929.35.help.text"
+msgid "8"
+msgstr "8"
+
+#: 04060108.xhp#par_id3156324.36.help.text
+msgid "The statistical functions are described in the following subsections."
+msgstr "The statistical functions are described in the following subsections."
+
+#: 04060108.xhp#par_id3150271.37.help.text
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
+
+#: 05030300.xhp#tit.help.text
+msgid "Hide"
+msgstr "Скриј"
+
+#: 05030300.xhp#bm_id3147265.help.text
+msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
+
+#: 05030300.xhp#hd_id3147265.1.help.text
+msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+
+#: 05030300.xhp#par_id3156281.2.help.text
+msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
+msgstr "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
+
+#: 05030300.xhp#par_id3148645.3.help.text
+msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
+msgstr "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
+
+#: 05030300.xhp#par_id3147427.6.help.text
+msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
+msgstr "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
+
+#: 05030300.xhp#par_id3153157.5.help.text
+msgid "A break in the row or column header indicates whether the row or column is hidden."
+msgstr "A break in the row or column header indicates whether the row or column is hidden."
+
+#: 05030300.xhp#par_id3145251.4.help.text
+msgid "To display hidden rows, columns or sheets"
+msgstr "To display hidden rows, columns or sheets"
+
+#: 05030300.xhp#par_id8337046.help.text
+msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
+msgstr "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
+
+#: 05030300.xhp#par_id5532090.help.text
+msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgstr "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+
+#: func_minute.xhp#tit.help.text
+#, fuzzy
+msgid "MINUTE"
+msgstr "MINUTE "
+
+#: func_minute.xhp#bm_id3149803.help.text
+msgid "<bookmark_value>MINUTE function</bookmark_value>"
+msgstr "<bookmark_value>MINUTE function</bookmark_value>"
+
+#: func_minute.xhp#hd_id3149803.66.help.text
+msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
+msgstr "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
+
+#: func_minute.xhp#par_id3148988.67.help.text
+msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
+msgstr "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value</ahelp> The minute is returned as a number between 0 and 59."
+
+#: func_minute.xhp#hd_id3154343.68.help.text
+msgctxt "func_minute.xhp#hd_id3154343.68.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_minute.xhp#par_id3148660.69.help.text
+msgid "MINUTE(Number)"
+msgstr "MINUTE(number)"
+
+#: func_minute.xhp#par_id3154611.70.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
+msgstr "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
+
+#: func_minute.xhp#hd_id3145374.71.help.text
+msgctxt "func_minute.xhp#hd_id3145374.71.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_minute.xhp#par_id3148463.72.help.text
+msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
+msgstr "MINUTE(8.999) returns 58"
+
+#: func_minute.xhp#par_id3149419.73.help.text
+msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
+msgstr "MINUTE(8.9999) returns 59"
+
+#: func_minute.xhp#par_id3144755.74.help.text
+msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
+msgstr "MINUTE(NOW()) returns the current minute value."
+
+#: 12030100.xhp#tit.help.text
+msgid "Sort Criteria"
+msgstr "Критериуми за подредување"
+
+#: 12030100.xhp#bm_id3152350.help.text
+msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
+msgstr "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
+
+#: 12030100.xhp#hd_id3152350.1.help.text
+msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+
+#: 12030100.xhp#par_id3151385.2.help.text
+msgid "<ahelp hid=\"HID_SCPAGE_SORT_FIELDS\">Specify the sorting options for the selected range.</ahelp>"
+msgstr "<ahelp hid=\"HID_SCPAGE_SORT_FIELDS\">Specify the sorting options for the selected range.</ahelp>"
+
+#: 12030100.xhp#par_id3152462.24.help.text
+msgid "Ensure that you include any row and column titles in the selection."
+msgstr "Ensure that you include any row and column titles in the selection."
+
+#: 12030100.xhp#hd_id3147428.3.help.text
+msgctxt "12030100.xhp#hd_id3147428.3.help.text"
+msgid "Sort by"
+msgstr "Подреди по"
+
+#: 12030100.xhp#par_id3155854.4.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT1\">Select the column that you want to use as the primary sort key.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT1\">Select the column that you want to use as the primary sort key.</ahelp>"
+
+#: 12030100.xhp#hd_id3146121.5.help.text
+msgctxt "12030100.xhp#hd_id3146121.5.help.text"
+msgid "Ascending"
+msgstr "Растечки"
+
+#: 12030100.xhp#par_id3148645.6.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP1\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP1\">Sorts the selection from the lowest value to the highest value, that is, from A to Z or 0 to 9.</ahelp>"
+
+#: 12030100.xhp#hd_id3155411.7.help.text
+msgctxt "12030100.xhp#hd_id3155411.7.help.text"
+msgid "Descending"
+msgstr "Опаѓачки"
+
+#: 12030100.xhp#par_id3151075.8.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN1\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN1\">Sorts the selection from the highest value to the lowest value, that is from Z to A or 9 to 0.</ahelp>"
+
+#: 12030100.xhp#hd_id3154492.9.help.text
+msgctxt "12030100.xhp#hd_id3154492.9.help.text"
+msgid "Then by"
+msgstr "Потоа според"
+
+#: 12030100.xhp#par_id3156283.10.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT2\">Select the column that you want to use as the secondary sort key.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT2\">Select the column that you want to use as the secondary sort key.</ahelp>"
+
+#: 12030100.xhp#hd_id3149413.11.help.text
+msgctxt "12030100.xhp#hd_id3149413.11.help.text"
+msgid "Ascending"
+msgstr "Растечки"
+
+#: 12030100.xhp#par_id3154018.12.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP2\">Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP2\">Sorts the selection from the lowest value to the highest value, that is, from A to Z or 0 to 9.</ahelp>"
+
+#: 12030100.xhp#hd_id3146972.13.help.text
+msgctxt "12030100.xhp#hd_id3146972.13.help.text"
+msgid "Descending"
+msgstr "Опаѓачки"
+
+#: 12030100.xhp#par_id3145640.14.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN2\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN2\">Sorts the selection from the highest value to the lowest value, that is from Z to A or 9 to 0.</ahelp>"
+
+#: 12030100.xhp#hd_id3154756.15.help.text
+msgctxt "12030100.xhp#hd_id3154756.15.help.text"
+msgid "Then by"
+msgstr "Потоа според"
+
+#: 12030100.xhp#par_id3147338.16.help.text
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT3\">Select the column that you want to use as the third sort key.</ahelp>"
+msgstr "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SORT_FIELDS:LB_SORT3\">Select the column that you want to use as the third sort key.</ahelp>"
+
+#: 12030100.xhp#hd_id3163808.17.help.text
+msgctxt "12030100.xhp#hd_id3163808.17.help.text"
+msgid "Ascending"
+msgstr "Растечки"
+
+#: 12030100.xhp#par_id3155336.18.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP3\">Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_UP3\">Sorts the selection from the lowest value to the highest value, that is, from A to Z or 0 to 9.</ahelp>"
+
+#: 12030100.xhp#hd_id3147364.19.help.text
+msgctxt "12030100.xhp#hd_id3147364.19.help.text"
+msgid "Descending"
+msgstr "Опаѓачки"
+
+#: 12030100.xhp#par_id3149258.20.help.text
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN3\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SORT_FIELDS:BTN_DOWN3\">Sorts the selection from the highest value to the lowest value, that is from Z to A or 9 to 0.</ahelp>"
+
+#: 12030100.xhp#hd_id3150300.21.help.text
+msgid "Sort Ascending/Descending"
+msgstr "Sort Ascending/Descending"
+
+#: 12030100.xhp#par_id3158212.22.help.text
+msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgstr "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the ASCII order of the characters.</variable></ahelp>"
+
+#: 12030100.xhp#par_id3159236.25.help.text
+msgid "Icons on the <emph>Standard</emph> toolbar"
+msgstr "Icons on the <emph>Standard</emph> toolbar"
+
+#: 05100000.xhp#tit.help.text
+msgid "Styles and Formatting"
+msgstr "Styles and Formatting"
+
+#: 05100000.xhp#bm_id3150447.help.text
+msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
+msgstr "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value><bookmark_value>Styles and Formatting window</bookmark_value><bookmark_value>formats; Styles and Formatting window</bookmark_value><bookmark_value>formatting; Styles and Formatting window</bookmark_value><bookmark_value>paint can for applying styles</bookmark_value>"
+
+#: 05100000.xhp#hd_id3150447.1.help.text
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
+
+#: 05100000.xhp#par_id3147434.2.help.text
+msgid "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
+msgstr "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
+
+#: 05100000.xhp#par_id3149665.30.help.text
+msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+msgstr "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+
+#: 05100000.xhp#hd_id3150012.36.help.text
+msgid "How to apply a cell style:"
+msgstr "How to apply a cell style:"
+
+#: 05100000.xhp#par_id3159155.37.help.text
+msgid "Select the cell or cell range."
+msgstr "Select the cell or cell range."
+
+#: 05100000.xhp#par_id3145749.38.help.text
+msgid "Double-click the style in the Styles and Formatting window."
+msgstr "Double-click the style in the Styles and Formatting window."
+
+#: 05100000.xhp#hd_id3153877.4.help.text
+msgctxt "05100000.xhp#hd_id3153877.4.help.text"
+msgid "Cell Styles"
+msgstr "Стилови на ќелија"
+
+#: 05100000.xhp#par_id3145801.6.help.text
+msgid "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
+
+#: 05100000.xhp#par_id3150751.help.text
+msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153714\">Icon</alt></image>"
+
+#: 05100000.xhp#par_id3154255.5.help.text
+msgctxt "05100000.xhp#par_id3154255.5.help.text"
+msgid "Cell Styles"
+msgstr "Стилови на ќелија"
+
+#: 05100000.xhp#hd_id3153963.7.help.text
+msgctxt "05100000.xhp#hd_id3153963.7.help.text"
+msgid "Page Styles"
+msgstr "Стилови на страница"
+
+#: 05100000.xhp#par_id3147003.9.help.text
+msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
+msgstr "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
+
+#: 05100000.xhp#par_id3159100.help.text
+msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+
+#: 05100000.xhp#par_id3150361.8.help.text
+msgctxt "05100000.xhp#par_id3150361.8.help.text"
+msgid "Page Styles"
+msgstr "Стилови на страница"
+
+#: 05100000.xhp#hd_id3150202.10.help.text
+msgctxt "05100000.xhp#hd_id3150202.10.help.text"
+msgid "Fill Format Mode"
+msgstr "Режим на формати за пополнување"
+
+#: 05100000.xhp#par_id3155531.12.help.text
+msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
+
+#: 05100000.xhp#par_id3155087.help.text
+msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153068\">Icon</alt></image>"
+
+#: 05100000.xhp#par_id3156198.11.help.text
+msgctxt "05100000.xhp#par_id3156198.11.help.text"
+msgid "Fill Format Mode"
+msgstr "Режим на формати за пополнување"
+
+#: 05100000.xhp#hd_id3148870.13.help.text
+msgid "How to apply a new style with the paint can:"
+msgstr "How to apply a new style with the paint can:"
+
+#: 05100000.xhp#par_id3145078.27.help.text
+msgid "Select the desired style from the Styles and Formatting window."
+msgstr "Select the desired style from the Styles and Formatting window."
+
+#: 05100000.xhp#par_id3159098.28.help.text
+msgid "Click the <emph>Fill Format Mode</emph> icon."
+msgstr "Click the <emph>Fill Format Mode</emph> icon."
+
+#: 05100000.xhp#par_id3148609.15.help.text
+msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
+msgstr "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
+
+#: 05100000.xhp#par_id3149438.29.help.text
+msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
+msgstr "Click the <emph>Fill Format Mode</emph> again to exit this mode."
+
+#: 05100000.xhp#hd_id3153975.16.help.text
+msgctxt "05100000.xhp#hd_id3153975.16.help.text"
+msgid "New Style from Selection"
+msgstr "New Style from Selection"
+
+#: 05100000.xhp#par_id3149499.18.help.text
+msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
+msgstr ""
+
+#: 05100000.xhp#par_id3150050.help.text
+msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154649\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154649\">Icon</alt></image>"
+
+#: 05100000.xhp#par_id3146963.17.help.text
+msgctxt "05100000.xhp#par_id3146963.17.help.text"
+msgid "New Style from Selection"
+msgstr "New Style from Selection"
+
+#: 05100000.xhp#hd_id3153813.19.help.text
+msgctxt "05100000.xhp#hd_id3153813.19.help.text"
+msgid "Update Style"
+msgstr "Ажурирај стил"
+
+#: 05100000.xhp#par_id3154707.21.help.text
+msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+
+#: 05100000.xhp#par_id3145118.help.text
+msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155754\">Icon</alt></image>"
+
+#: 05100000.xhp#par_id3147501.20.help.text
+msgctxt "05100000.xhp#par_id3147501.20.help.text"
+msgid "Update Style"
+msgstr "Ажурирај стил"
+
+#: 05100000.xhp#par_idN109BE.help.text
+msgid "Style List"
+msgstr "Style List"
+
+#: 05100000.xhp#par_idN109C2.help.text
+msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
+
+#: 05100000.xhp#par_idN109D1.help.text
+msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgstr "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+
+#: 05100000.xhp#hd_id3149053.24.help.text
+msgid "Style Groups"
+msgstr "Style Groups"
+
+#: 05100000.xhp#par_id3147299.25.help.text
+msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+
+#: func_hour.xhp#tit.help.text
+msgid "HOUR "
+msgstr "HOUR "
+
+#: func_hour.xhp#bm_id3154725.help.text
+msgid "<bookmark_value>HOUR function</bookmark_value>"
+msgstr "<bookmark_value>HOUR function</bookmark_value>"
+
+#: func_hour.xhp#hd_id3154725.96.help.text
+msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
+msgstr "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
+
+#: func_hour.xhp#par_id3149747.97.help.text
+msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
+msgstr "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
+
+#: func_hour.xhp#hd_id3149338.98.help.text
+msgctxt "func_hour.xhp#hd_id3149338.98.help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#: func_hour.xhp#par_id3150637.99.help.text
+msgid "HOUR(Number)"
+msgstr "HOUR(Number)"
+
+#: func_hour.xhp#par_id3147547.100.help.text
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
+msgstr "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
+
+#: func_hour.xhp#hd_id3153264.101.help.text
+msgctxt "func_hour.xhp#hd_id3153264.101.help.text"
+msgid "Examples"
+msgstr "Examples"
+
+#: func_hour.xhp#par_id3159215.103.help.text
+msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
+msgstr "HOUR(NOW()) returns the current hour"
+
+#: func_hour.xhp#par_id3145152.104.help.text
+msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
+msgstr "HOUR(C4) returns 17 if the contents of C4 = 17:20:00."
+
+#: func_hour.xhp#par_id3154188.105.help.text
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
+msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
+
+#: 06030300.xhp#tit.help.text
+msgid "Trace Dependents"
+msgstr "Следи зависности"
+
+#: 06030300.xhp#bm_id3153252.help.text
+msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
+msgstr "<bookmark_value>cells; tracing dependents</bookmark_value>"
+
+#: 06030300.xhp#hd_id3153252.1.help.text
+msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+
+#: 06030300.xhp#par_id3156024.2.help.text
+msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
+
+#: 06030300.xhp#par_id3148948.4.help.text
+msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
+msgstr "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
+
+#: 06030300.xhp#par_id3151112.3.help.text
+msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
+msgstr "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
+
+#: 06060200.xhp#tit.help.text
+msgctxt "06060200.xhp#tit.help.text"
+msgid "Protecting document"
+msgstr "Protecting document"
+
+#: 06060200.xhp#hd_id3150541.1.help.text
+msgctxt "06060200.xhp#hd_id3150541.1.help.text"
+msgid "Protecting document"
+msgstr "Protecting document"
+
+#: 06060200.xhp#par_id3145172.2.help.text
+msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
+msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
+
+#: 06060200.xhp#par_id3153188.6.help.text
+msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
+msgstr "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
+
+#: 06060200.xhp#par_id3145750.7.help.text
+msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command. "
+msgstr "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command. "
+
+#: 06060200.xhp#hd_id3152596.4.help.text
+msgctxt "06060200.xhp#hd_id3152596.4.help.text"
+msgid "Password (optional)"
+msgstr "Лозинка (изборно)"
+
+#: 06060200.xhp#par_id3155412.5.help.text
+msgid "You can create a password to protect your document against unauthorized or accidental modifications."
+msgstr "You can create a password to protect your document against unauthorized or accidental modifications."
+
+#: 06060200.xhp#par_id3150717.9.help.text
+msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
+msgstr "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
+
+#: 04060100.xhp#tit.help.text
+msgctxt "04060100.xhp#tit.help.text"
+msgid "Functions by Category"
+msgstr "Функции по категории"
+
+#: 04060100.xhp#bm_id3148575.help.text
+msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
+msgstr "<bookmark_value>functions; Calc list</bookmark_value><bookmark_value>Calc functions</bookmark_value><bookmark_value>categories of functions</bookmark_value>"
+
+#: 04060100.xhp#hd_id3154944.16.help.text
+msgctxt "04060100.xhp#hd_id3154944.16.help.text"
+msgid "Functions by Category"
+msgstr "Функции по категорија"
+
+#: 04060100.xhp#par_id3149378.2.help.text
+msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
+msgstr "This section describes the functions of $[officename] Calc. The various functions are divided into logical categories in the Function Wizard."
+
+#: 04060100.xhp#par_id0120200910234570.help.text
+msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
+msgstr ""
+
+#: 04060100.xhp#hd_id3146972.3.help.text
+msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
+msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
+
+#: 04060100.xhp#hd_id3155443.4.help.text
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
+msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
+
+#: 04060100.xhp#hd_id3147339.5.help.text
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+
+#: 04060100.xhp#hd_id3153963.6.help.text
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
+msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
+
+#: 04060100.xhp#hd_id3146316.7.help.text
+msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
+msgstr "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
+
+#: 04060100.xhp#hd_id3148485.8.help.text
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
+
+#: 04060100.xhp#hd_id3150363.9.help.text
+msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
+msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
+
+#: 04060100.xhp#hd_id3150208.10.help.text
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
+
+#: 04060100.xhp#hd_id3166428.11.help.text
+msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
+msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
+
+#: 04060100.xhp#hd_id3145585.12.help.text
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
+
+#: 04060100.xhp#hd_id3156449.13.help.text
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
+
+#: 04060100.xhp#par_id3150715.14.help.text
+msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
+msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
+
+#: 04060100.xhp#par_id0902200809540918.help.text
+msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
+msgstr ""
diff --git a/source/mk/helpcontent2/source/text/scalc/02.po b/source/mk/helpcontent2/source/text/scalc/02.po
new file mode 100644
index 00000000000..0f601b3270b
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/scalc/02.po
@@ -0,0 +1,532 @@
+#. extracted from helpcontent2/source/text/scalc/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%2Fscalc%2F02.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-06 00:23+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 18010000.xhp#tit.help.text
+msgctxt "18010000.xhp#tit.help.text"
+msgid "Insert"
+msgstr "Вметни"
+
+#: 18010000.xhp#bm_id3156329.help.text
+msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
+
+#: 18010000.xhp#hd_id3156329.1.help.text
+msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
+msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
+
+#: 18010000.xhp#par_id3147336.2.help.text
+msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
+
+#: 18010000.xhp#par_id3148664.3.help.text
+msgctxt "18010000.xhp#par_id3148664.3.help.text"
+msgid "Tools bar icon:"
+msgstr "Tools bar icon:"
+
+#: 18010000.xhp#par_id3150767.help.text
+msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Икона</alt></image>"
+
+#: 18010000.xhp#par_id3146120.4.help.text
+msgctxt "18010000.xhp#par_id3146120.4.help.text"
+msgid "Insert"
+msgstr "Вметни"
+
+#: 18010000.xhp#par_id3153188.6.help.text
+msgctxt "18010000.xhp#par_id3153188.6.help.text"
+msgid "You can select the following icons:"
+msgstr "You can select the following icons:"
+
+#: 18010000.xhp#hd_id4283883.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\">Лебдечка рамка</link>"
+
+#: 18010000.xhp#hd_id3149410.8.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>"
+
+#: 18010000.xhp#hd_id3151117.7.help.text
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+
+#: 18010000.xhp#hd_id3633533.help.text
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Формула</link>"
+
+#: 18010000.xhp#par_idN10769.help.text
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Графикон</link>"
+
+#: 18010000.xhp#hd_id7581408.help.text
+msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE објект</link>"
+
+#: 06080000.xhp#tit.help.text
+msgid "Theme Selection"
+msgstr "Избор на тема"
+
+#: 06080000.xhp#hd_id3153087.1.help.text
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">Theme Selection</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme Selection\">Theme Selection</link>"
+
+#: 06080000.xhp#par_id3154515.2.help.text
+msgid "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">Applies a formatting style to the selected cells.</ahelp></variable> The styles include font, border, and background color information."
+msgstr "<variable id=\"thementext\"><ahelp hid=\".uno:ChooseDesign\">Applies a formatting style to the selected cells.</ahelp></variable> The styles include font, border, and background color information."
+
+#: 06080000.xhp#par_id3155132.help.text
+msgid "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145785\" src=\"cmd/sc_choosedesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145785\">Икона</alt></image>"
+
+#: 06080000.xhp#par_id3153953.4.help.text
+msgid "Choose Themes"
+msgstr "Избери теми"
+
+#: 06080000.xhp#par_id3147127.5.help.text
+msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
+
+#: 10060000.xhp#tit.help.text
+msgid "Zoom Out"
+msgstr "Намали"
+
+#: 10060000.xhp#bm_id3153561.help.text
+msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
+msgstr "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>scaling; reducing the screen display</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
+
+#: 10060000.xhp#hd_id3153561.1.help.text
+msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
+msgstr "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
+
+#: 10060000.xhp#par_id3151246.2.help.text
+msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+
+#: 10060000.xhp#par_id3150398.4.help.text
+msgid "The minimum zoom factor is 20%."
+msgstr "The minimum zoom factor is 20%."
+
+#: 10060000.xhp#par_id3153770.help.text
+msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Икона</alt></image>"
+
+#: 10060000.xhp#par_id3150440.3.help.text
+msgid "Zooming Out"
+msgstr "Zooming Out"
+
+#: 08080000.xhp#tit.help.text
+msgid "Standard Formula, Date/Time, Error Warning"
+msgstr "Standard Formula, Date/Time, Error Warning"
+
+#: 08080000.xhp#bm_id3147335.help.text
+msgid "<bookmark_value>formulas;status bar</bookmark_value>"
+msgstr "<bookmark_value>формули;статусна лента</bookmark_value>"
+
+#: 08080000.xhp#hd_id3147335.1.help.text
+msgid "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">Standard Formula, Date/Time, Error Warning</link>"
+msgstr "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">Standard Formula, Date/Time, Error Warning</link>"
+
+#: 08080000.xhp#par_id3150791.2.help.text
+msgid "<ahelp hid=\".uno:StateTableCell\">Displays information about the current document. By default, the SUM of the contents of the selected cells is displayed.</ahelp>"
+msgstr "<ahelp hid=\".uno:StateTableCell\">Displays information about the current document. By default, the SUM of the contents of the selected cells is displayed.</ahelp>"
+
+#: 08080000.xhp#par_id3155061.3.help.text
+msgid "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None."
+msgstr "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None."
+
+#: 08080000.xhp#par_id3153969.4.help.text
+msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
+
+#: 02160000.xhp#tit.help.text
+msgctxt "02160000.xhp#tit.help.text"
+msgid "Number Format: Add Decimal Place"
+msgstr "Формат на број: Додај децимални места"
+
+#: 02160000.xhp#hd_id3150275.1.help.text
+msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Формат на број: Додај децимални места</link>"
+
+#: 02160000.xhp#par_id3150792.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\">Додава едно децимално место на броевите во избраните ќелии.</ahelp>"
+
+#: 02160000.xhp#par_id3145787.help.text
+msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Икона</alt></image>"
+
+#: 02160000.xhp#par_id3149262.3.help.text
+msgctxt "02160000.xhp#par_id3149262.3.help.text"
+msgid "Number Format: Add Decimal Place"
+msgstr "Формат на број: Додај децимални места"
+
+#: 06010000.xhp#tit.help.text
+msgid "Sheet Area"
+msgstr "Област на листот"
+
+#: 06010000.xhp#bm_id3156326.help.text
+msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
+msgstr "<bookmark_value>лента за формули; имиња на област на листот</bookmark_value><bookmark_value>имиња на област на листот</bookmark_value><bookmark_value>покажува; референци на ќелии</bookmark_value><bookmark_value>референци на ќелии; покажува</bookmark_value>"
+
+#: 06010000.xhp#hd_id3156326.1.help.text
+msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
+msgstr "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Поле за име</link>"
+
+#: 06010000.xhp#par_id3149656.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
+
+#: 06010000.xhp#par_id3163710.help.text
+msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
+msgstr "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
+
+#: 06010000.xhp#par_id3151118.4.help.text
+msgid "Name Box"
+msgstr "име на кутија"
+
+#: 06010000.xhp#par_id3152596.6.help.text
+msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
+msgstr "За да се префрлите во одредена ќелија, или да се селектира опсег на ќелии, внесете ја референцата на ќелијата во ова поле, на пример, F1, или A1:C4."
+
+#: 02150000.xhp#tit.help.text
+msgid "Number format: Default"
+msgstr "Формат на број: Стандард"
+
+#: 02150000.xhp#hd_id3149182.1.help.text
+msgid "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">Number format: Default</link>"
+msgstr "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">Формат на број: Стандард</link>"
+
+#: 02150000.xhp#par_id3163802.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">Applies the default number format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">Го доделува зададениот формат на броевите на селектираните ќелии.</ahelp>"
+
+#: 02150000.xhp#par_id3155922.help.text
+msgid "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt id=\"alt_id3156024\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_numberformatstandard.png\" id=\"img_id3156024\"><alt id=\"alt_id3156024\">Икона</alt></image>"
+
+#: 02150000.xhp#par_id3153361.3.help.text
+msgid "Number Format: Standard"
+msgstr "Формат на броеви: стандарден"
+
+#: 02150000.xhp#par_id3154908.4.help.text
+msgctxt "02150000.xhp#par_id3154908.4.help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Форматирај - Ќелија - Броеви</link>."
+
+#: 06050000.xhp#tit.help.text
+msgid "Input line"
+msgstr "Внеси линија"
+
+#: 06050000.xhp#hd_id3153821.1.help.text
+msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
+msgstr "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">линија за внесување</link>"
+
+#: 06050000.xhp#par_id3155922.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">Внесете ја формулата што сакате да и ја доделите на актуелната ќелија. Исто така можете да кликнете на <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Волшебник за функции</link> икона за да внесете зададена функција во формулата.</ahelp>"
+
+#: 02170000.xhp#tit.help.text
+msgctxt "02170000.xhp#tit.help.text"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Формат на броеви: Избриши децимални места"
+
+#: 02170000.xhp#hd_id3149164.1.help.text
+msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Формат на броеви: избриши децимални места </link>"
+
+#: 02170000.xhp#par_id3147264.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">Отстранува едно децимално место од броевите во избраните ќелии.</ahelp>"
+
+#: 02170000.xhp#par_id3145173.help.text
+msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Икона</alt></image>"
+
+#: 02170000.xhp#par_id3154686.3.help.text
+msgctxt "02170000.xhp#par_id3154686.3.help.text"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Формат на броеви: Избриши децимални места"
+
+#: 06030000.xhp#tit.help.text
+msgctxt "06030000.xhp#tit.help.text"
+msgid "Sum"
+msgstr "Збир"
+
+#: 06030000.xhp#bm_id3157909.help.text
+msgid "<bookmark_value>functions;sum function icon</bookmark_value> <bookmark_value>formula bar;sum function</bookmark_value> <bookmark_value>sum icon</bookmark_value> <bookmark_value>AutoSum button, see sum icon</bookmark_value>"
+msgstr "<bookmark_value>функции;збир функција икона</bookmark_value><bookmark_value>лента за формули;збир функција</bookmark_value><bookmark_value>збир функција во лента за формули</bookmark_value><bookmark_value>додавање; збир икона</bookmark_value>"
+
+#: 06030000.xhp#hd_id3157909.1.help.text
+msgid "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Sum</link>"
+msgstr "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Sum</link>"
+
+#: 06030000.xhp#par_id3150543.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_SUMME\">Inserts the sum of a cell range into the current cell, or inserts sum values into selected cells. Click in a cell, click this icon, and optionally adjust the cell range. Or select some cells into which the sum values will be inserted, then click the icon.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_SUMME\">Автоматски додава броеви во наведениот опсег на ќелии. Кликнете во ќелијата, кликнете на оваа икона и потоа внесете го опсегот на ќелии. Исто така можете да го дефинирате опсегот на ќелии во табеларниот приказ</ahelp>"
+
+#: 06030000.xhp#par_id3153770.help.text
+msgid "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147434\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147434\" src=\"cmd/sc_autosum.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147434\">Икона</alt></image>"
+
+#: 06030000.xhp#par_id3152577.15.help.text
+msgctxt "06030000.xhp#par_id3152577.15.help.text"
+msgid "Sum"
+msgstr "Збир"
+
+#: 06030000.xhp#par_id3156444.16.help.text
+msgid "$[officename] automatically suggests a cell range, provided that the spreadsheet contains data. If the cell range already contains a sum function, you can combine it with the new one to yield the total sum of the range. If the range contains filters, the Subtotal function is inserted instead of the Sum function."
+msgstr "$[officename] автоматски предложува опсег на ќелии , ако табеларниот приказ содржи податоци. Ако опсегот на ќелии веќе содржи функција за збир, можете да го комбинирате со нова ќелија за да го додадете на вкупната сума на опсегот.Ако опсегот содржи филтри, функцијата Subtotal ја заменува функцијата Збир."
+
+#: 06030000.xhp#par_id3153189.3.help.text
+msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
+msgstr "Click the <emph>Accept</emph> икона (обележана со зелено) за да ја користите формулата што е прикажана во линијата за внесување."
+
+#: 08010000.xhp#tit.help.text
+msgid "Position in document"
+msgstr "Position in document"
+
+#: 08010000.xhp#hd_id3145119.1.help.text
+msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
+msgstr "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
+
+#: 08010000.xhp#par_id3147265.2.help.text
+msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
+
+#: 06060000.xhp#tit.help.text
+msgctxt "06060000.xhp#tit.help.text"
+msgid "Cancel"
+msgstr "Откажи"
+
+#: 06060000.xhp#bm_id3154514.help.text
+msgid "<bookmark_value>formula bar; canceling inputs</bookmark_value><bookmark_value>functions; canceling input icon</bookmark_value>"
+msgstr "<bookmark_value>лента за формули; откажување на внесувањето</bookmark_value><bookmark_value>функции; откажување на иконата за внесување</bookmark_value>"
+
+#: 06060000.xhp#hd_id3154514.1.help.text
+msgid "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Cancel</link>"
+msgstr "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Откажи</link>"
+
+#: 06060000.xhp#par_id3153823.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_CANCEL\">Clears the contents of the <emph>Input line</emph>, or cancels the changes that you made to an existing formula.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_CANCEL\">Ја брише содржината од <emph>линија за внесување</emph>, или ги откажува промените што сте ги направиле на постоечката формула.</ahelp>"
+
+#: 06060000.xhp#par_id3156281.help.text
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu08.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu08.png\" width=\"0.2228inch\" height=\"0.2228inch\"><alt id=\"alt_id3156422\">Икона</alt></image>"
+
+#: 06060000.xhp#par_id3153970.3.help.text
+msgctxt "06060000.xhp#par_id3153970.3.help.text"
+msgid "Cancel"
+msgstr "Откажи"
+
+#: 02130000.xhp#tit.help.text
+msgid "Number format: Currency"
+msgstr "Формат на броеви: валута"
+
+#: 02130000.xhp#hd_id3152892.1.help.text
+msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
+msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Формат на број: Валута</link>"
+
+#: 02130000.xhp#par_id3148837.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Го доделува стандардниот формат на валутата на селектираните ќелии.</ahelp>"
+
+#: 02130000.xhp#par_id3155267.help.text
+msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
+msgstr "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Икона</alt></image>"
+
+#: 02130000.xhp#par_id3150214.3.help.text
+msgid "Number Format: Currency"
+msgstr "Формат на броеви: валута"
+
+#: 02130000.xhp#par_id3146776.4.help.text
+msgctxt "02130000.xhp#par_id3146776.4.help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Форматирај - Ќелија - Броеви</link>."
+
+#: 06070000.xhp#tit.help.text
+msgctxt "06070000.xhp#tit.help.text"
+msgid "Accept"
+msgstr "Прифати"
+
+#: 06070000.xhp#bm_id3143267.help.text
+msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
+msgstr "<bookmark_value>линија за формули; прифаќа внесувања</bookmark_value><bookmark_value>функции; accepting input icon</bookmark_value>"
+
+#: 06070000.xhp#hd_id3143267.1.help.text
+msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
+msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
+
+#: 06070000.xhp#par_id3151245.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
+
+#: 06070000.xhp#par_id3150769.help.text
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Икона</alt></image>"
+
+#: 06070000.xhp#par_id3125864.3.help.text
+msgctxt "06070000.xhp#par_id3125864.3.help.text"
+msgid "Accept"
+msgstr "Прифати"
+
+#: 02140000.xhp#tit.help.text
+msgid "Number format: Percent"
+msgstr "Формат на бројот: Процент"
+
+#: 02140000.xhp#hd_id3156329.1.help.text
+msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
+msgstr "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Формат на бројот: Процент</link>"
+
+#: 02140000.xhp#par_id3155629.2.help.text
+msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
+msgstr "<ahelp hid=\".uno:NumberFormatPercent\">Го доделува форматот за процент на селектираните ќелии.</ahelp>"
+
+#: 02140000.xhp#par_id3153968.help.text
+msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Икона</alt></image>"
+
+#: 02140000.xhp#par_id3151114.3.help.text
+msgid "Number Format: Percent"
+msgstr "Формат на броеви: процент"
+
+#: 02140000.xhp#bm_id3149260.help.text
+msgid "<bookmark_value>percentage calculations</bookmark_value>"
+msgstr "<bookmark_value>пресметки во проценти</bookmark_value>"
+
+#: 02140000.xhp#par_id3149260.5.help.text
+msgid "You can also enter a percentage sign (%) after a number in a cell:"
+msgstr "Можете да внесете знак за процент (%) по бројот во ќелијата:"
+
+#: 02140000.xhp#par_id3155411.6.help.text
+msgid "1% corresponds to 0.01"
+msgstr "1% соодветно на 0.01"
+
+#: 02140000.xhp#par_id3145749.7.help.text
+msgid "1 + 16% corresponds to 116% or 1.16"
+msgstr "1 + 16% соодветно на 116% или 1.16"
+
+#: 02140000.xhp#par_id3148575.8.help.text
+msgid "1%% corresponds to 0.0001"
+msgstr "1%% соодветно на 0.0001"
+
+#: 02140000.xhp#par_id3159153.10.help.text
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Формат - Ќелија - Броеви</link>"
+
+#: 06040000.xhp#tit.help.text
+msgctxt "06040000.xhp#tit.help.text"
+msgid "Function"
+msgstr "Функција"
+
+#: 06040000.xhp#bm_id3150084.help.text
+msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
+msgstr "<bookmark_value>лента за фомули; функции</bookmark_value><bookmark_value>функции; лента за фомули икона</bookmark_value>"
+
+#: 06040000.xhp#hd_id3150084.1.help.text
+msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
+msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Функција</link>"
+
+#: 06040000.xhp#par_id3151245.2.help.text
+msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_FUNC\">Додава формула на ќелијата. Кликнете на ова икона и потоа внесете ја формулата во <emph>линијата за внесување</emph>.</ahelp>"
+
+#: 06040000.xhp#par_id3153360.3.help.text
+#, fuzzy
+msgid "This icon is only available when the <emph>Input line</emph> box is not active."
+msgstr "Оваа икона е достапна само кога <emph>Линија за внесување</emph> полето е празно."
+
+#: 06040000.xhp#par_id3153770.help.text
+#, fuzzy
+msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Икона</alt></image>"
+
+#: 06040000.xhp#par_id3153951.4.help.text
+msgctxt "06040000.xhp#par_id3153951.4.help.text"
+msgid "Function"
+msgstr "Функција"
+
+#: 10050000.xhp#tit.help.text
+msgctxt "10050000.xhp#tit.help.text"
+msgid "Zoom In"
+msgstr "Зголеми"
+
+#: 10050000.xhp#bm_id3148491.help.text
+msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
+msgstr "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>scaling;enlarging the screen display</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
+
+#: 10050000.xhp#hd_id3148491.1.help.text
+msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
+msgstr "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
+
+#: 10050000.xhp#par_id3145069.2.help.text
+msgid "<ahelp hid=\".uno:ZoomIn\">Enlarges the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:ZoomIn\">Enlarges the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+
+#: 10050000.xhp#par_id3145171.4.help.text
+msgid "The maximum zoom factor is 400%."
+msgstr "The maximum zoom factor is 400%."
+
+#: 10050000.xhp#par_id3155854.help.text
+msgid "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Икона</alt></image>"
+
+#: 10050000.xhp#par_id3145273.3.help.text
+msgctxt "10050000.xhp#par_id3145273.3.help.text"
+msgid "Zoom In"
+msgstr "Зголеми"
+
+#: 18020000.xhp#tit.help.text
+msgid "Insert Cells"
+msgstr "Вметни ќелии"
+
+#: 18020000.xhp#bm_id3150275.help.text
+msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+msgstr "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+
+#: 18020000.xhp#hd_id3150275.1.help.text
+msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
+msgstr "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
+
+#: 18020000.xhp#par_id3156024.2.help.text
+msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
+msgstr "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
+
+#: 18020000.xhp#par_id3150398.3.help.text
+msgctxt "18020000.xhp#par_id3150398.3.help.text"
+msgid "Tools bar icon:"
+msgstr "Tools bar icon:"
+
+#: 18020000.xhp#par_id3150767.5.help.text
+msgctxt "18020000.xhp#par_id3150767.5.help.text"
+msgid "You can select the following icons:"
+msgstr "You can select the following icons:"
+
+#: 18020000.xhp#hd_id3150439.6.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
+
+#: 18020000.xhp#hd_id3146119.7.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
+
+#: 18020000.xhp#hd_id3153190.8.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
+
+#: 18020000.xhp#hd_id3153726.9.help.text
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
diff --git a/source/mk/helpcontent2/source/text/scalc/04.po b/source/mk/helpcontent2/source/text/scalc/04.po
new file mode 100644
index 00000000000..189f6fcdb5d
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/scalc/04.po
@@ -0,0 +1,795 @@
+#. extracted from helpcontent2/source/text/scalc/04.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%2F04.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2012-07-04 18:14+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Pootle 2.1.6\n"
+"X-Accelerator-Marker: ~\n"
+
+#: 01020000.xhp#tit.help.text
+msgid "Shortcut Keys for Spreadsheets"
+msgstr "Shortcut Keys for Spreadsheets"
+
+#: 01020000.xhp#bm_id3145801.help.text
+msgid "<bookmark_value>spreadsheets; shortcut keys in</bookmark_value><bookmark_value>shortcut keys; spreadsheets</bookmark_value><bookmark_value>sheet ranges; filling</bookmark_value>"
+msgstr "<bookmark_value>spreadsheets; shortcut keys in</bookmark_value><bookmark_value>shortcut keys; spreadsheets</bookmark_value><bookmark_value>sheet ranges; filling</bookmark_value>"
+
+#: 01020000.xhp#hd_id3145801.1.help.text
+msgid "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Shortcut Keys for Spreadsheets\">Shortcut Keys for Spreadsheets</link></variable>"
+msgstr "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Shortcut Keys for Spreadsheets\">Shortcut Keys for Spreadsheets</link></variable>"
+
+#: 01020000.xhp#par_id3155067.3.help.text
+msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range."
+msgstr "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range."
+
+#: 01020000.xhp#par_id3153967.84.help.text
+msgid "To create a matrix in which all the cells contain the same information as what you entered on the <emph>Input line</emph>, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. You cannot edit the components of the matrix."
+msgstr "To create a matrix in which all the cells contain the same information as what you entered on the <emph>Input line</emph>, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. You cannot edit the components of the matrix."
+
+#: 01020000.xhp#par_id3166426.4.help.text
+msgid "To select multiple cells in different areas of a sheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and drag in the different areas."
+msgstr ""
+
+#: 01020000.xhp#par_id3150207.127.help.text
+msgid "To select multiple sheets in a spreadsheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then click the name tabs at the lower edge of the workspace. To select only one sheet in a selection, hold down Shift, and then click the name tab of the sheet."
+msgstr "To select multiple sheets in a spreadsheet, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then click the name tabs at the lower edge of the workspace. To select only one sheet in a selection, hold down Shift, and then click the name tab of the sheet."
+
+#: 01020000.xhp#par_id3166432.129.help.text
+msgid "To insert a manual line break in a cell, click in the cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+msgstr "To insert a manual line break in a cell, click in the cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+
+#: 01020000.xhp#par_id3146978.130.help.text
+msgid "To delete the contents of selected cells, press Backspace. This opens the <link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link> dialog, where you choose which contents of the cell you want to delete. To delete the contents of selected cells without a dialog, press the Delete key."
+msgstr ""
+
+#: 01020000.xhp#hd_id3145386.85.help.text
+msgid "Navigating in Spreadsheets"
+msgstr "Navigating in Spreadsheets"
+
+#: 01020000.xhp#hd_id3149407.86.help.text
+msgctxt "01020000.xhp#hd_id3149407.86.help.text"
+msgid "Shortcut Keys"
+msgstr "Shortcut Keys"
+
+#: 01020000.xhp#par_id3153815.87.help.text
+msgctxt "01020000.xhp#par_id3153815.87.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Effect</emph>"
+
+#: 01020000.xhp#hd_id3146871.88.help.text
+msgctxt "01020000.xhp#hd_id3146871.88.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Home"
+
+#: 01020000.xhp#par_id3159093.89.help.text
+msgid "Moves the cursor to the first cell in the sheet (A1)."
+msgstr "Moves the cursor to the first cell in the sheet (A1)."
+
+#: 01020000.xhp#hd_id3145073.90.help.text
+msgctxt "01020000.xhp#hd_id3145073.90.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + End"
+
+#: 01020000.xhp#par_id3153283.91.help.text
+msgid "Moves the cursor to the last cell on the sheet that contains data."
+msgstr "Moves the cursor to the last cell on the sheet that contains data."
+
+#: 01020000.xhp#hd_id3149127.92.help.text
+msgctxt "01020000.xhp#hd_id3149127.92.help.text"
+msgid "Home"
+msgstr "Дома"
+
+#: 01020000.xhp#par_id3159205.93.help.text
+msgid "Moves the cursor to the first cell of the current row."
+msgstr "Moves the cursor to the first cell of the current row."
+
+#: 01020000.xhp#hd_id3149897.94.help.text
+msgctxt "01020000.xhp#hd_id3149897.94.help.text"
+msgid "End"
+msgstr "Крај"
+
+#: 01020000.xhp#par_id3155095.95.help.text
+msgid "Moves the cursor to the last cell of the current row."
+msgstr "Moves the cursor to the last cell of the current row."
+
+#: 01020000.xhp#hd_id4149127.92.help.text
+msgid "Shift+Home"
+msgstr ""
+
+#: 01020000.xhp#par_id4159205.93.help.text
+msgid "Selects cells from the current cell to the first cell of the current row."
+msgstr ""
+
+#: 01020000.xhp#hd_id4149897.94.help.text
+msgid "Shift+End"
+msgstr ""
+
+#: 01020000.xhp#par_id4155095.95.help.text
+msgid "Selects cells from the current cell to the last cell of the current row."
+msgstr ""
+
+#: 01020000.xhp#hd_id5149127.92.help.text
+msgid "Shift+Page Up"
+msgstr ""
+
+#: 01020000.xhp#par_id5159205.93.help.text
+msgid "Selects cells from the current cell up to one page in the current column or extends the existing selection one page up."
+msgstr ""
+
+#: 01020000.xhp#hd_id5149897.94.help.text
+msgid "Shift+Page Down"
+msgstr ""
+
+#: 01020000.xhp#par_id5155095.95.help.text
+msgid "Selects cells from the current cell down to one page in the current column or extends the existing selection one page down."
+msgstr ""
+
+#: 01020000.xhp#hd_id3143220.101.help.text
+msgctxt "01020000.xhp#hd_id3143220.101.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Left Arrow"
+
+#: 01020000.xhp#par_id3154766.102.help.text
+msgid "Moves the cursor to the left edge of the current data range. If the column to the left of the cell that contains the cursor is empty, the cursor moves to the next column to the left that contains data."
+msgstr "Moves the cursor to the left edge of the current data range. If the column to the left of the cell that contains the cursor is empty, the cursor moves to the next column to the left that contains data."
+
+#: 01020000.xhp#hd_id3153554.103.help.text
+msgctxt "01020000.xhp#hd_id3153554.103.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Right Arrow"
+
+#: 01020000.xhp#par_id3155593.104.help.text
+msgid "Moves the cursor to the right edge of the current data range. If the column to the right of the cell that contains the cursor is empty, the cursor moves to the next column to the right that contains data."
+msgstr "Moves the cursor to the right edge of the current data range. If the column to the right of the cell that contains the cursor is empty, the cursor moves to the next column to the right that contains data."
+
+#: 01020000.xhp#hd_id3149317.105.help.text
+msgctxt "01020000.xhp#hd_id3149317.105.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Up Arrow"
+
+#: 01020000.xhp#par_id3153076.106.help.text
+msgid "Moves the cursor to the top edge of the current data range. If the row above the cell that contains the cursor is empty, the cursor moves up to the next row that contains data."
+msgstr "Moves the cursor to the top edge of the current data range. If the row above the cell that contains the cursor is empty, the cursor moves up to the next row that contains data."
+
+#: 01020000.xhp#hd_id3147250.107.help.text
+msgctxt "01020000.xhp#hd_id3147250.107.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Down Arrow"
+
+#: 01020000.xhp#par_id3149054.108.help.text
+msgid "Moves the cursor to the bottom edge of the current data range. If the row below the cell that contains the cursor is empty, the cursor moves down to the next row that contains data."
+msgstr "Moves the cursor to the bottom edge of the current data range. If the row below the cell that contains the cursor is empty, the cursor moves down to the next row that contains data."
+
+#: 01020000.xhp#hd_id3148744.184.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Arrow"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + Arrow"
+
+#: 01020000.xhp#par_id3159258.185.help.text
+msgid "Selects all cells containing data from the current cell to the end of the continuous range of data cells, in the direction of the arrow pressed. If used to select rows and columns together, a rectangular cell range is selected."
+msgstr "Selects all cells containing data from the current cell to the end of the continuous range of data cells, in the direction of the arrow pressed. If used to select rows and columns together, a rectangular cell range is selected."
+
+#: 01020000.xhp#hd_id3156399.109.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Page Up"
+
+#: 01020000.xhp#par_id3145236.110.help.text
+msgid "Moves one sheet to the left."
+msgstr "Moves one sheet to the left."
+
+#: 01020000.xhp#par_id3149725.131.help.text
+msgid "In the page preview: Moves to the previous print page."
+msgstr "In the page preview: Moves to the previous print page."
+
+#: 01020000.xhp#hd_id3147411.111.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Page Down"
+
+#: 01020000.xhp#par_id3150372.112.help.text
+msgid "Moves one sheet to the right."
+msgstr "Moves one sheet to the right."
+
+#: 01020000.xhp#par_id3159120.132.help.text
+msgid "In the page preview: Moves to the next print page."
+msgstr "In the page preview: Moves to the next print page."
+
+#: 01020000.xhp#hd_id3146885.113.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up"
+msgstr ""
+
+#: 01020000.xhp#par_id3152976.114.help.text
+msgid "Moves one screen to the left."
+msgstr "Moves one screen to the left."
+
+#: 01020000.xhp#hd_id3149013.115.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down"
+msgstr ""
+
+#: 01020000.xhp#par_id3150477.116.help.text
+msgid "Moves one screen page to the right."
+msgstr "Moves one screen page to the right."
+
+#: 01020000.xhp#par_idN10AFC.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up"
+msgstr "Shift + Ctrl + Page Up"
+
+#: 01020000.xhp#par_idN10B00.help.text
+msgid "Adds the previous sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the previous sheet. Makes the previous sheet the current sheet."
+msgstr "Adds the previous sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the previous sheet. Makes the previous sheet the current sheet."
+
+#: 01020000.xhp#par_idN10B03.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Down"
+msgstr "Shift + Ctrl + Page Down"
+
+#: 01020000.xhp#par_idN10B07.help.text
+msgid "Adds the next sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the next sheet. Makes the next sheet the current sheet."
+msgstr "Adds the next sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the next sheet. Makes the next sheet the current sheet."
+
+#: 01020000.xhp#hd_id3145826.96.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ *"
+msgstr ""
+
+#: 01020000.xhp#par_id3148882.97.help.text
+msgid "where (*) is the multiplication sign on the numeric key pad"
+msgstr "where (*) is the multiplication sign on the numeric key pad"
+
+#: 01020000.xhp#par_id3154847.98.help.text
+msgid "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns."
+msgstr "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns."
+
+#: 01020000.xhp#hd_id3151233.180.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ /"
+msgstr ""
+
+#: 01020000.xhp#par_id3149949.181.help.text
+msgid "where (/) is the division sign on the numeric key pad"
+msgstr "where (/) is the division sign on the numeric key pad"
+
+#: 01020000.xhp#par_id3150144.182.help.text
+msgid "Selects the matrix formula range that contains the cursor."
+msgstr "Selects the matrix formula range that contains the cursor."
+
+#: 01020000.xhp#par_id8163396.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Plus key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Page Up"
+
+#: 01020000.xhp#par_id9901425.help.text
+msgid "Insert cells (as in menu Insert - Cells)"
+msgstr ""
+
+#: 01020000.xhp#par_id3389080.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + End"
+
+#: 01020000.xhp#par_id5104220.help.text
+msgid "Delete cells (as in menu Edit - Delete Cells)"
+msgstr ""
+
+#: 01020000.xhp#hd_id3155825.99.help.text
+msgid "Enter (in a selected range)"
+msgstr "Enter - in a selected range"
+
+#: 01020000.xhp#par_id3153935.100.help.text
+msgid "Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - General</emph>."
+msgstr "Moves the cursor down one cell in a selected range. To specify the direction that the cursor moves, choose <emph>Tools - Options - %PRODUCTNAME Calc - General</emph>."
+
+#: 01020000.xhp#par_id5961180.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ ` (see note below this table)"
+msgstr ""
+
+#: 01020000.xhp#par_id6407055.help.text
+msgid "Displays or hides the formulas instead of the values in all cells."
+msgstr ""
+
+#: 01020000.xhp#par_id8070314.help.text
+msgid "The ` key is located next to the \"1\" key on most English keyboards. If your keyboard does not show this key, you can assign another key: Choose Tools - Customize, click the Keyboard tab. Select the \"View\" category and the \"Toggle Formula\" function."
+msgstr ""
+
+#: 01020000.xhp#hd_id3148756.5.help.text
+msgid "Function Keys Used in Spreadsheets"
+msgstr "Function Keys Used in Spreadsheets"
+
+#: 01020000.xhp#hd_id3148581.6.help.text
+msgctxt "01020000.xhp#hd_id3148581.6.help.text"
+msgid "Shortcut Keys"
+msgstr "Shortcut Keys"
+
+#: 01020000.xhp#par_id3152790.8.help.text
+msgctxt "01020000.xhp#par_id3152790.8.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Effect</emph>"
+
+#: 01020000.xhp#hd_id3154809.139.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F1"
+
+#: 01020000.xhp#par_id3145140.138.help.text
+msgid "Displays the comment that is attached to the current cell"
+msgstr "Displays the note that is attached to the current cell"
+
+#: 01020000.xhp#hd_id3146142.9.help.text
+msgid "F2"
+msgstr "F2"
+
+#: 01020000.xhp#par_id3148568.10.help.text
+msgid "Switches to Edit mode and places the cursor at the end of the contents of the current cell. Press again to exit Edit mode."
+msgstr "Switches to Edit mode and places the cursor at the end of the contents of the current cell. Press again to exit Edit mode."
+
+#: 01020000.xhp#par_id3153108.179.help.text
+msgid "If the cursor is in an input box in a dialog that has a <emph>Minimize </emph>button, the dialog is hidden and the input box remains visible. Press F2 again to show the whole dialog."
+msgstr "If the cursor is in an input box in a dialog that has a <emph>Minimize </emph>button, the dialog is hidden and the input box remains visible. Press F2 again to show the whole dialog."
+
+#: 01020000.xhp#hd_id3146850.11.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"
+
+#: 01020000.xhp#par_id3145162.12.help.text
+msgid "Opens the Function Wizard."
+msgstr "Opens the Function Wizard."
+
+#: 01020000.xhp#hd_id3147366.137.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
+
+#: 01020000.xhp#par_id3155929.136.help.text
+msgid "Moves the cursor to the <emph>Input line</emph> where you can enter a formula for the current cell."
+msgstr "Moves the cursor to the <emph>Input line</emph> where you can enter a formula for the current cell."
+
+#: 01020000.xhp#hd_id3153730.15.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"
+
+#: 01020000.xhp#par_id3145245.16.help.text
+msgid "Opens the <emph>Define Names</emph> dialog."
+msgstr "Opens the <emph>Define Names</emph> dialog."
+
+#: 01020000.xhp#hd_id3148768.17.help.text
+msgid "F4"
+msgstr "F4"
+
+#: 01020000.xhp#par_id3153047.18.help.text
+msgid "Shows or Hides the Database explorer."
+msgstr "Shows or Hides the Database explorer."
+
+#: 01020000.xhp#hd_id3145353.19.help.text
+msgid "Shift+F4"
+msgstr "Shift+F4"
+
+#: 01020000.xhp#par_id3155620.20.help.text
+msgid "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field."
+msgstr "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field."
+
+#: 01020000.xhp#hd_id3156063.21.help.text
+msgid "F5"
+msgstr "F5"
+
+#: 01020000.xhp#par_id3149540.22.help.text
+msgid "Shows or hides the <emph>Navigator</emph>."
+msgstr "Shows or hides the <emph>Navigator</emph>."
+
+#: 01020000.xhp#hd_id3148392.23.help.text
+msgid "Shift+F5"
+msgstr "Shift+F5"
+
+#: 01020000.xhp#par_id3150268.24.help.text
+msgid "Traces dependents."
+msgstr "Traces dependents."
+
+#: 01020000.xhp#hd_id3148430.27.help.text
+msgid "Shift+F7"
+msgstr "Ctrl+F5"
+
+#: 01020000.xhp#par_id3153179.28.help.text
+msgid "Traces precedents."
+msgstr "Traces precedents."
+
+#: 01020000.xhp#hd_id3150568.135.help.text
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
+msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5"
+
+#: 01020000.xhp#par_id3153551.134.help.text
+msgid "Moves the cursor from the <emph>Input line </emph>to the <emph>Sheet area</emph> box."
+msgstr "Moves the cursor from the <emph>Input line </emph>to the <emph>Sheet area</emph> box."
+
+#: 01020000.xhp#hd_id3155368.29.help.text
+msgid "F7"
+msgstr "F7"
+
+#: 01020000.xhp#par_id3154871.30.help.text
+msgid "Checks spelling in the current sheet."
+msgstr "Checks spelling in the current sheet."
+
+#: 01020000.xhp#hd_id3150688.31.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F7"
+
+#: 01020000.xhp#par_id3149781.32.help.text
+msgid "Opens the Thesaurus if the current cell contains text."
+msgstr "Opens the Thesaurus if the current cell contains text."
+
+#: 01020000.xhp#hd_id3156257.33.help.text
+msgid "F8"
+msgstr "F8"
+
+#: 01020000.xhp#par_id3147482.34.help.text
+msgid "Turns additional selection mode on or off. In this mode, you can use the arrow keys to extend the selection. You can also click in another cell to extend the selection."
+msgstr "Turns additional selection mode on or off. In this mode, you can use the arrow keys to extend the selection. You can also click in another cell to extend the selection."
+
+#: 01020000.xhp#hd_id3154313.37.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
+
+#: 01020000.xhp#par_id3150385.38.help.text
+msgid "Highlights cells containing values."
+msgstr "Highlights cells containing values."
+
+#: 01020000.xhp#hd_id3152479.39.help.text
+msgid "F9"
+msgstr "F9"
+
+#: 01020000.xhp#par_id3163827.40.help.text
+msgid "Recalculates changed formulas in the current sheet."
+msgstr "Recalculates all of the formulas in the sheet."
+
+#: 01020000.xhp#par_id9027069.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + Arrow"
+
+#: 01020000.xhp#par_id1729178.help.text
+msgid "Recalculates all formulas in all sheets."
+msgstr ""
+
+#: 01020000.xhp#hd_id3156300.41.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
+
+#: 01020000.xhp#par_id3154817.42.help.text
+msgid "Updates the selected chart."
+msgstr "Updates the selected chart."
+
+#: 01020000.xhp#hd_id3149279.46.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+msgstr "F11"
+
+#: 01020000.xhp#par_id3150967.47.help.text
+msgid "Opens the <emph>Styles and Formatting</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
+msgstr "Opens the <emph>Styles and Formatting</emph> window where you can apply a formatting style to the contents of the cell or to the current sheet."
+
+#: 01020000.xhp#hd_id3156308.48.help.text
+msgid "Shift+F11"
+msgstr "Shift+F11"
+
+#: 01020000.xhp#par_id3145209.49.help.text
+msgid "Creates a document template."
+msgstr "Creates a document template."
+
+#: 01020000.xhp#hd_id3147622.50.help.text
+msgid "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
+msgstr "Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+F11"
+
+#: 01020000.xhp#par_id3153215.51.help.text
+msgid "Updates the templates."
+msgstr "Updates the templates."
+
+#: 01020000.xhp#hd_id3150760.52.help.text
+msgid "F12"
+msgstr "F12"
+
+#: 01020000.xhp#par_id3156321.53.help.text
+msgid "Groups the selected data range."
+msgstr "Groups the selected data range."
+
+#: 01020000.xhp#hd_id3146859.54.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"
+
+#: 01020000.xhp#par_id3156128.55.help.text
+msgid "Ungroups the selected data range."
+msgstr "Ungroups the selected data range."
+
+#: 01020000.xhp#hd_id3151264.117.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3153155.118.help.text
+msgid "Increases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
+msgstr ""
+
+#: 01020000.xhp#hd_id3151297.119.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3155849.120.help.text
+msgid "Decreases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
+msgstr ""
+
+#: 01020000.xhp#hd_id3155997.121.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Right Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3150256.122.help.text
+msgid "Increases the width of the current column."
+msgstr "Increases the width of the current column."
+
+#: 01020000.xhp#hd_id3154046.123.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Left Arrow"
+msgstr ""
+
+#: 01020000.xhp#par_id3150155.124.help.text
+msgid "Decreases the width of the current column."
+msgstr "Decreases the width of the current column."
+
+#: 01020000.xhp#hd_id3149293.125.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Shift+Arrow Key"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline> + Shift + Arrow Key"
+
+#: 01020000.xhp#par_id3159180.126.help.text
+msgid "Optimizes the column width or row height based on the current cell."
+msgstr "Optimizes the column width or row height based on the current cell."
+
+#: 01020000.xhp#hd_id3156013.56.help.text
+msgid "Formatting Cells Using Shortcut Keys"
+msgstr "Formatting Cells Using Shortcut Keys"
+
+#: 01020000.xhp#par_id3153979.57.help.text
+msgid "The following cell formats can be applied with the keyboard:"
+msgstr "The following cell formats can be applied with the keyboard:"
+
+#: 01020000.xhp#hd_id3147492.58.help.text
+msgctxt "01020000.xhp#hd_id3147492.58.help.text"
+msgid "Shortcut Keys"
+msgstr "Shortcut Keys"
+
+#: 01020000.xhp#par_id3154305.60.help.text
+msgctxt "01020000.xhp#par_id3154305.60.help.text"
+msgid "<emph>Effect</emph>"
+msgstr "<emph>Effect</emph>"
+
+#: 01020000.xhp#hd_id3145669.help.text
+#, fuzzy
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+1 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+1 (not on the number pad)"
+
+#: 01020000.xhp#par_id3149197.help.text
+msgid "Open Format Cells dialog"
+msgstr ""
+
+#: 01020000.xhp#hd_id3145668.61.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+1 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+1 (not on the number pad)"
+
+#: 01020000.xhp#par_id3149196.63.help.text
+msgid "Two decimal places, thousands separator"
+msgstr "Two decimal places, thousands separator"
+
+#: 01020000.xhp#hd_id3155331.64.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+2 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+2 (not on the number pad)"
+
+#: 01020000.xhp#par_id3150120.66.help.text
+msgid "Standard exponential format"
+msgstr "Standard exponential format"
+
+#: 01020000.xhp#hd_id3154932.67.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+3 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+3 (not on the number pad)"
+
+#: 01020000.xhp#par_id3148822.69.help.text
+msgid "Standard date format"
+msgstr "Standard date format"
+
+#: 01020000.xhp#hd_id3148829.70.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+4 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+4 (not on the number pad)"
+
+#: 01020000.xhp#par_id3159152.72.help.text
+msgid "Standard currency format"
+msgstr "Standard currency format"
+
+#: 01020000.xhp#hd_id3150776.73.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+5 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+5 (not on the number pad)"
+
+#: 01020000.xhp#par_id3148800.75.help.text
+msgid "Standard percentage format (two decimal places)"
+msgstr "Standard percentage format (two decimal places)"
+
+#: 01020000.xhp#hd_id3158407.76.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+6 (not on the number pad)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+6 (not on the number pad)"
+
+#: 01020000.xhp#par_id3148444.78.help.text
+msgid "Standard format"
+msgstr "Standard format"
+
+#: 01020000.xhp#hd_id3154205.178.help.text
+#, fuzzy
+msgid "Using the pivot table"
+msgstr "Using the DataPilot"
+
+#: 01020000.xhp#par_idN11326.help.text
+msgid "Keys"
+msgstr "Клучеви"
+
+#: 01020000.xhp#par_idN1132C.help.text
+msgid "Effect"
+msgstr "Ефект"
+
+#: 01020000.xhp#hd_id3153577.177.help.text
+msgid "Tab"
+msgstr "Табулатор"
+
+#: 01020000.xhp#par_id3147511.176.help.text
+msgid "Changes the focus by moving forwards through the areas and buttons of the dialog."
+msgstr "Changes the focus by moving forwards through the areas and buttons of the dialog."
+
+#: 01020000.xhp#hd_id3154266.175.help.text
+msgid "Shift+Tab"
+msgstr "Shift+Tab"
+
+#: 01020000.xhp#par_id3155362.174.help.text
+msgid "Changes the focus by moving backwards through the areas and buttons of the dialog."
+msgstr "Changes the focus by moving backwards through the areas and buttons of the dialog."
+
+#: 01020000.xhp#hd_id3148484.173.help.text
+#, fuzzy
+msgid "Up Arrow"
+msgstr "up arrow"
+
+#: 01020000.xhp#par_id3149152.172.help.text
+msgid "Moves the focus up one item in the current dialog area."
+msgstr "Moves the focus up one item in the current dialog area."
+
+#: 01020000.xhp#hd_id3154273.171.help.text
+#, fuzzy
+msgid "Down Arrow"
+msgstr "down arrow"
+
+#: 01020000.xhp#par_id3158424.170.help.text
+msgid "Moves the focus down one item in the current dialog area."
+msgstr "Moves the focus down one item in the current dialog area."
+
+#: 01020000.xhp#hd_id3148912.169.help.text
+#, fuzzy
+msgid "Left Arrow"
+msgstr "left arrow"
+
+#: 01020000.xhp#par_id3153238.168.help.text
+msgid "Moves the focus one item to the left in the current dialog area."
+msgstr "Moves the focus one item to the left in the current dialog area."
+
+#: 01020000.xhp#hd_id3150712.167.help.text
+#, fuzzy
+msgid "Right Arrow"
+msgstr "right arrow"
+
+#: 01020000.xhp#par_id3166458.166.help.text
+msgid "Moves the focus one item to the right in the current dialog area."
+msgstr "Moves the focus one item to the right in the current dialog area."
+
+#: 01020000.xhp#hd_id3146947.165.help.text
+msgctxt "01020000.xhp#hd_id3146947.165.help.text"
+msgid "Home"
+msgstr "Дома"
+
+#: 01020000.xhp#par_id3153742.164.help.text
+msgid "Selects the first item in the current dialog area."
+msgstr "Selects the first item in the current dialog area."
+
+#: 01020000.xhp#hd_id3153387.163.help.text
+msgctxt "01020000.xhp#hd_id3153387.163.help.text"
+msgid "End"
+msgstr "Крај"
+
+#: 01020000.xhp#par_id3153684.162.help.text
+msgid "Selects the last item in the current dialog area."
+msgstr "Selects the last item in the current dialog area."
+
+#: 01020000.xhp#hd_id3155584.161.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Row\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Row\""
+
+#: 01020000.xhp#par_id3152949.160.help.text
+msgid "Copies or moves the current field into the \"Row\" area."
+msgstr "Copies or moves the current field into the \"Row\" area."
+
+#: 01020000.xhp#hd_id3159269.159.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Column\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Column\""
+
+#: 01020000.xhp#par_id3149968.158.help.text
+msgid "Copies or moves the current field into the \"Column\" area."
+msgstr "Copies or moves the current field into the \"Column\" area."
+
+#: 01020000.xhp#hd_id3149923.157.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Data\""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline> and the underlined character in the word \"Data\""
+
+#: 01020000.xhp#par_id3148649.156.help.text
+msgid "Copies or moves the current field into the \"Data\" area."
+msgstr "Copies or moves the current field into the \"Data\" area."
+
+#: 01020000.xhp#hd_id3149418.155.help.text
+msgctxt "01020000.xhp#hd_id3149418.155.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Up Arrow"
+msgstr "Ctrl+Up Arrow"
+
+#: 01020000.xhp#par_id3154335.154.help.text
+msgid "Moves the current field up one place."
+msgstr "Moves the current field up one place."
+
+#: 01020000.xhp#hd_id3148462.153.help.text
+msgctxt "01020000.xhp#hd_id3148462.153.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Down Arrow"
+msgstr "Ctrl+Down Arrow"
+
+#: 01020000.xhp#par_id3154603.152.help.text
+msgid "Moves the current field down one place."
+msgstr "Moves the current field down one place."
+
+#: 01020000.xhp#hd_id3145373.151.help.text
+msgctxt "01020000.xhp#hd_id3145373.151.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
+msgstr "Ctrl+Left Arrow"
+
+#: 01020000.xhp#par_id3151125.150.help.text
+msgid "Moves the current field one place to the left."
+msgstr "Moves the current field one place to the left."
+
+#: 01020000.xhp#hd_id3150423.149.help.text
+msgctxt "01020000.xhp#hd_id3150423.149.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Right Arrow"
+msgstr "Ctrl+Right Arrow"
+
+#: 01020000.xhp#par_id3153316.148.help.text
+msgid "Moves the current field one place to the right."
+msgstr "Moves the current field one place to the right."
+
+#: 01020000.xhp#hd_id3149519.147.help.text
+msgctxt "01020000.xhp#hd_id3149519.147.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Home"
+msgstr "Ctrl+Home"
+
+#: 01020000.xhp#par_id3149237.146.help.text
+msgid "Moves the current field to the first place."
+msgstr "Moves the current field to the first place."
+
+#: 01020000.xhp#hd_id3145310.145.help.text
+msgctxt "01020000.xhp#hd_id3145310.145.help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
+msgstr "Ctrl+End"
+
+#: 01020000.xhp#par_id3153942.144.help.text
+msgid "Moves the current field to the last place."
+msgstr "Moves the current field to the last place."
+
+#: 01020000.xhp#hd_id3149933.143.help.text
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+O"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline>+O"
+
+#: 01020000.xhp#par_id3154798.142.help.text
+msgid "Displays the options for the current field."
+msgstr "Displays the options for the current field."
+
+#: 01020000.xhp#hd_id3148418.141.help.text
+msgid "Delete"
+msgstr "Избриши"
+
+#: 01020000.xhp#par_id3159251.140.help.text
+msgid "Removes the current field from the area."
+msgstr "Removes the current field from the area."
+
+#: 01020000.xhp#par_id3150630.183.help.text
+msgid "<link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\">Shortcut keys in $[officename]</link>"
+msgstr "<link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\">Shortcut keys in $[officename]</link>"
diff --git a/source/mk/helpcontent2/source/text/scalc/05.po b/source/mk/helpcontent2/source/text/scalc/05.po
new file mode 100644
index 00000000000..564119b3f30
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/scalc/05.po
@@ -0,0 +1,529 @@
+#. extracted from helpcontent2/source/text/scalc/05.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%2F05.oo&subcomponent=ui\n"
+"POT-Creation-Date: 2012-06-26 09:53+0200\n"
+"PO-Revision-Date: 2011-04-12 22:38+0200\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Accelerator-Marker: ~\n"
+
+#: empty_cells.xhp#tit.help.text
+msgid "Handling of Empty Cells"
+msgstr ""
+
+#: empty_cells.xhp#bm_id3146799.help.text
+#, fuzzy
+msgid "<bookmark_value>empty cells;handling of</bookmark_value>"
+msgstr "<bookmark_value>кодови за грешки;список на</bookmark_value>"
+
+#: empty_cells.xhp#hd_id1502121.help.text
+msgid "<variable id=\"empty_cells\"><link href=\"text/scalc/05/empty_cells.xhp\">Handling of Empty Cells</link></variable>"
+msgstr ""
+
+#: empty_cells.xhp#par_id8266853.help.text
+msgid "In older versions of the software, empty cells were forced to numeric 0 in some contexts and to empty string in others, except in direct comparison where =A1=0 and =A1=\"\" both resulted in TRUE if A1 was empty. Emptiness now is inherited until used, so both =VLOOKUP(...)=0 and =VLOOKUP(...)=\"\" give TRUE if the lookup resulted in an empty cell being returned. "
+msgstr ""
+
+#: empty_cells.xhp#par_id2733542.help.text
+msgid "A simple reference to an empty cell is still displayed as numeric 0 but is not necessarily of type numeric anymore, so also comparisons with the referencing cell work as expected. "
+msgstr ""
+
+#: empty_cells.xhp#par_id4238715.help.text
+msgid "For the following examples, A1 contains a number, B1 is empty, C1 contains the reference to B1:"
+msgstr ""
+
+#: empty_cells.xhp#par_id8277230.help.text
+msgid "A1: 1 B1: <empty> C1: =B1 (displays 0)"
+msgstr ""
+
+#: empty_cells.xhp#par_id4086428.help.text
+msgctxt "empty_cells.xhp#par_id4086428.help.text"
+msgid "=B1=0 => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id9024628.help.text
+msgid "=B1=\"\" => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id3067110.help.text
+msgid "=C1=0 => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id8841822.help.text
+msgid "=C1=\"\" => TRUE (previously was FALSE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id4077578.help.text
+msgid "=ISNUMBER(B1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id9094515.help.text
+msgid "=ISNUMBER(C1) => FALSE (previously was TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id396740.help.text
+msgid "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)"
+msgstr ""
+
+#: empty_cells.xhp#par_id3859675.help.text
+msgid "=ISNUMBER(VLOOKUP(1;A1:C1;3)) => FALSE (C1, previously was TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id402233.help.text
+msgctxt "empty_cells.xhp#par_id402233.help.text"
+msgid "=ISTEXT(B1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id1623889.help.text
+msgctxt "empty_cells.xhp#par_id1623889.help.text"
+msgid "=ISTEXT(C1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id7781914.help.text
+msgid "=ISTEXT(VLOOKUP(1;A1:C1;2)) => FALSE (B1, previously was TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id300912.help.text
+msgid "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
+msgstr ""
+
+#: empty_cells.xhp#par_id9534592.help.text
+msgid "=ISBLANK(B1) => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id4969328.help.text
+msgid "=ISBLANK(C1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id9635914.help.text
+msgid "=ISBLANK(VLOOKUP(1;A1:C1;2)) => TRUE (B1, previously was FALSE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id2476577.help.text
+msgid "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
+msgstr ""
+
+#: empty_cells.xhp#par_id4217047.help.text
+msgid "Note that Microsoft Excel behaves different and always returns a number as the result of a reference to an empty cell or a formula cell with the result of an empty cell. For example:"
+msgstr ""
+
+#: empty_cells.xhp#par_id2629474.help.text
+msgid "A1: <empty>"
+msgstr ""
+
+#: empty_cells.xhp#par_id8069704.help.text
+msgid "B1: =A1 => displays 0, but is just a reference to an empty cell"
+msgstr ""
+
+#: empty_cells.xhp#par_id4524674.help.text
+msgid "=ISNUMBER(A1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id4396801.help.text
+msgid "=ISTEXT(A1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id5293740.help.text
+msgid "=A1=0 => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id7623828.help.text
+msgid "=A1=\"\" => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id2861720.help.text
+msgid "=ISNUMBER(B1) => FALSE (MS-Excel: TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id9604480.help.text
+msgctxt "empty_cells.xhp#par_id9604480.help.text"
+msgid "=ISTEXT(B1) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id2298959.help.text
+msgctxt "empty_cells.xhp#par_id2298959.help.text"
+msgid "=B1=0 => TRUE"
+msgstr ""
+
+#: empty_cells.xhp#par_id4653767.help.text
+msgid "=B1=\"\" => TRUE (MS-Excel: FALSE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id8801538.help.text
+msgid "C1: =VLOOKUP(...) with empty cell result => displays empty (MS-Excel: displays 0)"
+msgstr ""
+
+#: empty_cells.xhp#par_id6746421.help.text
+msgid "=ISNUMBER(VLOOKUP(...)) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id4876247.help.text
+msgid "=ISTEXT(VLOOKUP(...)) => FALSE"
+msgstr ""
+
+#: empty_cells.xhp#par_id7458723.help.text
+msgid "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)"
+msgstr ""
+
+#: empty_cells.xhp#par_id2753379.help.text
+msgctxt "empty_cells.xhp#par_id2753379.help.text"
+msgid "=ISTEXT(C1) => FALSE"
+msgstr ""
+
+#: 02140000.xhp#tit.help.text
+msgid "Error Codes in %PRODUCTNAME Calc"
+msgstr "Кодови на грешки во%PRODUCTNAME Calc"
+
+#: 02140000.xhp#bm_id3146797.help.text
+msgid "<bookmark_value>error codes;list of</bookmark_value>"
+msgstr "<bookmark_value>кодови за грешки;список на</bookmark_value>"
+
+#: 02140000.xhp#hd_id3146797.1.help.text
+msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">Error Codes in <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">Кодови на грешки <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
+
+#: 02140000.xhp#par_id3150275.2.help.text
+msgid "The following table is an overview of the error messages for <item type=\"productname\">%PRODUCTNAME</item> Calc. If the error occurs in the cell that contains the cursor, the error message is displayed on the <emph>Status Bar</emph>."
+msgstr "Следнава табела е преглед на пораките за грешки за <item type=\"productname\">%PRODUCTNAME</item> Calc. Ако грешката се случи во ќелија во која се наоѓа курсорот, пораката за грешка ќе се прикаже во <emph>Статусната лента</emph>."
+
+#: 02140000.xhp#bm_id0202201010205429.help.text
+msgid "<bookmark_value>### error message</bookmark_value>"
+msgstr ""
+
+#: 02140000.xhp#bm_id3154634.help.text
+msgid "<bookmark_value>invalid references; error messages</bookmark_value> <bookmark_value>error messages;invalid references</bookmark_value> <bookmark_value>#REF error message</bookmark_value>"
+msgstr "<bookmark_value>невалидни референции; пораки за грешка</bookmark_value><bookmark_value>пораки за грешка;невалидни референции</bookmark_value><bookmark_value>#REF порака за грешка</bookmark_value>"
+
+#: 02140000.xhp#bm_id3148428.help.text
+msgid "<bookmark_value>invalid names; error messages</bookmark_value> <bookmark_value>#NAME error message</bookmark_value>"
+msgstr "<bookmark_value>невалидни имиња; пораки за грешка</bookmark_value><bookmark_value>#NAME порака за грешка</bookmark_value>"
+
+#: 02140000.xhp#par_id3153968.3.help.text
+msgid "Error Code"
+msgstr "Грешка на кодот"
+
+#: 02140000.xhp#par_id3125863.4.help.text
+msgid "Message"
+msgstr "Порака"
+
+#: 02140000.xhp#par_id3151112.5.help.text
+msgid "Explanation"
+msgstr "Објаснување"
+
+#: 02140000.xhp#par_id1668467.help.text
+msgid "###"
+msgstr "###"
+
+#: 02140000.xhp#par_id3165766.13.help.text
+msgid "none"
+msgstr "ништо"
+
+#: 02140000.xhp#par_id3169266.14.help.text
+msgid "The cell is not wide enough to display the contents."
+msgstr ""
+
+#: 02140000.xhp#par_id3153188.6.help.text
+msgid "501"
+msgstr "501"
+
+#: 02140000.xhp#par_id3148645.7.help.text
+msgid "Invalid character"
+msgstr "Невалиден знак"
+
+#: 02140000.xhp#par_id3155854.8.help.text
+msgid "Character in a formula is not valid."
+msgstr "Знакот во формулата не е валиден, на пример, \"=1Eq\" instead of \"=1E2\"."
+
+#: 02140000.xhp#par_id3145253.9.help.text
+msgid "502"
+msgstr "502"
+
+#: 02140000.xhp#par_id3147397.10.help.text
+msgid "Invalid argument"
+msgstr "Невалиден аргумент"
+
+#: 02140000.xhp#par_id3153160.11.help.text
+msgid "Function argument is not valid. For example, a negative number for the SQRT() function, for this please use IMSQRT()."
+msgstr ""
+
+#: 02140000.xhp#par_id3154015.12.help.text
+msgid "503<br/>#NUM!"
+msgstr ""
+
+#: 02140000.xhp#par_id3155766.13.help.text
+msgid "Invalid floating point operation"
+msgstr "Невалидна операција со подвижна точка"
+
+#: 02140000.xhp#par_id3159266.14.help.text
+msgid "A calculation results in an overflow of the defined value range."
+msgstr "Резултатите од пресметката се во состојба преполнето во дефинираниот опсег на вредности."
+
+#: 02140000.xhp#par_id3149258.15.help.text
+msgid "504"
+msgstr "504"
+
+#: 02140000.xhp#par_id3147344.16.help.text
+msgid "Parameter list error"
+msgstr "Грешка во листата на параметрите"
+
+#: 02140000.xhp#par_id3147003.17.help.text
+msgid "Function parameter is not valid, for example, text instead of a number, or a domain reference instead of cell reference."
+msgstr "Функцијата на параметрите е невалидна, на пример, текст наместо бројка или референца на домен наместо референца на ќелија."
+
+#: 02140000.xhp#par_id3154532.27.help.text
+msgid "508"
+msgstr "508"
+
+#: 02140000.xhp#par_id3150107.28.help.text
+msgid "Error: Pair missing"
+msgstr "Грешка: Недостасува парот"
+
+#: 02140000.xhp#par_id3149129.29.help.text
+msgid "Missing bracket, for example, closing brackets, but no opening brackets"
+msgstr "Недостасува заграда, на пример, затворање загради, но не отворање загради"
+
+#: 02140000.xhp#par_id3149895.30.help.text
+msgid "509"
+msgstr "509"
+
+#: 02140000.xhp#par_id3155097.31.help.text
+msgid "Missing operator"
+msgstr "Недостасува оператор"
+
+#: 02140000.xhp#par_id3154649.32.help.text
+msgid "Operator is missing, for example, \"=2(3+4) * \", where the operator between \"2\" and \"(\" is missing."
+msgstr "Недостасува оператор, на пример, \"=2(3+4) * \", кога недостасува оператор помеѓу \"2\"и \"(\" "
+
+#: 02140000.xhp#par_id3153813.33.help.text
+msgid "510"
+msgstr "510"
+
+#: 02140000.xhp#par_id3153483.34.help.text
+msgctxt "02140000.xhp#par_id3153483.34.help.text"
+msgid "Missing variable"
+msgstr "Недостасува променлива"
+
+#: 02140000.xhp#par_id3154710.35.help.text
+msgid "Variable is missing, for example when two operators are together \"=1+*2\"."
+msgstr "Недостасува променлива, на пример, кога два оператора се заедно \"=1+*2\"."
+
+#: 02140000.xhp#par_id3154739.36.help.text
+msgid "511"
+msgstr "511"
+
+#: 02140000.xhp#par_id3145112.37.help.text
+msgctxt "02140000.xhp#par_id3145112.37.help.text"
+msgid "Missing variable"
+msgstr "Недостасува променлива"
+
+#: 02140000.xhp#par_id3145319.38.help.text
+msgid "Function requires more variables than are provided, for example, AND() and OR()."
+msgstr "Функцијата бара повеќе променливи одошто се зададени, на пример, И() и ИЛИ()."
+
+#: 02140000.xhp#par_id3149050.39.help.text
+msgid "512"
+msgstr "512"
+
+#: 02140000.xhp#par_id3150393.40.help.text
+msgid "Formula overflow"
+msgstr "Формулата е преполнета"
+
+#: 02140000.xhp#par_id3159259.41.help.text
+msgid " <emph>Compiler:</emph> the total number of internal tokens, (that is, operators, variables, brackets) in the formula exceeds 512."
+msgstr "<emph>Compiler:</emph> конечниот број на внатрешни симболи (тоа се оператори, променливи, загради) надминува 512. <emph>Interpreter:</emph> конечниот број на матрици што ги креира формулата надминува 150. Ова вклучува основни функции што примаат преголема низа како параметар (макс. 0xFFFE, на пример, 65534 бајти)."
+
+#: 02140000.xhp#par_id3150537.42.help.text
+msgid "513"
+msgstr "513"
+
+#: 02140000.xhp#par_id3147412.43.help.text
+msgid "String overflow"
+msgstr "Низата е преполнета"
+
+#: 02140000.xhp#par_id3145635.44.help.text
+msgid " <emph>Compiler:</emph> an identifier in the formula exceeds 64 KB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 KB in size."
+msgstr "<emph>Compiler:</emph> Идентификаторот во формулата надминува 64 КБ во големина. <emph>Interpreter:</emph> резултатот во операцијата на низата надминува 64 КБ во големина."
+
+#: 02140000.xhp#par_id3149147.45.help.text
+msgid "514"
+msgstr "514"
+
+#: 02140000.xhp#par_id3157904.46.help.text
+msgctxt "02140000.xhp#par_id3157904.46.help.text"
+msgid "Internal overflow"
+msgstr "Внатрешно преполнување "
+
+#: 02140000.xhp#par_id3149352.47.help.text
+msgid "Sort operation attempted on too much numerical data (max. 100000) or a calculation stack overflow."
+msgstr "Операцијата за подредување се обиде со премногу нумерички податоци (макс. 1000) или преполнет е стекот за пресметување."
+
+#: 02140000.xhp#par_id3154841.51.help.text
+msgid "516"
+msgstr "516"
+
+#: 02140000.xhp#par_id3147423.52.help.text
+msgctxt "02140000.xhp#par_id3147423.52.help.text"
+msgid "Internal syntax error"
+msgstr "Внатрешна синтаксичка грешка"
+
+#: 02140000.xhp#par_id3148437.53.help.text
+msgid "Matrix is expected on the calculation stack, but is not available."
+msgstr "Матрицата е очекувана на стекот за пресметување, но не е достапна."
+
+#: 02140000.xhp#par_id3155261.54.help.text
+msgid "517"
+msgstr "517"
+
+#: 02140000.xhp#par_id3153934.55.help.text
+msgctxt "02140000.xhp#par_id3153934.55.help.text"
+msgid "Internal syntax error"
+msgstr "Внатрешна синтаксичка грешка"
+
+#: 02140000.xhp#par_id3149507.56.help.text
+msgid "Unknown code, for example, a document with a newer function is loaded in an older version that does not contain the function."
+msgstr "Непознат код, на пример, документ со најнова функција е вчитан во постара верзија што не ја содржи функцијата."
+
+#: 02140000.xhp#par_id3148585.57.help.text
+msgid "518"
+msgstr "518"
+
+#: 02140000.xhp#par_id3149189.58.help.text
+msgctxt "02140000.xhp#par_id3149189.58.help.text"
+msgid "Internal syntax error"
+msgstr "Внатрешна синтаксичка грешка"
+
+#: 02140000.xhp#par_id3149545.59.help.text
+msgid "Variable is not available"
+msgstr "Променливата не е достапна."
+
+#: 02140000.xhp#par_id3146142.60.help.text
+msgid "519<br/>#VALUE"
+msgstr ""
+
+#: 02140000.xhp#par_id3155954.61.help.text
+msgid "No result (#VALUE is in the cell rather than Err:519!)"
+msgstr "Нема резултат (#VALUE е во ќелијата наместо грешката 519!)"
+
+#: 02140000.xhp#par_id3153108.62.help.text
+msgid "The formula yields a value that does not correspond to the definition; or a cell that is referenced in the formula contains text instead of a number."
+msgstr "Формулата дава вредност која не кореспондира со дефиницијата, или ќелијата која е реферирана во формулата содржи текст наместо број."
+
+#: 02140000.xhp#par_id3150338.63.help.text
+msgid "520"
+msgstr "520"
+
+#: 02140000.xhp#par_id3150017.64.help.text
+msgctxt "02140000.xhp#par_id3150017.64.help.text"
+msgid "Internal syntax error"
+msgstr "Внатрешна синтаксичка грешка"
+
+#: 02140000.xhp#par_id3148758.65.help.text
+msgid "Compiler creates an unknown compiler code."
+msgstr "Компилаторот креира непознат код за компилатор."
+
+#: 02140000.xhp#par_id3154324.66.help.text
+msgid "521"
+msgstr "521"
+
+#: 02140000.xhp#par_id3153737.67.help.text
+msgctxt "02140000.xhp#par_id3153737.67.help.text"
+msgid "Internal syntax error"
+msgstr "Внатрешна синтаксичка грешка"
+
+#: 02140000.xhp#par_id3155436.68.help.text
+msgid "No result."
+msgstr "Нема резултат"
+
+#: 02140000.xhp#par_id3153045.69.help.text
+msgid "522"
+msgstr "522"
+
+#: 02140000.xhp#par_id3149008.70.help.text
+msgid "Circular reference"
+msgstr "Кружна референца"
+
+#: 02140000.xhp#par_id3157972.71.help.text
+msgid "Formula refers directly or indirectly to itself and the <emph>Iterations</emph> option is not set under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate."
+msgstr "Формулата покажува директно или индиректно на себе или <emph>опциите на итерациите</emph> не се поставени врз Алатките - Опции - %PRODUCTNAME Calc - Пресметај."
+
+#: 02140000.xhp#par_id3149538.72.help.text
+msgid "523"
+msgstr "523"
+
+#: 02140000.xhp#par_id3150930.73.help.text
+msgid "The calculation procedure does not converge"
+msgstr "Процедурата за пресметување не конвергира"
+
+#: 02140000.xhp#par_id3150272.74.help.text
+msgid "Function missed a targeted value, or <link href=\"text/shared/optionen/01060500.xhp\">iterative references</link> do not reach the minimum change within the maximum steps that are set."
+msgstr "Функцијата ја промаши целната вредност или <link href=\"text/shared/optionen/01060500.xhp\">итеративните референци</link> не ја постигнуваат минималната промена во рамките на максималните чекори што се поставени."
+
+#: 02140000.xhp#par_id3153544.75.help.text
+msgid "524<br/>#REF"
+msgstr ""
+
+#: 02140000.xhp#par_id3154634.76.help.text
+msgid "invalid references (instead of Err:524 cell contains #REF)"
+msgstr "невалидни референци (наместо грешката 524 ќелијата содржи #REF)"
+
+#: 02140000.xhp#par_id3147539.77.help.text
+msgid " <emph>Compiler:</emph> a column or row description name could not be resolved. <emph>Interpreter:</emph> in a formula, the column, row, or sheet that contains a referenced cell is missing."
+msgstr "<emph>Компилатор:</emph>Описното име на колоната или редот не може да биде разрешено. <emph>Интерпретерот:</emph> во формулата, колоната, редот или листот што ја содржи определената ќелија недостасува."
+
+#: 02140000.xhp#par_id3155984.78.help.text
+msgid "525<br/>#NAME?"
+msgstr ""
+
+#: 02140000.xhp#par_id3148428.79.help.text
+msgid "invalid names (instead of Err:525 cell contains #NAME?)"
+msgstr "невалидни имиња (наместо грешката 525 ќелијата содржи #NAME?)"
+
+#: 02140000.xhp#par_id3156259.80.help.text
+msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found."
+msgstr "Идентификаторот не може да биде пресметан, на пример, нема валидна референца, нема валидно име на доменот, нема ознака на колона/ред, нема макро, некоректен децимален делител, додатокот не е најден."
+
+#: 02140000.xhp#par_id3153720.81.help.text
+msgid "526"
+msgstr "526"
+
+#: 02140000.xhp#par_id3154315.82.help.text
+msgctxt "02140000.xhp#par_id3154315.82.help.text"
+msgid "Internal syntax error"
+msgstr "Внатрешна синтаксичка грешка"
+
+#: 02140000.xhp#par_id3083286.83.help.text
+msgid "Obsolete, no longer used, but could come from old documents if the result is a formula from a domain."
+msgstr "Некорисно, не се користи веќе, но може да дојде од стар документ ако е резултатот формула од доменот."
+
+#: 02140000.xhp#par_id3152483.84.help.text
+msgid "527"
+msgstr "527"
+
+#: 02140000.xhp#par_id3152966.85.help.text
+msgctxt "02140000.xhp#par_id3152966.85.help.text"
+msgid "Internal overflow"
+msgstr "Внатрешно преполнување "
+
+#: 02140000.xhp#par_id3149709.86.help.text
+msgid " <emph>Interpreter: </emph>References, such as when a cell references a cell, are too encapsulated."
+msgstr "<emph>Интерпретер: </emph>Референците, исто како кога ќелијата покажува на ќелија,се пре encapsulated"
+
+#: 02140000.xhp#par_id5324564.help.text
+msgid "532<br/>#DIV/0!"
+msgstr ""
+
+#: 02140000.xhp#par_id7941831.help.text
+msgid "Division by zero"
+msgstr "Поделено со нула"
+
+#: 02140000.xhp#par_id5844294.help.text
+msgid "Division operator / if the denominator is 0<br/>Some more functions return this error, for example:<br/>VARP with less than 1 argument<br/>STDEVP with less than 1 argument<br/>VAR with less than 2 arguments<br/>STDEV with less than 2 arguments<br/>STANDARDIZE with stdev=0<br/>NORMDIST with stdev=0"
+msgstr "Операторот за делење / ако именителот е 0<br/>Повеќе функции ја даваат оваа грешка, на пример: <br/>VARP со помалку од 1 аргумент<br/>STDEVP со помалку од 1 аргумент<br/>VAR со помалку од 2 агрумента<br/>STDEV со помалку од 2 аргумента<br/>STANDARDIZE со stdev=0<br/>NORMDIST со stdev=0"
diff --git a/source/mk/helpcontent2/source/text/scalc/guide.po b/source/mk/helpcontent2/source/text/scalc/guide.po
new file mode 100644
index 00000000000..e5cc0e3b404
--- /dev/null
+++ b/source/mk/helpcontent2/source/text/scalc/guide.po