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
missing translation for 'Add a new stack'
Signed-off-by: Artem Anufrij <artem.anufrij@live.de>

fixed pixelipo's comment
label->tag

Signed-off-by: Artem Anufrij <artem.anufrij@live.de>

'Board title' -> 'New Board title'

Signed-off-by: Artem Anufrij <artem.anufrij@live.de>

'Board title' -> 'Boards' in Boardlist

Signed-off-by: Artem Anufrij <artem.anufrij@live.de>

[tx-robot] updated from transifex

renamed column header 'Boards' -> 'Title'

Signed-off-by: Artem Anufrij <artem.anufrij@live.de>

Merge branch 'master' into missing_translation
  • Loading branch information
artemanufrij committed Jun 1, 2017
commit 5f3f3959cc860b200f68fa3767fbfa18a381a696
2 changes: 1 addition & 1 deletion l10n/de_DE.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ OC.L10N.register(
"Description" : "Beschreibung",
"Formatting help" : "Formatierungshilfe",
"Saved" : "Gespeichert",
"Add a card description…" : " Hier können Sie der Karte eine Beschreibung hinzufügen …",
"Add a card description…" : "Beschreibung hinzufügen …",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"History" : "Verlauf",
Expand Down
2 changes: 1 addition & 1 deletion l10n/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"Description" : "Beschreibung",
"Formatting help" : "Formatierungshilfe",
"Saved" : "Gespeichert",
"Add a card description…" : " Hier können Sie der Karte eine Beschreibung hinzufügen …",
"Add a card description…" : "Beschreibung hinzufügen …",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"History" : "Verlauf",
Expand Down
1 change: 1 addition & 0 deletions l10n/en_GB.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ OC.L10N.register(
"Created:" : "Created:",
"by" : "by",
"Description" : "Description",
"Formatting help" : "Formatting help",
"Saved" : "Saved",
"Add a card description…" : "Add a card description…",
"Attachments" : "Attachments",
Expand Down
1 change: 1 addition & 0 deletions l10n/en_GB.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"Created:" : "Created:",
"by" : "by",
"Description" : "Description",
"Formatting help" : "Formatting help",
"Saved" : "Saved",
"Add a card description…" : "Add a card description…",
"Attachments" : "Attachments",
Expand Down
2 changes: 1 addition & 1 deletion templates/part.board.headerControls.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div id="stack-add" ng-if="boardservice.canEdit() && checkCanEdit()">
<form class="ng-pristine ng-valid" ng-submit="createStack()">
<input type="text" class="no-close" placeholder="Add a new stack"
<input type="text" class="no-close" placeholder="<?php p($l->t('Add a new stack')); ?>"
ng-focus="status.addStack=true"
ng-blur="status.addStack=false"
ng-model="newStack.title" required
Expand Down
2 changes: 1 addition & 1 deletion templates/part.board.mainView.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
style="">
<h2 data-as-sortable-item-handle><span ng-show="!s.status.editStack">{{ s.title }}</span>
<form ng-if="s.status.editStack" ng-submit="stackservice.update(s)">
<input type="text" placeholder="Add a new stack"
<input type="text" placeholder="<?php p($l->t('Add a new stack')); ?>"
ng-blur="stackservice.update(s); s.status.editStack=false" ng-model="s.title"
ng-if="s.status.editStack" autofocus-on-insert
required maxlength="100"/>
Expand Down
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
2 changes: 1 addition & 1 deletion templates/part.boardlist.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<thead>
<tr>
<td class="cell-board-bullet"></td>
<td class="cell-board-title" width="90%"><?php p($l->t('Board title')); ?></td>
<td class="cell-board-title" width="90%"><?php p($l->t('Title')); ?></td>
<td class="cell-board-members"><?php p($l->t('Members')); ?></td>
</tr>
</thead>
Expand Down
2 changes: 1 addition & 1 deletion templates/part.navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</a>
<div class="app-navigation-entry-edit" ng-if="status.addBoard">
<form ng-disabled="isAddingList" class="ng-pristine ng-valid" ng-submit="boardCreate()">
<input id="newTitle" class="edit ng-valid ng-empty" type="text" placeholder="<?php p($l->t('Board title')); ?>" autofocus-on-insert ng-model="newBoard.title" maxlength="100">
<input id="newTitle" class="edit ng-valid ng-empty" type="text" placeholder="<?php p($l->t('New board title')); ?>" autofocus-on-insert ng-model="newBoard.title" maxlength="100">
<input type="submit" value="" class="action icon-checkmark svg">
<div class="colorselect">
<div class="color" ng-repeat="c in colors" style="background-color:#{{ c }};" ng-click="selectColor(c)" ng-class="{'selected': (c == newBoard.color) }"><br /></div>
Expand Down