Skip to content

Commit

Permalink
feature #4050 [Translation] added logging capability. (aitboudad)
Browse files Browse the repository at this point in the history
This PR was submitted for the master branch but it was merged into the 2.6 branch instead (closes #4050).

Discussion
----------

[Translation] added logging capability.

| Q             | A
| ------------- | ---
| Doc fix?	 | no
| New docs? | yes(symfony/symfony/pull/10887)
| Applies to | 2.6+
|Fixed tickets |	-

Commits
-------

e8e50fa added logging  to translator.
  • Loading branch information
weaverryan committed Dec 7, 2014
2 parents f587903 + e8e50fa commit f30f753
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
9 changes: 9 additions & 0 deletions book/translation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,15 @@ checks translation resources for several different locales:
3. If the translation still isn't found, Symfony uses the ``fallback`` configuration
parameter, which defaults to ``en`` (see `Configuration`_).

.. versionadded:: 2.6
The ability to log missing translations was introduced in Symfony 2.6.

.. note::

When Symfony doesn't find a translation in the given locale, it will
add the missing translation to the log file. For details,
see :ref:`reference-framework-translator-logging`.

.. _book-translation-user-locale:

Handling the User's Locale
Expand Down
41 changes: 41 additions & 0 deletions reference/configuration/framework.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ Configuration
* `profiler`_
* `collect`_
* :ref:`enabled <profiler.enabled>`
* `translator`_
* :ref:`enabled <translator.enabled>`
* `fallback`_
* `logging`_

secret
~~~~~~
Expand Down Expand Up @@ -495,6 +499,42 @@ and activate the data collectors by hand::

$profiler->enable();

translator
~~~~~~~~~~

.. _translator.enabled:

enabled
.......

**type**: ``boolean`` **default**: ``false``

Whether or not to enable the ``translator`` service in the service container.

fallback
........

**default**: ``en``

This option is used when the translation key for the current locale wasn't found.

For more details, see :doc:`/book/translation`.

.. _reference-framework-translator-logging:

logging
.......

.. versionadded:: 2.6
The ``logging`` option was introduced in Symfony 2.6.

**default**: ``true`` when the debug mode is enabled, ``false`` otherwise.

When ``true``, a log entry is made whenever the translator cannot find a translation
for a given key. The logs are made to the ``translation`` channel and at the ``debug``
for level for keys where there is a translation in the fallback locale and the ``warning``
level if there is no translation to use at all.

Full default Configuration
--------------------------

Expand Down Expand Up @@ -612,6 +652,7 @@ Full default Configuration
translator:
enabled: false
fallback: en
logging: "%kernel.debug%"
# validation configuration
validation:
Expand Down

0 comments on commit f30f753

Please sign in to comment.