Ticket #18232: js-i18n-patch-2.diff

File js-i18n-patch-2.diff, 387 bytes (added by Matthew Tretter <matthew@…>, 12 years ago)
  • django/views/i18n.py

    diff --git c/django/views/i18n.py w/django/views/i18n.py
    index 140dc54..5d1ecb9 100644
    c w LibFormatFoot = """  
    125125function get_format(format_type) {
    126126    var value = formats[format_type];
    127127    if (typeof(value) == 'undefined') {
    128       return msgid;
     128      return format_type;
    129129    } else {
    130130      return value;
    131131    }
Back to Top