Cross-compiling LibreOffice *************************** Cross-compilation works, to various degree, to the following platforms: iOS, Android, and Raspbian. Note that this document has not been updated very often, and not everything here necessarily is true any more. General ------- In GNU Autoconf terminology, "build" is the platform on which you are running a build of some software and "host" is the platform on which the software you are building will run. Only in the specific case of building compilers and other programming tools is the term "target" used to indicate the platform for which the tools your are building will produce code. As LibreOffice is not a compiler, the "target" term should not be used in the context of cross-compilation. (For a case where all three of "build", "host" and "target" are different: consider a gcc cross-compiler running on Windows, producing code for Android, where the cross-compiler itself was built on Linux. (This is a real case.) An interesting tidbit is that such configurations are called "Canadian Cross".) Even though the LibreOffice build mechanism is highly unorthodox, the configure script takes the normal --build and --host options like any GNU Autoconf -based configure script. To cross-compile, you basically need just to specify a suitable --host option and things should work out nicely. In practice, many details need to be handled. See examples below. Note that in the case of LibreOffice, it is uncommon to run the configure script directly. Normally one uses the autogen.sh script. The autogen.sh script reads command-line options from file called autogen.input if it exists. The typical way of working is to keep the configure parameters in that file and edit it as needed. What is so hard, then? ---------------------- Despite the fact that the configure script takes normal --build and --host options, that is just the beginning. It was necessary to separate tests for "host" and "build" platforms in the configure script. See the git log for details. And the reasonably "standard" configure.in is just the top level; when we get down to the actual makefilery used to build the bits of LibreOffice, it gets much worse. iOS *** iOS is the operating system on Apple's mobile devices. Clearly for a device like the iPad it would not be acceptable to run a normal LibreOffice application with overlapping windows and mouse-oriented GUI widgets. It makes sense to use only a part of LibreOffice's code for iOS. Lots of the GUI-oriented code should be left out. iOS apps that want to use the applicable LibreOffice code will handle all their GUI in a platform-dependent manner. How well it will be possible to do such a split remains to be seen. Obviously we want it to be possible to eventually distribute apps using LibreOffice code through the App Store. Technically, one important special aspect of iOS is that apps in the App Store are not allowed to load own dynamic libraries. (System libraries are used in the form of dynamic libraries, just like on macOS, of which iOS is a variant.) Thus all the libraries in LibreOffice that normally are shared libraries (DLLs on Windows, shared objects (.so) on Linux, dynamic libraries on macOS (.dylib)) must be built as static archives instead. This has some interesting consequences for how UNO is implemented and used. An iOS app is a "bundle" that contains a single executable. In an app using LibreOffice code, that executable then contains the necessary LibreOffice libraries and UNO components statically linked. The Apple tool-chain for iOS cross-building is available only for OS X. In order to be able to run and debug an app on an actual device (and not just the iOS Simulator) you need to be registered in the iOS Developer Program. Here is an autogen.input for iOS (device) using Xcode 4.6, on macOS 10.8: --build=i386-apple-darwin10.7.0 --host=arm-apple-darwin10 --enable-dbgutil --enable-debug --enable-werror For the iOS Simulator, but note that building for the simulator is broken at the moment (July 2014): --build=i386-apple-darwin10.7.0 --host=arm-apple-darwin10 --enable-ios-simulator --enable-dbgutil --enable-debug --enable-werror You will have to install autoconf and automake yourself before running autogen.sh. They are no longer included in Xcode 4.3 and later (not even in the add-on "command line tools"). The -mmacosx-version-min=10.7 is necessary when building for the iOS simulator to avoid clang replacing simple calls to fprintf with calls to fwrite$UNIX2003 which Xcode then warns that doesn't exist on iOS. Android ******* From a technical point of view the core Android OS (the kernel) is Linux, but everything else is different. Unlike iOS, an Android app can use shared objects just fine, so that aspect of UNO doesn't need special handling. Except that there is a silly low limit in the Android dynamic linker on the number of libraries you can dlopen. This is a limitation in user-level (but system-provided and not really replaceable) code, not the kernel. Thus, just like for iOS, also for Android the LibreOffice libraries and UNO components are built as static archives. For Android, those static archives, and any app-specific native code, are linked into one single app-specific shared library, called liblo-native-code.so. For the GUI, the same holds as said above for iOS. The GUI layer needs to be platform-specific, written in Java. Android cross-compilation work has been done mainly on Linux (openSUSE in particular). Earlier also cross-compiling from macOS was tried. The Android cross-compilation tool-chain (the "Native Development Kit", or NDK) is available for Linux, macOS and Windows, but trying to cross-compile LibreOffice from Windows will probably drive you insane. You will also need the Android SDK as full "make" also builds a couple of Android apps where the upper layer is written in Java. Use the "android" tool from the SDK to install the SDK Tools, SDK Platform Tools, the API 15 SDK Platform and the Android Support Library. If you want to run the Android apps in the emulator, you of course need an appropriate system image for that. Here is an autogen.input for Android on ARM when cross-compiling from Linux: --enable-dbgutil --enable-werror --with-distro=LibreOfficeAndroid --with-android-sdk=/path/to/android/sdk --with-android-ndk=/path/to/android/sdk/ndk/version And here is an (quite old) autogen.input for Android on X86: --with-android-ndk=/opt/libreoffice/android-ndk-r8b --with-android-ndk-toolchain-version=4.6 --with-android-sdk=/opt/libreoffice/android-sdk-linux --build=i586-suse-linux --enable-ccache --with-distro=LibreOfficeAndroidX86 A LibreOffice app for Android is being developed progress in the android/source directory. To run the app, do "make install" followed by either "make run" or starting it from Android itself. You most likely want to have an "adb logcat" running in another window. To debug, run "make debugrun". NB: If you happen to upgrade to Android SDK Tools 23, and the build (using 'make verbose=t android') fails for you with: [dx] UNEXPECTED TOP-LEVEL EXCEPTION: [dx] java.io.FileNotFoundException: /local/libreoffice/android-sdk-linux/tools/support/annotations.jar (no such file or directory) you need to copy the annotations.jar from an older sdk; like wget 'http://dl-ssl.google.com/android/repository/tools_r22.6.2-linux.zip' unzip tools_r22.6.2-linux.zip cp tools/support/annotations.jar /tools/support/ Raspbian ******** In theory, this should work also for another Linux, it does not need to be Raspbian. But this cross-compilation work is tested from Debian and openSUSE to Raspbian. You will need headers, pkg-config files and libraries from a Raspbian system to build against. Available at https://dev-www.libreoffice.org/extern/ . Look for the latest raspbian-root-*.tar.gz . For instance: $ wget https://dev-www.libreoffice.org/extern/raspbian-root-20140120.tar.gz $ mkdir raspbian-root $ cd raspbian-root $ tar -xf raspbian-root-20140120.tar.gz You can build cross-compiler yourself or get the executables here: $ git clone git://github.com/raspberrypi/tools tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian is known to work. Then create pkg-config wrapper, something like: $ cat > pkg-config-wrapper-host << _EOF #!/bin/sh if [ "$CROSS_COMPILING" = TRUE ]; then SYSROOT=$HOME/lo/raspbian-root export PKG_CONFIG_PATH=${SYSROOT}/usr/lib/arm-linux-gnueabihf/pkgconfig:${SYSROOT}/usr/share/pkgconfig export PKG_CONFIG_LIBDIR=${SYSROOT}/usr/lib/pkgconfig export PKG_CONFIG_SYSROOT_DIR=${SYSROOT} fi exec pkg-config "\$@" _EOF $ chmod +x pkg-config-wrapper-host This does not work with pkg-config 0.23. 0.26 is known to work. And you are ready to build with autogen.input similar to: PKG_CONFIG= CC= --sysroot= CXX= --sysroot= --build=x86_64-unknown-linux-gnu --host=arm-unknown-linux-gnueabihf --disable-sdk --enable-python=system PYTHON_CFLAGS=-I/usr/include/python2.7 PYTHON_LIBS=-lpython2.7 --with-java JAVAINC=-I/usr/lib/jvm/java-6-openjdk-armhf/include --with-system-cairo --with-system-cppunit --with-system-icu --with-system-neon --with-system-nss --with-system-openldap --with-system-openssl --with-system-redland Finally, when you are ready to run the binaries in Raspbian, you may need to get more system libraries, who knows. $ sudo apt-get install libreoffice # or similar That installs libreoffice too, which you don't need because you have just built one, but I don't know how to avoid it easily. breoffice-5-0-1 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/mk
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-06-18 10:20:15 +0200
committerAndras Timar <atimar@suse.com>2013-06-27 21:21:47 +0200
commit3f9323c2a621df529f82aa360cd9ae388ad781d5 (patch)
tree31a60f3fb8b53bee7bcecd031a9f5117870cf22d /source/mk
parent56f43677e90d28489fa3dbbd5bc5f35a5483e354 (diff)
update translations for LibreOffice 4.1 rc1
Change-Id: Icdd695955786c330a21e7870ac9e617ccf2d5ebe
Diffstat (limited to 'source/mk')
-rw-r--r--source/mk/cui/uiconfig/ui.po20
-rw-r--r--source/mk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/mk/helpcontent2/source/text/scalc/02.po2
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--source/mk/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po18
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po18
-rw-r--r--source/mk/helpcontent2/source/text/shared/05.po44
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po49
-rw-r--r--source/mk/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/mk/helpcontent2/source/text/swriter/02.po2
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mk/starmath/source.po86
-rw-r--r--source/mk/svx/source/dialog.po34
-rw-r--r--source/mk/svx/source/sidebar/text.po20
-rw-r--r--source/mk/sw/source/ui/config.po65
-rw-r--r--source/mk/sw/uiconfig/swriter/ui.po65
-rw-r--r--source/mk/wizards/source/importwizard.po10
19 files changed, 237 insertions, 232 deletions
diff --git a/source/mk/cui/uiconfig/ui.po b/source/mk/cui/uiconfig/ui.po
index d21dd619240..1dae4535db0 100644
--- a/source/mk/cui/uiconfig/ui.po
+++ b/source/mk/cui/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-06-02 13:55+0200\n"
+"POT-Creation-Date: 2013-06-10 10:39+0200\n"
"PO-Revision-Date: 2012-11-17 19:02+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -5273,24 +5273,6 @@ msgstr ""
#: optgeneralpage.ui
msgctxt ""
"optgeneralpage.ui\n"
-"helpagent\n"
-"label\n"
-"string.text"
-msgid "_Help Agent"
-msgstr ""
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"resethelpagent\n"
-"label\n"
-"string.text"
-msgid "_Reset Help Agent"
-msgstr ""
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
"label1\n"
"label\n"
"string.text"
diff --git a/source/mk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/mk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
index eb03c8ed8f7..0b8ca13919d 100644
--- a/source/mk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
+++ b/source/mk/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-06-03 08:43+0200\n"
+"POT-Creation-Date: 2013-06-16 22:46+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"
@@ -29,5 +29,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.pt_BR\n"
"Label\n"
"value.text"
-msgid "Portuguese sentence checking"
+msgid "Grammar checking (Portuguese)"
msgstr ""
diff --git a/source/mk/helpcontent2/source/text/scalc/02.po b/source/mk/helpcontent2/source/text/scalc/02.po
index f2243b3c278..7bf2edc22fa 100644
--- a/source/mk/helpcontent2/source/text/scalc/02.po
+++ b/source/mk/helpcontent2/source/text/scalc/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-13 17:25+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"
diff --git a/source/mk/helpcontent2/source/text/scalc/guide.po b/source/mk/helpcontent2/source/text/scalc/guide.po
index a159f023a13..f7f93cc9a6d 100644
--- a/source/mk/helpcontent2/source/text/scalc/guide.po
+++ b/source/mk/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-10 10:39+0200\n"
"PO-Revision-Date: 2011-07-28 12:56+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11277,7 +11277,7 @@ msgctxt ""
"par_id3156280\n"
"41\n"
"help.text"
-msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut works directly in the cell or in the input line. The input line can be expaneded to the multi-line by the Down arrow button on the right."
+msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut works directly in the cell or in the input line. The input line can be expanded to the multi-line by the Down arrow button on the right."
msgstr ""
#: text_wrap.xhp
diff --git a/source/mk/helpcontent2/source/text/schart/01.po b/source/mk/helpcontent2/source/text/schart/01.po
index 672c4708a91..fa0e17d5cf2 100644
--- a/source/mk/helpcontent2/source/text/schart/01.po
+++ b/source/mk/helpcontent2/source/text/schart/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-10 10:39+0200\n"
"PO-Revision-Date: 2011-07-28 12:56+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4488,7 +4488,7 @@ msgctxt ""
"stepped_line_properties.xhp\n"
"par_id0679473\n"
"help.text"
-msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_center_y_rb\">Start to step up vertically to the middle of the Y values, draw a horizonal line and finish by stepping vertically to the end.</ahelp>"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_center_y_rb\">Start to step up vertically to the middle of the Y values, draw a horizontal line and finish by stepping vertically to the end.</ahelp>"
msgstr ""
#: three_d_view.xhp
@@ -6904,7 +6904,7 @@ msgctxt ""
"type_xy.xhp\n"
"par_id0679473\n"
"help.text"
-msgid "Start to step up vertically to the middle of the Y values, draw a horizonal line and finish by stepping vertically to the end."
+msgid "Start to step up vertically to the middle of the Y values, draw a horizontal line and finish by stepping vertically to the end."
msgstr ""
#: wiz_chart_elements.xhp
diff --git a/source/mk/helpcontent2/source/text/shared/00.po b/source/mk/helpcontent2/source/text/shared/00.po
index 6134b8e67ac..d50a0d5ddd2 100644
--- a/source/mk/helpcontent2/source/text/shared/00.po
+++ b/source/mk/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-13 17:25+0200\n"
"PO-Revision-Date: 2012-12-01 17:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1333,14 +1333,6 @@ msgstr "<variable id=\"related\"><emph>Поврзани теми</emph></variabl
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id56935339\n"
-"help.text"
-msgid "Enable or disable the Help Agent on <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - General</emph>."
-msgstr "<variable id=\"etotm\">Изберете <emph>Алатки - Опции - %PRODUCTNAME Draw - Општо</emph></variable>"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3154689\n"
"help.text"
msgid "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Icon</alt></image>"
@@ -4181,14 +4173,6 @@ msgstr "<variable id=\"winmanager\">Достапноста на оваа фун
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
-"par_idN10632\n"
-"help.text"
-msgid "<ahelp hid=\".uno:HelperDialog\">Allows you to activate the automatic Help Agent. You can also activate the Help Agent through <emph>$[officename] - General - Help Agent</emph> in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".uno:HelperDialog\">Ви овозможува да го активирате автоматскиот Агент за помош. Можете да го активирате Агентот за помош и преку <emph>Алатки - Опции - $[officename] - Општо - Агент за помош</emph>.</ahelp>"
-
-#: 00000099.xhp
-msgctxt ""
-"00000099.xhp\n"
"par_idN10665\n"
"help.text"
msgid "<ahelp hid=\".uno:HelpTip\">Enables the display of icon names at the mouse pointer and other Help contents.</ahelp>"
diff --git a/source/mk/helpcontent2/source/text/shared/01.po b/source/mk/helpcontent2/source/text/shared/01.po
index 5b2af499347..14d8dba9dfb 100644
--- a/source/mk/helpcontent2/source/text/shared/01.po
+++ b/source/mk/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-06-03 08:43+0200\n"
+"POT-Creation-Date: 2013-06-13 17:25+0200\n"
"PO-Revision-Date: 2013-01-19 18:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4075,8 +4075,8 @@ msgctxt ""
"01110101.xhp\n"
"tit\n"
"help.text"
-msgid "Templates: Address Book Assignment"
-msgstr "Templates: Address Book Assignment"
+msgid "Address Book Assignment"
+msgstr ""
#: 01110101.xhp
msgctxt ""
@@ -4084,8 +4084,8 @@ msgctxt ""
"hd_id3156411\n"
"1\n"
"help.text"
-msgid "Templates: Address Book Assignment"
-msgstr "Templates: Address Book Assignment"
+msgid "Address Book Assignment"
+msgstr ""
#: 01110101.xhp
msgctxt ""
@@ -4099,6 +4099,14 @@ msgstr "<ahelp hid=\".uno:AddressBookSource\">Edit the field assignments and the
#: 01110101.xhp
msgctxt ""
"01110101.xhp\n"
+"par_id3155377\n"
+"help.text"
+msgid "Choose <emph>Tools - Address Book Source</emph>"
+msgstr ""
+
+#: 01110101.xhp
+msgctxt ""
+"01110101.xhp\n"
"hd_id3149399\n"
"3\n"
"help.text"
diff --git a/source/mk/helpcontent2/source/text/shared/05.po b/source/mk/helpcontent2/source/text/shared/05.po
index 3447db7ab8c..ea2ea0c24d4 100644
--- a/source/mk/helpcontent2/source/text/shared/05.po
+++ b/source/mk/helpcontent2/source/text/shared/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-10 10:39+0200\n"
"PO-Revision-Date: 2011-04-06 00:24+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -676,16 +676,16 @@ msgctxt ""
"00000120.xhp\n"
"tit\n"
"help.text"
-msgid "Help Agent, Tips and Extended Tips"
-msgstr "Агент за помош, совети и проширени совети"
+msgid "Tips and Extended Tips"
+msgstr ""
#: 00000120.xhp
msgctxt ""
"00000120.xhp\n"
"bm_id3150672\n"
"help.text"
-msgid "<bookmark_value>Help; Help tips</bookmark_value> <bookmark_value>tooltips; help</bookmark_value> <bookmark_value>Help Agent; help</bookmark_value> <bookmark_value>Clippy, see Help Agent</bookmark_value>"
-msgstr "<bookmark_value>Помош; помошни совети</bookmark_value><bookmark_value>помошни совети; помош</bookmark_value><bookmark_value>Агент за помош; помош</bookmark_value>"
+msgid "<bookmark_value>Help; Help tips</bookmark_value> <bookmark_value>tooltips; help</bookmark_value>"
+msgstr ""
#: 00000120.xhp
msgctxt ""
@@ -693,8 +693,8 @@ msgctxt ""
"hd_id3155599\n"
"1\n"
"help.text"
-msgid "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\" name=\"Help Agent, Tips and Extended Tips\">Help Agent, Tips and Extended Tips</link></variable>"
-msgstr "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\" name=\"Help Agent, Tips and Extended Tips\">Агент за помош, совети и проширени совети</link></variable>"
+msgid "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\" name=\"Tips and Extended Tips\">Tips and Extended Tips</link></variable>"
+msgstr ""
#: 00000120.xhp
msgctxt ""
@@ -702,34 +702,8 @@ msgctxt ""
"par_id3148520\n"
"2\n"
"help.text"
-msgid "The Help Agent, Tips, and Extended Tips provide help while you work."
-msgstr "Агентот за помош, советите и проширените совети обезбедуваат помош додека работите."
-
-#: 00000120.xhp
-msgctxt ""
-"00000120.xhp\n"
-"hd_id3147285\n"
-"7\n"
-"help.text"
-msgid "The Help Agent"
-msgstr "Агентот за помош"
-
-#: 00000120.xhp
-msgctxt ""
-"00000120.xhp\n"
-"par_id3149716\n"
-"8\n"
-"help.text"
-msgid "The <link href=\"text/shared/optionen/01010600.xhp\" name=\"Help Agent\">Help Agent</link> starts automatically when you are performing a task that might require some assistance. The Help Agent appears in a small window in a corner of the document. To view the help for the task, click inside the Help Agent window."
-msgstr "<link href=\"text/shared/optionen/01010600.xhp\" name=\"Help Agent\">Агентот за помош</link> се вклучува автоматски кога извршувате задача што можеби бара малку помош. Агентот за помош се појавува во мал прозорец во агол од документот. За да ја видите помошта за задачата, кликнете внатре во прозорецот на Агентот за помош."
-
-#: 00000120.xhp
-msgctxt ""
-"00000120.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "The Help Agent automatically closes after a short delay. If you ignore or close the Help Agent three times you perform a certain task, the Help Agent no longer opens for that task. To disable the Help Agent choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - General</emph>."
-msgstr "Агентот за помош автоматски се затвора по одредено време. Ако го игнорирате или затворите Агентот за помош три пати кога извршувате одредена задача, Агентот за помош не се отвора повеќе за таа задача."
+msgid "Tips and Extended Tips provide help while you work."
+msgstr ""
#: 00000120.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/shared/optionen.po b/source/mk/helpcontent2/source/text/shared/optionen.po
index 0ce4dc996f4..ad2fcc5d367 100644
--- a/source/mk/helpcontent2/source/text/shared/optionen.po
+++ b/source/mk/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-13 17:25+0200\n"
"PO-Revision-Date: 2013-02-12 22:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2917,7 +2917,7 @@ msgctxt ""
"01010600.xhp\n"
"bm_id3155450\n"
"help.text"
-msgid "<bookmark_value>opening; dialog settings</bookmark_value> <bookmark_value>saving; dialog settings</bookmark_value> <bookmark_value>years; 2-digit options</bookmark_value> <bookmark_value>Help Agent;options</bookmark_value>"
+msgid "<bookmark_value>opening; dialog settings</bookmark_value> <bookmark_value>saving; dialog settings</bookmark_value> <bookmark_value>years; 2-digit options</bookmark_value>"
msgstr ""
#: 01010600.xhp
@@ -2991,51 +2991,6 @@ msgstr "<ahelp hid=\".\">Прикажува текст за помош кога
#: 01010600.xhp
msgctxt ""
"01010600.xhp\n"
-"hd_id3154138\n"
-"26\n"
-"help.text"
-msgid "Help Agent"
-msgstr "Агент за помош"
-
-#: 01010600.xhp
-msgctxt ""
-"01010600.xhp\n"
-"par_id3145174\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optgeneralpage/helpagent\">Specifies that the Help Agent will be displayed automatically in selected situations. Click the Help Agent window to see a Help page with information about the current context.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optgeneralpage/helpagent\">Одредува дека Агентот за помош ќе биде автоматски прикажуван во одредени ситуации. Кликнете на прозорецот на Агентот за помош за да ја видите страницата за помош со информација за тековниот контекст.</ahelp>"
-
-#: 01010600.xhp
-msgctxt ""
-"01010600.xhp\n"
-"hd_id3153968\n"
-"30\n"
-"help.text"
-msgid "Reset Help Agent"
-msgstr "Ресетирај го Агентот за помош"
-
-#: 01010600.xhp
-msgctxt ""
-"01010600.xhp\n"
-"par_id3151176\n"
-"31\n"
-"help.text"
-msgid "If you have not opened the Help Agent for a particular situation three times in succession, but rather have closed it or let it close automatically, the Help Agent for this situation is not shown again."
-msgstr "Доколку не сте го отвориле Агентот за помош за одредени случаи три пати по ред, туку напротив сте го затвориле или сте оставиле сам да се затвори, тој нема повторно да се појави за оваа ситуација."
-
-#: 01010600.xhp
-msgctxt ""
-"01010600.xhp\n"
-"par_id3159150\n"
-"32\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optgeneralpage/resethelpagent\">Click <emph>Reset Help Agent </emph>to restore the default list of situations for which the Help Agent is displayed.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optgeneralpage/resethelpagent\">Кликнете на <emph>Ресетирај го агентот за помош </emph>за да ја вратите стандардната листа на случаи за кои ќе се прикажува Агентот за помош.</ahelp>"
-
-#: 01010600.xhp
-msgctxt ""
-"01010600.xhp\n"
"hd_id3152577\n"
"34\n"
"help.text"
diff --git a/source/mk/helpcontent2/source/text/swriter/00.po b/source/mk/helpcontent2/source/text/swriter/00.po
index 8700713e54d..edbe617a5bc 100644
--- a/source/mk/helpcontent2/source/text/swriter/00.po
+++ b/source/mk/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-10 10:39+0200\n"
"PO-Revision-Date: 2011-04-06 00:25+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -698,8 +698,8 @@ msgctxt ""
"par_id3145411\n"
"63\n"
"help.text"
-msgid "Choose <emph>Insert - Referenced Field</emph>"
-msgstr "Изберете <emph>Вметни - Референцирано поле</emph>"
+msgid "Choose <emph>Insert - Cross-reference</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/swriter/01.po b/source/mk/helpcontent2/source/text/swriter/01.po
index e82c218e82e..79f323e2f15 100644
--- a/source/mk/helpcontent2/source/text/swriter/01.po
+++ b/source/mk/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-13 17:25+0200\n"
"PO-Revision-Date: 2013-02-12 22:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24562,6 +24562,14 @@ msgstr "<ahelp hid=\"SW:EDIT:TP_FOOTNOTEOPTION:ED_SUFFIX\">Внесете го
#: 06080100.xhp
msgctxt ""
"06080100.xhp\n"
+"par_id334242345\n"
+"help.text"
+msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style <emph>Footnote</emph>. Press <item type=\"keycode\">F11</item> to open <emph>Styles and Formatting</emph> dialog and select <emph>Footnote</emph> from the list of paragraph styles. Open the local menu with right click and choose <emph>Modify</emph>. Go to the <emph>Indents & Spacing</emph> tab page and set indent to 0 before and after the paragraph, including the first line. On <emph>Tabs</emph> tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in <emph>Footnotes/Endnotes Settings</emph> dialog enter <item type=\"input\">\\t</item> into the <emph>Before</emph> and <emph>After</emph> edit boxes."
+msgstr ""
+
+#: 06080100.xhp
+msgctxt ""
+"06080100.xhp\n"
"hd_id3148875\n"
"3\n"
"help.text"
diff --git a/source/mk/helpcontent2/source/text/swriter/02.po b/source/mk/helpcontent2/source/text/swriter/02.po
index 78848f58172..20dc7555fd9 100644
--- a/source/mk/helpcontent2/source/text/swriter/02.po
+++ b/source/mk/helpcontent2/source/text/swriter/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-13 17:25+0200\n"
"PO-Revision-Date: 2011-04-06 00:26+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
index d0c4142d7c0..89c2a47b44b 100644
--- a/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-28 18:08+0200\n"
+"POT-Creation-Date: 2013-06-13 17:25+0200\n"
"PO-Revision-Date: 2013-02-17 21:14+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15159,8 +15159,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:SetBorderStyle\n"
"Label\n"
"value.text"
-msgid "Borders"
-msgstr "Рабови"
+msgid "Borders, add lines; SHIFT to add and remove"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/mk/starmath/source.po b/source/mk/starmath/source.po
index ca1c6d58a74..a7c3a210985 100644
--- a/source/mk/starmath/source.po
+++ b/source/mk/starmath/source.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-06-13 17:25+0200\n"
"PO-Revision-Date: 2011-04-12 00:43+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,6 +18,86 @@ msgstr ""
#: commands.src
msgctxt ""
"commands.src\n"
+"RID_CATEGORY_UNARY_BINARY_OPERATORS\n"
+"string.text"
+msgid "Unary/Binary Operators"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_RELATIONS\n"
+"string.text"
+msgid "Relations"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_SET_OPERATIONS\n"
+"string.text"
+msgid "Set Operations"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_FUNCTIONS\n"
+"string.text"
+msgid "Functions"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_OPERATORS\n"
+"string.text"
+msgid "Operators"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_ATTRIBUTES\n"
+"string.text"
+msgid "Attributes"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_BRACKETS\n"
+"string.text"
+msgid "Brackets"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_FORMATS\n"
+"string.text"
+msgid "Formats"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_OTHERS\n"
+"string.text"
+msgid "Others"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
+"RID_CATEGORY_EXAMPLES\n"
+"string.text"
+msgid "Examples"
+msgstr ""
+
+#: commands.src
+msgctxt ""
+"commands.src\n"
"RID_COMMANDMENU\n"
"RID_UNBINOPS_MENU\n"
"menuitem.text"
@@ -1404,8 +1484,8 @@ msgctxt ""
"smres.src\n"
"RID_ELEMENTSDOCKINGWINDOW\n"
"dockingwindow.text"
-msgid "Symbols"
-msgstr "Симболи"
+msgid "Elements Dock"
+msgstr ""
#: smres.src
msgctxt ""
diff --git a/source/mk/svx/source/dialog.po b/source/mk/svx/source/dialog.po
index 374a4422aaa..6ed8857bd42 100644
--- a/source/mk/svx/source/dialog.po
+++ b/source/mk/svx/source/dialog.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-06-02 13:55+0200\n"
+"POT-Creation-Date: 2013-06-16 22:46+0200\n"
"PO-Revision-Date: 2013-02-17 21:14+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2359,6 +2359,38 @@ msgstr "Портокалова"
#: sdstring.src
msgctxt ""
"sdstring.src\n"
+"RID_SVXSTR_CYAN2\n"
+"string.text"
+msgid "Cyan"
+msgstr ""
+
+#: sdstring.src
+msgctxt ""
+"sdstring.src\n"
+"RID_SVXSTR_YELLOW_GREEN\n"
+"string.text"
+msgid "Yellow Green"
+msgstr ""
+
+#: sdstring.src
+msgctxt ""
+"sdstring.src\n"
+"RID_SVXSTR_SKY_BLUE\n"
+"string.text"
+msgid "Sky Blue"
+msgstr ""
+
+#: sdstring.src
+msgctxt ""
+"sdstring.src\n"
+"RID_SVXSTR_PINK\n"
+"string.text"
+msgid "Pink"
+msgstr ""
+
+#: sdstring.src
+msgctxt ""
+"sdstring.src\n"
"RID_SVXSTR_ARROW\n"
"string.text"
msgid "Arrow"
diff --git a/source/mk/svx/source/sidebar/text.po b/source/mk/svx/source/sidebar/text.po
index c0a62911153..ea3d0b79a24 100644
--- a/source/mk/svx/source/sidebar/text.po
+++ b/source/mk/svx/source/sidebar/text.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"POT-Creation-Date: 2013-06-10 10: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"
@@ -17,24 +17,6 @@ msgstr ""
#: TextPropertyPanel.src
msgctxt ""
"TextPropertyPanel.src\n"
-"RID_SIDEBAR_TEXT_PANEL\n"
-"CB_SBFONT_FONT\n"
-"combobox.quickhelptext"
-msgid "Font"
-msgstr ""
-
-#: TextPropertyPanel.src
-msgctxt ""
-"TextPropertyPanel.src\n"
-"RID_SIDEBAR_TEXT_PANEL\n"
-"MB_SBFONT_FONTSIZE\n"
-"metricbox.quickhelptext"
-msgid "Font Size"
-msgstr ""
-
-#: TextPropertyPanel.src
-msgctxt ""
-"TextPropertyPanel.src\n"
"RID_POPUPPANEL_TEXTPAGE_UNDERLINE\n"
"PB_OPTIONS\n"
"pushbutton.text"
diff --git a/source/mk/sw/source/ui/config.po b/source/mk/sw/source/ui/config.po
index bbb56819954..8e735271dbb 100644
--- a/source/mk/sw/source/ui/config.po
+++ b/source/mk/sw/source/ui/config.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-06-10 10:39+0200\n"
"PO-Revision-Date: 2012-06-16 14:54+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1314,69 +1314,6 @@ msgstr ""
"#-#-#-#-# pdf.po (PACKAGE VERSION) #-#-#-#-#\n"
"И~збор"
-#: optdlg.src
-msgctxt ""
-"optdlg.src\n"
-"TP_COMPARISON_OPT\n"
-"FL_CMP\n"
-"fixedline.text"
-msgid "Compare documents"
-msgstr "Спореди документ"
-
-#: optdlg.src
-msgctxt ""
-"optdlg.src\n"
-"TP_COMPARISON_OPT\n"
-"RB_AUTO\n"
-"radiobutton.text"
-msgid "~Auto"
-msgstr ""
-
-#: optdlg.src
-msgctxt ""
-"optdlg.src\n"
-"TP_COMPARISON_OPT\n"
-"RB_WORD\n"
-"radiobutton.text"
-msgid "By ~word"
-msgstr ""
-
-#: optdlg.src
-msgctxt ""
-"optdlg.src\n"
-"TP_COMPARISON_OPT\n"
-"RB_CHAR\n"
-"radiobutton.text"
-msgid "By ~character"
-msgstr "На з~нак"
-
-#: optdlg.src
-msgctxt ""
-"optdlg.src\n"
-"TP_COMPARISON_OPT\n"
-"FL_SET\n"
-"fixedline.text"
-msgid "Settings"
-msgstr "Поставувања"
-
-#: optdlg.src
-msgctxt ""
-"optdlg.src\n"
-"TP_COMPARISON_OPT\n"
-"CB_RSID\n"
-"checkbox.text"
-msgid "Use ~RSID"
-msgstr ""
-
-#: optdlg.src
-msgctxt ""
-"optdlg.src\n"
-"TP_COMPARISON_OPT\n"
-"CB_IGNORE\n"
-"checkbox.text"
-msgid "Ignore ~pieces of length"
-msgstr ""
-
#: optload.src
msgctxt ""
"optload.src\n"
diff --git a/source/mk/sw/uiconfig/swriter/ui.po b/source/mk/sw/uiconfig/swriter/ui.po
index 488301453d3..68fdb7b5c79 100644
--- a/source/mk/sw/uiconfig/swriter/ui.po
+++ b/source/mk/sw/uiconfig/swriter/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-28 18:08+0200\n"
+"POT-Creation-Date: 2013-06-10 10:39+0200\n"
"PO-Revision-Date: 2013-02-17 21:14+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -3404,6 +3404,69 @@ msgctxt ""
msgid "Line numbering"
msgstr "Нумерирање линии"
+#: optcomparison.ui
+msgctxt ""
+"optcomparison.ui\n"
+"auto\n"
+"label\n"
+"string.text"
+msgid "A_uto"
+msgstr ""
+
+#: optcomparison.ui
+msgctxt ""
+"optcomparison.ui\n"
+"byword\n"
+"label\n"
+"string.text"
+msgid "By w_ord"
+msgstr ""
+
+#: optcomparison.ui
+msgctxt ""
+"optcomparison.ui\n"
+"bycharacter\n"
+"label\n"
+"string.text"
+msgid "By _character"
+msgstr ""
+
+#: optcomparison.ui
+msgctxt ""
+"optcomparison.ui\n"
+"label1\n"
+"label\n"
+"string.text"
+msgid "Compare documents"
+msgstr ""
+
+#: optcomparison.ui
+msgctxt ""
+"optcomparison.ui\n"
+"ignore\n"
+"label\n"
+"string.text"
+msgid "Ignore _pieces of length"
+msgstr ""
+
+#: optcomparison.ui
+msgctxt ""
+"optcomparison.ui\n"
+"useRSID\n"
+"label\n"
+"string.text"
+msgid "Use _RSID"
+msgstr ""
+
+#: optcomparison.ui
+msgctxt ""
+"optcomparison.ui\n"
+"setting\n"
+"label\n"
+"string.text"
+msgid "Settings"
+msgstr ""
+
#: outlinenumbering.ui
msgctxt ""
"outlinenumbering.ui\n"
diff --git a/source/mk/wizards/source/importwizard.po b/source/mk/wizards/source/importwizard.po
index 45475d64c0e..68248fae0a4 100644
--- a/source/mk/wizards/source/importwizard.po
+++ b/source/mk/wizards/source/importwizard.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-06-10 10:39+0200\n"
"PO-Revision-Date: 2011-04-06 00:20+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -124,8 +124,8 @@ msgctxt ""
"importwi.src\n"
"sMSDocumentCheckbox_3_\n"
"string.text"
-msgid "PowerPoint documents"
-msgstr "PowerPoint-документи"
+msgid "PowerPoint/Publisher documents"
+msgstr ""
#: importwi.src
msgctxt ""
@@ -460,8 +460,8 @@ msgctxt ""
"importwi.src\n"
"sSumMSDrawDocuments\n"
"string.text"
-msgid "All PowerPoint documents contained in the following directory will be imported:"
-msgstr "Ќе бидат внесени сите PowerPoint-документи што се во папката:"
+msgid "All PowerPoint/Publisher documents contained in the following directory will be imported:"
+msgstr ""
#: importwi.src
msgctxt ""