Index: /trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
===================================================================
--- /trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h	(revision 92532)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h	(revision 92533)
@@ -51,21 +51,24 @@
 ////////////////////////////////////////////////////////////////////////////////
 
+/**
+ * This defines a a_CtxName::tr function that gives the translator context as
+ * well as providing a shorter way to call VirtualBoxTranslator::translate.
+ */
 #ifdef VBOX_WITH_VBOXMANAGE_NLS
-# define DECLARE_TRANSLATION_CONTEXT(ctx) \
-struct ctx \
-{\
-   static const char *tr(const char *pszSource, const char *pszComment = NULL, const size_t aNum = ~(size_t)0) \
+# define DECLARE_TRANSLATION_CONTEXT(a_CtxName) \
+struct a_CtxName \
+{ \
+   static const char *tr(const char *pszSource, const char *pszComment = NULL, const size_t uNum = ~(size_t)0) \
    { \
-       return VirtualBoxTranslator::translate(NULL, #ctx, pszSource, pszComment, aNum); \
+       return VirtualBoxTranslator::translate(NULL, #a_CtxName, pszSource, pszComment, uNum); \
    } \
 }
 #else
-# define DECLARE_TRANSLATION_CONTEXT(ctx) \
-struct ctx \
-{\
-   static const char *tr(const char *pszSource, const char *pszComment = NULL, const size_t aNum = ~(size_t)0) \
+# define DECLARE_TRANSLATION_CONTEXT(a_CtxName) \
+struct a_CtxName \
+{ \
+   static const char *tr(const char *pszSource, const char *pszComment = NULL, const size_t uNum = ~(size_t)0) \
    { \
-       NOREF(pszComment); \
-       NOREF(aNum);       \
+       RT_NOREF(pszComment, uNum); \
        return pszSource;  \
    } \
