aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPAppController.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2010-07-18 00:12:58 +0000
committerrowanbeentje <rowan@beent.je>2010-07-18 00:12:58 +0000
commitad7cf0d9a34f5392193b55aab9121153391578d4 (patch)
tree0c669d0ae9aefa2b0097b9779eda9aacce905e1c /Source/SPAppController.m
parent8a5c8b954e00302cf5de32edcaf12c0b7b3eed82 (diff)
downloadsequelpro-ad7cf0d9a34f5392193b55aab9121153391578d4.tar.gz
sequelpro-ad7cf0d9a34f5392193b55aab9121153391578d4.tar.bz2
sequelpro-ad7cf0d9a34f5392193b55aab9121153391578d4.zip
- Expose a number of help menu items and help buttons to use localisable strings
- Tweak MySQL help search to include a localisable language code for results in requested languages This addresses Issue #743
Diffstat (limited to 'Source/SPAppController.m')
-rw-r--r--Source/SPAppController.m12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m
index 840f78f8..4bd8edeb 100644
--- a/Source/SPAppController.m
+++ b/Source/SPAppController.m
@@ -649,7 +649,7 @@
*/
- (IBAction)visitWebsite:(id)sender
{
- [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPHomePageURL]];
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPLOCALIZEDURL_HOMEPAGE]];
}
/**
@@ -657,7 +657,7 @@
*/
- (IBAction)visitHelpWebsite:(id)sender
{
- [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPDocumentationURL]];
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPLOCALIZEDURL_DOCUMENTATION]];
}
/**
@@ -665,7 +665,7 @@
*/
- (IBAction)visitFAQWebsite:(id)sender
{
- [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPFAQURL]];
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPLOCALIZEDURL_FAQ]];
}
/**
@@ -673,7 +673,7 @@
*/
- (IBAction)provideFeedback:(id)sender
{
- [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPContactURL]];
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPLOCALIZEDURL_CONTACT]];
}
/**
@@ -681,7 +681,7 @@
*/
- (IBAction)provideTranslationFeedback:(id)sender
{
- [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPTranslationFeedbackURL]];
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPLOCALIZEDURL_TRANSLATIONFEEDBACK]];
}
/**
@@ -689,7 +689,7 @@
*/
- (IBAction)viewKeyboardShortcuts:(id)sender
{
- [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPKeyboardShortcutsURL]];
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPLOCALIZEDURL_KEYBOARDSHORTCUTS]];
}
#pragma mark -