Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Kitsune is the platform that powers `SuMo (support.mozilla.org)

It is a Django_ application. There is documentation_ online.

.. _Firefox Help: https://support.mozilla.org/
.. _Mozilla Support: https://support.mozilla.org/
.. _Django: http://www.djangoproject.com/
.. _documentation: http://kitsune.readthedocs.org/en/latest/

Expand Down
2 changes: 1 addition & 1 deletion kitsune/search/templates/search/plugin.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
xmlns:moz="http:/www.mozilla.org/2006/browser/search/">
<ShortName>{{ _('Mozilla Help') }}</ShortName>
<ShortName>{{ _('Mozilla Support') }}</ShortName>
{# L10n: The description for the OpenSearch plugin. #}
<Description>{{ _('Search the Mozilla Support Knowledge Base and Support Forum.') }}</Description>
<InputEncoding>UTF-8</InputEncoding>
Expand Down
2 changes: 1 addition & 1 deletion kitsune/sumo/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

{{ favicon() }}

<link rel="search" type="application/opensearchdescription+xml" title="{{ _('Firefox Help') }}" href="{{ url('search.plugin') }}"/>
<link rel="search" type="application/opensearchdescription+xml" title="{{ _('Mozilla Support') }}" href="{{ url('search.plugin') }}"/>
{% if feeds %}
{% for feed in feeds %}
<link rel="alternate" type="application/atom+xml" href="{{ feed[0] }}" title="{{ feed[1] }}"/>
Expand Down
4 changes: 2 additions & 2 deletions kitsune/sumo/templates/mobile/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<!-- Don't index mobile optimized pages -->
<meta name="robots" content="noindex" />

<title>{{ title }} | {{ _('Firefox Help', 'site_title') }}</title>
<title>{{ title }} | {{ _('Mozilla Support', 'site_title') }}</title>

{{ favicon() }}

<link rel="search" type="application/opensearchdescription+xml" title="{{ _('Firefox Help') }}" href="{{ url('search.plugin') }}"/>
<link rel="search" type="application/opensearchdescription+xml" title="{{ _('Mozilla Support') }}" href="{{ url('search.plugin') }}"/>

{{ css('mobile/common') }}
{% for style in styles %}
Expand Down
4 changes: 2 additions & 2 deletions kitsune/sumo/templates/mobile/minimal.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<!-- Don't index mobile optimized pages -->
<meta name="robots" content="noindex" />

<title>{{ title }} | {{ _('Firefox Help', 'site_title') }}</title>
<title>{{ title }} | {{ _('Mozilla Support', 'site_title') }}</title>

{{ favicon() }}

<link rel="search" type="application/opensearchdescription+xml" title="{{ _('Firefox Help') }}" href="{{ url('search.plugin') }}"/>
<link rel="search" type="application/opensearchdescription+xml" title="{{ _('Mozilla Support') }}" href="{{ url('search.plugin') }}"/>

{% for style in styles %}
{{ css(style) }}
Expand Down
2 changes: 1 addition & 1 deletion kitsune/sumo/templates/services/monitor.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends 'base.html' %}

{% set title = 'Firefox Help Site Status' %}
{% set title = 'Mozilla Support Site Status' %}
{% set classes = 'monitor' %}
{% set styles = ('monitor',) %}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Kitsune",
"description": "Platform for Firefox Help",
"description": "Platform for Mozilla Support",
"repository": {
"type": "git",
"url": "git://github.com/mozilla/kitsune.git"
Expand Down