aboutsummaryrefslogtreecommitdiff
path: root/source/zh-CN/uui/messages.po
diff options
context:
space:
mode:
Diffstat (limited to 'source/zh-CN/uui/messages.po')
-rw-r--r--source/zh-CN/uui/messages.po6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/zh-CN/uui/messages.po b/source/zh-CN/uui/messages.po
index 7e5f93d9081..d572e779397 100644
--- a/source/zh-CN/uui/messages.po
+++ b/source/zh-CN/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-25 16:10+0200\n"
+"POT-Creation-Date: 2020-10-12 15:03+0200\n"
"PO-Revision-Date: 2019-06-23 21:31+0000\n"
"Last-Translator: Dian LI <xslidian@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1051,13 +1051,13 @@ msgid "Set Password"
msgstr "设置密码"
#. XDzCT
-#: uui/uiconfig/ui/password.ui:117
+#: uui/uiconfig/ui/password.ui:118
msgctxt "password|extended_tip|newpassEntry"
msgid "Type a password. A password is case sensitive."
msgstr "请输入密码。密码区分大小写。"
#. QbKd2
-#: uui/uiconfig/ui/password.ui:135
+#: uui/uiconfig/ui/password.ui:136
msgctxt "password|extended_tip|confirmpassEntry"
msgid "Re-enter the password."
msgstr "重新输入密码。"
LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/svl/globalnameitem.hxx
AgeCommit message (Collapse)Author
2019-12-12use covariant return type for SfxPoolItem::CloneCaolán McNamara
and can then remove some casting Change-Id: Id821c32ca2cbcdb7f57ef7a5fa1960042e630ffc Reviewed-on: https://gerrit.libreoffice.org/85022 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-10-30loplugin:finalclasses sot..svlNoel Grandin
Change-Id: I0814e98c82822752dd4410d595d35acb67d5a1d1 Reviewed-on: https://gerrit.libreoffice.org/81703 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2018-10-02Silence new Clang trunk -Wdefaulted-function-deletedStephan Bergmann
This mostly affects explicitly defaulted functions that had recently been user- declared to silence new GCC trunk -Wdeprecated-copy. It is not entirely clear to me what the best approach is overall, see my mail <http://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20181001/245321.html> "Re: r343285 - [cxx2a] P0641R2: (Some) type mismatches on defaulted functions only", but lets just explicitly delete those functions for now. Change-Id: If8c72f612f67a8feb8b03c2fb988c807e704ef03 Reviewed-on: https://gerrit.libreoffice.org/61259 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-07-27svl: avoid -Werror=deprecated-copy (GCC trunk towards GCC 9)Stephan Bergmann
...by explicitly defaulting the copy/move functions (and, where needed in turn, also a default ctor) for classes that have a user-declared dtor that does nothing other than an implicitly-defined one would do, but needs to be user- declared because it is virtual and potentially serves as a key function to emit the vtable, or is non-public, etc. Change-Id: I8c900426c49701afc94094115ec0c2d5b1af90d9 Reviewed-on: https://gerrit.libreoffice.org/58102 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>