Rename all visible mentions of "Service" to "Applications"

No we use "Application" term in Application Catalog. Some "Service"s
in Environments panel should be rename to "Component", but in a
separate commit.

Partial-Bug: #1304901
Change-Id: Iaa69b5b05b473beb19dcf4444e606fe8335ee9f6
This commit is contained in:
Ekaterina Fedorova 2014-04-23 14:54:40 +04:00 committed by Timur Sufiev
parent cc0e43c719
commit 4a21fb620e
4 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@
</div>
<div class="">
<ul>
<li><strong>Fully Qualified Service Name:</strong> {{ app.fully_qualified_name }}</li>
<li><strong>Fully Qualified Application Name:</strong> {{ app.fully_qualified_name }}</li>
<li><strong>Author:</strong> {{ app.author }}</li>
<li><strong>Active:</strong> {{ app.enabled }}</li>
<li><strong>Public:</strong> {{ app.is_public }}</li>

View File

@ -1,2 +1,2 @@
{% load i18n %}
<p>{% blocktrans %} Environment is a logical unit for all Services.{% endblocktrans %}</p>
<p>{% blocktrans %} Environment is a logical unit for all applications.{% endblocktrans %}</p>

View File

@ -14,7 +14,7 @@
{% endblock %}
{% block form_id %}create_service_form{% endblock %}
{% block modal_id %}create_service{% endblock %}
{% block modal-header %}{% trans "Create Service" %}{% endblock %}
{% block modal-header %}{% trans "Add Application" %}{% endblock %}
{% block modal-body %}
<div class="left">
@ -34,7 +34,7 @@
<p class='italic'>{% blocktrans %} {{ extended_description }} {% endblocktrans %}</p>
</div>
<div class="right">
<h3> {% blocktrans %} {{ service_name }} Service{% endblocktrans %} </h3>
<h3> {% blocktrans %} {{ service_name }} Application{% endblocktrans %} </h3>
{% for title, description in field_descriptions %}
<p>
{% if title %}

View File

@ -1,6 +1,6 @@
{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans "Environment Services" %}{% endblock %}
{% block title %}{% trans "Environment Applications" %}{% endblock %}
{% block page_header %}
{% include "services/_page_header.html" %}