Skip to content

Commit f9f6c3e

Browse files
committed
Rename three sidebar entries for consistency
- Expression Binding -> Expressions - Translation, i18n -> Translation - follow_up_action -> Follow-up Action H1 titles updated to match. Body references to the underlying UI5 concept and the obsolete method name are kept verbatim.
1 parent df0b992 commit f9f6c3e

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/.vitepress/config.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export default defineConfig({
141141
text: "Binding",
142142
link: "/cookbook/model/binding",
143143
items: [
144-
{ text: "Expression Binding", link: "/cookbook/model/expression_binding" },
144+
{ text: "Expressions", link: "/cookbook/model/expression_binding" },
145145
{ text: "Formatter", link: "/cookbook/model/formatter" },
146146
],
147147
},
@@ -187,7 +187,7 @@ export default defineConfig({
187187
items: [
188188
{ text: "Message", link: "/cookbook/translation_messages/message" },
189189
{ text: "Logging", link: "/cookbook/translation_messages/logging" },
190-
{ text: "Translation, i18n", link: "/cookbook/translation_messages/translation_i18n" },
190+
{ text: "Translation", link: "/cookbook/translation_messages/translation_i18n" },
191191
],
192192
},
193193
{
@@ -284,7 +284,7 @@ export default defineConfig({
284284
items: [
285285
{ text: "Custom Controls", link: "/cookbook/expert_more/custom_controls" },
286286
{ text: "Custom JS", link: "/cookbook/expert_more/custom_js" },
287-
{ text: "follow_up_action", link: "/cookbook/expert_more/follow_up_action" },
287+
{ text: "Follow-up Action", link: "/cookbook/expert_more/follow_up_action" },
288288
],
289289
},
290290
],

docs/cookbook/expert_more/follow_up_action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# follow_up_action (Obsolete)
4+
# Follow-up Action (Obsolete)
55

66
::: warning Do Not Use Anymore
77
`client->follow_up_action( )` is obsolete. Use `client->action( )` instead. It works the same way, but **does not allow sending arbitrary JavaScript to the frontend** — which is exactly why `follow_up_action` was deprecated. See [Custom JS](/cookbook/expert_more/custom_js) for the full reasoning behind removing direct JS execution.

docs/cookbook/model/expression_binding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Expression Binding
4+
# Expressions
55

66
Expression Binding lets you compute values directly in XML views with JavaScript-like expressions. This is especially handy in abap2UI5, since it cuts server roundtrips by moving calculations, logical conditions, and string operations to the frontend.
77

docs/cookbook/translation_messages/translation_i18n.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Translation, i18n
4+
# Translation
55

66
Standard UI5 apps handle translations with i18n files stored as frontend artifacts. Since abap2UI5 apps live entirely on the ABAP backend, use ABAP's built-in translation tools instead — text elements, message classes, or data element descriptions.
77

0 commit comments

Comments
 (0)