Replacement _ on _LI in all LOG.info - part 1

oslo.i18n uses different marker functions to separate the
translatable messages into different catalogs, which the translation
teams can prioritize translating. For details, please refer to:
http://docs.openstack.org/developer/oslo.i18n/guidelines.html#guidelines-for-use-in-openstack

There were not marker fuctions some places in directory network.
This commit makes changes:
* Add missing marker functions
* Use ',' instead of '%' while adding variables to log messages

Added a hacking rule for the log info about checking
translation for it.

Change-Id: I96766d723b01082339876ed94bbaa77783322b8c
This commit is contained in:
Mike Durnosvistov
2014-09-18 13:08:37 +03:00
parent b32ccb7b41
commit 8431670ef8
27 changed files with 124 additions and 111 deletions
+1
View File
@@ -40,6 +40,7 @@ Nova Specific Commandments
- [N325] str() and unicode() cannot be used on an exception. Remove use or use six.text_type()
- [N326] Translated messages cannot be concatenated. String should be included in translated message.
- [N327] assert_called_once() is not a valid method
- [N328] Validate that LOG.info messages use _LI.
Creating Unit Tests
-------------------