From 3d1c6b8332eb828a43ac38f3f0e321e149295150 Mon Sep 17 00:00:00 2001 From: Shivangi Shree Date: Wed, 15 Jul 2026 16:02:38 +0530 Subject: [PATCH] [ACS-8468] Remove copy to clipboard action for properties --- .../content-metadata.component.html | 2 -- .../content-metadata.component.ts | 5 ----- .../card-view-dateitem.component.html | 4 ---- .../card-view-dateitem.component.spec.ts | 14 ------------ .../card-view-dateitem.component.ts | 11 ---------- .../card-view-item-dispatcher.component.ts | 4 ---- .../card-view-selectitem.component.html | 2 -- .../card-view-textitem.component.html | 2 -- .../card-view-textitem.component.spec.ts | 22 ------------------- .../card-view-textitem.component.ts | 14 ------------ .../card-view/card-view.component.html | 1 - .../card-view/card-view.component.ts | 4 ---- .../stories/card-view-shared-meta.ts | 9 -------- lib/core/src/lib/i18n/ar.json | 1 - lib/core/src/lib/i18n/cs.json | 1 - lib/core/src/lib/i18n/da.json | 1 - lib/core/src/lib/i18n/de.json | 1 - lib/core/src/lib/i18n/en-AU.json | 1 - lib/core/src/lib/i18n/en.json | 1 - lib/core/src/lib/i18n/es.json | 1 - lib/core/src/lib/i18n/fi.json | 1 - lib/core/src/lib/i18n/fr.json | 1 - lib/core/src/lib/i18n/it.json | 1 - lib/core/src/lib/i18n/ja.json | 1 - lib/core/src/lib/i18n/nb.json | 1 - lib/core/src/lib/i18n/nl.json | 1 - lib/core/src/lib/i18n/pl.json | 1 - lib/core/src/lib/i18n/pt-BR.json | 1 - lib/core/src/lib/i18n/pt.json | 1 - lib/core/src/lib/i18n/ru.json | 1 - lib/core/src/lib/i18n/sv.json | 1 - lib/core/src/lib/i18n/zh-CN.json | 1 - 32 files changed, 113 deletions(-) diff --git a/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.html b/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.html index 9c6a39e99a..3ef3f542c7 100644 --- a/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.html +++ b/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.html @@ -50,7 +50,6 @@ [properties]="basicProperties$ | async" [editable]="!readOnly && isPanelEditing(DefaultPanels.PROPERTIES)" [displayEmpty]="displayEmpty" - [copyToClipboardAction]="copyToClipboardAction" [useChipsForMultiValueProperty]="useChipsForMultiValueProperty" [multiValueSeparator]="multiValueSeparator" /> @@ -251,7 +250,6 @@ [properties]="group.properties" [editable]="!readOnly && group.editable && isPanelEditing(group.title)" [displayEmpty]="displayEmpty" - [copyToClipboardAction]="copyToClipboardAction" [useChipsForMultiValueProperty]="useChipsForMultiValueProperty" [multiValueSeparator]="multiValueSeparator" /> diff --git a/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.ts b/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.ts index 5147106c85..a47e3b5642 100644 --- a/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.ts +++ b/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.ts @@ -127,10 +127,6 @@ export class ContentMetadataComponent implements OnChanges, OnInit { @Input() displayAspect: string = null; - /** Toggles whether or not to enable copy to clipboard action. */ - @Input() - copyToClipboardAction: boolean = true; - /** Toggles whether or not to enable chips for multivalued properties. */ @Input() useChipsForMultiValueProperty: boolean = true; @@ -185,7 +181,6 @@ export class ContentMetadataComponent implements OnChanges, OnInit { private readonly destroyRef = inject(DestroyRef); constructor() { - this.copyToClipboardAction = this.appConfig.get('content-metadata.copy-to-clipboard-action'); this.multiValueSeparator = this.appConfig.get('content-metadata.multi-value-pipe-separator') || DEFAULT_SEPARATOR; this.useChipsForMultiValueProperty = this.appConfig.get('content-metadata.multi-value-chips'); } diff --git a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.html b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.html index d302aa80c1..a63fd282fe 100644 --- a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.html +++ b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.html @@ -6,7 +6,6 @@ [attr.data-automation-id]="'card-dateitem-label-' + property.key" [attr.for]="'card-view-dateitem-' + property.key" [ngClass]="{ 'adf-property-readonly-value': isReadonlyProperty || !editable, 'adf-property-value-editable': editable }" - [title]="'CORE.METADATA.ACTIONS.COPY_TO_CLIPBOARD' | translate" > {{ property.label | translate }} @@ -26,7 +25,6 @@ class="adf-datepicker-span-button" [attr.data-automation-id]="'datepicker-label-toggle-' + property.key" (click)="showDatePicker()" - (dblclick)="copyToClipboard(property.displayValue)" tabindex="0" role="button" (keyup.enter)="showDatePicker()" @@ -95,7 +93,6 @@ [attr.data-automation-id]="'card-dateitem-label-' + property.key" [attr.for]="'card-view-dateitem-' + property.key" [ngClass]="{ 'adf-property-readonly-value': isReadonlyProperty || !editable, 'adf-property-value-editable': editable }" - [title]="'CORE.METADATA.ACTIONS.COPY_TO_CLIPBOARD' | translate" > {{ property.label | translate }} @@ -116,7 +113,6 @@ class="adf-datepicker-span-button" [attr.data-automation-id]="'datepicker-label-toggle-' + property.key" (click)="showDatePicker()" - (dblclick)="copyToClipboard(property.displayValue)" tabindex="0" role="button" (keyup.enter)="showDatePicker()" diff --git a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.spec.ts index 4e1bef31c2..7667812971 100644 --- a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.spec.ts +++ b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.spec.ts @@ -19,7 +19,6 @@ import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CardViewDateItemModel } from '../../models/card-view-dateitem.model'; import { CardViewUpdateService } from '../../services/card-view-update.service'; import { CardViewDateItemComponent } from './card-view-dateitem.component'; -import { ClipboardService } from '../../../clipboard/clipboard.service'; import { CardViewDatetimeItemModel } from '../../models/card-view-datetimeitem.model'; import { AppConfigService } from '../../../app-config/app-config.service'; import { DatetimeAdapter, MatDatetimepickerInputEvent } from '@mat-datetimepicker/core'; @@ -212,19 +211,6 @@ describe('CardViewDateItemComponent', () => { expect(component.property.value).toEqual(expectedDate); }); - it('should copy value to clipboard on double click', () => { - const clipboardService = TestBed.inject(ClipboardService); - spyOn(clipboardService, 'copyContentToClipboard'); - - component.editable = false; - fixture.detectChanges(); - - testingUtils.doubleClickByDataAutomationId('datepicker-label-toggle-' + component.property.key); - - fixture.detectChanges(); - expect(clipboardService.copyContentToClipboard).toHaveBeenCalledWith('Jul 10, 2017', 'CORE.METADATA.ACCESSIBILITY.COPY_TO_CLIPBOARD_MESSAGE'); - }); - describe('clear icon', () => { it('should render the clear icon in case of displayClearAction:true', () => { component.editable = true; diff --git a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.ts b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.ts index 3a3fb6cab4..7c15ef35b5 100644 --- a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.ts +++ b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.ts @@ -27,8 +27,6 @@ import { import { CardViewDateItemModel } from '../../models/card-view-dateitem.model'; import { UserPreferencesService } from '../../../common/services/user-preferences.service'; import { BaseCardView } from '../base-card-view'; -import { ClipboardService } from '../../../clipboard/clipboard.service'; -import { TranslationService } from '../../../translation/translation.service'; import { ADF_DATE_FORMATS, AdfDateFnsAdapter } from '../../../common/utils/date-fns-adapter'; import { ADF_DATETIME_FORMATS, AdfDateTimeFnsAdapter } from '../../../common/utils/datetime-fns-adapter'; import { isValid } from 'date-fns'; @@ -76,8 +74,6 @@ export class CardViewDateItemComponent extends BaseCardView>(DateAdapter); private readonly datetimeAdapter = inject>(DatetimeAdapter); private readonly userPreferencesService = inject(UserPreferencesService); - private readonly clipboardService = inject(ClipboardService); - private readonly translateService = inject(TranslationService); private readonly destroyRef = inject(DestroyRef); @Input() @@ -203,13 +199,6 @@ export class CardViewDateItemComponent extends BaseCardView) { if (event.value) { if (isValid(event.value) && this.property.multivalued && Array.isArray(this.property.value)) { diff --git a/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts b/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts index d1941ad855..f1bc95ca14 100644 --- a/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts +++ b/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts @@ -42,9 +42,6 @@ export class CardViewItemDispatcherComponent implements OnChanges { @Input() displayClearAction: boolean = true; - @Input() - copyToClipboardAction: boolean = true; - @Input() useChipsForMultiValueProperty: boolean = true; @@ -99,7 +96,6 @@ export class CardViewItemDispatcherComponent implements OnChanges { this.componentReference.instance.displayEmpty = this.displayEmpty; this.componentReference.instance.displayNoneOption = this.displayNoneOption; this.componentReference.instance.displayClearAction = this.displayClearAction; - this.componentReference.instance.copyToClipboardAction = this.copyToClipboardAction; this.componentReference.instance.useChipsForMultiValueProperty = this.useChipsForMultiValueProperty; this.componentReference.instance.multiValueSeparator = this.multiValueSeparator; } diff --git a/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.html b/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.html index ac7780208e..01f1e5df20 100644 --- a/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.html +++ b/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.html @@ -82,7 +82,6 @@ [placeholder]="property.default" [attr.aria-label]="property.label | translate" [formControl]="autocompleteControl" - [title]="'CORE.METADATA.ACTIONS.COPY_TO_CLIPBOARD' | translate" [attr.data-automation-id]="'card-autocomplete-based-selectitem-value-' + property.key" /> } @else { @@ -98,7 +97,6 @@ [placeholder]="property.default" [attr.aria-label]="property.label | translate" [formControl]="autocompleteControl" - [title]="'CORE.METADATA.ACTIONS.COPY_TO_CLIPBOARD' | translate" [attr.data-automation-id]="'card-autocomplete-based-selectitem-value-' + property.key" /> } diff --git a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html index c771772e0a..52b65fe4c8 100644 --- a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html +++ b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html @@ -6,9 +6,7 @@ [ngClass]="{ 'adf-property-read-only': isReadonlyProperty }" - (dblclick)="copyToClipboard(property.displayValue)" [attr.data-automation-id]="'card-textitem-field-' + property.key" - [title]="'CORE.METADATA.ACTIONS.COPY_TO_CLIPBOARD' | translate" > { expect(await getTextFieldValue(component.property.key)).toEqual(expectedText); }); - it('should copy value to clipboard on double click', async () => { - const clipboardService = TestBed.inject(ClipboardService); - spyOn(clipboardService, 'copyContentToClipboard'); - - component.property.value = 'myValueToCopy'; - component.property.icon = 'FAKE_ICON'; - component.editable = false; - component.copyToClipboardAction = true; - fixture.detectChanges(); - await fixture.whenStable(); - fixture.detectChanges(); - - testingUtils.doubleClickByDataAutomationId(`card-textitem-field-${component.property.key}`); - fixture.detectChanges(); - - expect(clipboardService.copyContentToClipboard).toHaveBeenCalledWith( - 'myValueToCopy', - 'CORE.METADATA.ACCESSIBILITY.COPY_TO_CLIPBOARD_MESSAGE' - ); - }); - it('should input be disabled if item it NOT editable', async () => { component.editable = false; component.property.clickable = true; diff --git a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.ts b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.ts index 02cf2fee7d..d4a5315f07 100644 --- a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.ts +++ b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.ts @@ -19,8 +19,6 @@ import { ChangeDetectorRef, Component, DestroyRef, inject, Input, OnChanges, Sim import { CardViewTextItemModel } from '../../models/card-view-textitem.model'; import { BaseCardView } from '../base-card-view'; import { MatChipInputEvent, MatChipsModule } from '@angular/material/chips'; -import { ClipboardService } from '../../../clipboard/clipboard.service'; -import { TranslationService } from '../../../translation/translation.service'; import { CardViewItemValidator } from '../../interfaces/card-view-item-validator.interface'; import { FormsModule, ReactiveFormsModule, UntypedFormControl } from '@angular/forms'; import { debounceTime, filter } from 'rxjs/operators'; @@ -61,16 +59,11 @@ const templateTypes = { host: { class: 'adf-card-view-textitem' } }) export class CardViewTextItemComponent extends BaseCardView implements OnChanges { - private readonly clipboardService = inject(ClipboardService); - private readonly translateService = inject(TranslationService); private readonly cd = inject(ChangeDetectorRef); @Input() displayEmpty = true; - @Input() - copyToClipboardAction = true; - @Input() useChipsForMultiValueProperty = true; @@ -217,13 +210,6 @@ export class CardViewTextItemComponent extends BaseCardView diff --git a/lib/core/src/lib/card-view/components/card-view/card-view.component.ts b/lib/core/src/lib/card-view/components/card-view/card-view.component.ts index f0a1bd0a89..a8c4e3a706 100644 --- a/lib/core/src/lib/card-view/components/card-view/card-view.component.ts +++ b/lib/core/src/lib/card-view/components/card-view/card-view.component.ts @@ -49,10 +49,6 @@ export class CardViewComponent { @Input() displayClearAction: boolean = true; - /** Toggles whether or not to enable copy to clipboard action. */ - @Input() - copyToClipboardAction: boolean = true; - /** Toggles whether or not to enable chips for multivalued properties. */ @Input() useChipsForMultiValueProperty: boolean = true; diff --git a/lib/core/src/lib/card-view/stories/card-view-shared-meta.ts b/lib/core/src/lib/card-view/stories/card-view-shared-meta.ts index f5578af368..ba11b018f1 100644 --- a/lib/core/src/lib/card-view/stories/card-view-shared-meta.ts +++ b/lib/core/src/lib/card-view/stories/card-view-shared-meta.ts @@ -69,14 +69,6 @@ export const cardViewArgTypes: ArgTypes = { defaultValue: { summary: 'true' } } }, - copyToClipboardAction: { - control: 'boolean', - description: 'Copy to clipboard action - default template in editable mode', - table: { - type: { summary: 'boolean' }, - defaultValue: { summary: 'true' } - } - }, useChipsForMultiValueProperty: { control: 'boolean', description: 'Split text for chips using defined separator', @@ -103,7 +95,6 @@ export const cardViewDefaultArgs: Record = { displayEmpty: true, displayNoneOption: true, displayClearAction: true, - copyToClipboardAction: true, useChipsForMultiValueProperty: true, multiValueSeparator: ', ' }; diff --git a/lib/core/src/lib/i18n/ar.json b/lib/core/src/lib/i18n/ar.json index b69ba7ad1d..a1bf26eade 100755 --- a/lib/core/src/lib/i18n/ar.json +++ b/lib/core/src/lib/i18n/ar.json @@ -221,7 +221,6 @@ "CANCEL": "إلغاء", "CLEAR": "مسح", "TOGGLE": "تبديل القيمة", - "COPY_TO_CLIPBOARD": "انقر مرتين لنسخ القيمة", "EDIT_ASPECTS": "تحرير الجانب" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/cs.json b/lib/core/src/lib/i18n/cs.json index 43a4bc6727..ec2249ed76 100755 --- a/lib/core/src/lib/i18n/cs.json +++ b/lib/core/src/lib/i18n/cs.json @@ -221,7 +221,6 @@ "CANCEL": "Zrušit", "CLEAR": "Vymazat", "TOGGLE": "Přepnout hodnotu", - "COPY_TO_CLIPBOARD": "Dvojím kliknutím zkopírovat hodnotu", "EDIT_ASPECTS": "Úprava aspektů" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/da.json b/lib/core/src/lib/i18n/da.json index beb120aa85..ebc5b216a9 100755 --- a/lib/core/src/lib/i18n/da.json +++ b/lib/core/src/lib/i18n/da.json @@ -221,7 +221,6 @@ "CANCEL": "Annuller", "CLEAR": "Ryd", "TOGGLE": "Slå værdi til/fra", - "COPY_TO_CLIPBOARD": "Dobbeltklik for at kopiere værdien", "EDIT_ASPECTS": "Rediger aspekt" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/de.json b/lib/core/src/lib/i18n/de.json index 5d23f746c0..0b28619321 100644 --- a/lib/core/src/lib/i18n/de.json +++ b/lib/core/src/lib/i18n/de.json @@ -304,7 +304,6 @@ "CANCEL": "Abbrechen", "CLEAR": "Löschen", "TOGGLE": "Umschaltwert", - "COPY_TO_CLIPBOARD": "Doppelklicken, um den Wert zu kopieren", "EDIT_ASPECTS": "Aspekt bearbeiten" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/en-AU.json b/lib/core/src/lib/i18n/en-AU.json index dd15f2aa7d..c80217c89d 100644 --- a/lib/core/src/lib/i18n/en-AU.json +++ b/lib/core/src/lib/i18n/en-AU.json @@ -304,7 +304,6 @@ "CANCEL": "Cancel", "CLEAR": "Clear", "TOGGLE": "Toggle value", - "COPY_TO_CLIPBOARD": "Double click to copy value", "EDIT_ASPECTS": "Edit Aspect" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/en.json b/lib/core/src/lib/i18n/en.json index 1d497c1064..cc0df983d0 100644 --- a/lib/core/src/lib/i18n/en.json +++ b/lib/core/src/lib/i18n/en.json @@ -304,7 +304,6 @@ "CANCEL": "Cancel", "CLEAR": "Clear", "TOGGLE": "Toggle value", - "COPY_TO_CLIPBOARD": "Double click to copy value", "EDIT_ASPECTS": "Edit Aspect" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/es.json b/lib/core/src/lib/i18n/es.json index 8296a4ccc5..1d6bbb1f87 100644 --- a/lib/core/src/lib/i18n/es.json +++ b/lib/core/src/lib/i18n/es.json @@ -304,7 +304,6 @@ "CANCEL": "Cancelar", "CLEAR": "Borrar", "TOGGLE": "Cambiar valor", - "COPY_TO_CLIPBOARD": "Haga doble clic para copiar el valor", "EDIT_ASPECTS": "Editar aspecto" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/fi.json b/lib/core/src/lib/i18n/fi.json index eb17f0fe25..71f62f7d4d 100755 --- a/lib/core/src/lib/i18n/fi.json +++ b/lib/core/src/lib/i18n/fi.json @@ -221,7 +221,6 @@ "CANCEL": "Peruuta", "CLEAR": "Tyhjennä", "TOGGLE": "Vaihda arvoa", - "COPY_TO_CLIPBOARD": "Kopioi arvo kaksoisnapsauttamalla", "EDIT_ASPECTS": "Muokkaa ominaisuusjoukkoja" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/fr.json b/lib/core/src/lib/i18n/fr.json index e3ed1fa499..d8841b3c2a 100644 --- a/lib/core/src/lib/i18n/fr.json +++ b/lib/core/src/lib/i18n/fr.json @@ -304,7 +304,6 @@ "CANCEL": "Annuler", "CLEAR": "Supprimer", "TOGGLE": "Basculer la valeur", - "COPY_TO_CLIPBOARD": "Faites un double clic pour copier la valeur", "EDIT_ASPECTS": "Modifier aspect" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/it.json b/lib/core/src/lib/i18n/it.json index c684e4b82b..a25586caba 100644 --- a/lib/core/src/lib/i18n/it.json +++ b/lib/core/src/lib/i18n/it.json @@ -304,7 +304,6 @@ "CANCEL": "Annulla", "CLEAR": "Cancella", "TOGGLE": "Cambiare valore", - "COPY_TO_CLIPBOARD": "Fare doppio clic per copiare il valore", "EDIT_ASPECTS": "Modifica aspetto" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/ja.json b/lib/core/src/lib/i18n/ja.json index 0e4032e141..5882013549 100755 --- a/lib/core/src/lib/i18n/ja.json +++ b/lib/core/src/lib/i18n/ja.json @@ -221,7 +221,6 @@ "CANCEL": "キャンセル", "CLEAR": "消去", "TOGGLE": "値の切り替え", - "COPY_TO_CLIPBOARD": "ダブルクリックして値をコピーします", "EDIT_ASPECTS": "アスペクトを編集" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/nb.json b/lib/core/src/lib/i18n/nb.json index eaf62089ae..899a78894b 100755 --- a/lib/core/src/lib/i18n/nb.json +++ b/lib/core/src/lib/i18n/nb.json @@ -221,7 +221,6 @@ "CANCEL": "Avbryt", "CLEAR": "Fjern", "TOGGLE": "Bytt verdi", - "COPY_TO_CLIPBOARD": "Dobbeltkllikk for å kopiere verdi", "EDIT_ASPECTS": "Rediger aspekt" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/nl.json b/lib/core/src/lib/i18n/nl.json index d5b445cb7f..78b79b2b65 100755 --- a/lib/core/src/lib/i18n/nl.json +++ b/lib/core/src/lib/i18n/nl.json @@ -221,7 +221,6 @@ "CANCEL": "Annuleren", "CLEAR": "Wissen", "TOGGLE": "Waarde in-/uitschakelen", - "COPY_TO_CLIPBOARD": "Dubbelklikken om waarde te kopiëren", "EDIT_ASPECTS": "Aspect bewerken" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/pl.json b/lib/core/src/lib/i18n/pl.json index d6f3634652..7705898447 100644 --- a/lib/core/src/lib/i18n/pl.json +++ b/lib/core/src/lib/i18n/pl.json @@ -304,7 +304,6 @@ "CANCEL": "Anuluj", "CLEAR": "Wyczyść", "TOGGLE": "Przełącz wartość", - "COPY_TO_CLIPBOARD": "Kliknij dwa razy, aby skopiować wartość", "EDIT_ASPECTS": "Edycja aspektu" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/pt-BR.json b/lib/core/src/lib/i18n/pt-BR.json index 443edb7b46..0ba2591ddc 100755 --- a/lib/core/src/lib/i18n/pt-BR.json +++ b/lib/core/src/lib/i18n/pt-BR.json @@ -221,7 +221,6 @@ "CANCEL": "Cancelar", "CLEAR": "Limpar", "TOGGLE": "Alternar valor", - "COPY_TO_CLIPBOARD": "Clique duas vezes para copiar o valor", "EDIT_ASPECTS": "Editar aspecto" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/pt.json b/lib/core/src/lib/i18n/pt.json index 1260fc4940..69cc710448 100644 --- a/lib/core/src/lib/i18n/pt.json +++ b/lib/core/src/lib/i18n/pt.json @@ -304,7 +304,6 @@ "CANCEL": "Cancelar", "CLEAR": "Limpar", "TOGGLE": "Alternar valor", - "COPY_TO_CLIPBOARD": "Clique duas vezes para copiar o valor", "EDIT_ASPECTS": "Editar aspeto" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/ru.json b/lib/core/src/lib/i18n/ru.json index 7e5400d5d3..da9f04b418 100755 --- a/lib/core/src/lib/i18n/ru.json +++ b/lib/core/src/lib/i18n/ru.json @@ -221,7 +221,6 @@ "CANCEL": "Отмена", "CLEAR": "Очистить", "TOGGLE": "Переключить значение", - "COPY_TO_CLIPBOARD": "Нажмите дважды, чтобы скопировать значение", "EDIT_ASPECTS": "Изменить аспект" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/sv.json b/lib/core/src/lib/i18n/sv.json index 25801b367f..4ceb6fc094 100755 --- a/lib/core/src/lib/i18n/sv.json +++ b/lib/core/src/lib/i18n/sv.json @@ -221,7 +221,6 @@ "CANCEL": "Avbryt", "CLEAR": "Rensa", "TOGGLE": "Växla värde", - "COPY_TO_CLIPBOARD": "Dubbelklicka för att kopiera värde", "EDIT_ASPECTS": "Redigera aspekt" }, "ACCESSIBILITY": { diff --git a/lib/core/src/lib/i18n/zh-CN.json b/lib/core/src/lib/i18n/zh-CN.json index ef8e436f71..4ba0e9b201 100755 --- a/lib/core/src/lib/i18n/zh-CN.json +++ b/lib/core/src/lib/i18n/zh-CN.json @@ -221,7 +221,6 @@ "CANCEL": "取消", "CLEAR": "清除", "TOGGLE": "切换值", - "COPY_TO_CLIPBOARD": "双击以复制值", "EDIT_ASPECTS": "编辑纵横比" }, "ACCESSIBILITY": {