@@ -439,7 +439,7 @@ void ProjectActionsController::downloadAndOpenCloudProject(int scoreId, const QS
439
439
return ;
440
440
}
441
441
442
- std::string dialogText = muse::trc (" project/save" , " Log in or create a free account on musescore .com to open this score." );
442
+ std::string dialogText = muse::trc (" project/save" , " Log in or create a free account on MuseScore .com to open this score." );
443
443
Ret ret = museScoreComService ()->authorization ()->ensureAuthorization (false , dialogText).ret ;
444
444
if (!ret) {
445
445
return ;
@@ -536,7 +536,7 @@ Ret ProjectActionsController::openScoreFromMuseScoreCom(const QUrl& url)
536
536
}
537
537
538
538
// Ensure logged in
539
- std::string dialogText = muse::trc (" project/save" , " Log in or create a free account on musescore .com to open this score." );
539
+ std::string dialogText = muse::trc (" project/save" , " Log in or create a free account on MuseScore .com to open this score." );
540
540
Ret ret = museScoreComService ()->authorization ()->ensureAuthorization (false , dialogText).ret ;
541
541
if (!ret) {
542
542
return ret;
@@ -994,7 +994,7 @@ bool ProjectActionsController::saveProjectToCloud(CloudProjectInfo info, SaveMod
994
994
if (!isCloudAvailable) {
995
995
warnCloudIsNotAvailable ();
996
996
} else {
997
- std::string dialogText = muse::trc (" project/save" , " Log in to musescore .com to save this score to the cloud." );
997
+ std::string dialogText = muse::trc (" project/save" , " Log in to MuseScore .com to save this score to the cloud." );
998
998
RetVal<Val> retVal = museScoreComService ()->authorization ()->ensureAuthorization (true , dialogText);
999
999
if (!retVal.ret ) {
1000
1000
return false ;
@@ -1376,7 +1376,7 @@ void ProjectActionsController::onProjectSuccessfullyUploaded(const QUrl& urlToOp
1376
1376
IInteractive::ButtonData okBtn = interactive ()->buttonData (IInteractive::Button ::Ok);
1377
1377
1378
1378
std::string msg = muse::trc (" project/save" , " All saved changes will now update to the cloud. "
1379
- " You can manage this file in the score manager on musescore .com." );
1379
+ " You can manage this file in the score manager on MuseScore .com." );
1380
1380
1381
1381
int btn = interactive ()->info (muse::trc (" global" , " Success!" ), msg, { viewOnlineBtn, okBtn },
1382
1382
static_cast <int >(IInteractive::Button ::Ok)).button ();
@@ -1502,7 +1502,7 @@ void ProjectActionsController::warnCorruptedScoreCannotBeSavedOnCloud(const std:
1502
1502
std::string title = muse::trc (" project" , " Your score cannot be uploaded to the cloud" );
1503
1503
std::string body = muse::trc (" project" , " This score has become corrupted and contains errors. "
1504
1504
" You can fix the errors manually, or save the score to your computer "
1505
- " and get help for this issue on musescore .org." );
1505
+ " and get help for this issue on MuseScore .org." );
1506
1506
1507
1507
IInteractive::ButtonDatas buttons;
1508
1508
buttons.push_back (interactive ()->buttonData (IInteractive::Button ::Cancel));
@@ -1535,10 +1535,10 @@ bool ProjectActionsController::askIfUserAgreesToSaveCorruptedScoreLocally(const
1535
1535
{
1536
1536
std::string title = muse::trc (" project" , " This score has become corrupted and contains errors" );
1537
1537
std::string body = !canRevert ? muse::trc (" project" , " You can continue saving it locally, although the file may become unusable. "
1538
- " You can try to fix the errors manually, or get help for this issue on musescore .org." )
1538
+ " You can try to fix the errors manually, or get help for this issue on MuseScore .org." )
1539
1539
: muse::trc (" project" , " You can continue saving it locally, although the file may become unusable. "
1540
1540
" To preserve your score, revert to the last saved version, or fix the errors manually. "
1541
- " You can also get help for this issue on musescore .org." );
1541
+ " You can also get help for this issue on MuseScore .org." );
1542
1542
1543
1543
IInteractive::ButtonDatas buttons;
1544
1544
buttons.push_back (interactive ()->buttonData (IInteractive::Button ::Cancel));
@@ -1582,7 +1582,7 @@ void ProjectActionsController::showErrCorruptedScoreCannotBeSaved(const SaveLoca
1582
1582
{
1583
1583
std::string title = location.isLocal () ? muse::trc (" project" , " Your score cannot be saved" )
1584
1584
: muse::trc (" project" , " Your score cannot be uploaded to the cloud" );
1585
- std::string body = muse::trc (" project" , " This score is corrupted. You can get help for this issue on musescore .org." );
1585
+ std::string body = muse::trc (" project" , " This score is corrupted. You can get help for this issue on MuseScore .org." );
1586
1586
1587
1587
IInteractive::ButtonData getHelpBtn (IInteractive::Button ::CustomButton, muse::trc (" project" , " Get help" ));
1588
1588
@@ -1742,7 +1742,7 @@ void ProjectActionsController::warnFileTooNew(const muse::io::path_t& filepath)
1742
1742
{
1743
1743
interactive ()->error (muse::qtrc (" project" , " Cannot read file %1" ).arg (io::toNativeSeparators (filepath).toQString ()).toStdString (),
1744
1744
muse::trc (" project" , " This file was saved using a newer version of MuseScore Studio. "
1745
- " Please visit <a href=\" https://musescore.org\" >musescore .org</a> to obtain the latest version." ));
1745
+ " Please visit <a href=\" https://musescore.org\" >MuseScore .org</a> to obtain the latest version." ));
1746
1746
}
1747
1747
1748
1748
bool ProjectActionsController::askIfUserAgreesToOpenCorruptedProject (const String& projectName, const std::string& errorText)
@@ -1763,7 +1763,7 @@ bool ProjectActionsController::askIfUserAgreesToOpenCorruptedProject(const Strin
1763
1763
void ProjectActionsController::warnProjectCriticallyCorrupted (const String& projectName, const std::string& errorText)
1764
1764
{
1765
1765
std::string title = muse::mtrc (" project" , " File “%1” is corrupted and cannot be opened" ).arg (projectName).toStdString ();
1766
- std::string body = muse::trc (" project" , " Get help for this issue on musescore .org." );
1766
+ std::string body = muse::trc (" project" , " Get help for this issue on MuseScore .org." );
1767
1767
1768
1768
IInteractive::ButtonData getHelpBtn (IInteractive::Button ::CustomButton, muse::trc (" project" , " Get help" ), true /* accent*/ );
1769
1769
0 commit comments