mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 01:16:12 +01:00
[TASK] Restructure the label keys (#863)
Label keys should be specific to their context. This allows having different labels for the same thing in different contexts (e.g., having different headings for the tea title in the regular list view and the FE editor). We take the plugin as the context here, which allows us to reuse labels between different actions of the same plugin (e.g., between the list view and single view).
This commit is contained in:
parent
a833789085
commit
bb2476d783
3 changed files with 9 additions and 9 deletions
|
@ -11,15 +11,15 @@
|
|||
<source>Tea single view</source>
|
||||
<target>Tee-Einzelansicht</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="index.heading">
|
||||
<trans-unit id="plugin.tea.heading">
|
||||
<source>Our selection of assorted teas</source>
|
||||
<target>Unsere Auswahl an erlesenen Tees</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="tx_tea_domain_model_product_tea.uid">
|
||||
<trans-unit id="plugin.tea.property.uid">
|
||||
<source>UID</source>
|
||||
<target>UID</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="tx_tea_domain_model_product_tea.title">
|
||||
<trans-unit id="plugin.tea.property.title">
|
||||
<source>Title</source>
|
||||
<target>Titel</target>
|
||||
</trans-unit>
|
||||
|
|
|
@ -9,13 +9,13 @@
|
|||
<trans-unit id="plugin.tea_show">
|
||||
<source>Tea single view</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="index.heading">
|
||||
<trans-unit id="plugin.tea.heading">
|
||||
<source>Our selection of assorted teas</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="tx_tea_domain_model_product_tea.uid">
|
||||
<trans-unit id="plugin.tea.property.uid">
|
||||
<source>UID</source>
|
||||
</trans-unit>
|
||||
<trans-unit id="tx_tea_domain_model_product_tea.title">
|
||||
<trans-unit id="plugin.tea.property.title">
|
||||
<source>Title</source>
|
||||
</trans-unit>
|
||||
</body>
|
||||
|
|
|
@ -4,17 +4,17 @@
|
|||
|
||||
<f:section name="main">
|
||||
<h2>
|
||||
<f:translate key="index.heading"/>
|
||||
<f:translate key="plugin.tea.heading"/>
|
||||
</h2>
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<f:translate key="tx_tea_domain_model_product_tea.uid"/>
|
||||
<f:translate key="plugin.tea.property.uid"/>
|
||||
</th>
|
||||
<th>
|
||||
<f:translate key="tx_tea_domain_model_product_tea.title"/>
|
||||
<f:translate key="plugin.tea.property.title"/>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
Loading…
Reference in a new issue