@designcrowd/fe-shared-lib 1.2.19-byo-3 → 1.2.19-byo-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.2.19-byo-3",
3
+ "version": "1.2.19-byo-4",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -144,10 +144,14 @@ export default {
144
144
  },
145
145
  computed: {
146
146
  replaceButtonLabel() {
147
- return 'Ersetzen';
147
+ return this.alternativeLayout
148
+ ? this.uploadLogoSearchResultCardTr('replace')
149
+ : this.uploadLogoSearchResultCardTr('replaceLogo');
148
150
  },
149
151
  deleteButtonLabel() {
150
- return 'Löschen';
152
+ return this.alternativeLayout
153
+ ? this.uploadLogoSearchResultCardTr('delete')
154
+ : this.uploadLogoSearchResultCardTr('deleteLogo');
151
155
  },
152
156
  },
153
157
  methods: {