summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-06-07 00:01:49 -0700
committerChris McDonough <chrism@plope.com>2011-06-07 00:01:49 -0700
commitf02731666f8abf8778cd719c68ab8ded85ead8a2 (patch)
tree80af0e47cd03ab536d43837bc82b9424380233fd /CHANGES.txt
parent63961eeeea89ae56dcf618523e46f9847e1db2bf (diff)
parentf3e62c3b3c25995b97a4d6aba5efaecedff8554c (diff)
downloadpyramid-f02731666f8abf8778cd719c68ab8ded85ead8a2.tar.gz
pyramid-f02731666f8abf8778cd719c68ab8ded85ead8a2.tar.bz2
pyramid-f02731666f8abf8778cd719c68ab8ded85ead8a2.zip
Merge pull request #207 from wichert/master
Language fallback support
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 9dd1af2c5..0254ac2b0 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -42,6 +42,12 @@ Documentation
Features
--------
+- Add support for language fallbacks: when trying to translate for a
+ specific territory (such as ``en_GB``) fall back to translations
+ for the language (ie ``en``). This brings the translation behaviour in line
+ with GNU gettext and fixes partially translated texts when using C
+ extensions.
+
- New authentication policy:
``pyramid.authentication.SessionAuthenticationPolicy``, which uses a session
to store credentials.