Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBX-8283: Added missing translations #370

Merged
merged 1 commit into from
May 14, 2024
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
30 changes: 30 additions & 0 deletions src/bundle/Core/Resources/translations/forms.en.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>
</header>
<body>
<trans-unit id="d4690e1d0c7d2cf0468ab5aa04caa891e1b5efbd" resname="role.policy.all_modules_all_functions">
<source>All modules / All functions</source>
<target state="new">All modules / All functions</target>
<note>key: role.policy.all_modules_all_functions</note>
</trans-unit>
<trans-unit id="f52e45b25ff70b3d1d07c57911ceda58dcdf7431" resname="role.policy.class">
<source>Content type</source>
<target>Content type</target>
Expand Down Expand Up @@ -131,6 +136,11 @@
<target>Content / Version remove</target>
<note>key: role.policy.content.versionremove</note>
</trans-unit>
<trans-unit id="81703573067457c42db3d0c8cce70e1d1e0128a5" resname="role.policy.content.view_embed">
<source>Content / View embed</source>
<target state="new">Content / View embed</target>
<note>key: role.policy.content.view_embed</note>
</trans-unit>
<trans-unit id="6ff0bcc1b70d0dbde113af7649393f667612cace" resname="role.policy.role">
<source>Role</source>
<target>Role</target>
Expand Down Expand Up @@ -266,6 +276,26 @@
<target>State / Assign</target>
<note>key: role.policy.state.assign</note>
</trans-unit>
<trans-unit id="73c3d3a21c7264a991abf4e6ffe68751a1dbdb58" resname="role.policy.url">
<source>URL</source>
<target state="new">URL</target>
<note>key: role.policy.url</note>
</trans-unit>
<trans-unit id="4b00222e7c5b268480fe9db2de1744d0f25b677f" resname="role.policy.url.all_functions">
<source>URL / All functions</source>
<target state="new">URL / All functions</target>
<note>key: role.policy.url.all_functions</note>
</trans-unit>
<trans-unit id="4bf7f289b67892bf61f10b4f9a1db7b6dc09e69a" resname="role.policy.url.update">
<source>URL / Update</source>
<target state="new">URL / Update</target>
<note>key: role.policy.url.update</note>
</trans-unit>
<trans-unit id="a9e0e8261157424542b507b9ae39b4e1193d24cd" resname="role.policy.url.view">
<source>URL / View</source>
<target state="new">URL / View</target>
<note>key: role.policy.url.view</note>
</trans-unit>
<trans-unit id="78b9d0d52e636ef2d0d1f919de16154404c2be0f" resname="role.policy.user">
<source>User</source>
<target>User</target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ final class PolicyTranslationDefinitionProvider implements TranslationContainerI
public static function getTranslationMessages(): array
{
return [
(new Message('role.policy.all_modules_all_functions', self::TRANSLATION_DOMAIN))
->setDesc('All modules / All functions'),
(new Message('role.policy.content', self::TRANSLATION_DOMAIN))
->setDesc('Content'),
(new Message('role.policy.content.all_functions', self::TRANSLATION_DOMAIN))
Expand All @@ -35,6 +37,8 @@ public static function getTranslationMessages(): array
->setDesc('Content / Edit'),
(new Message('role.policy.content.hide', self::TRANSLATION_DOMAIN))
->setDesc('Content / Hide'),
(new Message('role.policy.content.view_embed', self::TRANSLATION_DOMAIN))
->setDesc('Content / View embed'),
(new Message('role.policy.content.manage_locations', self::TRANSLATION_DOMAIN))
->setDesc('Content / Manage locations'),
(new Message('role.policy.content.pendinglist', self::TRANSLATION_DOMAIN))
Expand Down Expand Up @@ -121,6 +125,15 @@ public static function getTranslationMessages(): array
(new Message('role.policy.setup.system_info', self::TRANSLATION_DOMAIN))
->setDesc('Setup / System info'),

(new Message('role.policy.url', self::TRANSLATION_DOMAIN))
->setDesc('URL'),
(new Message('role.policy.url.all_functions', self::TRANSLATION_DOMAIN))
->setDesc('URL / All functions'),
(new Message('role.policy.url.view', self::TRANSLATION_DOMAIN))
->setDesc('URL / View'),
(new Message('role.policy.url.update', self::TRANSLATION_DOMAIN))
->setDesc('URL / Update'),

(new Message('role.policy.user', self::TRANSLATION_DOMAIN))
->setDesc('User'),
(new Message('role.policy.user.all_functions', self::TRANSLATION_DOMAIN))
Expand Down
Loading