aboutsummaryrefslogtreecommitdiff
path: root/source/id/fpicker/messages.po
diff options
context:
space:
mode:
Diffstat (limited to 'source/id/fpicker/messages.po')
-rw-r--r--source/id/fpicker/messages.po10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/id/fpicker/messages.po b/source/id/fpicker/messages.po
index 5c346840f2d..8af5eaee3e2 100644
--- a/source/id/fpicker/messages.po
+++ b/source/id/fpicker/messages.po
@@ -4,8 +4,8 @@ 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: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-04-07 14:15+0000\n"
-"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
+"PO-Revision-Date: 2021-04-18 15:37+0000\n"
+"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/id/>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -345,13 +345,13 @@ msgstr "_Kelola layanan"
#: fpicker/uiconfig/ui/remotefilesdialog.ui:264
msgctxt "remotefilesdialog|list_view|tooltip_text"
msgid "List view"
-msgstr "Tilikan daftar"
+msgstr "Tampilan daftar"
#. xxBtB
#: fpicker/uiconfig/ui/remotefilesdialog.ui:279
msgctxt "remotefilesdialog|icon_view|tooltip_text"
msgid "Icon view"
-msgstr "Tilikan ikon"
+msgstr "Tampilan ikon"
#. 6CiqC
#: fpicker/uiconfig/ui/remotefilesdialog.ui:295
@@ -393,7 +393,7 @@ msgstr "Nama berkas"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
-msgstr "Otom~atis disertai ekstensi"
+msgstr "Ekstensi nama berkas otom~atis"
#. 2DxYf
#: include/fpicker/strings.hrc:15
/option> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/cow_wrapper.cxx
AgeCommit message (Collapse)Author
2024-01-16improve loplugin:cow_wrapperNoel Grandin
some stuff was hiding inside templates Change-Id: I89fd1a926dd6bf96e35a74e5028165acae51c60c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162159 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-02-17Bump compiler plugins Clang baseline to 12.0.1Stephan Bergmann
...as discussed in the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2020-November/086234.html> "Bump --enable-compiler-plugins Clang baseline?" (and now picked up again at <https://lists.freedesktop.org/archives/libreoffice/2022-February/088459.html> "Re: Bump --enable-compiler-plugins Clang baseline?"), and clean up compilerplugins/clang/ accordingly Change-Id: I5e81c6fdcc363aeefd6227606225b526fdf7ac16 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129989 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-02-02Fix typoAndrea Gelmini
Change-Id: I2532e97d2f7b4808832ef1ead5a928885ff7c3c6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129317 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2021-12-07improve loplugin:cow_wrapperNoel Grandin
to find my previous attempt at this, which only obscured the problem <noelgrandin> I'm such an idiot <noelgrandin> I changed a whole bunch of code to avoid calling const methods on a non-const object <noelgrandin> from p->foo() to std::as_const(*p).foo() <noelgrandin> can you spot the mistake? <bubli> Is this a job interview question? :D <vmiklos> noelgrandin: you did the opposite, now you always call const member functions, while you wanted to always call non-const member functions? <noelgrandin> more like a "why didn't the smart people on this channel tell me I was an idiot" :-) <noelgrandin> in this case, we have o3tl::cow_wrapper, which overrides operator* and operator-> <vmiklos> ah, and by the time you would add/remove the const, cow_wrapper already did the expensive task of copying based on const/non-const <noelgrandin> exactly <thorsten> heh Change-Id: I5366e6a87c414b862668b61e6adfbccfdd9d3b04 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126473 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-09-13loplugin:cow_wrapperNoel Grandin
check the classes that use o3tl::cow_wrapper so that they don't unnecessarity trigger copies Change-Id: I545e627598217f3e61ba2c384adb8d4f8b404829 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122030 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>