Yangman - LIST_PREV_ITEM not translated
[dlux.git] / modules / yangman-resources / src / main / resources / yangman / views / rightpanel / form / list-data-top.tpl.html
index 10c4b929870b23553d9764b58faeefc8109fd527..2cf52c9d697c58edaf79360ce6c68391a127aa74 100644 (file)
@@ -1,7 +1,8 @@
 <!-- Previous button -->
-<button ng-click="yangList.shiftDisplayPrev()">
+<button ng-click="yangList.shiftDisplayPrev()"
+        ng-show="yangList.showPrevButton()">
     <md-icon class="material-icons">{{yangList.showPrevButton() ? 'arrow_back' : ''}}</md-icon>
-    <md-tooltip md-direction="top">{{ 'LIST_PREV_ITEM' | translate }}</md-tooltip>
+    <md-tooltip md-direction="top">{{ 'YANGMAN_LIST_PREV_ITEM' | translate }}</md-tooltip>
 </button>
 
 <section ng-repeat="offset in yangList.displayOffsets" class="yangmanModule__right-panel__form__list-item"
@@ -29,7 +30,7 @@
              class="pointer"
              ng-click="yangList.removeListElem(yangList.currentDisplayIndex + offset,false)"
              ng-if="selectedDatastore.label === yangList.constants.DATA_STORE_CONFIG && !yangList.disableAddingListElement">
-        <md-tooltip md-direction="top">{{ 'LIST_DELETE_ITEM' | translate }}</md-tooltip>
+        <md-tooltip md-direction="top">{{ 'YANGMAN_LIST_DELETE_ITEM' | translate }}</md-tooltip>
         remove_circle_outline
     </md-icon>
 
@@ -37,7 +38,7 @@
     <md-icon md-font-set="material-icons"
              ng-show="node.doubleKeyIndexes.indexOf(yangList.currentDisplayIndex + offset) > -1"
              ng-if="selectedDatastore.label === yangList.constants.DATA_STORE_CONFIG">
-        <md-tooltip md-direction="top">{{ 'LIST_INDEX_DUPLICATE' | translate }}</md-tooltip>
+        <md-tooltip md-direction="top">{{ 'YANGMAN_LIST_INDEX_DUPLICATE' | translate }}</md-tooltip>
         error_outline
     </md-icon>
 </section>
@@ -46,5 +47,5 @@
 <button ng-click="yangList.shiftDisplayNext('listData')"
         ng-show="yangList.showNextButton('listData')">
     <md-icon class="material-icons">arrow_forward</md-icon>
-    <md-tooltip md-direction="top">{{ 'LIST_NEXT_ITEM' | translate }}</md-tooltip>
+    <md-tooltip md-direction="top">{{ 'YANGMAN_LIST_NEXT_ITEM' | translate }}</md-tooltip>
 </button>