Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: HaikuArchives/Calendar
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ebdbf28b8fb9
Choose a base ref
...
head repository: HaikuArchives/Calendar
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 428ec4e79522
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 14, 2021

  1. Remove synchronize option from App menu and rename to File (#86)

    * Remove synchronize option from App menu
    Rename App menu to the more common File menu
    Add translation for Calendar to the de.catkeys
    
    * Switch menu File back to App for now
    
    * Switch Kalender back to Calendar in de.catkeys
    scottmc authored Oct 14, 2021
    Copy the full SHA
    428ec4e View commit details
Showing with 8 additions and 3 deletions.
  1. +8 −3 src/MainWindow.cpp
11 changes: 8 additions & 3 deletions src/MainWindow.cpp
Original file line number Diff line number Diff line change
@@ -261,9 +261,14 @@ MainWindow::_InitInterface()
item->SetTarget(be_app);
fAppMenu->AddItem(item);
fAppMenu->AddItem(new BMenuItem(B_TRANSLATE("Preferences"), new BMessage(kMenuAppPref)));
fSyncMenu = new BMenu(B_TRANSLATE("Synchronize"));
fSyncMenu->AddItem(new BMenuItem(B_TRANSLATE("Google Calendar"), new BMessage(kMenuSyncGCAL)));
fAppMenu->AddItem(fSyncMenu);
//
// Google Calendar support is broken. It should be replaced with a generic solution to
// be able to sync with various calendars. Leaving this here for now to give future
// developer a place to start.
//
//fSyncMenu = new BMenu(B_TRANSLATE("Synchronize"));
//fSyncMenu->AddItem(new BMenuItem(B_TRANSLATE("Google Calendar"), new BMessage(kMenuSyncGCAL)));
//fAppMenu->AddItem(fSyncMenu);
fAppMenu->AddSeparatorItem();
fAppMenu->AddItem(new BMenuItem(B_TRANSLATE("Quit"), new BMessage(kMenuAppQuit), 'Q', B_COMMAND_KEY));