return wxString(); // TODO: this is wrong, it should return something
}
+wxString
+wxStandardPaths::GetLocalizedResourcesDir(const wxChar *lang,
+ ResourceCat category) const
+{
+ return wxStandardPathsBase::GetLocalizedResourcesDir(lang, category);
+}
+
#else // !__VMS
// ============================================================================
return AppendAppName(GetInstallPrefix() + _T("/lib"));
}
+wxString
+wxStandardPaths::GetLocalizedResourcesDir(const wxChar *lang,
+ ResourceCat category) const
+{
+ if ( category != ResourceCat_Messages )
+ return wxStandardPathsBase::GetLocalizedResourcesDir(lang, category);
+
+ return GetInstallPrefix() + _T("/share/locale/") + lang + _T("/LC_MESSAGES");
+}
+
#endif // __VMS/!__VMS
#endif // wxUSE_STDPATHS