Git commit ed70d51368d6b8db7ab71a6ab88b52b76f0fe123 by Glen Ditchfield. Committed on 01/07/2021 at 14:55. Pushed by gditchfield into branch 'master'.
Use "item" terminology consistently in the UI M +2 -2 doc/index.docbook M +3 -3 src/actionmanager.cpp https://invent.kde.org/pim/korganizer/commit/ed70d51368d6b8db7ab71a6ab88b52b76f0fe123 diff --git a/doc/index.docbook b/doc/index.docbook index 3b13974cf..53b852e14 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -555,7 +555,7 @@ items, follow the procedure below:</para> <procedure> <step><para>Choose the <menuchoice><guimenu>File</guimenu><guimenuitem>Archive -Old Entries...</guimenuitem></menuchoice> menu item.</para></step> +Old Incidences...</guimenuitem></menuchoice> menu item.</para></step> <step><para>Fill in the date in <guilabel>Archive now items older than</guilabel> field or use the Calendar Widget to choose the date. Alternatively, you can automatically archive all items older than a certain period of time.</para></step> @@ -2893,7 +2893,7 @@ special events, &etc;</para> <varlistentry id="menu-file-archive-old"> <term><menuchoice> <guimenu>File</guimenu> -<guimenuitem>Archive Old Entries...</guimenuitem> +<guimenuitem>Archive Old Incidences...</guimenuitem> </menuchoice></term> <listitem><para><action>From time to time you should delete your old events.</action></para> diff --git a/src/actionmanager.cpp b/src/actionmanager.cpp index 928187e73..b41f47519 100644 --- a/src/actionmanager.cpp +++ b/src/actionmanager.cpp @@ -271,11 +271,11 @@ void ActionManager::initActions() /** Archive Action **/ // TODO: Icon action = new QAction(i18n("Archive O&ld Incidences..."), this); - action->setStatusTip(i18nc("@info:status", "Archive incidences to file")); - action->setToolTip(i18nc("@info:tooltip", "Archive old incidences to an iCalendar file")); + action->setStatusTip(i18nc("@info:status", "Archive events and to-dos to a file")); + action->setToolTip(i18nc("@info:tooltip", "Archive old events and to-dos to an iCalendar file")); action->setWhatsThis(i18nc("@info:whatsthis", "This menu entry opens a dialog that allows you to select old events and to-dos " - "that you can archive into an iCalendar file. The archived incidences will " + "that you can archive into an iCalendar file. They will " "be removed from your existing calendar collection.")); mACollection->addAction(QStringLiteral("file_archive"), action); connect(action, &QAction::triggered, this, &ActionManager::file_archive);
