Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing translation for 'Add a new stack' #169

Merged
merged 13 commits into from
Jun 6, 2017
Prev Previous commit
Next Next commit
label->tag
Signed-off-by: Artem Anufrij <artem.anufrij@live.de>
  • Loading branch information
artemanufrij committed May 30, 2017
commit a6e60f61583c4fc7d25cfbf86c590e233f35be74
4 changes: 2 additions & 2 deletions templates/part.board.sidebarView.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<ul class="tabHeaders">
<li class="tabHeader" ng-class="{'selected': (status.boardtab==0 || !status.boardtab)}" ng-click="status.boardtab=0"><a><?php p($l->t('Sharing')); ?></a></li>
<li class="tabHeader" ng-class="{'selected': (status.boardtab==1)}" ng-click="status.boardtab=1"><a><?php p($l->t('Labels')); ?></a></li>
<li class="tabHeader" ng-class="{'selected': (status.boardtab==1)}" ng-click="status.boardtab=1"><a><?php p($l->t('Tags')); ?></a></li>
</ul>
<div class="tabsContainer">
<div id="commentsTabView" class="tab commentsTabView" ng-if="status.boardtab==0 || !status.boardtab">
Expand Down Expand Up @@ -98,7 +98,7 @@
</form>
</li>
<li ng-if="boardservice.canManage() && !status.createLabel" class="label-create">
<a ng-click="status.createLabel=true"><span class="icon icon-add"> </span> <?php p($l->t('Create a new label')); ?></a>
<a ng-click="status.createLabel=true"><span class="icon icon-add"> </span> <?php p($l->t('Create a new tag')); ?></a>
</li>
</ul>

Expand Down