Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
replace legacy "Mobile" with "Firefox for Android" in "Other Applicat…
Browse files Browse the repository at this point in the history
…ions" drop-down menu (bug 824314)
  • Loading branch information
cvan committed Dec 27, 2012
1 parent 78aa800 commit 78323d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/constants/applications.py
Expand Up @@ -100,7 +100,7 @@ class ANDROID(App):
id = 61
short = 'android'
shortername = 'an'
pretty = _(u'Android')
pretty = _(u'Firefox for Android')
browser = True
types = [ADDON_EXTENSION, ADDON_DICT, ADDON_SEARCH,
ADDON_LPAPP, ADDON_PERSONA]
Expand Down
2 changes: 1 addition & 1 deletion templates/base.html
Expand Up @@ -76,7 +76,7 @@
{{ _('Other Applications') }}</a>
<ul class="other-apps">
{% for app in amo.APP_USAGE %}
{% if app != request.APP and app != amo.ANDROID %}
{% if app != request.APP and app != amo.MOBILE %}
<li id="app-{{ app.short }}" class="{{ app.short }}">
<a href="{{ locale_url(app.short) }}">{{ app.pretty }}</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion templates/impala/base.html
Expand Up @@ -71,7 +71,7 @@
<a href="#" id="other-apps" title="{{ _('Find add-ons for other applications') }}">{{ _('Other Applications') }}</a>
<ul class="other-apps">
{% for app in amo.APP_USAGE %}
{% if app != request.APP and app != amo.ANDROID %}
{% if app != request.APP and app != amo.MOBILE %}
<li id="app-{{ app.short }}" class="{{ app.short }}">
<a href="{{ locale_url(app.short) }}">{{ app.pretty }}</a>
</li>
Expand Down

0 comments on commit 78323d5

Please sign in to comment.