aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPAppController.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-06-01 22:32:03 +0000
committerstuconnolly <stuart02@gmail.com>2010-06-01 22:32:03 +0000
commitafa83e2e94ec0abe2cd6c2cbf4fe43d5616bbc6c (patch)
tree20c0c9b9fe650a207f14df5c06ce541802a3b5e1 /Source/SPAppController.m
parentd99ae49a194fc4bfce874c535096e4f68ef70d6e (diff)
downloadsequelpro-afa83e2e94ec0abe2cd6c2cbf4fe43d5616bbc6c.tar.gz
sequelpro-afa83e2e94ec0abe2cd6c2cbf4fe43d5616bbc6c.tar.bz2
sequelpro-afa83e2e94ec0abe2cd6c2cbf4fe43d5616bbc6c.zip
Add a 'Translation Feedback' menuitem to the 'Help' menu (currently hidden). Implements issue #713. When the feedback page is available simply change the constant SPTranslationFeedbackURL to point to it.
Diffstat (limited to 'Source/SPAppController.m')
-rw-r--r--Source/SPAppController.m8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m
index d3cbb8fb..37f79242 100644
--- a/Source/SPAppController.m
+++ b/Source/SPAppController.m
@@ -499,6 +499,14 @@
}
/**
+ * Opens the 'Translation Feedback' page in the default browser.
+ */
+- (IBAction)provideTranslationFeedback:(id)sender
+{
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPTranslationFeedbackURL]];
+}
+
+/**
* Opens the 'Keyboard Shortcuts' page in the default browser.
*/
- (IBAction)viewKeyboardShortcuts:(id)sender