Edgewall Software

Opened 5 years ago

Last modified 5 years ago

#13181 closed enhancement

Change title of InterTrac link to t.e.o — at Initial Version

Reported by: Ryan J Ollos Owned by:
Priority: normal Milestone: 1.0.19
Component: wiki system Version:
Severity: normal Keywords: InterTrac
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description

[[InterTrac]] displays:

PrefixTrac Site
tracThe Trac Project

The tooltip for an InterTrac link to t.e.o displays as "Trac project trac". I'd like to change it to "The Trac Project".

  • trac/wiki/formatter.py

    diff --git a/trac/wiki/formatter.py b/trac/wiki/formatter.py
    index 5d81618e3..177be1945 100644
    a b class Formatter(object):  
    711711                url = '%s/intertrac/%s' % (url, unicode_quote(target))
    712712            if target:
    713713                title = _('%(target)s in %(name)s', target=target, name=name)
     714            elif ns == 'trac':
     715                title = _('The Trac Project')
    714716            else:
    715717                title = name
    716718            return (url, title)

Change History (0)

Note: See TracTickets for help on using tickets.