aboutsummaryrefslogtreecommitdiff
path: root/source/bn/readlicense_oo
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-09-07 18:01:18 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-09-07 18:08:07 +0200
commit14a72851d401d86cf9fd72a5e139ab87eb0f47d1 (patch)
tree0c6c28e07f4ad7d17bef661296ede6f8430a5b0e /source/bn/readlicense_oo
parent6990b2c53807ca4ce972b4c894a5eecc683d67a7 (diff)
update translations for master
and force-fix errors using pocheck Change-Id: I95203f89a4148dd4f91a2a438c5c9811ac2dbe44
Diffstat (limited to 'source/bn/readlicense_oo')
-rw-r--r--source/bn/readlicense_oo/docs.po16
1 files changed, 7 insertions, 9 deletions
diff --git a/source/bn/readlicense_oo/docs.po b/source/bn/readlicense_oo/docs.po
index 0d3c8430b52..3cf280577a9 100644
--- a/source/bn/readlicense_oo/docs.po
+++ b/source/bn/readlicense_oo/docs.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: 2019-12-24 18:00+0100\n"
+"POT-Creation-Date: 2020-09-07 17:18+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -387,15 +387,14 @@ msgctxt ""
msgid "Right-click within the directory and choose \"Open in Terminal\". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):"
msgstr ""
-#. 5Uuky
+#. DSXFr
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"rpminstall5\n"
"readmeitem.text"
-msgid "For Fedora-based systems: su -c 'yum install *.rpm'"
-msgstr "ফেডোরা-ভিত্তিক সিস্টেমের জন্য: su -c 'yum install *freedesktop*.rpm'"
+msgid "For Fedora-based systems: sudo dnf install *.rpm"
+msgstr ""
#. BwvxR
#: readme.xrm
@@ -527,15 +526,14 @@ msgctxt ""
msgid "For Debian/Ubuntu-based systems: sudo dpkg -i *.deb"
msgstr "ডেবিয়ান/উবুন্টু ভিত্তিক সিস্টেমের জন্য: sudo dpkg -i *.deb"
-#. QMHS2
+#. qhEUW
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"linuxlangpack7\n"
"readmeitem.text"
-msgid "For Fedora-based systems: su -c 'yum install *.rpm'"
-msgstr "ফেডোরা-ভিত্তিক সিস্টেমের জন্য: su -c 'yum install *freedesktop*.rpm'"
+msgid "For Fedora-based systems: su -c 'dnf install *.rpm'"
+msgstr ""
#. nrFRB
#: readme.xrm
ption> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/odk/examples/java/Spreadsheet/Makefile
AgeCommit message (Collapse)Author
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>