Remove log translations

Log messages are no longer being translated. This
removes all use of the _LE, _LI, and _LW translation markers to simplify
logging and to avoid confusion with new contributions.

Change-Id: I6de4a70ed5d2a09b10b1446cfd5950446b145031
Co-Authored-By: hnyang <hnyang@fiberhome.com>
This commit is contained in:
fpxie
2017-04-27 08:51:59 +08:00
parent ccd8efa50f
commit 16cd7cf9ec
9 changed files with 23 additions and 80 deletions

View File

@@ -16,7 +16,6 @@ Cloudkitty Specific Commandments
- [C314] str() and unicode() cannot be used on an exception. Remove or use six.text_type().
- [C315] Translated messages cannot be concatenated. String should be
included in translated message.
- [C316] Log messages, except debug ones, require translations!
- [C317] 'oslo_' should be used instead of 'oslo.'
- [C318] Must use a dict comprehension instead of a dict constructor
with a sequence of key-value pairs.