/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_SVL_SVDDE_HXX #define INCLUDED_SVL_SVDDE_HXX #include #include #include #include #include #include #include #include #include class DdeString; class DdeConnection; class DdeTopic; class DdeService; struct DdeDataImp; struct DdeImp; struct DdeItemImpData; struct Conversation; typedef ::std::vector< DdeService* > DdeServices; class SVL_DLLPUBLIC DdeData { friend class DdeInternal; friend class DdeService; friend class DdeConnection; friend class DdeTransaction; std::unique_ptr xImp; SVL_DLLPRIVATE void Lock(); void SetFormat( SotClipboardFormatId nFmt ); public: DdeData(); DdeData(SAL_UNUSED_PARAMETER const void*, SAL_UNUSED_PARAMETER tools::Long, SAL_UNUSED_PARAMETER SotClipboardFormatId = SotClipboardFormatId::STRING); DdeData(SAL_UNUSED_PARAMETER const OUString&); DdeData(const DdeData&); DdeData(DdeData&&) noexcept; ~DdeData(); void const * getData() const; tools::Long getSize() const; SotClipboardFormatId GetFormat() const; DdeData& operator=(const DdeData&); DdeData& operator=(DdeData&&) noexcept; static sal_uInt32 GetExternalFormat(SotClipboardFormatId nFmt); static SotClipboardFormatId GetInternalFormat(sal_uLong nFmt); }; class SVL_DLLPUBLIC DdeTransaction { public: void Data( const DdeData* ); void Done( bool bDataValid ); protected: DdeConnection& rDde; DdeData aDdeData; DdeString* pName; short nType; sal_IntPtr nId; sal_IntPtr nTime; Link aData; Link aDone; bool bBusy; DdeTransaction( DdeConnection&, SAL_UNUSED_PARAMETER const OUString&, SAL_UNUSED_PARAMETER tools::Long = 0 ); public: virtual ~DdeTransaction(); bool IsBusy() const { return bBusy; } OUString GetName() const; void Execute(); void SetDataHdl( const Link& rLink ) { aData = rLink; } const Link& GetDataHdl() const { return aData; } void SetDoneHdl( const Link& rLink ) { aDone = rLink; } const Link& GetDoneHdl() const { return aDone; } void SetFormat( SotClipboardFormatId nFmt ) { aDdeData.SetFormat( nFmt ); } SotClipboardFormatId GetFormat() const { return aDdeData.GetFormat(); } tools::Long GetError() const; private: friend class DdeInternal; friend class DdeConnection; DdeTransaction( const DdeTransaction& ) = delete; const DdeTransaction& operator= ( const DdeTransaction& ) = delete; }; class SVL_DLLPUBLIC DdeLink : public DdeTransaction { Link aNotify; public: DdeLink( DdeConnection&, const OUString&, tools::Long = 0 ); virtual ~DdeLink() override; void SetNotifyHdl( const Link& rLink ) { aNotify = rLink; } const Link& GetNotifyHdl() const { return aNotify; } void Notify(); }; class SVL_DLLPUBLIC DdeHotLink : public DdeLink { public: DdeHotLink( DdeConnection&, const OUString& ); }; class SVL_DLLPUBLIC DdeRequest : public DdeTransaction { public: DdeRequest( DdeConnection&, const OUString&, tools::Long = 0 ); }; class SVL_DLLPUBLIC DdePoke : public DdeTransaction { public: DdePoke( DdeConnection&, const OUString&, SAL_UNUSED_PARAMETER const DdeData&, tools::Long = 0 ); }; class SVL_DLLPUBLIC DdeExecute : public DdeTransaction { public: DdeExecute( DdeConnection&, const OUString&, tools::Long = 0 ); }; class SVL_DLLPUBLIC DdeConnection { friend class DdeInternal; friend class DdeTransaction; std::vector aTransactions; DdeString* pService; DdeString* pTopic; std::unique_ptr pImp; public: DdeConnection( SAL_UNUSED_PARAMETER const OUString&, SAL_UNUSED_PARAMETER const OUString& ); ~DdeConnection(); tools::Long GetError() const; static const std::vector& GetConnections(); bool IsConnected(); OUString GetServiceName() const; OUString GetTopicName() const; private: DdeConnection( const DdeConnection& ) = delete; const DdeConnection& operator= ( const DdeConnection& ) = delete; }; class SVL_DLLPUBLIC DdeItem { friend class DdeInternal; friend class DdeTopic; DdeString* pName; DdeTopic* pMyTopic; std::vector* pImpData; protected: sal_uInt8 nType; public: DdeItem( const sal_Unicode* ); DdeItem( SAL_UNUSED_PARAMETER const OUString& ); DdeItem( const DdeItem& ); virtual ~DdeItem(); OUString GetName() const; short GetLinks(); void NotifyClient(); }; class SVL_DLLPUBLIC DdeGetPutItem : public DdeItem { public: DdeGetPutItem( const sal_Unicode* p ); DdeGetPutItem( const OUString& rStr ); DdeGetPutItem( const DdeItem& rItem ); virtual DdeData* Get( SotClipboardFormatId ); virtual bool Put( const DdeData* ); virtual void AdviseLoop( bool ); // Start / Stop AdviseLoop }; class SVL_DLLPUBLIC DdeTopic { public: virtual DdeData* Get(SotClipboardFormatId); virtual bool Put( const DdeData* ); virtual bool Execute( const OUString* ); // Eventually create a new item. return 0 -> Item creation failed virtual bool MakeItem( const OUString& rItem ); // A Warm-/Hot-Link is created. Return true if successful virtual bool StartAdviseLoop(); private: friend class DdeInternal; friend class DdeService; friend class DdeItem; private: DdeString* pName; OUString aItem; std::vector aItems; public: DdeTopic( SAL_UNUSED_PARAMETER const OUString& ); virtual ~DdeTopic(); OUString GetName() const; void NotifyClient( const OUString& ); bool IsSystemTopic(); void InsertItem( DdeItem* ); // For own superclasses DdeItem* AddItem( const DdeItem& ); // Will be cloned void RemoveItem( const DdeItem& ); const OUString& GetCurItem() const { return aItem; } const std::vector& GetItems() const { return aItems; } private: DdeTopic( const DdeTopic& ) = delete; const DdeTopic& operator= ( const DdeTopic& ) = delete; }; class SVL_DLLPUBLIC DdeService { friend class DdeInternal; protected: OUString Topics(); OUString Formats(); OUString SysItems(); OUString Status(); const DdeTopic* GetSysTopic() const { return pSysTopic; } private: std::vector aTopics; std::vector< sal_uInt32 > aFormats; DdeTopic* pSysTopic; DdeString* pName; std::vector> m_vConv; short nStatus; SVL_DLLPRIVATE bool HasCbFormat( sal_uInt32 ); public: DdeService( SAL_UNUSED_PARAMETER const OUString& ); virtual ~DdeService(); DdeService( const DdeService& ) = delete; DdeService& operator= ( const DdeService& ) = delete; OUString GetName() const; short GetError() const { return nStatus; } static DdeServices& GetServices(); std::vector& GetTopics() { return aTopics; } void AddTopic( const DdeTopic& ); void RemoveTopic( const DdeTopic& ); void AddFormat(SotClipboardFormatId); void RemoveFormat(SotClipboardFormatId); bool HasFormat(SotClipboardFormatId); }; inline tools::Long DdeTransaction::GetError() const { return rDde.GetError(); } #endif // INCLUDED_SVL_SVDDE_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ption> LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2024-02-22 23:12:43 +0100
committerAndras Timar <andras.timar@collabora.com>2024-02-22 23:28:24 +0100
commitced8f5a17e47cf094e7b82b6a84e46766e10621c (patch)
tree7114e23240517643311a3f97cae266a328627228
parenta90a713acbaa675695628c7553fbfc65d3847c30 (diff)
[cp] Remove reference to menu in dialog text cp-24.04.1-1
Change-Id: Ifabd27fba28f8189f4be3f3c3604982eba4602bc
-rw-r--r--source/ar/sc/messages.po10
-rw-r--r--source/bg/sc/messages.po10
-rw-r--r--source/ca/sc/messages.po10
-rw-r--r--source/cs/sc/messages.po10
-rw-r--r--source/da/sc/messages.po10
-rw-r--r--source/de/sc/messages.po10
-rw-r--r--source/el/sc/messages.po10
-rw-r--r--source/en-GB/sc/messages.po10
-rw-r--r--source/eo/sc/messages.po10
-rw-r--r--source/es/sc/messages.po10
-rw-r--r--source/eu/sc/messages.po10
-rw-r--r--source/fi/sc/messages.po10
-rw-r--r--source/fr/sc/messages.po10
-rw-r--r--source/gl/sc/messages.po10
-rw-r--r--source/hr/sc/messages.po10
-rw-r--r--source/hu/sc/messages.po10
-rw-r--r--source/id/sc/messages.po10
-rw-r--r--source/is/sc/messages.po10
-rw-r--r--source/it/sc/messages.po10
-rw-r--r--source/ja/sc/messages.po10
-rw-r--r--source/ko/sc/messages.po10
-rw-r--r--source/nb/sc/messages.po10
-rw-r--r--source/nl/sc/messages.po10
-rw-r--r--source/oc/sc/messages.po10
-rw-r--r--source/pl/sc/messages.po10
-rw-r--r--source/pt-BR/sc/messages.po10
-rw-r--r--source/pt/sc/messages.po10
-rw-r--r--source/ru/sc/messages.po10
-rw-r--r--source/sk/sc/messages.po10
-rw-r--r--source/sl/sc/messages.po10
-rw-r--r--source/sv/sc/messages.po10
-rw-r--r--source/tr/sc/messages.po10
-rw-r--r--source/uk/sc/messages.po10
-rw-r--r--source/zh-CN/sc/messages.po10
-rw-r--r--source/zh-TW/sc/messages.po10
35 files changed, 70 insertions, 280 deletions
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index a10378a5540..2eca88f9b15 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -19821,14 +19821,8 @@ msgstr ""
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"لن تعمل حماية الخلية إلا بعد حماية الورقة الحالية.\n"
-"\n"
-"اختر ’احمِ الورقة‘ من قائمة ’أدوات‘."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "لن تعمل حماية الخلية إلا بعد حماة الورقة الحالية."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index f154d15321d..028376de5ef 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/sc/messages.po
@@ -19545,14 +19545,8 @@ msgstr "Скрива формулите и съдържанието на изб
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Защитаването на клетки има ефект само ако текущият лист е защитен.\n"
-"\n"
-"Изберете „Защитаване на лист“ от менюто „Инструменти“."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Защитаването на клетки има ефект само ако текущият лист е защитен."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/ca/sc/messages.po b/source/ca/sc/messages.po
index ef756770d89..bba7e9bfb59 100644
--- a/source/ca/sc/messages.po
+++ b/source/ca/sc/messages.po
@@ -19544,14 +19544,8 @@ msgstr "Amaga les fórmules i els continguts de les cel·les seleccionades."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"La protecció de cel·les només és efectiva després d'haver protegit el full actual.\n"
-"\n"
-"Seleccioneu «Protegeix el full» al menú «Eines»."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "La protecció de cel·les només és efectiva després d'haver protegit el full actual."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/cs/sc/messages.po b/source/cs/sc/messages.po
index 7d14c9d4a55..0f5e4aa44b4 100644
--- a/source/cs/sc/messages.po
+++ b/source/cs/sc/messages.po
@@ -19550,14 +19550,8 @@ msgstr "Skryje vzorce a obsah vybraných buněk."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Uzamčení buňky se uplatní, pouze je-li aktivní uzamčení příslušného listu.\n"
-"\n"
-"Vyberte položku 'Uzamknout list' z nabídky 'Nástroje'."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Uzamčení buňky se uplatní, pouze je-li aktivní uzamčení příslušného listu."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/da/sc/messages.po b/source/da/sc/messages.po
index 2f1987424eb..55e70471f6a 100644
--- a/source/da/sc/messages.po
+++ b/source/da/sc/messages.po
@@ -19542,14 +19542,8 @@ msgstr "Skjuler formler og indhold af de valgte celler."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Cellebeskyttelse har først virkning, når det aktuelle ark er blevet beskyttet.\n"
-"\n"
-"Vælg 'Beskyt ark' fra menuen 'Funktioner'."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Cellebeskyttelse har først virkning, når det aktuelle ark er blevet beskyttet."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index 945a1917293..f45ac21b21c 100644
--- a/source/de/sc/messages.po
+++ b/source/de/sc/messages.po
@@ -19545,14 +19545,8 @@ msgstr "Blendet Formeln und Inhalte der ausgewählten Zellen aus."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Der Zellschutz wird nur dann wirksam, wenn die aktuelle Tabelle geschützt ist.\n"
-"\n"
-"Wählen Sie im Menü »Extras ▸ Tabelle schützen…«."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Der Zellschutz wird nur dann wirksam, wenn die aktuelle Tabelle geschützt ist."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/el/sc/messages.po b/source/el/sc/messages.po
index 786bc6394da..1c16aa8e41e 100644
--- a/source/el/sc/messages.po
+++ b/source/el/sc/messages.po
@@ -19545,14 +19545,8 @@ msgstr "Αποκρύπτει τους τύπους και τα περιεχόμ
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Η προστασία του κελιού είναι αποτελεσματική μόνο αφού το τρέχον φύλλο έχει προστατευθεί.\n"
-"\n"
-"Επιλέξτε 'Προστασία φύλλου' από το μενού 'Εργαλεία'."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Η προστασία του κελιού είναι αποτελεσματική μόνο αφού το τρέχον φύλλο έχει προστατευθεί."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/en-GB/sc/messages.po b/source/en-GB/sc/messages.po
index de2f6fdf251..69a87a3c89e 100644
--- a/source/en-GB/sc/messages.po
+++ b/source/en-GB/sc/messages.po
@@ -19545,14 +19545,8 @@ msgstr "Hides formulae and contents of the selected cells."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Cell protection is only effective after the current sheet has been protected."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/eo/sc/messages.po b/source/eo/sc/messages.po
index 5fa441036ce..1d631204a57 100644
--- a/source/eo/sc/messages.po
+++ b/source/eo/sc/messages.po
@@ -19545,14 +19545,8 @@ msgstr "Kaŝas formulon kaj enhavon de la elektitaj ĉeloj."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Ĉelprotekto nur efikas post kiam la aktuala folio estas protektita.\n"
-"\n"
-"Elektu 'Protekti dokumenton' el la menuo 'Iloj'."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Ĉelprotekto nur efikas post kiam la aktuala folio estas protektita."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/es/sc/messages.po b/source/es/sc/messages.po
index a765970ba84..335aeeb0b24 100644
--- a/source/es/sc/messages.po
+++ b/source/es/sc/messages.po
@@ -19544,14 +19544,8 @@ msgstr "Oculta las fórmulas y el contenido de las celdas seleccionadas."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"La protección de celdas solo es efectiva después de haber protegido la hoja actual.\n"
-"\n"
-"Seleccione «Proteger hoja» en el menú «Herramientas»."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "La protección de celdas solo es efectiva después de haber protegido la hoja actual."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/eu/sc/messages.po b/source/eu/sc/messages.po
index 28b2b79fb95..be51a1f9c73 100644
--- a/source/eu/sc/messages.po
+++ b/source/eu/sc/messages.po
@@ -19545,14 +19545,8 @@ msgstr "Hautatutako gelaxketako formulak eta edukia ezkutatzen du."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Gelaxken babesa uneko orria babestu eta gero izango da efektiboa.\n"
-"\n"
-"Hautatu 'Babestu orria' 'Tresnak' menuan"
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Gelaxken babesa uneko orria babestu eta gero izango da efektiboa."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/fi/sc/messages.po b/source/fi/sc/messages.po
index f1d27880f69..46254499644 100644
--- a/source/fi/sc/messages.po
+++ b/source/fi/sc/messages.po
@@ -19554,14 +19554,8 @@ msgstr "Piilottaa valittujen solujen kaavat ja sisällön."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Solujen suojaus on voimassa vasta, kun käsiteltävänä oleva taulukko on suojattu.\n"
-"\n"
-"Valitse Työkalut-valikosta 'Suojaa taulukko'."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Solujen suojaus on voimassa vasta, kun käsiteltävänä oleva taulukko on suojattu."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/fr/sc/messages.po b/source/fr/sc/messages.po
index fd605e90e6d..5b036711ebe 100644
--- a/source/fr/sc/messages.po
+++ b/source/fr/sc/messages.po
@@ -19545,14 +19545,8 @@ msgstr "Masque les formules et le contenu des cellules sélectionnées."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"La protection de cellule est effective uniquement après que la feuille active a été protégée.\n"
-"\n"
-"Sélectionnez « Protéger la feuille » à partir du menu « Outils »."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "La protection de cellule est effective uniquement après que la feuille active a été protégée."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/gl/sc/messages.po b/source/gl/sc/messages.po
index ddbcd23d05e..55330c39eed 100644
--- a/source/gl/sc/messages.po
+++ b/source/gl/sc/messages.po
@@ -19548,14 +19548,8 @@ msgstr "Agocha as fórmulas e o contido das celas seleccionadas."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"A protección das celas só terá efecto se a folla actual estiver protexida.\n"
-"\n"
-"Seleccione «Protexer folla» no menú «Ferramentas»."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "A protección das celas só terá efecto se a folla actual estiver protexida."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/hr/sc/messages.po b/source/hr/sc/messages.po
index a3a2c5eb1ed..741a109ffe6 100644
--- a/source/hr/sc/messages.po
+++ b/source/hr/sc/messages.po
@@ -19541,14 +19541,8 @@ msgstr ""
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Zaštita ćelije je djelotvorna samo nakon što je trenutačni list zaštićen.\n"
-"\n"
-"Odaberite „Zaštiti list” iz izbornika „Alati”."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Zaštita ćelije je djelotvorna samo nakon što je trenutačni list zaštićen."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/hu/sc/messages.po b/source/hu/sc/messages.po
index 2c7fef98550..02b782f2ea5 100644
--- a/source/hu/sc/messages.po
+++ b/source/hu/sc/messages.po
@@ -19544,14 +19544,8 @@ msgstr "Elrejti a kijelölt cellák tartalmát és képleteit."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"A cellavédelem csak akkor hatásos, ha az aktuális munkalap is védett\n"
-"\n"
-"Ezt az „Eszközök” menü „Munkalap védelme” elemét választva érheti el."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "A cellavédelem csak akkor hatásos, ha az aktuális munkalap is védett."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/id/sc/messages.po b/source/id/sc/messages.po
index 5c4d23712d4..aaf5f5099fa 100644
--- a/source/id/sc/messages.po
+++ b/source/id/sc/messages.po
@@ -19545,14 +19545,8 @@ msgstr "Menyembunyikan rumus dan isi dari sel terpilih."
#. fBWyS
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:99
msgctxt "cellprotectionpage|label1"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Perlindungan sel hanya efektif setelah lembar saat ini telah dilindungi.\n"
-"\n"
-"Pilih 'Lindungi Lembar' dari menu 'Perkakas'."
+msgid "Cell protection is only effective after the current sheet has been protected."
+msgstr "Perlindungan sel hanya efektif setelah lembar saat ini telah dilindungi."
#. bVREg
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:121
diff --git a/source/is/sc/messages.po b/source/is/sc/messages.po
index 529648451c9..91ffbe2efdb 100644
--- a/source/is/sc/messages.po
+++ b/source/is/sc/messages.po