Audacity 3.2.0
NotCloudProjectDialog.cpp
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*!********************************************************************
3
4 Audacity: A Digital Audio Editor
5
6 ProjectVersionConflictDialog.cpp
7
8 Dmitry Vedenko
9
10**********************************************************************/
11
13
15{
18{
19 AddTitle(XO("This project is no longer saved to the Cloud"));
21 "This project was removed from audio.com and therefore cannot be saved at this time. "));
23 XO("You can either save it to the Cloud as a new project, or save it to your computer."));
24
25 AddButton(SaveLocallyIdentifier(), XO("Save to computer"), EscButton);
27 SaveRemotelyIdentifier(), XO("Save to Cloud"), DefaultButton);
28}
29
31{
32 return { L"locally" };
33}
34
36{
37 return { L"remotely" };
38}
39
40} // namespace audacity::cloud::audiocom::sync
XO("Cut/Copy/Paste")
const auto project
The top-level handle to an Audacity project. It serves as a source of events that other objects can b...
Definition: Project.h:90
void AddTitle(const TranslatableString &title)
void AddButton(DialogButtonIdentifier identifier, const TranslatableString &text, int type=None)
void AddParagraph(const TranslatableString &paragraph)