aboutsummaryrefslogtreecommitdiff
path: root/source/st/uui
diff options
context:
space:
mode:
Diffstat (limited to 'source/st/uui')
-rw-r--r--source/st/uui/messages.po34
1 files changed, 32 insertions, 2 deletions
diff --git a/source/st/uui/messages.po b/source/st/uui/messages.po
index a33ed70997c..3ccb005827f 100644
--- a/source/st/uui/messages.po
+++ b/source/st/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-08-21 18:00+0200\n"
+"POT-Creation-Date: 2020-08-25 16:10+0200\n"
"PO-Revision-Date: 2018-03-28 16:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -821,6 +821,12 @@ msgctxt "filterselect|FilterSelectDialog"
msgid "Filter Selection"
msgstr "Kgetho ya Filthara"
+#. HoJXz
+#: uui/uiconfig/ui/filterselect.ui:137
+msgctxt "filterselect|extended_tip|filters"
+msgid "Select the import filter for the file that you want to open."
+msgstr ""
+
#. 8o9Bq
#: uui/uiconfig/ui/logindialog.ui:8
msgctxt "logindialog|LoginDialog"
@@ -963,8 +969,14 @@ msgctxt "masterpassworddlg|label1"
msgid "_Enter password:"
msgstr "Kenya Lebitso la sephiri"
+#. bRcP4
+#: uui/uiconfig/ui/masterpassworddlg.ui:109
+msgctxt "masterpassworddlg|extended_tip|password"
+msgid "Type a password. A password is case sensitive."
+msgstr ""
+
#. Twvfe
-#: uui/uiconfig/ui/masterpassworddlg.ui:133
+#: uui/uiconfig/ui/masterpassworddlg.ui:138
msgctxt "extended_tip|MasterPasswordDialog"
msgid "Enter the master password to continue."
msgstr ""
@@ -975,6 +987,18 @@ msgctxt "password|PasswordDialog"
msgid "Set Password"
msgstr ""
+#. XDzCT
+#: uui/uiconfig/ui/password.ui:117
+msgctxt "password|extended_tip|newpassEntry"
+msgid "Type a password. A password is case sensitive."
+msgstr ""
+
+#. QbKd2
+#: uui/uiconfig/ui/password.ui:135
+msgctxt "password|extended_tip|confirmpassEntry"
+msgid "Re-enter the password."
+msgstr ""
+
#. ioiyr
#: uui/uiconfig/ui/setmasterpassworddlg.ui:8
msgctxt "setmasterpassworddlg|SetMasterPasswordDialog"
@@ -1019,6 +1043,12 @@ msgctxt "setmasterpassworddlg|label4"
msgid "Caution: If you forget the master password, you will be unable to access any of the information protected by it. Passwords are case sensitive."
msgstr ""
+#. BHvee
+#: uui/uiconfig/ui/setmasterpassworddlg.ui:200
+msgctxt "setmasterpassworddlg|extended_tip|SetMasterPasswordDialog"
+msgid "Assign a master password to protect the access to a saved password."
+msgstr ""
+
#. dAeLu
#: uui/uiconfig/ui/simplenameclash.ui:8
msgctxt "simplenameclash|SimpleNameClashDialog"
ice-4-0-0 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Components/dialogcomponent
AgeCommit message (Collapse)Author
2022-06-13Drop obsolete preprocessor directives from UNOIDL filesStephan Bergmann
...which were used by ildc, which is gone since a8485d558fab53291e2530fd9a1be581c1628deb "[API CHANGE] Remove deprecated idlc and regmerge from the SDK", and have always been ignored as legacy by its unoidl-write replacement. This change has been carried out (making use of GNU sed extensions) with > for i in $(git ls-files \*.idl); do sed -i -z -E -e 's/\n\n((#[^\n]*\n)+\n)*(#[^\n]*\n)+\n?/\n\n/g' -e 's/\n(#[^\n]*\n)+/\n/g' "$i"; done && git checkout extensions/source/activex/so_activex.idl odk/examples/OLE/activex/so_activex.idl which apparently happened to do the work. (The final two files are not UNOIDL source files.) Change-Id: Ic9369e05d46e8f7e8a304ab01740b171b92335cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135683 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-02-25Provide unoidl-write also for the SDKStephan Bergmann
...after the new types.rdb format that unoidl-write generates has been used internally since LibreOffice 4.1 in 2013; following up on 6db34b6b33ba8e3b13683efd05df8441b87e9c92 "Directly build UNOIDL .rdb files from .idl files" and its "The legacy tools idlc, regcompare, regmerge, and regview are still contained in the URE or SDK for now." The tools idlc and regmerge are deprecated but still shipped in the SDK for now. The plan is to drop them completely for LO 7.5. odk/examples/ and ure/source/uretest/ are adapted to use unoidl-write instead of idlc and regmerge: * unoidl-write does not use a C preprocessor and the # directives in .idl files, it supports reading a single .idl file (containing an arbitrary number of declarations) or a directory tree where each directory corresponds to a UNOIDL module of the same name and each .idl file contains the declaration of the (non-module) UNOIDL entity of the same name. For some of the odk/examples/, that required moving individual .idl files into sub-directories named after the respective modules. In odk/settings/std.mk, definitinos of IDL and REGMERGE have been replaced with a new UNOIDLWRITE. * unoidl-write always enforces reserved UNOIDL identifier restrictions (see 04af4e4f55f3ef319a78edd4d0109e2e7eba90b6 "[API CHANGE] Fix all bad UNOIDL identifiers across offapi" and 620179240670bd00f60555f1f5c5b0268492f97c "Enforce the UNOIDL identifier scheme") (which idlc only enforced optionally with -cid -we). That required renaming "my_module" in odk/examples/DevelopersGuide/Components/CppComponent/. * The new types.rdb format is not compatibly with LibreOffice < 4.1. Clients generating extensions containing such files are advised to use appropriate LibreOffice-minimal-version elements. Change-Id: I1a248fd96e86ecbf407f829bc100d44bfe7f4e7d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130533 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-07-20Fix typosAndrea Gelmini
Change-Id: Ib361243332b7219c0073c787c378c648e44705f2 Reviewed-on: https://gerrit.libreoffice.org/75487 Tested-by: Jenkins Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
2017-06-05typosJulien Nabet
Change-Id: I3a28b5ce7464de724799997234925533d45f6121 Reviewed-on: https://gerrit.libreoffice.org/38420 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
2016-05-17odk: add missing modelinesMiklos Vajna
Change-Id: I0bd2d761b5a75681c8c3e53664084dd3b8176107 Reviewed-on: https://gerrit.libreoffice.org/25051 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>