Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/circles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2020-04-09 13:49:30 +0300
committerGitHub <noreply@github.com>2020-04-09 13:49:30 +0300
commita9272fd80945e3f54ed9ef68d152b5ba80c46e31 (patch)
tree56e4f5a31424936cb4494e2f9bee0ef7aa9c33cb /templates
parent5a0e5bbd493bc9d65b89fb4c8c794e33b5ac1f1e (diff)
Descriptions in navigate.php
Adding the ability to display descriptions in different languages.
Diffstat (limited to 'templates')
-rw-r--r--templates/navigate.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/navigate.php b/templates/navigate.php
index 84aac63d..43031a07 100644
--- a/templates/navigate.php
+++ b/templates/navigate.php
@@ -359,12 +359,12 @@ style(Application::APP_NAME, 'navigation');
<table id="settings-table">
<tr>
- <td class="left">Name of the Circle</td>
+ <td class="left"><?php p($l->t('Name of the Circle')); ?></td>
<td><input type="text" id="settings-name"/></td>
</tr>
<tr>
- <td class="left" style="vertical-align: top">Description</td>
+ <td class="left" style="vertical-align: top"><?php p($l->t('Description')); ?></td>
<td><textarea type="text" id="settings-desc"></textarea></td>
</tr>