Skip to content

Commit b43d595

Browse files
committed
FT: different stuff
1 parent d6aaa9e commit b43d595

File tree

13 files changed

+15
-16
lines changed

13 files changed

+15
-16
lines changed

src/bundle/Resources/views/themes/admin/account/bookmarks/list.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
{% if bookmark.userCanEdit %}
5757
<button
5858
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text ibexa-btn--content-edit"
59-
title="{{ 'bookmark.list.content.edit'|trans|desc('Edit content') }}"
59+
title="{{ 'bookmark.list.content.edit'|trans|desc('Edit') }}"
6060
data-content-id="{{ bookmark.contentInfo.id }}"
6161
data-language-code="{{ bookmark.contentInfo.mainLanguageCode }}"
6262
>

src/bundle/Resources/views/themes/admin/content/draft/draft_list.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
{% set col_raw %}
6868
<button
6969
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text mx-2 ibexa-btn--content-draft-edit"
70-
title="{{ 'drafts.list.action.edit'|trans|desc('Edit draft') }}"
70+
title="{{ 'drafts.list.action.edit'|trans|desc('Edit') }}"
7171
data-content-id="{{ row.versionInfo.contentInfo.id }}"
7272
data-language-code="{{ row.versionInfo.initialLanguageCode }}"
7373
data-content-draft-edit-url="{{ path(content_draft_edit_url, {

src/bundle/Resources/views/themes/admin/content/tab/versions/table.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
<a
105105
href="{{ edit_url }}"
106106
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text {% if edit_draft_disabled %}ibexa-btn--prevented{% endif %}"
107-
title="{{ 'tab.versions.table.action.draft.edit'|trans|desc('Edit draft') }}"
107+
title="{{ 'tab.versions.table.action.draft.edit'|trans|desc('Edit') }}"
108108
{% if edit_draft_disabled %}disabled{% endif %}
109109
>
110110
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--edit">
@@ -123,7 +123,7 @@
123123
data-content-id="{{ version.contentInfo.id }}"
124124
data-language-code="{{ version.initialLanguageCode }}"
125125
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text mx-2 ibexa-btn--content-draft-edit {% if edit_draft_disabled %}ibexa-btn--prevented{% endif %}"
126-
title="{{ 'tab.versions.table.action.draft.edit'|trans|desc('Edit draft') }}"
126+
title="{{ 'tab.versions.table.action.draft.edit'|trans|desc('Edit') }}"
127127
{% if edit_draft_disabled %}disabled{% endif %}
128128
>
129129
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--edit">

src/bundle/Resources/views/themes/admin/content_type/macros.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
{% macro content_type_copy(content_type, content_type_group, class_name) %}
1919
<button
20-
title="{{ 'content_type.action.copy'|trans|desc('Copy') }}"
20+
title="{{ 'content_type.action.copy'|trans|desc('Duplicate') }}"
2121
type="button"
2222
data-content-type-id="{{ content_type.id }}"
2323
data-content-type-identifier="{{ content_type.identifier }}"

src/bundle/Resources/views/themes/admin/link_manager/list.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<a
5050
href="{{ edit_url }}"
5151
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text"
52-
title="{{ 'url.action.edit'|trans|desc('Edit URL') }}"
52+
title="{{ 'url.action.edit'|trans|desc('Edit') }}"
5353
>
5454
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--edit">
5555
<use xlink:href="{{ ibexa_icon_path('edit') }}"></use>

src/bundle/Resources/views/themes/admin/link_manager/view.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<a href="{{ url.url }}" target="_blank">{{ url.url }}</a>
4040
<a href="{{ path('ibexa.link_manager.edit', { urlId: url.id }) }}"
4141
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text mx-2 float-right"
42-
title="{{ 'url.action.edit'|trans|desc('Edit URL') }}">
42+
title="{{ 'url.action.edit'|trans|desc('Edit') }}">
4343
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--edit">
4444
<use xlink:href="{{ ibexa_icon_path('edit') }}"></use>
4545
</svg>
@@ -98,7 +98,7 @@
9898
{% if can_edit %}
9999
<button
100100
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text ibexa-btn--content-edit"
101-
title="{{ 'url.action.item.edit'|trans|desc('Edit content') }}"
101+
title="{{ 'url.action.item.edit'|trans|desc('Edit') }}"
102102
data-content-id="{{ content.id }}"
103103
data-language-code="{{ content.mainLanguageCode }}"
104104
>

src/bundle/Resources/views/themes/admin/section/list.html.twig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@
136136
{ },
137137
],
138138
body_rows,
139-
empty_table_info_text: 'dashboard.tab.my_drafts.empty'|trans|desc('No content. Drafts you create will show up here'),
140139
show_notice: show_table_notice,
141140
notice_message: 'section.list.cannot_delete_notice'|trans|desc('You cannot delete the disabled sections, because they have assigned content.'),
142141
} %}

src/bundle/Resources/views/themes/admin/ui/dashboard/tab/all_media.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
{ content: row.type },
3232
{ content: row.contributor is not null ? row.contributor.name : 'dashboard.table.contributor.not_found'|trans|desc('Can\'t fetch contributor') },
3333
{ content: row.modified|ibexa_full_datetime },
34-
{ has_action_btns: true, content: macros.edit_content_button(row, 'dashboard.table.all.media.edit'|trans|desc('Edit Media')), raw: true },
34+
{ has_action_btns: true, content: macros.edit_content_button(row, 'dashboard.table.all.media.edit'|trans|desc('Edit')), raw: true },
3535
]) %}
3636

3737
{% set body_rows = body_rows|merge([{ cols: body_row_cols }]) %}

src/bundle/Resources/views/themes/admin/ui/dashboard/tab/my_draft_list.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
{% set col_raw %}
2929
<button
3030
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text mx-2 ibexa-btn--content-draft-edit"
31-
title="{{ 'dashboard.table.draft.edit'|trans|desc('Edit Draft') }}"
31+
title="{{ 'dashboard.table.draft.edit'|trans|desc('Edit') }}"
3232
data-content-draft-edit-url="{{ path(content_draft_edit_url, {
3333
'contentId': row.versionInfo.contentInfo.id,
3434
'versionNo': row.versionInfo.versionNo,
@@ -77,7 +77,7 @@
7777
{ },
7878
],
7979
body_rows,
80-
empty_table_info_text: 'dashboard.tab.my_drafts.empty'|trans|desc('No content. Drafts you create will show up here'),
80+
empty_table_info_text: 'dashboard.tab.my_drafts.empty'|trans|desc('You have no drafts yet. Your drafts will show up here.'),
8181
} %}
8282

8383
{% if pager.haveToPaginate %}

src/bundle/Resources/views/themes/admin/ui/dashboard/tab/my_media.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{% set body_row_cols = body_row_cols|merge([
3131
{ content: row.type },
3232
{ content: row.modified|ibexa_full_datetime },
33-
{ has_action_btns: true, content: macros.edit_content_button(row, 'dashboard.table.media.edit'|trans|desc('Edit Media')), raw: true },
33+
{ has_action_btns: true, content: macros.edit_content_button(row, 'dashboard.table.media.edit'|trans|desc('Edit')), raw: true },
3434
]) %}
3535

3636
{% set body_rows = body_rows|merge([{ cols: body_row_cols }]) %}

0 commit comments

Comments
 (0)