-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into pethers/update-admin-constants
- Loading branch information
Showing
73 changed files
with
2,754 additions
and
2,204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
...ck23/cia/web/impl/ui/application/views/common/menufactory/api/MenuItemAdminConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package com.hack23.cia.web.impl.ui.application.views.common.menufactory.api; | ||
|
||
/** | ||
* The Interface MenuItemAdminConstants. | ||
*/ | ||
public interface MenuItemAdminConstants { | ||
|
||
/** The admin text. */ | ||
String ADMIN_TEXT = "Admin"; | ||
|
||
/** The agency. */ | ||
String AGENCY = "Agency"; | ||
|
||
/** The agent operations text. */ | ||
String AGENT_OPERATIONS_TEXT = "Agent operations"; | ||
|
||
/** The application. */ | ||
String APPLICATION = "Application"; | ||
|
||
/** The application configuration. */ | ||
String APPLICATION_CONFIGURATION = "System settings"; | ||
|
||
/** The application event. */ | ||
String APPLICATION_EVENT = "Application Event"; | ||
|
||
/** The application event charts. */ | ||
String APPLICATION_EVENT_CHARTS = "Application Event charts"; | ||
|
||
/** The application session. */ | ||
String APPLICATION_SESSION = "Application Session"; | ||
|
||
/** The application session charts. */ | ||
String APPLICATION_SESSION_CHARTS = "Active Daily Users"; | ||
|
||
/** The system performance. */ | ||
String SYSTEM_PERFORMANCE = "System Performance"; | ||
|
||
/** The management. */ | ||
String MANAGEMENT = "Management"; | ||
|
||
/** The configuration. */ | ||
String CONFIGURATION = "Configuration"; | ||
|
||
/** The portal. */ | ||
String PORTAL = "Portal"; | ||
|
||
/** The email. */ | ||
String EMAIL = "Email"; | ||
|
||
/** The language. */ | ||
String LANGUAGE = "Language"; | ||
|
||
|
||
/** The Constant DATA_AUTHOR_SUMMARY. */ | ||
String DATA_AUTHOR_SUMMARY = "Data author summary"; | ||
|
||
/** The Constant DATA_SUMMARY_TEXT. */ | ||
String DATA_SUMMARY_TEXT = "Data Summary"; | ||
|
||
|
||
|
||
} |
50 changes: 50 additions & 0 deletions
50
.../cia/web/impl/ui/application/views/common/menufactory/api/MenuItemCommitteeConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package com.hack23.cia.web.impl.ui.application.views.common.menufactory.api; | ||
|
||
/** | ||
* Constants for committee-related menu items. | ||
*/ | ||
public interface MenuItemCommitteeConstants { | ||
|
||
/** The committee ranking text. */ | ||
// Base committee labels | ||
String COMMITTEE_RANKING_TEXT = "Committee Ranking"; | ||
|
||
/** The committee roles. */ | ||
String COMMITTEE_ROLES = "Committee Roles"; | ||
|
||
/** The committees link text. */ | ||
String COMMITTEES_LINK_TEXT = "Committees"; | ||
|
||
/** The committee ranking description. */ | ||
// Committee descriptions | ||
String COMMITTEE_RANKING_DESCRIPTION = "Committees: shaping policy debates."; | ||
|
||
/** The committees description. */ | ||
String COMMITTEES_DESCRIPTION = "All committees: roles and responsibilities."; | ||
|
||
/** The committee roles description. */ | ||
String COMMITTEE_ROLES_DESCRIPTION = "Committee roles description"; | ||
|
||
/** The page visit history description. */ | ||
String PAGE_VISIT_HISTORY_DESCRIPTION = "View history of page visit for this page."; | ||
|
||
/** The documents text. */ | ||
// Document and ballot related | ||
String DOCUMENTS_TEXT = "Documents"; | ||
|
||
/** The ballots text. */ | ||
String BALLOTS_TEXT = "Ballots"; | ||
|
||
/** The ballot decision summary text. */ | ||
String BALLOT_DECISION_SUMMARY_TEXT = "Ballot Decision Summary"; | ||
|
||
/** The current committees text. */ | ||
// Other committee constants | ||
String CURRENT_COMMITTEES_TEXT = "Current Committees"; | ||
|
||
/** The committee history text. */ | ||
String COMMITTEE_HISTORY_TEXT = "Committee History"; | ||
|
||
/** The committee details text. */ | ||
String COMMITTEE_DETAILS_TEXT = "Committee Details"; | ||
} |
Oops, something went wrong.