Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blentranslation/intern/blt_translation.c')
-rw-r--r--source/blender/blentranslation/intern/blt_translation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blentranslation/intern/blt_translation.c b/source/blender/blentranslation/intern/blt_translation.c
index b5c0addfdfa..89a2f6c3ac0 100644
--- a/source/blender/blentranslation/intern/blt_translation.c
+++ b/source/blender/blentranslation/intern/blt_translation.c
@@ -47,7 +47,7 @@ bool BLT_is_default_context(const char *msgctxt)
/* We use the "short" test, a more complete one could be:
* return (!msgctxt || !msgctxt[0] || STREQ(msgctxt, BLT_I18NCONTEXT_DEFAULT_BPYRNA))
*/
- /* Note: trying without the void string check for now, it *should* not be necessary... */
+ /* NOTE: trying without the void string check for now, it *should* not be necessary... */
return (!msgctxt || msgctxt[0] == BLT_I18NCONTEXT_DEFAULT_BPYRNA[0]);
}