diff --git a/CHANGES b/CHANGES index 43ccc2f..6f75ebc 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,7 @@ Version History Version 0.9.4 (unreleased) -------------------------- +* Added ROSETTA_SHOW_OCCURRENCES: Option to hide file name & path (#77, PR #221, thanks @sarathak) * Unfuzzy fuzzy entries when the translation is changed (#16, PR #220, thanks @sarathak) diff --git a/docs/settings.rst b/docs/settings.rst index 726f39e..face5ba 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -23,7 +23,7 @@ Rosetta can be configured via the following parameters, to be defined in your pr * ``ROSETTA_SHOW_AT_ADMIN_PANEL``: Adds a handy link to Rosetta at the bottom of the Django admin apps index. Defaults to ``False``. * ``ROSETTA_LOGIN_URL``: Use this if you want to override the login URL for rosetta. Defaults to ``settings.LOGIN_URL``. * ``ROSETTA_LANGUAGES``: List of languages that Rosetta will offer to translate. This is useful when you wish to translate a language that is not yet defined in ``settings.LANGUAGES``. Defaults to ``settings.LANGUAGES``. -* ``ROSETTA_SHOW_OCCURRENCES``: Determines whether occurrences filename visible in rosetta. Defaults to ``True``. +* ``ROSETTA_SHOW_OCCURRENCES``: Determines whether occurrences (where the original text appears) should be shown next to the translations for context. Defaults to ``True``. Storages -------- diff --git a/rosetta/locale/cs/LC_MESSAGES/django.mo b/rosetta/locale/cs/LC_MESSAGES/django.mo index 52aadb8..5ce7362 100644 Binary files a/rosetta/locale/cs/LC_MESSAGES/django.mo and b/rosetta/locale/cs/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/de/LC_MESSAGES/django.mo b/rosetta/locale/de/LC_MESSAGES/django.mo index 2cbe38e..279b356 100644 Binary files a/rosetta/locale/de/LC_MESSAGES/django.mo and b/rosetta/locale/de/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/es/LC_MESSAGES/django.mo b/rosetta/locale/es/LC_MESSAGES/django.mo index 85cb363..2254dfe 100644 Binary files a/rosetta/locale/es/LC_MESSAGES/django.mo and b/rosetta/locale/es/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/fa/LC_MESSAGES/django.mo b/rosetta/locale/fa/LC_MESSAGES/django.mo index adef935..17ec361 100644 Binary files a/rosetta/locale/fa/LC_MESSAGES/django.mo and b/rosetta/locale/fa/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/fr/LC_MESSAGES/django.mo b/rosetta/locale/fr/LC_MESSAGES/django.mo index 12f6199..d9a645c 100644 Binary files a/rosetta/locale/fr/LC_MESSAGES/django.mo and b/rosetta/locale/fr/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/hu/LC_MESSAGES/django.mo b/rosetta/locale/hu/LC_MESSAGES/django.mo index d681ba5..2af9e7c 100644 Binary files a/rosetta/locale/hu/LC_MESSAGES/django.mo and b/rosetta/locale/hu/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/it/LC_MESSAGES/django.mo b/rosetta/locale/it/LC_MESSAGES/django.mo index 496d5f3..4e07498 100644 Binary files a/rosetta/locale/it/LC_MESSAGES/django.mo and b/rosetta/locale/it/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/nl/LC_MESSAGES/django.mo b/rosetta/locale/nl/LC_MESSAGES/django.mo index bb6bfd0..9bc83d6 100644 Binary files a/rosetta/locale/nl/LC_MESSAGES/django.mo and b/rosetta/locale/nl/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/pl/LC_MESSAGES/django.mo b/rosetta/locale/pl/LC_MESSAGES/django.mo index 25a3f48..b05bf54 100644 Binary files a/rosetta/locale/pl/LC_MESSAGES/django.mo and b/rosetta/locale/pl/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/ru/LC_MESSAGES/django.mo b/rosetta/locale/ru/LC_MESSAGES/django.mo index 23b25c1..9789d89 100644 Binary files a/rosetta/locale/ru/LC_MESSAGES/django.mo and b/rosetta/locale/ru/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/tr/LC_MESSAGES/django.mo b/rosetta/locale/tr/LC_MESSAGES/django.mo index 052df46..1e52a8c 100644 Binary files a/rosetta/locale/tr/LC_MESSAGES/django.mo and b/rosetta/locale/tr/LC_MESSAGES/django.mo differ diff --git a/rosetta/locale/uk/LC_MESSAGES/django.mo b/rosetta/locale/uk/LC_MESSAGES/django.mo index ee384f1..d94dc10 100644 Binary files a/rosetta/locale/uk/LC_MESSAGES/django.mo and b/rosetta/locale/uk/LC_MESSAGES/django.mo differ