Skip to content

Commit

Permalink
Provide more hierarchy to menu language keys (CFM-174)
Browse files Browse the repository at this point in the history
  • Loading branch information
arlen committed Jun 23, 2022
1 parent a16690b commit d14d22f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
28 changes: 14 additions & 14 deletions app/resources/locales/en_US/menu.po
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ msgstr "Config"
msgid "co.connections"
msgstr "Connections"

msgid "co.external.source.records"
msgstr "External Source Records"

msgid "co.external.source.records.desc"
msgstr "See and manage information from your external sources"

msgid "co.lifecycle"
msgstr "Lifecycle"

Expand All @@ -48,22 +42,28 @@ msgstr "Groups"
msgid "co.people"
msgstr "People"

msgid "co.people.enrollments.pending"
msgstr "Pending Enrollments"

msgid "co.people.enrollments.pending.desc"
msgstr "See and manage in-progress enrollments (CO Petitions)"

msgid "co.people.external.source.records"
msgstr "External Source Records"

msgid "co.people.external.source.records.desc"
msgstr "See and manage information from your external sources"

msgid "co.people.panel.title"
msgstr "People"

msgid "co.people.panel.desc"
msgstr "COmanage Registry is a registry for people. This section contains the basic building blocks for modeling and managing people in COmanage."

msgid "co.pending.enrollments"
msgstr "Pending Enrollments"

msgid "co.pending.enrollments.desc"
msgstr "See and manage in-progress enrollments (CO Petitions)"

msgid "co.population"
msgid "co.people.population"
msgstr "My Population"

msgid "co.population.desc"
msgid "co.people.population.desc"
msgstr "Review and manage people in your collaboration (CO Person Records)"

msgid "co.structure"
Expand Down
12 changes: 6 additions & 6 deletions app/templates/element/menuPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
?>
<a href="<?= $menuUrl ?>" class="menu-panel-primary-link">
<div class="menu-panel-primary-link-text">
<h3><?= __d('menu','co.population') ?></h3>
<div class="menu-panel-link-desc"><?= __d('menu','co.population.desc') ?></div>
<h3><?= __d('menu','co.people.population') ?></h3>
<div class="menu-panel-link-desc"><?= __d('menu','co.people.population.desc') ?></div>
</div>
</a>
</li>
Expand All @@ -64,8 +64,8 @@
?>
<a href="<?= $menuUrl ?>" class="menu-panel-primary-link">
<div class="menu-panel-primary-link-text">
<h3><?= __d('menu','co.pending.enrollments') ?></h3>
<div class="menu-panel-link-desc"><?= __d('menu','co.pending.enrollments.desc') ?></div>
<h3><?= __d('menu','co.people.enrollments.pending') ?></h3>
<div class="menu-panel-link-desc"><?= __d('menu','co.people.enrollments.pending.desc') ?></div>
</div>
</a>
</li>
Expand All @@ -82,8 +82,8 @@
?>
<a href="<?= $menuUrl ?>" class="menu-panel-primary-link">
<div class="menu-panel-primary-link-text">
<h3><?= __d('menu','co.external.source.records') ?></h3>
<div class="menu-panel-link-desc"><?= __d('menu','co.external.source.records.desc') ?></div>
<h3><?= __d('menu','co.people.external.source.records') ?></h3>
<div class="menu-panel-link-desc"><?= __d('menu','co.people.external.source.records.desc') ?></div>
</div>
</a>
</li>
Expand Down

0 comments on commit d14d22f

Please sign in to comment.