Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/DATT/GWT/App/src/org/litesoft/datt/client/ui/views/home/Home.java

Diff revisions: vs.
  @@ -90,10 +90,10 @@
90 90 populateSections_ProjectAdmin( zSections );
91 91 break;
92 92 }
93 - Widget zRestrictedResource = createButton( ADMIN_SITE_MANAGEMENT );
93 + Widget zRestrictedResource = createButton( ADMIN_RESTRICTED_RESOURCE_MANAGEMENT );
94 94 if ( zRestrictedResource == null )
95 95 {
96 - zRestrictedResource = createButton( ADMIN_SITE_EDITOR );
96 + zRestrictedResource = createButton( ADMIN_RESTRICTED_RESOURCE_EDITOR );
97 97 }
98 98 zSections.add( createSection( HOME_SECTION_ADMIN, zRestrictedResource, ADMIN_CHANGE_PASSWORD, ADMIN_MY_PROFILE, ADMIN_REPORTS, ADMIN_USERS ) );
99 99 zSections.add( createSection( HOME_SECTION_HOME_SWITCH_VIEW, createSwitchHomeButtons( zUser.getCurrentRestrictedResourceAllowedRoles(), zLastRole ) ) );
  @@ -156,29 +156,28 @@
156 156
157 157 private void populateSections_EndUser( List<Widget> pSections )
158 158 {
159 - pSections.add( createSection( "APPLICANT", ENDUSERS_SAMPLE ) );
159 + pSections.add( createSection( "END USERS", ENDUSERS_SAMPLE ) );
160 160 }
161 161
162 162 private void populateSections_EndUserManager( List<Widget> pSections )
163 163 {
164 - pSections.add( createSection( "LEASING AGENT", ENDUSERMANAGERS_SAMPLE ) );
164 + pSections.add( createSection( "END USER MANAGER", ENDUSERMANAGERS_SAMPLE ) );
165 165 }
166 166
167 167 private void populateSections_Developer( List<Widget> pSections )
168 168 {
169 - pSections.add( createSection( "ON SITE PROPERTY MANAGER", DEVELOPERS_SAMPLE ) );
169 + pSections.add( createSection( "DEVELOPER", DEVELOPERS_SAMPLE ) );
170 170 }
171 171
172 172 private void populateSections_Customer( List<Widget> pSections )
173 173 {
174 - pSections.add( createSection( "VENDOR EMPLOYEE", CUSTOMERS_SAMPLE ) );
174 + pSections.add( createSection( "CUSTOMER", CUSTOMERS_SAMPLE ) );
175 175 }
176 176
177 177 private void populateSections_ProjectAdmin( List<Widget> pSections )
178 178 {
179 - pSections.add( createSection( "PROPERTY MANAGEMENT FIRM EMPLOYEE", PROJECTADMINS_SAMPLE ) );
179 + pSections.add( createSection( "PROJECT ADMINISTRATOR", PROJECTADMINS_SAMPLE ) );
180 180 }
181 -
182 181 }.build() );
183 182 }
184 183 }