Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lang/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"Add": "Hinzufügen",
"Add a link label": "Linktitel hinzufügen",
"Add Attribute": "Attribut hinzufügen",
"Add Block": "Block hinzufügen",
"Add child link to entry": "Untereintrag hinzufügen",
"Add child nav item": "Unterpunkt hinzufügen",
"Add Color": "Farbe hinzufügen",
Expand Down
1 change: 0 additions & 1 deletion lang/de_CH.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"Add": "Hinzufügen",
"Add a link label": "Linktitel hinzufügen",
"Add Attribute": "Attribut hinzufügen",
"Add Block": "Block hinzufügen",
"Add child link to entry": "Untereintrag hinzufügen",
"Add child nav item": "Unterpunkt hinzufügen",
"Add Color": "Farbe hinzufügen",
Expand Down
1 change: 0 additions & 1 deletion lang/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"Add": "Ajouter",
"Add a link label": "Ajouter une étiquette de lien",
"Add Attribute": "Ajouter des attributs",
"Add Block": "Ajouter un bloc",
"Add child link to entry": "Ajouter un lien enfant à l'entrée",
"Add child nav item": "Ajouter un élément de navigation enfant",
"Add Color": "Ajouter une couleur",
Expand Down
1 change: 0 additions & 1 deletion lang/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"Add": "Toevoegen",
"Add a link label": "Voeg een linklabel toe",
"Add Attribute": "Voeg attribuut toe",
"Add Block": "Voeg blok toe",
"Add child link to entry": "Voeg een child link toe aan entry",
"Add child nav item": "Voeg een child navigatie-item toe",
"Add Color": "Voeg een kleur toe",
Expand Down
1 change: 0 additions & 1 deletion lang/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"Add": "Добавить",
"Add a link label": "Добавить название ссылки",
"Add Attribute": "Добавить атрибут",
"Add Block": "Добавить блок",
"Add child link to entry": "Добавить дочернюю ссылку на запись",
"Add child nav item": "Добавить дочерний элемент навигации",
"Add Color": "Добавить цвет",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const props = defineProps({
loadingSet: { type: String, default: null },
});

const label = computed(() => props.label ? __(props.label) : __('Add Block'));
const label = computed(() => props.label ? __(props.label) : __('Add Set'));

function addSet(handle) {
emit('added', handle, props.index);
Expand Down
Loading