├── .gitignore ├── LICENSE ├── component ├── common │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── platform │ │ │ │ ├── common │ │ │ │ ├── account │ │ │ │ │ └── setup │ │ │ │ │ │ ├── rest │ │ │ │ │ │ └── WelcomeScreenRestService.java │ │ │ │ │ │ └── web │ │ │ │ │ │ ├── AccountSetup.java │ │ │ │ │ │ ├── AccountSetupFilter.java │ │ │ │ │ │ ├── AccountSetupService.java │ │ │ │ │ │ ├── AccountSetupViewServlet.java │ │ │ │ │ │ ├── PingBackService.java │ │ │ │ │ │ └── PingBackServlet.java │ │ │ │ ├── branding │ │ │ │ │ ├── Branding.java │ │ │ │ │ ├── BrandingRestResourcesV1.java │ │ │ │ │ ├── BrandingService.java │ │ │ │ │ ├── BrandingServiceImpl.java │ │ │ │ │ ├── BrandingUpgradePlugin.java │ │ │ │ │ └── Logo.java │ │ │ │ ├── container │ │ │ │ │ └── ExtendedPropertyConfigurator.java │ │ │ │ ├── module │ │ │ │ │ ├── Module.java │ │ │ │ │ ├── ModulePlugin.java │ │ │ │ │ └── ModuleRegistry.java │ │ │ │ ├── navigation │ │ │ │ │ ├── NavigationServiceHandler.java │ │ │ │ │ └── NavigationUtils.java │ │ │ │ ├── portlet │ │ │ │ │ └── PortletDisablerFilter.java │ │ │ │ ├── rest │ │ │ │ │ ├── PlatformInformationRESTService.java │ │ │ │ │ ├── RESTUserService.java │ │ │ │ │ └── services │ │ │ │ │ │ ├── CalendarPortlet │ │ │ │ │ │ └── CalendarPortletRestService.java │ │ │ │ │ │ ├── FeatureToggles │ │ │ │ │ │ └── FeatureTogglesRestService.java │ │ │ │ │ │ ├── GettingStarted │ │ │ │ │ │ ├── DeleteGadgetService.java │ │ │ │ │ │ └── GettingStartedRestService.java │ │ │ │ │ │ ├── InvitationsPortlet │ │ │ │ │ │ └── PeopleAndSpacesRestService.java │ │ │ │ │ │ ├── SuggestPeoplePortlet │ │ │ │ │ │ └── PeopleRestServices.java │ │ │ │ │ │ └── SuggestSpacesPortlet │ │ │ │ │ │ └── SpaceRestServices.java │ │ │ │ ├── service │ │ │ │ │ ├── MenuConfiguratorService.java │ │ │ │ │ └── plugin │ │ │ │ │ │ ├── MenuConfiguratorAddNodePlugin.java │ │ │ │ │ │ └── MenuConfiguratorRemoveNodePlugin.java │ │ │ │ ├── software │ │ │ │ │ └── register │ │ │ │ │ │ ├── UnlockService.java │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ └── SoftwareRegistration.java │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── RestPLFRegistration.java │ │ │ │ │ │ ├── SoftwareRegistrationService.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── SoftwareRegistrationServiceImpl.java │ │ │ │ │ │ └── web │ │ │ │ │ │ ├── SoftwareRegisterActionServlet.java │ │ │ │ │ │ ├── SoftwareRegisterAuthViewServlet.java │ │ │ │ │ │ ├── SoftwareRegisterFilter.java │ │ │ │ │ │ ├── SoftwareRegisterViewServlet.java │ │ │ │ │ │ ├── UnlockFilter.java │ │ │ │ │ │ └── UnlockServlet.java │ │ │ │ └── space │ │ │ │ │ ├── SpaceCustomizationService.java │ │ │ │ │ ├── listeners │ │ │ │ │ ├── CustomizeSpaceDriveListener.java │ │ │ │ │ └── CustomizeSpaceHomePageListener.java │ │ │ │ │ ├── plugin │ │ │ │ │ └── XMLDeploymentPlugin.java │ │ │ │ │ └── rest │ │ │ │ │ └── SpaceRestServiceImpl.java │ │ │ │ └── gadget │ │ │ │ └── services │ │ │ │ ├── Bookmark │ │ │ │ └── BookmarkRestService.java │ │ │ │ ├── ForumStatistics │ │ │ │ ├── ForumRestService.java │ │ │ │ ├── ForumsIntranetService.java │ │ │ │ ├── ForumsIntranetServiceImp.java │ │ │ │ ├── ForumsWeeklyStatistic.java │ │ │ │ ├── ForumsWeeklyStatisticJob.java │ │ │ │ ├── ForumsWeeklyStatisticService.java │ │ │ │ ├── ForumsWeeklyStatisticServiceImp.java │ │ │ │ ├── MessageBean.java │ │ │ │ └── TopicBean.java │ │ │ │ ├── GroovyScript2RestLoader │ │ │ │ └── GroovyScript2RestLoaderExt.java │ │ │ │ ├── Invitations │ │ │ │ ├── InvitationsRestServices.java │ │ │ │ └── Relation.java │ │ │ │ ├── LoginHistory │ │ │ │ ├── LastLoginBean.java │ │ │ │ ├── LoginCounterBean.java │ │ │ │ ├── LoginHistoryBean.java │ │ │ │ ├── LoginHistoryListener.java │ │ │ │ ├── LoginHistoryPlugin.java │ │ │ │ ├── LoginHistoryRestService.java │ │ │ │ ├── LoginHistoryService.java │ │ │ │ ├── LoginHistoryServiceImpl.java │ │ │ │ ├── LoginHistoryUpgradePlugin.java │ │ │ │ ├── jpa │ │ │ │ │ ├── dao │ │ │ │ │ │ └── LoginHistoryDAO.java │ │ │ │ │ └── entity │ │ │ │ │ │ └── LoginHistoryEntity.java │ │ │ │ └── storage │ │ │ │ │ ├── JCRLoginHistoryStorageImpl.java │ │ │ │ │ ├── JPALoginHistoryStorageImpl.java │ │ │ │ │ └── LoginHistoryStorage.java │ │ │ │ ├── Online │ │ │ │ └── OnlineRestService.java │ │ │ │ ├── favorite │ │ │ │ └── FavoriteRESTService.java │ │ │ │ └── newspaces │ │ │ │ ├── IntranetSpace.java │ │ │ │ ├── IntranetSpaceService.java │ │ │ │ ├── IntranetSpaceServiceImpl.java │ │ │ │ └── NewSpaceRestService.java │ │ └── resources │ │ │ ├── conf │ │ │ ├── configuration.xml │ │ │ └── portal │ │ │ │ ├── configuration.xml │ │ │ │ ├── jcr │ │ │ │ ├── forumStatistics-nodetypes.xml │ │ │ │ └── loginHistory-nodetypes.xml │ │ │ │ └── setup-navigation.xml │ │ │ ├── db │ │ │ └── changelog │ │ │ │ └── loginhistory.db.changelog-1.0.0.xml │ │ │ └── logo │ │ │ └── DefaultLogo.png │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ ├── commons │ │ │ └── platform │ │ │ │ └── modules │ │ │ │ └── TestModuleRegistry.java │ │ │ ├── mock │ │ │ └── DummyDependantComponent.java │ │ │ └── platform │ │ │ ├── common │ │ │ ├── account │ │ │ │ └── setup │ │ │ │ │ └── web │ │ │ │ │ └── AccountSetupServiceTest.java │ │ │ ├── branding │ │ │ │ └── BrandingServiceImplTest.java │ │ │ └── rest │ │ │ │ ├── RESTUserServiceTest.java │ │ │ │ ├── SpaceRestServiceTest.java │ │ │ │ ├── branding │ │ │ │ └── BrandingRestResourcesTest.java │ │ │ │ └── services │ │ │ │ ├── BaseRestServicesTestCase.java │ │ │ │ ├── CalendarPortlet │ │ │ │ ├── MockCalendarService.java │ │ │ │ ├── MockOrganizationService.java │ │ │ │ ├── MockSettingService.java │ │ │ │ └── TestCalendarPortletRestService.java │ │ │ │ ├── SuggestPeoplePortlet │ │ │ │ └── TestPeopleRestServices.java │ │ │ │ └── SuggestSpacesPortlet │ │ │ │ └── TestSpaceRestServices.java │ │ │ └── gadget │ │ │ └── services │ │ │ ├── ForumStatistics │ │ │ └── ForumStatisticsWsTest.java │ │ │ └── LoginHistory │ │ │ ├── LoginHistoryListenerTest.java │ │ │ ├── LoginHistoryUpgradePluginTest.java │ │ │ └── LoginHistoryWsTest.java │ │ └── resources │ │ ├── branding │ │ └── logo.png │ │ └── conf │ │ ├── configuration.properties │ │ ├── configuration.xml │ │ ├── data │ │ └── product.properties │ │ ├── jcr │ │ ├── test-forum-nodetypes.xml │ │ ├── test-jcr-configuration.xml │ │ ├── test-nodetypes-config.xml │ │ └── test-repository-configuration.xml │ │ ├── portal │ │ └── test-configuration.xml │ │ └── standalone │ │ └── exo.platform.test-configuration.xml ├── edition │ ├── community │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── platform │ │ │ └── edition │ │ │ └── PlatformEdition.java │ ├── enterprise │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── platform │ │ │ └── edition │ │ │ └── PlatformEdition.java │ └── pom.xml ├── jmxclient │ ├── pom.xml │ └── src │ │ └── main │ │ ├── assembly │ │ └── jmxclient-distribution.xml │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── platform │ │ │ └── component │ │ │ └── jmxclient │ │ │ ├── CommandArguments.java │ │ │ └── CommandHandler.java │ │ └── resources │ │ └── README.txt ├── oauth-auth │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── oauth │ │ │ ├── OAuthConst.java │ │ │ ├── filter │ │ │ ├── OAuthAbstractFilter.java │ │ │ ├── OAuthLoginServletFilter.java │ │ │ └── OauthSignupOnflyFilter.java │ │ │ ├── service │ │ │ ├── OAuthRegistrationServices.java │ │ │ └── impl │ │ │ │ └── OAuthRegistrationServicesImpl.java │ │ │ └── webui │ │ │ ├── OAuthLifecycle.java │ │ │ ├── UIOAuthInvitationForm.java │ │ │ └── UIRegisterOAuth.java │ │ └── resources │ │ └── conf │ │ └── portal │ │ └── configuration.xml ├── organization │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── platform │ │ │ │ ├── migration │ │ │ │ ├── DeleteOrganizationIntegrationFoldersUpgradePlugin.java │ │ │ │ ├── EnableUserUpgradePlugin.java │ │ │ │ └── ExternalStoreUpgradePlugin.java │ │ │ │ ├── organization │ │ │ │ ├── externalstore │ │ │ │ │ └── jpa │ │ │ │ │ │ ├── IDMQueueDAO.java │ │ │ │ │ │ ├── IDMQueueEntity.java │ │ │ │ │ │ └── IDMQueueServiceImpl.java │ │ │ │ ├── injector │ │ │ │ │ ├── DataInjectorService.java │ │ │ │ │ ├── DataPlugin.java │ │ │ │ │ ├── JMXDataInjector.java │ │ │ │ │ └── SerializationUtils.java │ │ │ │ └── integration │ │ │ │ │ ├── EventType.java │ │ │ │ │ ├── FirstLoginListener.java │ │ │ │ │ ├── NewGroupListener.java │ │ │ │ │ ├── NewMembershipListener.java │ │ │ │ │ ├── NewProfileListener.java │ │ │ │ │ ├── NewUserListener.java │ │ │ │ │ ├── OrganizationIntegrationJob.java │ │ │ │ │ ├── OrganizationIntegrationService.java │ │ │ │ │ └── Util.java │ │ │ │ └── security │ │ │ │ ├── MD5HexPasswordEncrypter.java │ │ │ │ ├── PasswordEncrypterUserListener.java │ │ │ │ └── PlatformPasswordRecoveryServiceImpl.java │ │ └── resources │ │ │ ├── conf │ │ │ └── portal │ │ │ │ └── configuration.xml │ │ │ └── db │ │ │ └── changelog │ │ │ └── idm.queue.db.changelog-1.0.0.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── platform │ │ │ └── component │ │ │ └── organization │ │ │ └── test │ │ │ ├── TestEnableUserUpgradePlugin.java │ │ │ ├── TestExternalStoreUpgradePlugin.java │ │ │ ├── TestIDMQueueServiceImpl.java │ │ │ ├── TestOrganizationInjector.java │ │ │ └── TestOrganizationIntegration.java │ │ └── resources │ │ └── conf │ │ ├── cache │ │ └── infinispan.xml │ │ ├── configuration.properties │ │ ├── jcr │ │ ├── test-jcr-configuration.xml │ │ ├── test-nodetypes-config.xml │ │ └── test-repository-configuration.xml │ │ ├── mappings │ │ ├── HibernateIdentityObject.hbm.xml │ │ ├── HibernateIdentityObjectAttribute.hbm.xml │ │ ├── HibernateIdentityObjectAttributeBinaryValue.hbm.xml │ │ ├── HibernateIdentityObjectCredential.hbm.xml │ │ ├── HibernateIdentityObjectCredentialBinaryValue.hbm.xml │ │ ├── HibernateIdentityObjectCredentialType.hbm.xml │ │ ├── HibernateIdentityObjectRelationship.hbm.xml │ │ ├── HibernateIdentityObjectRelationshipName.hbm.xml │ │ ├── HibernateIdentityObjectRelationshipType.hbm.xml │ │ ├── HibernateIdentityObjectType.hbm.xml │ │ └── HibernateRealm.hbm.xml │ │ └── portal │ │ ├── idm-configuration.xml │ │ ├── idm-queue-configuration.xml │ │ ├── organization-configuration.xml │ │ ├── picketlink-idm-config.xml │ │ ├── test-configuration.xml │ │ └── test-settings-configuration.xml ├── pom.xml ├── upgrade │ ├── plugins │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── exoplatform │ │ │ │ │ └── platform │ │ │ │ │ └── upgrade │ │ │ │ │ └── plugins │ │ │ │ │ ├── AbstractGadgetToPortletPlugin.java │ │ │ │ │ ├── AnswerPageUpgradePlugin.java │ │ │ │ │ ├── DisableUserUpgradePlugin.java │ │ │ │ │ ├── GadgetUpgrade.java │ │ │ │ │ ├── MixinCleanerUpgradePlugin.java │ │ │ │ │ ├── PCVPortletUpgradePlugin.java │ │ │ │ │ ├── PLFSecureJCRFoldersUpgradePlugin.java │ │ │ │ │ ├── PageUpgradePlugin.java │ │ │ │ │ ├── PlatformUpgradeUtils.java │ │ │ │ │ ├── ProfilePageUpgradePlugin.java │ │ │ │ │ ├── ResumeDigestJobUpgradePlugin.java │ │ │ │ │ ├── UpgradeDefaultSkin.java │ │ │ │ │ ├── UpgradeExoLoginHistoryHome.java │ │ │ │ │ ├── UpgradeGadgetToPortletPlugin.java │ │ │ │ │ ├── UpgradeGroupSiteLayoutPlugin.java │ │ │ │ │ ├── UpgradeNodeTypeSpaceAccessPlugin.java │ │ │ │ │ ├── UpgradeNotifcationNodeTypePlugin.java │ │ │ │ │ ├── UpgradePortalDataPlugin.java │ │ │ │ │ ├── UpgradeProductInfoNodePlugin.java │ │ │ │ │ ├── UpgradeRemoveGadgetPlugin.java │ │ │ │ │ ├── UpgradeSecureJCRFoldersPlugin.java │ │ │ │ │ ├── UpgradeSpaceHomePagePlugin.java │ │ │ │ │ ├── UpgradeUserNotificationSettingPlugin.java │ │ │ │ │ ├── UpgradeUserPortalPlugin.java │ │ │ │ │ └── UpgradeUserSiteLayoutPlugin.java │ │ │ └── resources │ │ │ │ └── conf │ │ │ │ └── platform.properties │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── platform │ │ │ └── upgrade │ │ │ └── plugins │ │ │ ├── PLFSecureJCRFoldersUpgradePluginTest.java │ │ │ └── ResumeDigestJobUpgradePluginTest.java │ ├── pom.xml │ └── sample │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── ecms │ │ │ │ └── upgrade │ │ │ │ └── UpgradeNodeTypesTemplatesService.java │ │ └── resources │ │ │ └── conf │ │ │ └── portal │ │ │ └── configuration.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── ecms │ │ │ └── upgrade │ │ │ └── test │ │ │ └── TestECMSUpgrade.java │ │ └── resources │ │ └── conf │ │ ├── common │ │ └── locales-config.xml │ │ ├── configuration.properties │ │ ├── configuration.xml │ │ ├── dms │ │ ├── artifacts │ │ │ └── templates │ │ │ │ └── file │ │ │ │ ├── dialogs │ │ │ │ ├── admin_dialog.gtmpl │ │ │ │ └── dialog1.gtmpl │ │ │ │ └── views │ │ │ │ ├── admin_view.gtmpl │ │ │ │ └── view1.gtmpl │ │ └── test-templates-configuration.xml │ │ ├── jcr │ │ ├── test-jcr-configuration.xml │ │ ├── test-nodetypes-config.xml │ │ └── test-repository-configuration.xml │ │ ├── portal │ │ └── test-configuration.xml │ │ ├── product_new.properties │ │ └── product_old.properties ├── uxpnavigation │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── platform │ │ │ └── navigation │ │ │ └── component │ │ │ ├── breadcrumb │ │ │ ├── UserNavigationHandlerService.java │ │ │ └── impl │ │ │ │ └── UserNavigationHandlerServiceImpl.java │ │ │ ├── help │ │ │ ├── HelpService.java │ │ │ ├── Helper.java │ │ │ └── impl │ │ │ │ └── HelpServiceImpl.java │ │ │ └── utils │ │ │ └── NavigationUtils.java │ │ └── resources │ │ └── conf │ │ └── portal │ │ └── configuration.xml └── webui │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── org │ │ └── exoplatform │ │ └── platform │ │ └── webui │ │ ├── NavigationURLUtils.java │ │ ├── container │ │ └── UIPinContainer.java │ │ ├── filter │ │ └── IsNotDriveHomeFilter.java │ │ ├── navigation │ │ ├── TreeNode.java │ │ ├── UINavigationManagement.java │ │ ├── UINavigationNodeSelector.java │ │ └── UIPageNodeForm.java │ │ └── templates │ │ ├── PlatformPortalApplication.java │ │ ├── PlatformPortalApplicationFactory.java │ │ ├── PlatformPortletApplication.java │ │ ├── PlatformPortletApplicationFactory.java │ │ ├── PlatformPortletResourceResolver.java │ │ └── PlatformServletResourceResolver.java │ └── resources │ ├── META-INF │ └── services │ │ ├── org.exoplatform.portal.application.PortalApplicationFactory │ │ └── org.exoplatform.webui.application.portlet.PortletApplicationFactory │ └── groovy │ └── platform │ └── webui │ └── containers │ ├── UINavigationManagement.gtmpl │ └── UIPinContainer.gtmpl ├── extension ├── config │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── conf │ │ ├── configuration.xml │ │ └── platform │ │ │ ├── cache │ │ │ └── infinispan │ │ │ │ ├── cluster │ │ │ │ ├── cache-async-config.xml │ │ │ │ └── cache-config.xml │ │ │ │ └── local │ │ │ │ └── cache-config.xml │ │ │ ├── configuration.properties │ │ │ ├── configuration.xml │ │ │ ├── exo-sample.properties │ │ │ ├── jcr │ │ │ └── infinispan │ │ │ │ ├── cluster │ │ │ │ ├── cache-config-portal-system.xml │ │ │ │ ├── cache-config.xml │ │ │ │ ├── indexer-config.xml │ │ │ │ └── lock-config.xml │ │ │ │ └── local │ │ │ │ ├── cache-config-portal-system.xml │ │ │ │ ├── cache-config.xml │ │ │ │ └── lock-config.xml │ │ │ └── jgroups │ │ │ ├── jgroups-jcr-tcp.xml │ │ │ ├── jgroups-jcr-udp.xml │ │ │ ├── jgroups-service-tcp.xml │ │ │ └── jgroups-service-udp.xml │ │ └── db │ │ ├── changelog │ │ └── quartz.db.changelog-1.0.0.xml │ │ └── sql │ │ ├── tables_hsqldb.sql │ │ ├── tables_mysql_innodb.sql │ │ ├── tables_oracle.sql │ │ ├── tables_postgres.sql │ │ └── tables_sqlServer.sql ├── pom.xml ├── portlets │ ├── branding │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── resources │ │ │ │ │ └── locale │ │ │ │ │ │ └── portlet │ │ │ │ │ │ └── branding │ │ │ │ │ │ ├── branding_ar.properties │ │ │ │ │ │ ├── branding_aro.properties │ │ │ │ │ │ ├── branding_az.properties │ │ │ │ │ │ ├── branding_ca.properties │ │ │ │ │ │ ├── branding_ceb.properties │ │ │ │ │ │ ├── branding_cs.properties │ │ │ │ │ │ ├── branding_de.properties │ │ │ │ │ │ ├── branding_el.properties │ │ │ │ │ │ ├── branding_en.properties │ │ │ │ │ │ ├── branding_es_ES.properties │ │ │ │ │ │ ├── branding_eu.properties │ │ │ │ │ │ ├── branding_fa.properties │ │ │ │ │ │ ├── branding_fi.properties │ │ │ │ │ │ ├── branding_fil.properties │ │ │ │ │ │ ├── branding_fr.properties │ │ │ │ │ │ ├── branding_he.properties │ │ │ │ │ │ ├── branding_hi.properties │ │ │ │ │ │ ├── branding_hu.properties │ │ │ │ │ │ ├── branding_in.properties │ │ │ │ │ │ ├── branding_it.properties │ │ │ │ │ │ ├── branding_ja.properties │ │ │ │ │ │ ├── branding_kab.properties │ │ │ │ │ │ ├── branding_ko.properties │ │ │ │ │ │ ├── branding_lt.properties │ │ │ │ │ │ ├── branding_ms.properties │ │ │ │ │ │ ├── branding_nl.properties │ │ │ │ │ │ ├── branding_no.properties │ │ │ │ │ │ ├── branding_pcm.properties │ │ │ │ │ │ ├── branding_pl.properties │ │ │ │ │ │ ├── branding_pt_BR.properties │ │ │ │ │ │ ├── branding_pt_PT.properties │ │ │ │ │ │ ├── branding_ro.properties │ │ │ │ │ │ ├── branding_ru.properties │ │ │ │ │ │ ├── branding_sk.properties │ │ │ │ │ │ ├── branding_sl.properties │ │ │ │ │ │ ├── branding_sq.properties │ │ │ │ │ │ ├── branding_sv_SE.properties │ │ │ │ │ │ ├── branding_th.properties │ │ │ │ │ │ ├── branding_tl.properties │ │ │ │ │ │ ├── branding_tr.properties │ │ │ │ │ │ ├── branding_uk.properties │ │ │ │ │ │ ├── branding_ur_IN.properties │ │ │ │ │ │ ├── branding_vi.properties │ │ │ │ │ │ ├── branding_zh_CN.properties │ │ │ │ │ │ └── branding_zh_TW.properties │ │ │ │ └── webapp │ │ │ │ │ ├── WEB-INF │ │ │ │ │ ├── gatein-resources.xml │ │ │ │ │ ├── portlet.xml │ │ │ │ │ └── web.xml │ │ │ │ │ └── company-branding-app │ │ │ │ │ ├── companyBrandingConstants.js │ │ │ │ │ ├── companyBrandingDirectives.js │ │ │ │ │ ├── companyBrandingServices.js │ │ │ │ │ ├── components │ │ │ │ │ ├── ExoCompanyBranding.vue │ │ │ │ │ ├── initComponents.js │ │ │ │ │ └── modal │ │ │ │ │ │ └── ExoModal.vue │ │ │ │ │ ├── index.html │ │ │ │ │ └── main.js │ │ │ └── test │ │ │ │ ├── globals.js │ │ │ │ └── specs │ │ │ │ └── ExoCompanyBranding.test.js │ │ ├── webpack.common.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js │ ├── homepagePortlets │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── exoplatform │ │ │ │ │ │ └── platform │ │ │ │ │ │ └── portlet │ │ │ │ │ │ └── juzu │ │ │ │ │ │ ├── gettingstarted │ │ │ │ │ │ ├── GettingStarted.java │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── GettingStartedService.java │ │ │ │ │ │ │ └── GettingStartedUtils.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── gettingStarted.gtmpl │ │ │ │ │ │ │ └── gettingStartedList.gtmpl │ │ │ │ │ │ ├── invitations │ │ │ │ │ │ ├── Invitations.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── invitations.gtmpl │ │ │ │ │ │ └── suggestions │ │ │ │ │ │ ├── SuggestionsPeopleSpace.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── list.gtmpl │ │ │ │ ├── resources │ │ │ │ │ └── locale │ │ │ │ │ │ └── portlet │ │ │ │ │ │ ├── calendar │ │ │ │ │ │ ├── calendar_ar.properties │ │ │ │ │ │ ├── calendar_aro.properties │ │ │ │ │ │ ├── calendar_az.properties │ │ │ │ │ │ ├── calendar_ca.properties │ │ │ │ │ │ ├── calendar_ceb.properties │ │ │ │ │ │ ├── calendar_cs.properties │ │ │ │ │ │ ├── calendar_de.properties │ │ │ │ │ │ ├── calendar_el.properties │ │ │ │ │ │ ├── calendar_en.properties │ │ │ │ │ │ ├── calendar_es_ES.properties │ │ │ │ │ │ ├── calendar_eu.properties │ │ │ │ │ │ ├── calendar_fa.properties │ │ │ │ │ │ ├── calendar_fi.properties │ │ │ │ │ │ ├── calendar_fil.properties │ │ │ │ │ │ ├── calendar_fr.properties │ │ │ │ │ │ ├── calendar_he.properties │ │ │ │ │ │ ├── calendar_hi.properties │ │ │ │ │ │ ├── calendar_hu.properties │ │ │ │ │ │ ├── calendar_in.properties │ │ │ │ │ │ ├── calendar_it.properties │ │ │ │ │ │ ├── calendar_ja.properties │ │ │ │ │ │ ├── calendar_kab.properties │ │ │ │ │ │ ├── calendar_ko.properties │ │ │ │ │ │ ├── calendar_lt.properties │ │ │ │ │ │ ├── calendar_ms.properties │ │ │ │ │ │ ├── calendar_nl.properties │ │ │ │ │ │ ├── calendar_no.properties │ │ │ │ │ │ ├── calendar_pcm.properties │ │ │ │ │ │ ├── calendar_pl.properties │ │ │ │ │ │ ├── calendar_pt_BR.properties │ │ │ │ │ │ ├── calendar_pt_PT.properties │ │ │ │ │ │ ├── calendar_ro.properties │ │ │ │ │ │ ├── calendar_ru.properties │ │ │ │ │ │ ├── calendar_sk.properties │ │ │ │ │ │ ├── calendar_sl.properties │ │ │ │ │ │ ├── calendar_sq.properties │ │ │ │ │ │ ├── calendar_sv_SE.properties │ │ │ │ │ │ ├── calendar_th.properties │ │ │ │ │ │ ├── calendar_tl.properties │ │ │ │ │ │ ├── calendar_tr.properties │ │ │ │ │ │ ├── calendar_uk.properties │ │ │ │ │ │ ├── calendar_ur_IN.properties │ │ │ │ │ │ ├── calendar_vi.properties │ │ │ │ │ │ ├── calendar_zh_CN.properties │ │ │ │ │ │ └── calendar_zh_TW.properties │ │ │ │ │ │ ├── gettingStarted │ │ │ │ │ │ ├── gettingStarted_ar.properties │ │ │ │ │ │ ├── gettingStarted_aro.properties │ │ │ │ │ │ ├── gettingStarted_az.properties │ │ │ │ │ │ ├── gettingStarted_ca.properties │ │ │ │ │ │ ├── gettingStarted_ceb.properties │ │ │ │ │ │ ├── gettingStarted_cs.properties │ │ │ │ │ │ ├── gettingStarted_de.properties │ │ │ │ │ │ ├── gettingStarted_el.properties │ │ │ │ │ │ ├── gettingStarted_en.properties │ │ │ │ │ │ ├── gettingStarted_es_ES.properties │ │ │ │ │ │ ├── gettingStarted_eu.properties │ │ │ │ │ │ ├── gettingStarted_fa.properties │ │ │ │ │ │ ├── gettingStarted_fi.properties │ │ │ │ │ │ ├── gettingStarted_fil.properties │ │ │ │ │ │ ├── gettingStarted_fr.properties │ │ │ │ │ │ ├── gettingStarted_he.properties │ │ │ │ │ │ ├── gettingStarted_hi.properties │ │ │ │ │ │ ├── gettingStarted_hu.properties │ │ │ │ │ │ ├── gettingStarted_in.properties │ │ │ │ │ │ ├── gettingStarted_it.properties │ │ │ │ │ │ ├── gettingStarted_ja.properties │ │ │ │ │ │ ├── gettingStarted_kab.properties │ │ │ │ │ │ ├── gettingStarted_ko.properties │ │ │ │ │ │ ├── gettingStarted_lt.properties │ │ │ │ │ │ ├── gettingStarted_ms.properties │ │ │ │ │ │ ├── gettingStarted_nl.properties │ │ │ │ │ │ ├── gettingStarted_no.properties │ │ │ │ │ │ ├── gettingStarted_pcm.properties │ │ │ │ │ │ ├── gettingStarted_pl.properties │ │ │ │ │ │ ├── gettingStarted_pt_BR.properties │ │ │ │ │ │ ├── gettingStarted_pt_PT.properties │ │ │ │ │ │ ├── gettingStarted_ro.properties │ │ │ │ │ │ ├── gettingStarted_ru.properties │ │ │ │ │ │ ├── gettingStarted_sk.properties │ │ │ │ │ │ ├── gettingStarted_sl.properties │ │ │ │ │ │ ├── gettingStarted_sq.properties │ │ │ │ │ │ ├── gettingStarted_sv_SE.properties │ │ │ │ │ │ ├── gettingStarted_th.properties │ │ │ │ │ │ ├── gettingStarted_tl.properties │ │ │ │ │ │ ├── gettingStarted_tr.properties │ │ │ │ │ │ ├── gettingStarted_uk.properties │ │ │ │ │ │ ├── gettingStarted_ur_IN.properties │ │ │ │ │ │ ├── gettingStarted_vi.properties │ │ │ │ │ │ ├── gettingStarted_zh_CN.properties │ │ │ │ │ │ └── gettingStarted_zh_TW.properties │ │ │ │ │ │ ├── invitations │ │ │ │ │ │ ├── invitations_ar.properties │ │ │ │ │ │ ├── invitations_aro.properties │ │ │ │ │ │ ├── invitations_az.properties │ │ │ │ │ │ ├── invitations_ca.properties │ │ │ │ │ │ ├── invitations_ceb.properties │ │ │ │ │ │ ├── invitations_cs.properties │ │ │ │ │ │ ├── invitations_de.properties │ │ │ │ │ │ ├── invitations_el.properties │ │ │ │ │ │ ├── invitations_en.properties │ │ │ │ │ │ ├── invitations_es_ES.properties │ │ │ │ │ │ ├── invitations_eu.properties │ │ │ │ │ │ ├── invitations_fa.properties │ │ │ │ │ │ ├── invitations_fi.properties │ │ │ │ │ │ ├── invitations_fil.properties │ │ │ │ │ │ ├── invitations_fr.properties │ │ │ │ │ │ ├── invitations_he.properties │ │ │ │ │ │ ├── invitations_hi.properties │ │ │ │ │ │ ├── invitations_hu.properties │ │ │ │ │ │ ├── invitations_in.properties │ │ │ │ │ │ ├── invitations_it.properties │ │ │ │ │ │ ├── invitations_ja.properties │ │ │ │ │ │ ├── invitations_kab.properties │ │ │ │ │ │ ├── invitations_ko.properties │ │ │ │ │ │ ├── invitations_lt.properties │ │ │ │ │ │ ├── invitations_ms.properties │ │ │ │ │ │ ├── invitations_nl.properties │ │ │ │ │ │ ├── invitations_no.properties │ │ │ │ │ │ ├── invitations_pcm.properties │ │ │ │ │ │ ├── invitations_pl.properties │ │ │ │ │ │ ├── invitations_pt_BR.properties │ │ │ │ │ │ ├── invitations_pt_PT.properties │ │ │ │ │ │ ├── invitations_ro.properties │ │ │ │ │ │ ├── invitations_ru.properties │ │ │ │ │ │ ├── invitations_sk.properties │ │ │ │ │ │ ├── invitations_sl.properties │ │ │ │ │ │ ├── invitations_sq.properties │ │ │ │ │ │ ├── invitations_sv_SE.properties │ │ │ │ │ │ ├── invitations_th.properties │ │ │ │ │ │ ├── invitations_tl.properties │ │ │ │ │ │ ├── invitations_tr.properties │ │ │ │ │ │ ├── invitations_uk.properties │ │ │ │ │ │ ├── invitations_ur_IN.properties │ │ │ │ │ │ ├── invitations_vi.properties │ │ │ │ │ │ ├── invitations_zh_CN.properties │ │ │ │ │ │ └── invitations_zh_TW.properties │ │ │ │ │ │ ├── suggestions │ │ │ │ │ │ ├── suggestions_ar.properties │ │ │ │ │ │ ├── suggestions_aro.properties │ │ │ │ │ │ ├── suggestions_az.properties │ │ │ │ │ │ ├── suggestions_ca.properties │ │ │ │ │ │ ├── suggestions_ceb.properties │ │ │ │ │ │ ├── suggestions_cs.properties │ │ │ │ │ │ ├── suggestions_de.properties │ │ │ │ │ │ ├── suggestions_el.properties │ │ │ │ │ │ ├── suggestions_en.properties │ │ │ │ │ │ ├── suggestions_es_ES.properties │ │ │ │ │ │ ├── suggestions_eu.properties │ │ │ │ │ │ ├── suggestions_fa.properties │ │ │ │ │ │ ├── suggestions_fi.properties │ │ │ │ │ │ ├── suggestions_fil.properties │ │ │ │ │ │ ├── suggestions_fr.properties │ │ │ │ │ │ ├── suggestions_he.properties │ │ │ │ │ │ ├── suggestions_hi.properties │ │ │ │ │ │ ├── suggestions_hu.properties │ │ │ │ │ │ ├── suggestions_in.properties │ │ │ │ │ │ ├── suggestions_it.properties │ │ │ │ │ │ ├── suggestions_ja.properties │ │ │ │ │ │ ├── suggestions_kab.properties │ │ │ │ │ │ ├── suggestions_ko.properties │ │ │ │ │ │ ├── suggestions_lt.properties │ │ │ │ │ │ ├── suggestions_ms.properties │ │ │ │ │ │ ├── suggestions_nl.properties │ │ │ │ │ │ ├── suggestions_no.properties │ │ │ │ │ │ ├── suggestions_pcm.properties │ │ │ │ │ │ ├── suggestions_pl.properties │ │ │ │ │ │ ├── suggestions_pt_BR.properties │ │ │ │ │ │ ├── suggestions_pt_PT.properties │ │ │ │ │ │ ├── suggestions_ro.properties │ │ │ │ │ │ ├── suggestions_ru.properties │ │ │ │ │ │ ├── suggestions_sk.properties │ │ │ │ │ │ ├── suggestions_sl.properties │ │ │ │ │ │ ├── suggestions_sq.properties │ │ │ │ │ │ ├── suggestions_sv_SE.properties │ │ │ │ │ │ ├── suggestions_th.properties │ │ │ │ │ │ ├── suggestions_tl.properties │ │ │ │ │ │ ├── suggestions_tr.properties │ │ │ │ │ │ ├── suggestions_uk.properties │ │ │ │ │ │ ├── suggestions_ur_IN.properties │ │ │ │ │ │ ├── suggestions_vi.properties │ │ │ │ │ │ ├── suggestions_zh_CN.properties │ │ │ │ │ │ └── suggestions_zh_TW.properties │ │ │ │ │ │ └── whoisonline │ │ │ │ │ │ ├── whoisonline_ar.properties │ │ │ │ │ │ ├── whoisonline_aro.properties │ │ │ │ │ │ ├── whoisonline_az.properties │ │ │ │ │ │ ├── whoisonline_ca.properties │ │ │ │ │ │ ├── whoisonline_ceb.properties │ │ │ │ │ │ ├── whoisonline_cs.properties │ │ │ │ │ │ ├── whoisonline_de.properties │ │ │ │ │ │ ├── whoisonline_el.properties │ │ │ │ │ │ ├── whoisonline_en.properties │ │ │ │ │ │ ├── whoisonline_es_ES.properties │ │ │ │ │ │ ├── whoisonline_eu.properties │ │ │ │ │ │ ├── whoisonline_fa.properties │ │ │ │ │ │ ├── whoisonline_fi.properties │ │ │ │ │ │ ├── whoisonline_fil.properties │ │ │ │ │ │ ├── whoisonline_fr.properties │ │ │ │ │ │ ├── whoisonline_he.properties │ │ │ │ │ │ ├── whoisonline_hi.properties │ │ │ │ │ │ ├── whoisonline_hu.properties │ │ │ │ │ │ ├── whoisonline_in.properties │ │ │ │ │ │ ├── whoisonline_it.properties │ │ │ │ │ │ ├── whoisonline_ja.properties │ │ │ │ │ │ ├── whoisonline_kab.properties │ │ │ │ │ │ ├── whoisonline_ko.properties │ │ │ │ │ │ ├── whoisonline_lt.properties │ │ │ │ │ │ ├── whoisonline_ms.properties │ │ │ │ │ │ ├── whoisonline_nl.properties │ │ │ │ │ │ ├── whoisonline_no.properties │ │ │ │ │ │ ├── whoisonline_pcm.properties │ │ │ │ │ │ ├── whoisonline_pl.properties │ │ │ │ │ │ ├── whoisonline_pt_BR.properties │ │ │ │ │ │ ├── whoisonline_pt_PT.properties │ │ │ │ │ │ ├── whoisonline_ro.properties │ │ │ │ │ │ ├── whoisonline_ru.properties │ │ │ │ │ │ ├── whoisonline_sk.properties │ │ │ │ │ │ ├── whoisonline_sl.properties │ │ │ │ │ │ ├── whoisonline_sq.properties │ │ │ │ │ │ ├── whoisonline_sv_SE.properties │ │ │ │ │ │ ├── whoisonline_th.properties │ │ │ │ │ │ ├── whoisonline_tl.properties │ │ │ │ │ │ ├── whoisonline_tr.properties │ │ │ │ │ │ ├── whoisonline_uk.properties │ │ │ │ │ │ ├── whoisonline_ur_IN.properties │ │ │ │ │ │ ├── whoisonline_vi.properties │ │ │ │ │ │ ├── whoisonline_zh_CN.properties │ │ │ │ │ │ └── whoisonline_zh_TW.properties │ │ │ │ └── webapp │ │ │ │ │ ├── WEB-INF │ │ │ │ │ ├── gatein-resources.xml │ │ │ │ │ ├── portlet.xml │ │ │ │ │ └── web.xml │ │ │ │ │ ├── calendar-home-app │ │ │ │ │ ├── calendarDirectives.js │ │ │ │ │ ├── calendarServices.js │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ExoCalendar.vue │ │ │ │ │ │ ├── ExoCalendarSettings.vue │ │ │ │ │ │ └── initComponents.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── main.js │ │ │ │ │ ├── js │ │ │ │ │ ├── calendar │ │ │ │ │ │ └── calendar.js │ │ │ │ │ ├── eXoConstants.js │ │ │ │ │ ├── gettingstarted │ │ │ │ │ │ └── gettingstarted.js │ │ │ │ │ ├── invitations │ │ │ │ │ │ └── invitations.js │ │ │ │ │ └── suggestions │ │ │ │ │ │ └── suggestions.js │ │ │ │ │ └── who-is-online-app │ │ │ │ │ ├── components │ │ │ │ │ ├── ExoWhoIsOnline.vue │ │ │ │ │ └── initComponents.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.js │ │ │ │ │ └── whoIsOnlineServices.js │ │ │ └── test │ │ │ │ ├── globals.js │ │ │ │ └── specs │ │ │ │ ├── ExoCalendar.test.js │ │ │ │ ├── ExoCalendarSettings.test.js │ │ │ │ └── ExoWhoIsOnline.test.js │ │ ├── webpack.common.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js │ ├── notification │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── platform │ │ │ │ └── portlet │ │ │ │ └── juzu │ │ │ │ └── notificationsAdmin │ │ │ │ ├── NotificationsAdministration.java │ │ │ │ ├── package-info.java │ │ │ │ └── templates │ │ │ │ └── index.gtmpl │ │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ └── notification │ │ │ │ ├── notificationsAdmin_ar.properties │ │ │ │ ├── notificationsAdmin_aro.properties │ │ │ │ ├── notificationsAdmin_az.properties │ │ │ │ ├── notificationsAdmin_ca.properties │ │ │ │ ├── notificationsAdmin_ceb.properties │ │ │ │ ├── notificationsAdmin_cs.properties │ │ │ │ ├── notificationsAdmin_de.properties │ │ │ │ ├── notificationsAdmin_el.properties │ │ │ │ ├── notificationsAdmin_en.properties │ │ │ │ ├── notificationsAdmin_es_ES.properties │ │ │ │ ├── notificationsAdmin_eu.properties │ │ │ │ ├── notificationsAdmin_fa.properties │ │ │ │ ├── notificationsAdmin_fi.properties │ │ │ │ ├── notificationsAdmin_fil.properties │ │ │ │ ├── notificationsAdmin_fr.properties │ │ │ │ ├── notificationsAdmin_he.properties │ │ │ │ ├── notificationsAdmin_hi.properties │ │ │ │ ├── notificationsAdmin_hu.properties │ │ │ │ ├── notificationsAdmin_in.properties │ │ │ │ ├── notificationsAdmin_it.properties │ │ │ │ ├── notificationsAdmin_ja.properties │ │ │ │ ├── notificationsAdmin_kab.properties │ │ │ │ ├── notificationsAdmin_ko.properties │ │ │ │ ├── notificationsAdmin_lt.properties │ │ │ │ ├── notificationsAdmin_ms.properties │ │ │ │ ├── notificationsAdmin_nl.properties │ │ │ │ ├── notificationsAdmin_no.properties │ │ │ │ ├── notificationsAdmin_pcm.properties │ │ │ │ ├── notificationsAdmin_pl.properties │ │ │ │ ├── notificationsAdmin_pt_BR.properties │ │ │ │ ├── notificationsAdmin_pt_PT.properties │ │ │ │ ├── notificationsAdmin_ro.properties │ │ │ │ ├── notificationsAdmin_ru.properties │ │ │ │ ├── notificationsAdmin_sk.properties │ │ │ │ ├── notificationsAdmin_sl.properties │ │ │ │ ├── notificationsAdmin_sq.properties │ │ │ │ ├── notificationsAdmin_sv_SE.properties │ │ │ │ ├── notificationsAdmin_th.properties │ │ │ │ ├── notificationsAdmin_tl.properties │ │ │ │ ├── notificationsAdmin_tr.properties │ │ │ │ ├── notificationsAdmin_uk.properties │ │ │ │ ├── notificationsAdmin_ur_IN.properties │ │ │ │ ├── notificationsAdmin_vi.properties │ │ │ │ ├── notificationsAdmin_zh_CN.properties │ │ │ │ └── notificationsAdmin_zh_TW.properties │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ └── js │ │ │ └── admin │ │ │ └── notificationsAdmin.js │ ├── platformNavigation │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── platform │ │ │ │ └── component │ │ │ │ ├── UIAdminToolbarContainer.java │ │ │ │ ├── UIAdminToolbarPortlet.java │ │ │ │ ├── UIBreadCrumbsNavigationPortlet.java │ │ │ │ ├── UICompanyNavigationPortlet.java │ │ │ │ ├── UICreateForm.java │ │ │ │ ├── UICreateList.java │ │ │ │ ├── UICreatePlatformToolBarPortlet.java │ │ │ │ ├── UIGroupsNavigationPortlet.java │ │ │ │ ├── UIHelpPlatformToolbarPortlet.java │ │ │ │ ├── UINotificationPopoverToolbarPortlet.java │ │ │ │ ├── UIRelationshipAction.java │ │ │ │ ├── UISearchPlatformToolbarPortlet.java │ │ │ │ ├── UISetupPlatformToolBarPortlet.java │ │ │ │ ├── UISpaceNavigationPortlet.java │ │ │ │ ├── UIUploadComponent.java │ │ │ │ ├── UIUserNavigationPortlet.java │ │ │ │ └── UIUserPlatformToolBarPortlet.java │ │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ ├── UIAdminToolbarPortlet │ │ │ │ ├── AdminToolbarPortlet_ar.xml │ │ │ │ ├── AdminToolbarPortlet_aro.xml │ │ │ │ ├── AdminToolbarPortlet_az.xml │ │ │ │ ├── AdminToolbarPortlet_ca.xml │ │ │ │ ├── AdminToolbarPortlet_ceb.xml │ │ │ │ ├── AdminToolbarPortlet_cs.xml │ │ │ │ ├── AdminToolbarPortlet_de.xml │ │ │ │ ├── AdminToolbarPortlet_el.xml │ │ │ │ ├── AdminToolbarPortlet_en.xml │ │ │ │ ├── AdminToolbarPortlet_es_ES.xml │ │ │ │ ├── AdminToolbarPortlet_eu.xml │ │ │ │ ├── AdminToolbarPortlet_fa.xml │ │ │ │ ├── AdminToolbarPortlet_fi.xml │ │ │ │ ├── AdminToolbarPortlet_fil.xml │ │ │ │ ├── AdminToolbarPortlet_fr.xml │ │ │ │ ├── AdminToolbarPortlet_he.xml │ │ │ │ ├── AdminToolbarPortlet_hi.xml │ │ │ │ ├── AdminToolbarPortlet_hu.xml │ │ │ │ ├── AdminToolbarPortlet_in.xml │ │ │ │ ├── AdminToolbarPortlet_it.xml │ │ │ │ ├── AdminToolbarPortlet_ja.xml │ │ │ │ ├── AdminToolbarPortlet_kab.xml │ │ │ │ ├── AdminToolbarPortlet_ko.xml │ │ │ │ ├── AdminToolbarPortlet_lt.xml │ │ │ │ ├── AdminToolbarPortlet_ms.xml │ │ │ │ ├── AdminToolbarPortlet_nl.xml │ │ │ │ ├── AdminToolbarPortlet_no.xml │ │ │ │ ├── AdminToolbarPortlet_pcm.xml │ │ │ │ ├── AdminToolbarPortlet_pl.xml │ │ │ │ ├── AdminToolbarPortlet_pt_BR.xml │ │ │ │ ├── AdminToolbarPortlet_pt_PT.xml │ │ │ │ ├── AdminToolbarPortlet_ro.xml │ │ │ │ ├── AdminToolbarPortlet_ru.xml │ │ │ │ ├── AdminToolbarPortlet_sk.xml │ │ │ │ ├── AdminToolbarPortlet_sl.xml │ │ │ │ ├── AdminToolbarPortlet_sq.xml │ │ │ │ ├── AdminToolbarPortlet_sv_SE.xml │ │ │ │ ├── AdminToolbarPortlet_th.xml │ │ │ │ ├── AdminToolbarPortlet_tl.xml │ │ │ │ ├── AdminToolbarPortlet_tr.xml │ │ │ │ ├── AdminToolbarPortlet_uk.xml │ │ │ │ ├── AdminToolbarPortlet_ur_IN.xml │ │ │ │ ├── AdminToolbarPortlet_vi.xml │ │ │ │ ├── AdminToolbarPortlet_zh_CN.xml │ │ │ │ └── AdminToolbarPortlet_zh_TW.xml │ │ │ │ ├── UICompanyNavigationPortlet │ │ │ │ ├── UICompanyNavigationPortlet_ar.xml │ │ │ │ ├── UICompanyNavigationPortlet_aro.xml │ │ │ │ ├── UICompanyNavigationPortlet_az.xml │ │ │ │ ├── UICompanyNavigationPortlet_ca.xml │ │ │ │ ├── UICompanyNavigationPortlet_ceb.xml │ │ │ │ ├── UICompanyNavigationPortlet_cs.xml │ │ │ │ ├── UICompanyNavigationPortlet_de.xml │ │ │ │ ├── UICompanyNavigationPortlet_el.xml │ │ │ │ ├── UICompanyNavigationPortlet_en.xml │ │ │ │ ├── UICompanyNavigationPortlet_es_ES.xml │ │ │ │ ├── UICompanyNavigationPortlet_eu.xml │ │ │ │ ├── UICompanyNavigationPortlet_fa.xml │ │ │ │ ├── UICompanyNavigationPortlet_fi.xml │ │ │ │ ├── UICompanyNavigationPortlet_fil.xml │ │ │ │ ├── UICompanyNavigationPortlet_fr.xml │ │ │ │ ├── UICompanyNavigationPortlet_he.xml │ │ │ │ ├── UICompanyNavigationPortlet_hi.xml │ │ │ │ ├── UICompanyNavigationPortlet_hu.xml │ │ │ │ ├── UICompanyNavigationPortlet_in.xml │ │ │ │ ├── UICompanyNavigationPortlet_it.xml │ │ │ │ ├── UICompanyNavigationPortlet_ja.xml │ │ │ │ ├── UICompanyNavigationPortlet_kab.xml │ │ │ │ ├── UICompanyNavigationPortlet_ko.xml │ │ │ │ ├── UICompanyNavigationPortlet_lt.xml │ │ │ │ ├── UICompanyNavigationPortlet_ms.xml │ │ │ │ ├── UICompanyNavigationPortlet_nl.xml │ │ │ │ ├── UICompanyNavigationPortlet_no.xml │ │ │ │ ├── UICompanyNavigationPortlet_pcm.xml │ │ │ │ ├── UICompanyNavigationPortlet_pl.xml │ │ │ │ ├── UICompanyNavigationPortlet_pt_BR.xml │ │ │ │ ├── UICompanyNavigationPortlet_pt_PT.xml │ │ │ │ ├── UICompanyNavigationPortlet_ro.xml │ │ │ │ ├── UICompanyNavigationPortlet_ru.xml │ │ │ │ ├── UICompanyNavigationPortlet_sk.xml │ │ │ │ ├── UICompanyNavigationPortlet_sl.xml │ │ │ │ ├── UICompanyNavigationPortlet_sq.xml │ │ │ │ ├── UICompanyNavigationPortlet_sv_SE.xml │ │ │ │ ├── UICompanyNavigationPortlet_th.xml │ │ │ │ ├── UICompanyNavigationPortlet_tl.xml │ │ │ │ ├── UICompanyNavigationPortlet_tr.xml │ │ │ │ ├── UICompanyNavigationPortlet_uk.xml │ │ │ │ ├── UICompanyNavigationPortlet_ur_IN.xml │ │ │ │ ├── UICompanyNavigationPortlet_vi.xml │ │ │ │ ├── UICompanyNavigationPortlet_zh_CN.xml │ │ │ │ └── UICompanyNavigationPortlet_zh_TW.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet │ │ │ │ ├── UICreatePlatformToolBarPortlet_ar.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_aro.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_az.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_ca.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_ceb.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_cs.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_de.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_el.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_en.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_es_ES.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_eu.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_fa.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_fi.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_fil.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_fr.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_he.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_hi.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_hu.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_in.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_it.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_ja.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_kab.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_ko.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_lt.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_ms.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_nl.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_no.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_pcm.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_pl.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_pt_BR.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_pt_PT.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_ro.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_ru.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_sk.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_sl.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_sq.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_sv_SE.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_th.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_tl.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_tr.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_uk.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_ur_IN.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_vi.xml │ │ │ │ ├── UICreatePlatformToolBarPortlet_zh_CN.xml │ │ │ │ └── UICreatePlatformToolBarPortlet_zh_TW.xml │ │ │ │ ├── UIGroupsNavigationPortlet │ │ │ │ ├── UIGroupsNavigationPortlet_ar.xml │ │ │ │ ├── UIGroupsNavigationPortlet_aro.xml │ │ │ │ ├── UIGroupsNavigationPortlet_az.xml │ │ │ │ ├── UIGroupsNavigationPortlet_ca.xml │ │ │ │ ├── UIGroupsNavigationPortlet_ceb.xml │ │ │ │ ├── UIGroupsNavigationPortlet_cs.xml │ │ │ │ ├── UIGroupsNavigationPortlet_de.xml │ │ │ │ ├── UIGroupsNavigationPortlet_el.xml │ │ │ │ ├── UIGroupsNavigationPortlet_en.xml │ │ │ │ ├── UIGroupsNavigationPortlet_es_ES.xml │ │ │ │ ├── UIGroupsNavigationPortlet_eu.xml │ │ │ │ ├── UIGroupsNavigationPortlet_fa.xml │ │ │ │ ├── UIGroupsNavigationPortlet_fi.xml │ │ │ │ ├── UIGroupsNavigationPortlet_fil.xml │ │ │ │ ├── UIGroupsNavigationPortlet_fr.xml │ │ │ │ ├── UIGroupsNavigationPortlet_he.xml │ │ │ │ ├── UIGroupsNavigationPortlet_hi.xml │ │ │ │ ├── UIGroupsNavigationPortlet_hu.xml │ │ │ │ ├── UIGroupsNavigationPortlet_in.xml │ │ │ │ ├── UIGroupsNavigationPortlet_it.xml │ │ │ │ ├── UIGroupsNavigationPortlet_ja.xml │ │ │ │ ├── UIGroupsNavigationPortlet_kab.xml │ │ │ │ ├── UIGroupsNavigationPortlet_ko.xml │ │ │ │ ├── UIGroupsNavigationPortlet_lt.xml │ │ │ │ ├── UIGroupsNavigationPortlet_ms.xml │ │ │ │ ├── UIGroupsNavigationPortlet_nl.xml │ │ │ │ ├── UIGroupsNavigationPortlet_no.xml │ │ │ │ ├── UIGroupsNavigationPortlet_pcm.xml │ │ │ │ ├── UIGroupsNavigationPortlet_pl.xml │ │ │ │ ├── UIGroupsNavigationPortlet_pt_BR.xml │ │ │ │ ├── UIGroupsNavigationPortlet_pt_PT.xml │ │ │ │ ├── UIGroupsNavigationPortlet_ro.xml │ │ │ │ ├── UIGroupsNavigationPortlet_ru.xml │ │ │ │ ├── UIGroupsNavigationPortlet_sk.xml │ │ │ │ ├── UIGroupsNavigationPortlet_sl.xml │ │ │ │ ├── UIGroupsNavigationPortlet_sq.xml │ │ │ │ ├── UIGroupsNavigationPortlet_sv_SE.xml │ │ │ │ ├── UIGroupsNavigationPortlet_th.xml │ │ │ │ ├── UIGroupsNavigationPortlet_tl.xml │ │ │ │ ├── UIGroupsNavigationPortlet_tr.xml │ │ │ │ ├── UIGroupsNavigationPortlet_uk.xml │ │ │ │ ├── UIGroupsNavigationPortlet_ur_IN.xml │ │ │ │ ├── UIGroupsNavigationPortlet_vi.xml │ │ │ │ ├── UIGroupsNavigationPortlet_zh_CN.xml │ │ │ │ └── UIGroupsNavigationPortlet_zh_TW.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ar.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_aro.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_az.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ca.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ceb.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_cs.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_de.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_el.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_en.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_es_ES.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_eu.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_fa.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_fi.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_fil.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_fr.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_he.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_hi.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_hu.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_in.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_it.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ja.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_kab.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ko.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_lt.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ms.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_nl.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_no.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_pcm.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_pl.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_pt_BR.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_pt_PT.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ro.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ru.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_sk.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_sl.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_sq.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_sv_SE.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_th.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_tl.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_tr.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_uk.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_ur_IN.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_vi.xml │ │ │ │ ├── UIHelpPlatformToolbarPortlet_zh_CN.xml │ │ │ │ └── UIHelpPlatformToolbarPortlet_zh_TW.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ar.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_aro.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_az.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ca.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ceb.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_cs.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_de.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_el.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_en.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_es_ES.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_eu.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_fa.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_fi.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_fil.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_fr.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_he.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_hi.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_hu.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_in.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_it.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ja.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_kab.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ko.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_lt.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ms.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_nl.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_no.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_pcm.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_pl.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_pt_BR.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_pt_PT.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ro.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ru.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_sk.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_sl.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_sq.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_sv_SE.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_th.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_tl.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_tr.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_uk.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_ur_IN.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_vi.xml │ │ │ │ ├── UINotificationPopoverToolbarPortlet_zh_CN.xml │ │ │ │ └── UINotificationPopoverToolbarPortlet_zh_TW.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet │ │ │ │ ├── UISearchPlatformToolbarPortlet_ar.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_aro.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_az.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_ca.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_ceb.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_cs.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_de.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_el.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_en.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_es_ES.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_eu.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_fa.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_fi.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_fil.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_fr.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_he.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_hi.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_hu.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_in.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_it.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_ja.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_kab.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_ko.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_lt.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_ms.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_nl.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_no.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_pcm.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_pl.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_pt_BR.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_pt_PT.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_ro.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_ru.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_sk.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_sl.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_sq.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_sv_SE.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_th.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_tl.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_tr.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_uk.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_ur_IN.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_vi.xml │ │ │ │ ├── UISearchPlatformToolbarPortlet_zh_CN.xml │ │ │ │ └── UISearchPlatformToolbarPortlet_zh_TW.xml │ │ │ │ ├── UISpaceNavigationPortlet │ │ │ │ ├── UISpaceNavigationPortlet_ar.xml │ │ │ │ ├── UISpaceNavigationPortlet_aro.xml │ │ │ │ ├── UISpaceNavigationPortlet_az.xml │ │ │ │ ├── UISpaceNavigationPortlet_ca.xml │ │ │ │ ├── UISpaceNavigationPortlet_ceb.xml │ │ │ │ ├── UISpaceNavigationPortlet_cs.xml │ │ │ │ ├── UISpaceNavigationPortlet_de.xml │ │ │ │ ├── UISpaceNavigationPortlet_el.xml │ │ │ │ ├── UISpaceNavigationPortlet_en.xml │ │ │ │ ├── UISpaceNavigationPortlet_es_ES.xml │ │ │ │ ├── UISpaceNavigationPortlet_eu.xml │ │ │ │ ├── UISpaceNavigationPortlet_fa.xml │ │ │ │ ├── UISpaceNavigationPortlet_fi.xml │ │ │ │ ├── UISpaceNavigationPortlet_fil.xml │ │ │ │ ├── UISpaceNavigationPortlet_fr.xml │ │ │ │ ├── UISpaceNavigationPortlet_he.xml │ │ │ │ ├── UISpaceNavigationPortlet_hi.xml │ │ │ │ ├── UISpaceNavigationPortlet_hu.xml │ │ │ │ ├── UISpaceNavigationPortlet_in.xml │ │ │ │ ├── UISpaceNavigationPortlet_it.xml │ │ │ │ ├── UISpaceNavigationPortlet_ja.xml │ │ │ │ ├── UISpaceNavigationPortlet_kab.xml │ │ │ │ ├── UISpaceNavigationPortlet_ko.xml │ │ │ │ ├── UISpaceNavigationPortlet_lt.xml │ │ │ │ ├── UISpaceNavigationPortlet_ms.xml │ │ │ │ ├── UISpaceNavigationPortlet_nl.xml │ │ │ │ ├── UISpaceNavigationPortlet_no.xml │ │ │ │ ├── UISpaceNavigationPortlet_pcm.xml │ │ │ │ ├── UISpaceNavigationPortlet_pl.xml │ │ │ │ ├── UISpaceNavigationPortlet_pt_BR.xml │ │ │ │ ├── UISpaceNavigationPortlet_pt_PT.xml │ │ │ │ ├── UISpaceNavigationPortlet_ro.xml │ │ │ │ ├── UISpaceNavigationPortlet_ru.xml │ │ │ │ ├── UISpaceNavigationPortlet_sk.xml │ │ │ │ ├── UISpaceNavigationPortlet_sl.xml │ │ │ │ ├── UISpaceNavigationPortlet_sq.xml │ │ │ │ ├── UISpaceNavigationPortlet_sv_SE.xml │ │ │ │ ├── UISpaceNavigationPortlet_th.xml │ │ │ │ ├── UISpaceNavigationPortlet_tl.xml │ │ │ │ ├── UISpaceNavigationPortlet_tr.xml │ │ │ │ ├── UISpaceNavigationPortlet_uk.xml │ │ │ │ ├── UISpaceNavigationPortlet_ur_IN.xml │ │ │ │ ├── UISpaceNavigationPortlet_vi.xml │ │ │ │ ├── UISpaceNavigationPortlet_zh_CN.xml │ │ │ │ └── UISpaceNavigationPortlet_zh_TW.xml │ │ │ │ ├── UIUserNavigationPortlet │ │ │ │ ├── UIUserNavigationPortlet_ar.xml │ │ │ │ ├── UIUserNavigationPortlet_aro.xml │ │ │ │ ├── UIUserNavigationPortlet_az.xml │ │ │ │ ├── UIUserNavigationPortlet_ca.xml │ │ │ │ ├── UIUserNavigationPortlet_ceb.xml │ │ │ │ ├── UIUserNavigationPortlet_cs.xml │ │ │ │ ├── UIUserNavigationPortlet_de.xml │ │ │ │ ├── UIUserNavigationPortlet_el.xml │ │ │ │ ├── UIUserNavigationPortlet_en.xml │ │ │ │ ├── UIUserNavigationPortlet_es_ES.xml │ │ │ │ ├── UIUserNavigationPortlet_eu.xml │ │ │ │ ├── UIUserNavigationPortlet_fa.xml │ │ │ │ ├── UIUserNavigationPortlet_fi.xml │ │ │ │ ├── UIUserNavigationPortlet_fil.xml │ │ │ │ ├── UIUserNavigationPortlet_fr.xml │ │ │ │ ├── UIUserNavigationPortlet_he.xml │ │ │ │ ├── UIUserNavigationPortlet_hi.xml │ │ │ │ ├── UIUserNavigationPortlet_hu.xml │ │ │ │ ├── UIUserNavigationPortlet_in.xml │ │ │ │ ├── UIUserNavigationPortlet_it.xml │ │ │ │ ├── UIUserNavigationPortlet_ja.xml │ │ │ │ ├── UIUserNavigationPortlet_kab.xml │ │ │ │ ├── UIUserNavigationPortlet_ko.xml │ │ │ │ ├── UIUserNavigationPortlet_lt.xml │ │ │ │ ├── UIUserNavigationPortlet_ms.xml │ │ │ │ ├── UIUserNavigationPortlet_nl.xml │ │ │ │ ├── UIUserNavigationPortlet_no.xml │ │ │ │ ├── UIUserNavigationPortlet_pcm.xml │ │ │ │ ├── UIUserNavigationPortlet_pl.xml │ │ │ │ ├── UIUserNavigationPortlet_pt_BR.xml │ │ │ │ ├── UIUserNavigationPortlet_pt_PT.xml │ │ │ │ ├── UIUserNavigationPortlet_ro.xml │ │ │ │ ├── UIUserNavigationPortlet_ru.xml │ │ │ │ ├── UIUserNavigationPortlet_sk.xml │ │ │ │ ├── UIUserNavigationPortlet_sl.xml │ │ │ │ ├── UIUserNavigationPortlet_sq.xml │ │ │ │ ├── UIUserNavigationPortlet_sv_SE.xml │ │ │ │ ├── UIUserNavigationPortlet_th.xml │ │ │ │ ├── UIUserNavigationPortlet_tl.xml │ │ │ │ ├── UIUserNavigationPortlet_tr.xml │ │ │ │ ├── UIUserNavigationPortlet_uk.xml │ │ │ │ ├── UIUserNavigationPortlet_ur_IN.xml │ │ │ │ ├── UIUserNavigationPortlet_vi.xml │ │ │ │ ├── UIUserNavigationPortlet_zh_CN.xml │ │ │ │ └── UIUserNavigationPortlet_zh_TW.xml │ │ │ │ └── UIUserPlatformToolBarPortlet │ │ │ │ ├── UIUserPlatformToolBarPortlet_ar.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_aro.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_az.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_ca.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_ceb.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_cs.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_de.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_el.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_en.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_es_ES.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_eu.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_fa.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_fi.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_fil.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_fr.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_he.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_hi.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_hu.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_in.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_it.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_ja.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_kab.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_ko.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_lt.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_ms.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_nl.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_no.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_pcm.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_pl.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_pt_BR.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_pt_PT.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_ro.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_ru.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_sk.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_sl.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_sq.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_sv_SE.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_th.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_tl.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_tr.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_uk.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_ur_IN.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_vi.xml │ │ │ │ ├── UIUserPlatformToolBarPortlet_zh_CN.xml │ │ │ │ └── UIUserPlatformToolBarPortlet_zh_TW.xml │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── conf │ │ │ │ └── portlet │ │ │ │ │ ├── AdminToolbarPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UIBreadCrumbsNavigationPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UICompanyNavigationPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UICreatePlatformToolBarPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UIGroupsNavigationPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UIHelpPlatformToolbarPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UINotificationPopoverToolbarPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UISearchPlatformToolbarPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UISetupPlatformToolBarPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UISpaceNavigationPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UIUserNavigationPortlet │ │ │ │ │ └── configuration.xml │ │ │ │ │ └── UIUserPlatformToolBarPortlet │ │ │ │ │ └── configuration.xml │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── groovy │ │ │ └── platformNavigation │ │ │ │ └── portlet │ │ │ │ ├── UIAdminToolbarPortlet │ │ │ │ └── UIAdminToolbarContainer.gtmpl │ │ │ │ ├── UIBreadCrumbsNavigationPortlet │ │ │ │ └── UIBreadCrumbsNavigationPortlet.gtmpl │ │ │ │ ├── UICompanyNavigationPortlet │ │ │ │ └── UICompanyNavigationPortlet.gtmpl │ │ │ │ ├── UICreatePlatformToolBarPortlet │ │ │ │ ├── UICreateForm.gtmpl │ │ │ │ ├── UICreateList.gtmpl │ │ │ │ ├── UICreatePlatformToolBarPortlet.gtmpl │ │ │ │ └── UIUploadComponent.gtmpl │ │ │ │ ├── UIGroupsNavigationPortlet │ │ │ │ └── UIGroupsNavigationPortlet.gtmpl │ │ │ │ ├── UIHelpPlatformToolbarPortlet │ │ │ │ └── UIHelpPlatformToolbarPortlet.gtmpl │ │ │ │ ├── UINotificationPopoverToolbarPortlet │ │ │ │ └── UINotificationPopoverToolbarPortlet.gtmpl │ │ │ │ ├── UISearchPlatformToolBarPortlet │ │ │ │ └── UISearchPlatformToolBarPortlet.gtmpl │ │ │ │ ├── UISetupPlatformToolBarPortlet │ │ │ │ └── UISetupPlatformToolBarPortlet.gtmpl │ │ │ │ ├── UISpaceNavigationPortlet │ │ │ │ └── UISpaceNavigationPortlet.gtmpl │ │ │ │ ├── UIUserNavigationPortlet │ │ │ │ ├── UIRelationshipAction.gtmpl │ │ │ │ └── UIUserNavigationPortlet.gtmpl │ │ │ │ └── UIUserPlatformToolBarPortlet │ │ │ │ └── UIUserPlatformToolBarPortlet.gtmpl │ │ │ └── javascript │ │ │ └── eXo │ │ │ └── platform │ │ │ ├── navigation │ │ │ ├── Notification │ │ │ │ └── NotificationPopover.js │ │ │ ├── ToolBarNavigation │ │ │ │ └── UIToolBarNavigation.js │ │ │ ├── UIGroupsNavigationPortlet │ │ │ │ └── UIGroupsNavigation.js │ │ │ ├── UISpaceNavigationPortlet │ │ │ │ └── UISpaceNavigation.js │ │ │ └── UIUserNavigationPortlet │ │ │ │ └── UIUserNavigation.js │ │ │ └── search │ │ │ └── Search.js │ └── pom.xml ├── resources │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── WEB-INF │ │ ├── gatein-resources.xml │ │ └── web.xml │ │ └── javascript │ │ └── eXo │ │ ├── platform │ │ ├── leftnavigation │ │ │ └── UILeftNavigation.js │ │ └── responsive │ │ │ ├── responsive.js │ │ │ └── toe.min.js │ │ └── social │ │ └── webui │ │ ├── ComposerMultiUpload.js │ │ └── UINavigationComposer.js └── webapp │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── org │ │ └── exoplatform │ │ └── search │ │ └── portlet │ │ └── indexing │ │ └── management │ │ ├── IndexingManagementApplication.java │ │ ├── assets │ │ ├── scripts │ │ │ ├── app │ │ │ │ ├── broadcaster.js │ │ │ │ ├── controller │ │ │ │ │ ├── connectorController.js │ │ │ │ │ ├── operationController.js │ │ │ │ │ └── statController.js │ │ │ │ └── main.js │ │ │ └── rest │ │ │ │ ├── api │ │ │ │ └── VindexingManagementApi.js │ │ │ │ ├── client │ │ │ │ └── ApiClient.js │ │ │ │ └── model │ │ │ │ ├── AnIndexingConnectorResources.js │ │ │ │ └── AnIndexingOperationResource.js │ │ └── styles │ │ │ └── indexingManagement.less │ │ ├── package-info.java │ │ └── templates │ │ └── indexingManagement.gtmpl │ ├── resources │ ├── beans.xml │ └── locale │ │ ├── navigation │ │ └── group │ │ │ └── platform │ │ │ ├── administrators_ar.properties │ │ │ ├── administrators_aro.properties │ │ │ ├── administrators_az.properties │ │ │ ├── administrators_ca.properties │ │ │ ├── administrators_ceb.properties │ │ │ ├── administrators_cs.properties │ │ │ ├── administrators_de.properties │ │ │ ├── administrators_el.properties │ │ │ ├── administrators_en.properties │ │ │ ├── administrators_es_ES.properties │ │ │ ├── administrators_eu.properties │ │ │ ├── administrators_fa.properties │ │ │ ├── administrators_fi.properties │ │ │ ├── administrators_fil.properties │ │ │ ├── administrators_fr.properties │ │ │ ├── administrators_he.properties │ │ │ ├── administrators_hi.properties │ │ │ ├── administrators_hu.properties │ │ │ ├── administrators_in.properties │ │ │ ├── administrators_it.properties │ │ │ ├── administrators_ja.properties │ │ │ ├── administrators_kab.properties │ │ │ ├── administrators_ko.properties │ │ │ ├── administrators_lt.properties │ │ │ ├── administrators_ms.properties │ │ │ ├── administrators_nl.properties │ │ │ ├── administrators_no.properties │ │ │ ├── administrators_pcm.properties │ │ │ ├── administrators_pl.properties │ │ │ ├── administrators_pt_BR.properties │ │ │ ├── administrators_pt_PT.properties │ │ │ ├── administrators_ro.properties │ │ │ ├── administrators_ru.properties │ │ │ ├── administrators_sk.properties │ │ │ ├── administrators_sl.properties │ │ │ ├── administrators_sq.properties │ │ │ ├── administrators_sv_SE.properties │ │ │ ├── administrators_th.properties │ │ │ ├── administrators_tl.properties │ │ │ ├── administrators_tr.properties │ │ │ ├── administrators_uk.properties │ │ │ ├── administrators_ur_IN.properties │ │ │ ├── administrators_vi.properties │ │ │ ├── administrators_zh_CN.properties │ │ │ ├── administrators_zh_TW.properties │ │ │ ├── guests_ar.properties │ │ │ ├── guests_aro.properties │ │ │ ├── guests_az.properties │ │ │ ├── guests_ca.properties │ │ │ ├── guests_ceb.properties │ │ │ ├── guests_cs.properties │ │ │ ├── guests_de.properties │ │ │ ├── guests_el.properties │ │ │ ├── guests_en.properties │ │ │ ├── guests_es_ES.properties │ │ │ ├── guests_eu.properties │ │ │ ├── guests_fa.properties │ │ │ ├── guests_fi.properties │ │ │ ├── guests_fil.properties │ │ │ ├── guests_fr.properties │ │ │ ├── guests_he.properties │ │ │ ├── guests_hi.properties │ │ │ ├── guests_hu.properties │ │ │ ├── guests_in.properties │ │ │ ├── guests_it.properties │ │ │ ├── guests_ja.properties │ │ │ ├── guests_kab.properties │ │ │ ├── guests_ko.properties │ │ │ ├── guests_lt.properties │ │ │ ├── guests_ms.properties │ │ │ ├── guests_nl.properties │ │ │ ├── guests_no.properties │ │ │ ├── guests_pcm.properties │ │ │ ├── guests_pl.properties │ │ │ ├── guests_pt_BR.properties │ │ │ ├── guests_pt_PT.properties │ │ │ ├── guests_ro.properties │ │ │ ├── guests_ru.properties │ │ │ ├── guests_sk.properties │ │ │ ├── guests_sl.properties │ │ │ ├── guests_sq.properties │ │ │ ├── guests_sv_SE.properties │ │ │ ├── guests_th.properties │ │ │ ├── guests_tl.properties │ │ │ ├── guests_tr.properties │ │ │ ├── guests_uk.properties │ │ │ ├── guests_ur_IN.properties │ │ │ ├── guests_vi.properties │ │ │ ├── guests_zh_CN.properties │ │ │ ├── guests_zh_TW.properties │ │ │ ├── users_en.properties │ │ │ ├── users_fr.properties │ │ │ ├── web-contributors_ar.xml │ │ │ ├── web-contributors_aro.xml │ │ │ ├── web-contributors_az.xml │ │ │ ├── web-contributors_ca.xml │ │ │ ├── web-contributors_ceb.xml │ │ │ ├── web-contributors_cs.xml │ │ │ ├── web-contributors_de.xml │ │ │ ├── web-contributors_el.xml │ │ │ ├── web-contributors_en.xml │ │ │ ├── web-contributors_es_ES.xml │ │ │ ├── web-contributors_eu.xml │ │ │ ├── web-contributors_fa.xml │ │ │ ├── web-contributors_fi.xml │ │ │ ├── web-contributors_fil.xml │ │ │ ├── web-contributors_fr.xml │ │ │ ├── web-contributors_he.xml │ │ │ ├── web-contributors_hi.xml │ │ │ ├── web-contributors_hu.xml │ │ │ ├── web-contributors_in.xml │ │ │ ├── web-contributors_it.xml │ │ │ ├── web-contributors_ja.xml │ │ │ ├── web-contributors_kab.xml │ │ │ ├── web-contributors_ko.xml │ │ │ ├── web-contributors_lt.xml │ │ │ ├── web-contributors_ms.xml │ │ │ ├── web-contributors_nl.xml │ │ │ ├── web-contributors_no.xml │ │ │ ├── web-contributors_pcm.xml │ │ │ ├── web-contributors_pl.xml │ │ │ ├── web-contributors_pt_BR.xml │ │ │ ├── web-contributors_pt_PT.xml │ │ │ ├── web-contributors_ro.xml │ │ │ ├── web-contributors_ru.xml │ │ │ ├── web-contributors_sk.xml │ │ │ ├── web-contributors_sl.xml │ │ │ ├── web-contributors_sq.xml │ │ │ ├── web-contributors_sv_SE.xml │ │ │ ├── web-contributors_th.xml │ │ │ ├── web-contributors_tl.xml │ │ │ ├── web-contributors_tr.xml │ │ │ ├── web-contributors_uk.xml │ │ │ ├── web-contributors_ur_IN.xml │ │ │ ├── web-contributors_vi.xml │ │ │ ├── web-contributors_zh_CN.xml │ │ │ └── web-contributors_zh_TW.xml │ │ ├── platform │ │ ├── UISetupPlatformToolBarPortlet_ar.xml │ │ ├── UISetupPlatformToolBarPortlet_aro.xml │ │ ├── UISetupPlatformToolBarPortlet_az.xml │ │ ├── UISetupPlatformToolBarPortlet_ca.xml │ │ ├── UISetupPlatformToolBarPortlet_ceb.xml │ │ ├── UISetupPlatformToolBarPortlet_cs.xml │ │ ├── UISetupPlatformToolBarPortlet_de.xml │ │ ├── UISetupPlatformToolBarPortlet_el.xml │ │ ├── UISetupPlatformToolBarPortlet_en.xml │ │ ├── UISetupPlatformToolBarPortlet_es_ES.xml │ │ ├── UISetupPlatformToolBarPortlet_eu.xml │ │ ├── UISetupPlatformToolBarPortlet_fa.xml │ │ ├── UISetupPlatformToolBarPortlet_fi.xml │ │ ├── UISetupPlatformToolBarPortlet_fil.xml │ │ ├── UISetupPlatformToolBarPortlet_fr.xml │ │ ├── UISetupPlatformToolBarPortlet_he.xml │ │ ├── UISetupPlatformToolBarPortlet_hi.xml │ │ ├── UISetupPlatformToolBarPortlet_hu.xml │ │ ├── UISetupPlatformToolBarPortlet_in.xml │ │ ├── UISetupPlatformToolBarPortlet_it.xml │ │ ├── UISetupPlatformToolBarPortlet_ja.xml │ │ ├── UISetupPlatformToolBarPortlet_kab.xml │ │ ├── UISetupPlatformToolBarPortlet_ko.xml │ │ ├── UISetupPlatformToolBarPortlet_lt.xml │ │ ├── UISetupPlatformToolBarPortlet_ms.xml │ │ ├── UISetupPlatformToolBarPortlet_nl.xml │ │ ├── UISetupPlatformToolBarPortlet_no.xml │ │ ├── UISetupPlatformToolBarPortlet_pcm.xml │ │ ├── UISetupPlatformToolBarPortlet_pl.xml │ │ ├── UISetupPlatformToolBarPortlet_pt_BR.xml │ │ ├── UISetupPlatformToolBarPortlet_pt_PT.xml │ │ ├── UISetupPlatformToolBarPortlet_ro.xml │ │ ├── UISetupPlatformToolBarPortlet_ru.xml │ │ ├── UISetupPlatformToolBarPortlet_sk.xml │ │ ├── UISetupPlatformToolBarPortlet_sl.xml │ │ ├── UISetupPlatformToolBarPortlet_sq.xml │ │ ├── UISetupPlatformToolBarPortlet_sv_SE.xml │ │ ├── UISetupPlatformToolBarPortlet_th.xml │ │ ├── UISetupPlatformToolBarPortlet_tl.xml │ │ ├── UISetupPlatformToolBarPortlet_tr.xml │ │ ├── UISetupPlatformToolBarPortlet_uk.xml │ │ ├── UISetupPlatformToolBarPortlet_ur_IN.xml │ │ ├── UISetupPlatformToolBarPortlet_vi.xml │ │ ├── UISetupPlatformToolBarPortlet_zh_CN.xml │ │ └── UISetupPlatformToolBarPortlet_zh_TW.xml │ │ └── portal │ │ ├── login_ar.properties │ │ ├── login_aro.properties │ │ ├── login_az.properties │ │ ├── login_ca.properties │ │ ├── login_ceb.properties │ │ ├── login_cs.properties │ │ ├── login_de.properties │ │ ├── login_el.properties │ │ ├── login_en.properties │ │ ├── login_es_ES.properties │ │ ├── login_eu.properties │ │ ├── login_fa.properties │ │ ├── login_fi.properties │ │ ├── login_fil.properties │ │ ├── login_fr.properties │ │ ├── login_he.properties │ │ ├── login_hi.properties │ │ ├── login_hu.properties │ │ ├── login_in.properties │ │ ├── login_it.properties │ │ ├── login_ja.properties │ │ ├── login_kab.properties │ │ ├── login_ko.properties │ │ ├── login_lt.properties │ │ ├── login_ms.properties │ │ ├── login_nl.properties │ │ ├── login_no.properties │ │ ├── login_pcm.properties │ │ ├── login_pl.properties │ │ ├── login_pt_BR.properties │ │ ├── login_pt_PT.properties │ │ ├── login_ro.properties │ │ ├── login_ru.properties │ │ ├── login_sk.properties │ │ ├── login_sl.properties │ │ ├── login_sq.properties │ │ ├── login_sv_SE.properties │ │ ├── login_th.properties │ │ ├── login_tl.properties │ │ ├── login_tr.properties │ │ ├── login_uk.properties │ │ ├── login_ur_IN.properties │ │ ├── login_vi.properties │ │ ├── login_zh_CN.properties │ │ ├── login_zh_TW.properties │ │ ├── webui_ar.properties │ │ ├── webui_aro.properties │ │ ├── webui_az.properties │ │ ├── webui_ca.properties │ │ ├── webui_ceb.properties │ │ ├── webui_cs.properties │ │ ├── webui_de.properties │ │ ├── webui_el.properties │ │ ├── webui_en.properties │ │ ├── webui_es_ES.properties │ │ ├── webui_eu.properties │ │ ├── webui_fa.properties │ │ ├── webui_fi.properties │ │ ├── webui_fil.properties │ │ ├── webui_fr.properties │ │ ├── webui_he.properties │ │ ├── webui_hi.properties │ │ ├── webui_hu.properties │ │ ├── webui_in.properties │ │ ├── webui_it.properties │ │ ├── webui_ja.properties │ │ ├── webui_kab.properties │ │ ├── webui_ko.properties │ │ ├── webui_lt.properties │ │ ├── webui_ms.properties │ │ ├── webui_nl.properties │ │ ├── webui_no.properties │ │ ├── webui_pcm.properties │ │ ├── webui_pl.properties │ │ ├── webui_pt_BR.properties │ │ ├── webui_pt_PT.properties │ │ ├── webui_ro.properties │ │ ├── webui_ru.properties │ │ ├── webui_sk.properties │ │ ├── webui_sl.properties │ │ ├── webui_sq.properties │ │ ├── webui_sv_SE.properties │ │ ├── webui_th.properties │ │ ├── webui_tl.properties │ │ ├── webui_tr.properties │ │ ├── webui_uk.properties │ │ ├── webui_ur_IN.properties │ │ ├── webui_vi.properties │ │ ├── webui_zh_CN.properties │ │ └── webui_zh_TW.properties │ └── webapp │ ├── WEB-INF │ ├── conf │ │ ├── authoring │ │ │ └── authoring-configuration.xml │ │ ├── common │ │ │ └── locales-config.xml │ │ ├── configuration.xml │ │ ├── dms-extension │ │ │ └── dms │ │ │ │ ├── dms-drives-configuration.xml │ │ │ │ ├── dms-views-configuration.xml │ │ │ │ └── jcr-component-plugins-configuration.xml │ │ ├── integ-ecms-social │ │ │ └── ecms-social-configuration.xml │ │ ├── jcr │ │ │ └── jcr-configuration.xml │ │ ├── organization │ │ │ ├── idm-configuration.xml │ │ │ └── organization-configuration.xml │ │ ├── platform │ │ │ ├── application-registry-configuration.xml │ │ │ ├── cache-configuration.xml │ │ │ ├── common │ │ │ │ └── common-configuration.xml │ │ │ ├── dms │ │ │ │ └── dms-configuration.xml │ │ │ ├── idm-externalstore-configuration.xml │ │ │ ├── jcr-configuration.xml │ │ │ ├── plf-toolbar-quickadd-plugin-configuration.xml │ │ │ ├── portal │ │ │ │ ├── group │ │ │ │ │ ├── platform │ │ │ │ │ │ └── web-contributors │ │ │ │ │ │ │ ├── group.xml │ │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ │ └── pages.xml │ │ │ │ │ └── template │ │ │ │ │ │ └── group │ │ │ │ │ │ └── group.xml │ │ │ │ ├── portal-configuration.xml │ │ │ │ ├── portal │ │ │ │ │ └── template │ │ │ │ │ │ └── empty │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ ├── pages.xml │ │ │ │ │ │ └── portal.xml │ │ │ │ ├── resource-bundle-configuration.xml │ │ │ │ └── web-filter-configuration.xml │ │ │ ├── upgrade │ │ │ │ └── upgrade-configuration.xml │ │ │ └── wcm │ │ │ │ ├── artifacts │ │ │ │ └── site-resources │ │ │ │ │ └── templates │ │ │ │ │ ├── Footer.xml │ │ │ │ │ ├── Images.xml │ │ │ │ │ ├── Logo.xml │ │ │ │ │ ├── Navigation.xml │ │ │ │ │ ├── Searchbox.xml │ │ │ │ │ ├── Signin.xml │ │ │ │ │ ├── Signin_en.xml │ │ │ │ │ ├── Signin_it.xml │ │ │ │ │ ├── Stylesheet.xml │ │ │ │ │ └── StylesheetGreen.xml │ │ │ │ └── deployment │ │ │ │ └── template-empty-deployment-configuration.xml │ │ ├── portal │ │ │ ├── group │ │ │ │ ├── organization │ │ │ │ │ ├── employees │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ │ └── management │ │ │ │ │ │ └── executive-board │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ ├── platform │ │ │ │ │ ├── administrators │ │ │ │ │ │ ├── group.xml │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ │ ├── guests │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ │ └── users │ │ │ │ │ │ ├── group.xml │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ └── template │ │ │ │ │ └── group │ │ │ │ │ └── group.xml │ │ │ └── portal │ │ │ │ └── sharedlayout.xml │ │ ├── social-extension │ │ │ └── organization │ │ │ │ └── organization-configuration.xml │ │ ├── uiconf │ │ │ └── portal │ │ │ │ └── webui │ │ │ │ └── portal │ │ │ │ └── PortalTemplateConfigOption.groovy │ │ ├── wcm-artifacts │ │ │ └── site-resources │ │ │ │ └── newsletter │ │ │ │ └── newsletterBasicTemplate.xml │ │ ├── wcm-extension │ │ │ └── dms │ │ │ │ └── explorer-views-configuration.xml │ │ └── welcome-screens │ │ │ └── account-setup │ │ │ └── account-setup-configuration.xml │ ├── gatein-resources.xml │ ├── jboss-web.xml │ ├── jsp │ │ └── welcome-screens │ │ │ └── accountSetup.jsp │ ├── platform-extension │ │ └── jcr │ │ │ ├── indexing-configuration.xml │ │ │ ├── jcr-configuration.xml │ │ │ ├── repository-configuration.xml │ │ │ └── repository-rsync-configuration.xml │ ├── portlet.xml │ ├── web.xml │ └── webui-configuration.xml │ ├── css │ └── welcome-screens │ │ └── jquery.qtip.min.css │ ├── favicon.ico │ ├── groovy │ └── portal │ │ └── webui │ │ ├── UILoginForm.gtmpl │ │ ├── UISocialLoginButtons.gtmpl │ │ ├── container │ │ ├── UIHomeLinkContainer.gtmpl │ │ ├── UIPinToolbarContainer.gtmpl │ │ └── UITableColumnContainer.gtmpl │ │ ├── form │ │ └── UIOAuthInvitationForm.gtmpl │ │ └── workspace │ │ └── UIPortalApplication.gtmpl │ ├── javascript │ ├── document-preview.js │ ├── ie-placeholder.js │ ├── presence.js │ ├── switch-button.js │ └── welcome-screens │ │ └── welcomescreens.js │ ├── jsp │ └── portlet-disabled.jsp │ ├── login │ └── jsp │ │ ├── login.jsp │ │ ├── oauth_invitation.jsp │ │ └── oauth_register.jsp │ ├── portlet-disabled.html │ └── skin │ └── images │ ├── Logo.png │ ├── bottomBG.png │ ├── errorIcon.png │ ├── headerBG.png │ ├── loginAction.png │ └── login_texture.jpg ├── pom.xml ├── portlets ├── .babelrc ├── .eslintrc.json ├── package-lock.json ├── package.json ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── platform │ │ │ │ └── portlet │ │ │ │ ├── poll │ │ │ │ └── FeaturedPollPortlet.java │ │ │ │ └── rss │ │ │ │ ├── RssReaderPortlet.java │ │ │ │ └── model │ │ │ │ └── FeedItem.java │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ ├── bookmark │ │ │ │ ├── BookmarkPortlet_en.properties │ │ │ │ └── BookmarkPortlet_fr.properties │ │ │ │ ├── login │ │ │ │ └── history │ │ │ │ │ └── LoginHistory_en.properties │ │ │ │ ├── poll │ │ │ │ └── FeaturedPoll_en.properties │ │ │ │ └── rss │ │ │ │ └── RSSReader_en.properties │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ ├── portlet_2_0.tld │ │ │ └── web.xml │ │ │ ├── bookmark │ │ │ ├── bookmarkService.js │ │ │ ├── components │ │ │ │ ├── ExoBookmarkAppComponent.vue │ │ │ │ ├── ExoBookmarkComponent.vue │ │ │ │ ├── ExoBookmarkFormComponent.vue │ │ │ │ └── initComponents.js │ │ │ ├── index.html │ │ │ └── main.js │ │ │ ├── featured-poll │ │ │ ├── components │ │ │ │ ├── PollAppComponent.vue │ │ │ │ ├── PollDetailComponent.vue │ │ │ │ ├── PollSelectionComponent.vue │ │ │ │ └── initComponents.js │ │ │ ├── index.jsp │ │ │ ├── main.js │ │ │ └── pollService.js │ │ │ ├── js │ │ │ └── eXoConstants.js │ │ │ ├── login-history │ │ │ ├── components │ │ │ │ ├── LoginHistoryAppComponent.vue │ │ │ │ ├── LoginHistoryHistoriesComponent.vue │ │ │ │ ├── LoginHistoryLastLoginsComponent.vue │ │ │ │ ├── LoginHistoryStatisticComponent.vue │ │ │ │ ├── LoginHistoryUserStatistic.vue │ │ │ │ └── initComponents.js │ │ │ ├── filters │ │ │ │ ├── initFilters.js │ │ │ │ └── prettyDate.js │ │ │ ├── index.html │ │ │ ├── loginHistoryService.js │ │ │ └── main.js │ │ │ └── rss-reader │ │ │ ├── index.jsp │ │ │ └── script.js │ └── test │ │ └── globals.js ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js ├── registration ├── pom.xml └── src │ └── main │ ├── resources │ └── locale │ │ └── portal │ │ ├── webui_ar.properties │ │ ├── webui_aro.properties │ │ ├── webui_az.properties │ │ ├── webui_ca.properties │ │ ├── webui_ceb.properties │ │ ├── webui_cs.properties │ │ ├── webui_de.properties │ │ ├── webui_el.properties │ │ ├── webui_en.properties │ │ ├── webui_es_ES.properties │ │ ├── webui_eu.properties │ │ ├── webui_fa.properties │ │ ├── webui_fi.properties │ │ ├── webui_fil.properties │ │ ├── webui_fr.properties │ │ ├── webui_he.properties │ │ ├── webui_hi.properties │ │ ├── webui_hu.properties │ │ ├── webui_in.properties │ │ ├── webui_it.properties │ │ ├── webui_ja.properties │ │ ├── webui_kab.properties │ │ ├── webui_ko.properties │ │ ├── webui_lt.properties │ │ ├── webui_ms.properties │ │ ├── webui_nl.properties │ │ ├── webui_no.properties │ │ ├── webui_pcm.properties │ │ ├── webui_pl.properties │ │ ├── webui_pt_BR.properties │ │ ├── webui_pt_PT.properties │ │ ├── webui_ro.properties │ │ ├── webui_ru.properties │ │ ├── webui_sk.properties │ │ ├── webui_sl.properties │ │ ├── webui_sq.properties │ │ ├── webui_sv_SE.properties │ │ ├── webui_th.properties │ │ ├── webui_tl.properties │ │ ├── webui_tr.properties │ │ ├── webui_uk.properties │ │ ├── webui_ur_IN.properties │ │ ├── webui_vi.properties │ │ ├── webui_zh_CN.properties │ │ └── webui_zh_TW.properties │ └── webapp │ ├── WEB-INF │ ├── jsp │ │ └── software-registration │ │ │ ├── PLFRegistrationIntro.jsp │ │ │ ├── softwareregister-success.jsp │ │ │ └── softwareregister.jsp │ └── web.xml │ └── javascript │ └── registration │ └── software-registration.js ├── samples ├── acme-intranet │ ├── pom.xml │ └── webapp │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── resources │ │ └── locale │ │ │ ├── navigation │ │ │ ├── group │ │ │ │ ├── developers_ar.properties │ │ │ │ ├── developers_aro.properties │ │ │ │ ├── developers_az.properties │ │ │ │ ├── developers_ca.properties │ │ │ │ ├── developers_ceb.properties │ │ │ │ ├── developers_cs.properties │ │ │ │ ├── developers_de.properties │ │ │ │ ├── developers_el.properties │ │ │ │ ├── developers_en.properties │ │ │ │ ├── developers_es_ES.properties │ │ │ │ ├── developers_eu.properties │ │ │ │ ├── developers_fa.properties │ │ │ │ ├── developers_fi.properties │ │ │ │ ├── developers_fil.properties │ │ │ │ ├── developers_fr.properties │ │ │ │ ├── developers_he.properties │ │ │ │ ├── developers_hi.properties │ │ │ │ ├── developers_hu.properties │ │ │ │ ├── developers_in.properties │ │ │ │ ├── developers_it.properties │ │ │ │ ├── developers_ja.properties │ │ │ │ ├── developers_kab.properties │ │ │ │ ├── developers_ko.properties │ │ │ │ ├── developers_lt.properties │ │ │ │ ├── developers_ms.properties │ │ │ │ ├── developers_nl.properties │ │ │ │ ├── developers_no.properties │ │ │ │ ├── developers_pcm.properties │ │ │ │ ├── developers_pl.properties │ │ │ │ ├── developers_pt_BR.properties │ │ │ │ ├── developers_pt_PT.properties │ │ │ │ ├── developers_ro.properties │ │ │ │ ├── developers_ru.properties │ │ │ │ ├── developers_sk.properties │ │ │ │ ├── developers_sl.properties │ │ │ │ ├── developers_sq.properties │ │ │ │ ├── developers_sv_SE.properties │ │ │ │ ├── developers_th.properties │ │ │ │ ├── developers_tl.properties │ │ │ │ ├── developers_tr.properties │ │ │ │ ├── developers_uk.properties │ │ │ │ ├── developers_ur_IN.properties │ │ │ │ ├── developers_vi.properties │ │ │ │ ├── developers_zh_CN.properties │ │ │ │ ├── developers_zh_TW.properties │ │ │ │ └── organization │ │ │ │ │ ├── employees_ar.xml │ │ │ │ │ ├── employees_aro.xml │ │ │ │ │ ├── employees_az.xml │ │ │ │ │ ├── employees_ca.xml │ │ │ │ │ ├── employees_ceb.xml │ │ │ │ │ ├── employees_cs.xml │ │ │ │ │ ├── employees_de.xml │ │ │ │ │ ├── employees_el.xml │ │ │ │ │ ├── employees_en.xml │ │ │ │ │ ├── employees_es_ES.xml │ │ │ │ │ ├── employees_eu.xml │ │ │ │ │ ├── employees_fa.xml │ │ │ │ │ ├── employees_fi.xml │ │ │ │ │ ├── employees_fil.xml │ │ │ │ │ ├── employees_fr.xml │ │ │ │ │ ├── employees_he.xml │ │ │ │ │ ├── employees_hi.xml │ │ │ │ │ ├── employees_hu.xml │ │ │ │ │ ├── employees_in.xml │ │ │ │ │ ├── employees_it.xml │ │ │ │ │ ├── employees_ja.xml │ │ │ │ │ ├── employees_kab.xml │ │ │ │ │ ├── employees_ko.xml │ │ │ │ │ ├── employees_lt.xml │ │ │ │ │ ├── employees_ms.xml │ │ │ │ │ ├── employees_nl.xml │ │ │ │ │ ├── employees_no.xml │ │ │ │ │ ├── employees_pcm.xml │ │ │ │ │ ├── employees_pl.xml │ │ │ │ │ ├── employees_pt_BR.xml │ │ │ │ │ ├── employees_pt_PT.xml │ │ │ │ │ ├── employees_ro.xml │ │ │ │ │ ├── employees_ru.xml │ │ │ │ │ ├── employees_sk.xml │ │ │ │ │ ├── employees_sl.xml │ │ │ │ │ ├── employees_sq.xml │ │ │ │ │ ├── employees_sv_SE.xml │ │ │ │ │ ├── employees_th.xml │ │ │ │ │ ├── employees_tl.xml │ │ │ │ │ ├── employees_tr.xml │ │ │ │ │ ├── employees_uk.xml │ │ │ │ │ ├── employees_ur_IN.xml │ │ │ │ │ ├── employees_vi.xml │ │ │ │ │ ├── employees_zh_CN.xml │ │ │ │ │ └── employees_zh_TW.xml │ │ │ └── portal │ │ │ │ ├── intranet_ar.properties │ │ │ │ ├── intranet_aro.properties │ │ │ │ ├── intranet_az.properties │ │ │ │ ├── intranet_ca.properties │ │ │ │ ├── intranet_ceb.properties │ │ │ │ ├── intranet_cs.properties │ │ │ │ ├── intranet_de.properties │ │ │ │ ├── intranet_el.properties │ │ │ │ ├── intranet_en.properties │ │ │ │ ├── intranet_es_ES.properties │ │ │ │ ├── intranet_eu.properties │ │ │ │ ├── intranet_fa.properties │ │ │ │ ├── intranet_fi.properties │ │ │ │ ├── intranet_fil.properties │ │ │ │ ├── intranet_fr.properties │ │ │ │ ├── intranet_he.properties │ │ │ │ ├── intranet_hi.properties │ │ │ │ ├── intranet_hu.properties │ │ │ │ ├── intranet_in.properties │ │ │ │ ├── intranet_it.properties │ │ │ │ ├── intranet_ja.properties │ │ │ │ ├── intranet_kab.properties │ │ │ │ ├── intranet_ko.properties │ │ │ │ ├── intranet_lt.properties │ │ │ │ ├── intranet_ms.properties │ │ │ │ ├── intranet_nl.properties │ │ │ │ ├── intranet_no.properties │ │ │ │ ├── intranet_pcm.properties │ │ │ │ ├── intranet_pl.properties │ │ │ │ ├── intranet_pt_BR.properties │ │ │ │ ├── intranet_pt_PT.properties │ │ │ │ ├── intranet_ro.properties │ │ │ │ ├── intranet_ru.properties │ │ │ │ ├── intranet_sk.properties │ │ │ │ ├── intranet_sl.properties │ │ │ │ ├── intranet_sq.properties │ │ │ │ ├── intranet_sv_SE.properties │ │ │ │ ├── intranet_th.properties │ │ │ │ ├── intranet_tl.properties │ │ │ │ ├── intranet_tr.properties │ │ │ │ ├── intranet_uk.properties │ │ │ │ ├── intranet_ur_IN.properties │ │ │ │ ├── intranet_vi.properties │ │ │ │ ├── intranet_zh_CN.properties │ │ │ │ └── intranet_zh_TW.properties │ │ │ └── portal │ │ │ ├── demo_webui_ar.xml │ │ │ ├── demo_webui_aro.xml │ │ │ ├── demo_webui_az.xml │ │ │ ├── demo_webui_ca.xml │ │ │ ├── demo_webui_ceb.xml │ │ │ ├── demo_webui_cs.xml │ │ │ ├── demo_webui_de.xml │ │ │ ├── demo_webui_el.xml │ │ │ ├── demo_webui_en.xml │ │ │ ├── demo_webui_es_ES.xml │ │ │ ├── demo_webui_eu.xml │ │ │ ├── demo_webui_fa.xml │ │ │ ├── demo_webui_fi.xml │ │ │ ├── demo_webui_fil.xml │ │ │ ├── demo_webui_fr.xml │ │ │ ├── demo_webui_he.xml │ │ │ ├── demo_webui_hi.xml │ │ │ ├── demo_webui_hu.xml │ │ │ ├── demo_webui_in.xml │ │ │ ├── demo_webui_it.xml │ │ │ ├── demo_webui_ja.xml │ │ │ ├── demo_webui_kab.xml │ │ │ ├── demo_webui_ko.xml │ │ │ ├── demo_webui_lt.xml │ │ │ ├── demo_webui_ms.xml │ │ │ ├── demo_webui_nl.xml │ │ │ ├── demo_webui_no.xml │ │ │ ├── demo_webui_pcm.xml │ │ │ ├── demo_webui_pl.xml │ │ │ ├── demo_webui_pt_BR.xml │ │ │ ├── demo_webui_pt_PT.xml │ │ │ ├── demo_webui_ro.xml │ │ │ ├── demo_webui_ru.xml │ │ │ ├── demo_webui_sk.xml │ │ │ ├── demo_webui_sl.xml │ │ │ ├── demo_webui_sq.xml │ │ │ ├── demo_webui_sv_SE.xml │ │ │ ├── demo_webui_th.xml │ │ │ ├── demo_webui_tl.xml │ │ │ ├── demo_webui_tr.xml │ │ │ ├── demo_webui_uk.xml │ │ │ ├── demo_webui_ur_IN.xml │ │ │ ├── demo_webui_vi.xml │ │ │ ├── demo_webui_zh_CN.xml │ │ │ ├── demo_webui_zh_TW.xml │ │ │ ├── webui_ar.properties │ │ │ ├── webui_aro.properties │ │ │ ├── webui_az.properties │ │ │ ├── webui_ca.properties │ │ │ ├── webui_ceb.properties │ │ │ ├── webui_cs.properties │ │ │ ├── webui_de.properties │ │ │ ├── webui_el.properties │ │ │ ├── webui_en.properties │ │ │ ├── webui_es_ES.properties │ │ │ ├── webui_eu.properties │ │ │ ├── webui_fa.properties │ │ │ ├── webui_fi.properties │ │ │ ├── webui_fil.properties │ │ │ ├── webui_fr.properties │ │ │ ├── webui_hi.properties │ │ │ ├── webui_hu.properties │ │ │ ├── webui_in.properties │ │ │ ├── webui_it.properties │ │ │ ├── webui_ja.properties │ │ │ ├── webui_kab.properties │ │ │ ├── webui_ko.properties │ │ │ ├── webui_lt.properties │ │ │ ├── webui_ms.properties │ │ │ ├── webui_nl.properties │ │ │ ├── webui_no.properties │ │ │ ├── webui_pcm.properties │ │ │ ├── webui_pl.properties │ │ │ ├── webui_pt_BR.properties │ │ │ ├── webui_pt_PT.properties │ │ │ ├── webui_ro.properties │ │ │ ├── webui_ru.properties │ │ │ ├── webui_sk.properties │ │ │ ├── webui_sl.properties │ │ │ ├── webui_sv_SE.properties │ │ │ ├── webui_th.properties │ │ │ ├── webui_tl.properties │ │ │ ├── webui_tr.properties │ │ │ ├── webui_uk.properties │ │ │ ├── webui_ur_IN.properties │ │ │ ├── webui_vi.properties │ │ │ ├── webui_zh_CN.properties │ │ │ └── webui_zh_TW.properties │ │ └── webapp │ │ ├── META-INF │ │ └── exo-conf │ │ │ └── configuration.xml │ │ ├── WEB-INF │ │ ├── conf │ │ │ ├── configuration.xml │ │ │ ├── dms-extension │ │ │ │ └── dms │ │ │ │ │ └── organization-component-plugins-configuration.xml │ │ │ ├── office-extension │ │ │ │ ├── common │ │ │ │ │ └── common-configuration.xml │ │ │ │ ├── dms │ │ │ │ │ └── dms-views-configuration.xml │ │ │ │ ├── ks │ │ │ │ │ └── ks-configuration.xml │ │ │ │ ├── navigation │ │ │ │ │ └── jcr-configuration.xml │ │ │ │ ├── organization │ │ │ │ │ └── organization-configuration.xml │ │ │ │ ├── portal │ │ │ │ │ ├── group │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── group │ │ │ │ │ │ │ └── group.xml │ │ │ │ │ ├── portal-configuration.xml │ │ │ │ │ ├── portal │ │ │ │ │ │ ├── intranet │ │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ │ ├── pages.xml │ │ │ │ │ │ │ └── portal.xml │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── intranet │ │ │ │ │ │ │ └── pages.xml │ │ │ │ │ └── resource-bundle-configuration.xml │ │ │ │ ├── social │ │ │ │ │ ├── artifacts │ │ │ │ │ │ └── SpaceWelcome.xml │ │ │ │ │ ├── profiles-configuration.xml │ │ │ │ │ └── spaces-configuration.xml │ │ │ │ └── wcm │ │ │ │ │ ├── application-templates-configuration.xml │ │ │ │ │ ├── application-templates │ │ │ │ │ └── content-list-viewer │ │ │ │ │ │ └── list │ │ │ │ │ │ └── Announcement.gtmpl │ │ │ │ │ ├── artifacts │ │ │ │ │ └── site-resources │ │ │ │ │ │ └── office │ │ │ │ │ │ ├── Footer.xml │ │ │ │ │ │ ├── Images.xml │ │ │ │ │ │ ├── Stylesheet.xml │ │ │ │ │ │ ├── announcement.xml │ │ │ │ │ │ └── jira.xml │ │ │ │ │ ├── deployment │ │ │ │ │ └── office-deployment-configuration.xml │ │ │ │ │ ├── nodetype-templates-configuration.xml │ │ │ │ │ ├── nodetype-templates │ │ │ │ │ └── announcement │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── dialog1.gtmpl │ │ │ │ │ │ └── views │ │ │ │ │ │ └── view1.gtmpl │ │ │ │ │ ├── nodetypes-configuration.xml │ │ │ │ │ ├── system-configuration.xml │ │ │ │ │ └── taxonomy │ │ │ │ │ └── intranet-taxonomies-configuration.xml │ │ │ └── portal │ │ │ │ └── template │ │ │ │ └── pages │ │ │ │ ├── custom space │ │ │ │ └── page.xml │ │ │ │ ├── space │ │ │ │ ├── page.xml │ │ │ │ └── portlet-preferences.xml │ │ │ │ └── spaceHomePage │ │ │ │ └── page.xml │ │ └── web.xml │ │ └── groovy │ │ └── portal │ │ └── webui │ │ └── container │ │ └── UIUserWikiContainer.gtmpl ├── pom.xml └── wai-template │ ├── pom.xml │ └── src │ └── main │ ├── resources │ └── locale │ │ ├── portal │ │ ├── demo_webui_ar.xml │ │ ├── demo_webui_aro.xml │ │ ├── demo_webui_az.xml │ │ ├── demo_webui_ca.xml │ │ ├── demo_webui_ceb.xml │ │ ├── demo_webui_cs.xml │ │ ├── demo_webui_de.xml │ │ ├── demo_webui_el.xml │ │ ├── demo_webui_en.xml │ │ ├── demo_webui_es_ES.xml │ │ ├── demo_webui_eu.xml │ │ ├── demo_webui_fa.xml │ │ ├── demo_webui_fi.xml │ │ ├── demo_webui_fil.xml │ │ ├── demo_webui_fr.xml │ │ ├── demo_webui_he.xml │ │ ├── demo_webui_hi.xml │ │ ├── demo_webui_hu.xml │ │ ├── demo_webui_in.xml │ │ ├── demo_webui_it.xml │ │ ├── demo_webui_ja.xml │ │ ├── demo_webui_kab.xml │ │ ├── demo_webui_ko.xml │ │ ├── demo_webui_lt.xml │ │ ├── demo_webui_ms.xml │ │ ├── demo_webui_nl.xml │ │ ├── demo_webui_no.xml │ │ ├── demo_webui_pcm.xml │ │ ├── demo_webui_pl.xml │ │ ├── demo_webui_pt_BR.xml │ │ ├── demo_webui_pt_PT.xml │ │ ├── demo_webui_ro.xml │ │ ├── demo_webui_ru.xml │ │ ├── demo_webui_sk.xml │ │ ├── demo_webui_sl.xml │ │ ├── demo_webui_sq.xml │ │ ├── demo_webui_sv_SE.xml │ │ ├── demo_webui_th.xml │ │ ├── demo_webui_tl.xml │ │ ├── demo_webui_tr.xml │ │ ├── demo_webui_uk.xml │ │ ├── demo_webui_ur_IN.xml │ │ ├── demo_webui_vi.xml │ │ ├── demo_webui_zh_CN.xml │ │ └── demo_webui_zh_TW.xml │ │ └── wcm │ │ ├── webui_ar.xml │ │ ├── webui_aro.xml │ │ ├── webui_az.xml │ │ ├── webui_ca.xml │ │ ├── webui_ceb.xml │ │ ├── webui_cs.xml │ │ ├── webui_de.xml │ │ ├── webui_el.xml │ │ ├── webui_en.xml │ │ ├── webui_es_ES.xml │ │ ├── webui_eu.xml │ │ ├── webui_fa.xml │ │ ├── webui_fi.xml │ │ ├── webui_fil.xml │ │ ├── webui_fr.xml │ │ ├── webui_he.xml │ │ ├── webui_hi.xml │ │ ├── webui_hu.xml │ │ ├── webui_in.xml │ │ ├── webui_it.xml │ │ ├── webui_ja.xml │ │ ├── webui_kab.xml │ │ ├── webui_ko.xml │ │ ├── webui_lt.xml │ │ ├── webui_ms.xml │ │ ├── webui_nl.xml │ │ ├── webui_no.xml │ │ ├── webui_pcm.xml │ │ ├── webui_pl.xml │ │ ├── webui_pt_BR.xml │ │ ├── webui_pt_PT.xml │ │ ├── webui_ro.xml │ │ ├── webui_ru.xml │ │ ├── webui_sk.xml │ │ ├── webui_sl.xml │ │ ├── webui_sq.xml │ │ ├── webui_sv_SE.xml │ │ ├── webui_th.xml │ │ ├── webui_tl.xml │ │ ├── webui_tr.xml │ │ ├── webui_uk.xml │ │ ├── webui_ur_IN.xml │ │ ├── webui_vi.xml │ │ ├── webui_zh_CN.xml │ │ └── webui_zh_TW.xml │ └── webapp │ ├── WEB-INF │ ├── conf │ │ ├── configuration.xml │ │ └── sample-portal │ │ │ ├── waiportal │ │ │ ├── group │ │ │ │ └── template │ │ │ │ │ └── group │ │ │ │ │ └── group.xml │ │ │ ├── portal │ │ │ │ └── template │ │ │ │ │ └── WAIPortal │ │ │ │ │ ├── navigation.xml │ │ │ │ │ ├── pages.xml │ │ │ │ │ └── portal.xml │ │ │ ├── resource-bundle-configuration.xml │ │ │ ├── wai-namespaces-configuration.xml │ │ │ ├── wai-nodetypes-configuration.xml │ │ │ ├── wai-nodetypes-template-configuration.xml │ │ │ └── waiportal-template-configuration.xml │ │ │ └── wcm │ │ │ ├── artifacts │ │ │ ├── application-templates │ │ │ │ └── waiportal │ │ │ │ │ └── content-list-viewer │ │ │ │ │ ├── list │ │ │ │ │ ├── AccessibleBanner.gtmpl │ │ │ │ │ ├── AccessibleBreadcrumb.gtmpl │ │ │ │ │ ├── AccessibleSitemap.gtmpl │ │ │ │ │ └── AccessibleToolbar.gtmpl │ │ │ │ │ └── navigation │ │ │ │ │ └── AccessibleNavigation.gtmpl │ │ │ ├── nodetype-templates │ │ │ │ ├── siteBreadcrumbWebContent │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── dialog1.gtmpl │ │ │ │ │ └── views │ │ │ │ │ │ └── view1.gtmpl │ │ │ │ ├── siteNavigationWebContent │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── dialog1.gtmpl │ │ │ │ │ └── views │ │ │ │ │ │ └── view1.gtmpl │ │ │ │ └── siteSearchBoxWebContent │ │ │ │ │ ├── dialogs │ │ │ │ │ └── dialog1.gtmpl │ │ │ │ │ └── views │ │ │ │ │ └── view1.gtmpl │ │ │ └── site-resources │ │ │ │ └── WAIPortal │ │ │ │ ├── Accessibility.xml │ │ │ │ ├── Competence.xml │ │ │ │ ├── Customers.xml │ │ │ │ ├── FR.xml │ │ │ │ ├── Features.xml │ │ │ │ ├── StylesheetGreen.xml │ │ │ │ ├── Technology.xml │ │ │ │ ├── WAIPortalFooter.xml │ │ │ │ ├── WAIPortal_FR.xml │ │ │ │ └── home.xml │ │ │ └── deployment │ │ │ ├── WAIPortal-template-deployment-configuration.xml │ │ │ ├── template-WAIPortal-deployment-configuration.xml │ │ │ └── templates-deployment-configuration.xml │ ├── gatein-resources.xml │ ├── jboss-web.xml │ ├── web.xml │ └── webui-configuration.xml │ ├── javascript │ └── eXo │ │ └── ecm │ │ └── WAIPortal.js │ └── skin │ └── resources │ ├── BlackFooterBg.png │ ├── BlackLargeIcon.png │ ├── BlackLogoBg.png │ ├── BlackMediumIcon.png │ ├── BlackSmallIcon.png │ ├── BlueFooterBg.png │ ├── BlueLargeIcon.png │ ├── BlueLogoBg.png │ ├── BlueMediumIcon.png │ ├── BlueSmallIcon.png │ ├── BreadcumsIcon.png │ ├── CollapseIcon.png │ ├── DefaultHeightContrastIcon.png │ ├── DefaultNormalContrastIcon.png │ ├── ExpandIcon.png │ ├── Flag_en.jpg │ ├── Flag_fr.jpg │ ├── ListBlueIcon.png │ ├── LogBull.png │ ├── Logo.png │ ├── Logo4linux.jpg │ ├── LogoBPI.jpg │ ├── LogoCaixa.jpg │ ├── LogoCitet.jpg │ ├── LogoGlobecast.jpg │ ├── LogoIToptics.png │ ├── LogoMutavie.png │ ├── LogoNextep.png │ ├── LogoValueteam.gif │ ├── LogoVevo.png │ ├── MenuBarBg.png │ ├── SelectedHeightContrastIcon.png │ ├── SelectedNormalContrastIcon.png │ ├── Split.png │ ├── WhiteLargeIcon.png │ ├── WhiteMediumIcon.png │ ├── WhiteSmallIcon.png │ └── search.png ├── translations.properties └── welcome-screens ├── component ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── exoplatform │ │ └── platform │ │ └── welcomescreens │ │ ├── service │ │ ├── TermsAndConditionsService.java │ │ └── impl │ │ │ └── TermsAndConditionsServiceImpl.java │ │ └── web │ │ ├── TermsAndConditionsActionServlet.java │ │ ├── TermsAndConditionsFilter.java │ │ └── TermsAndConditionsViewServlet.java │ └── resources │ └── conf │ └── portal │ └── configuration.xml ├── pom.xml └── webapp ├── pom.xml └── src └── main ├── resources └── locale │ └── portal │ ├── webui_ar.properties │ ├── webui_aro.properties │ ├── webui_az.properties │ ├── webui_ca.properties │ ├── webui_ceb.properties │ ├── webui_cs.properties │ ├── webui_de.properties │ ├── webui_el.properties │ ├── webui_en.properties │ ├── webui_es_ES.properties │ ├── webui_eu.properties │ ├── webui_fa.properties │ ├── webui_fi.properties │ ├── webui_fil.properties │ ├── webui_fr.properties │ ├── webui_he.properties │ ├── webui_hi.properties │ ├── webui_hu.properties │ ├── webui_in.properties │ ├── webui_it.properties │ ├── webui_ja.properties │ ├── webui_kab.properties │ ├── webui_ko.properties │ ├── webui_lt.properties │ ├── webui_ms.properties │ ├── webui_nl.properties │ ├── webui_no.properties │ ├── webui_pcm.properties │ ├── webui_pl.properties │ ├── webui_pt_BR.properties │ ├── webui_pt_PT.properties │ ├── webui_ro.properties │ ├── webui_ru.properties │ ├── webui_sk.properties │ ├── webui_sl.properties │ ├── webui_sq.properties │ ├── webui_sv_SE.properties │ ├── webui_th.properties │ ├── webui_tl.properties │ ├── webui_tr.properties │ ├── webui_uk.properties │ ├── webui_ur_IN.properties │ ├── webui_vi.properties │ ├── webui_zh_CN.properties │ └── webui_zh_TW.properties └── webapp ├── META-INF └── exo-conf │ └── configuration.xml ├── WEB-INF ├── conf │ ├── configuration.xml │ ├── enterprise │ │ └── enterprise-configuration.xml │ ├── portal │ │ └── portal │ │ │ └── sharedlayout.xml │ └── welcome-screens │ │ └── account-setup │ │ └── account-setup-configuration.xml ├── jsp │ └── welcome-screens │ │ ├── termsandconditions.jsp │ │ └── unlockTrial.jsp └── web.xml ├── groovy └── welcomescreens │ └── welcomescreensFooter.gtmpl └── javascript └── welcomescreens.js /component/common/src/main/resources/logo/DefaultLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/component/common/src/main/resources/logo/DefaultLogo.png -------------------------------------------------------------------------------- /component/common/src/test/resources/branding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/component/common/src/test/resources/branding/logo.png -------------------------------------------------------------------------------- /component/edition/community/src/main/java/org/exoplatform/platform/edition/PlatformEdition.java: -------------------------------------------------------------------------------- 1 | package org.exoplatform.platform.edition; 2 | 3 | public final class PlatformEdition { 4 | public static String getEdition() { 5 | return "community"; 6 | } 7 | } -------------------------------------------------------------------------------- /component/edition/enterprise/src/main/java/org/exoplatform/platform/edition/PlatformEdition.java: -------------------------------------------------------------------------------- 1 | package org.exoplatform.platform.edition; 2 | 3 | public final class PlatformEdition { 4 | public static String getEdition() { 5 | return "enterprise"; 6 | } 7 | } -------------------------------------------------------------------------------- /component/organization/src/main/java/org/exoplatform/platform/organization/integration/EventType.java: -------------------------------------------------------------------------------- 1 | package org.exoplatform.platform.organization.integration; 2 | 3 | public enum EventType { 4 | ADDED, UPDATED, DELETED; 5 | } 6 | -------------------------------------------------------------------------------- /component/organization/src/test/resources/conf/jcr/test-nodetypes-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /component/uxpnavigation/src/main/java/org/exoplatform/platform/navigation/component/breadcrumb/UserNavigationHandlerService.java: -------------------------------------------------------------------------------- 1 | package org.exoplatform.platform.navigation.component.breadcrumb; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * @author rtouzi 7 | */ 8 | public interface UserNavigationHandlerService { 9 | List loadUserNavigation(); 10 | } 11 | -------------------------------------------------------------------------------- /component/webui/src/main/resources/META-INF/services/org.exoplatform.portal.application.PortalApplicationFactory: -------------------------------------------------------------------------------- 1 | org.exoplatform.platform.webui.templates.PlatformPortalApplicationFactory -------------------------------------------------------------------------------- /component/webui/src/main/resources/META-INF/services/org.exoplatform.webui.application.portlet.PortletApplicationFactory: -------------------------------------------------------------------------------- 1 | org.exoplatform.platform.webui.templates.PlatformPortletApplicationFactory -------------------------------------------------------------------------------- /extension/portlets/branding/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@babel/preset-env", {"modules": false}]], 3 | 4 | "env": { 5 | "test": { 6 | "plugins": ["@babel/plugin-transform-modules-commonjs"] 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /extension/portlets/branding/src/main/webapp/company-branding-app/components/initComponents.js: -------------------------------------------------------------------------------- 1 | import ExoModal from './modal/ExoModal.vue'; 2 | import ExoCompanyBranding from './ExoCompanyBranding.vue'; 3 | 4 | const components = { 5 | 'exo-company-branding': ExoCompanyBranding, 6 | 'exo-modal' : ExoModal 7 | }; 8 | 9 | for(const key in components) { 10 | Vue.component(key, components[key]); 11 | } -------------------------------------------------------------------------------- /extension/portlets/branding/src/main/webapp/company-branding-app/index.html: -------------------------------------------------------------------------------- 1 |
2 | 7 |
-------------------------------------------------------------------------------- /extension/portlets/branding/src/test/globals.js: -------------------------------------------------------------------------------- 1 | import $ from 'jquery'; 2 | 3 | global.$ = $; 4 | 5 | global.eXo = { 6 | env: { 7 | portal: { 8 | context: 'portal', 9 | rest: 'rest', 10 | language: 'fr' 11 | } 12 | } 13 | }; -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["es2015", {"modules": false}]], 3 | 4 | "env": { 5 | "test": { 6 | "plugins": ["transform-es2015-modules-commonjs"] 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_az.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_ca.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Afegeix una imatge de perfil 2 | Connect.Label=Afegeix contactes 3 | Space.Label=Uneix-te a un espai 4 | Activity.Label=Publica una activitat 5 | Document.Label=Puja un document 6 | title.Label=Primers passos 7 | close.Label=Tanca 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_ceb.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_de.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Ein Profilbild hinzuf\u00FCgen 2 | Connect.Label=Verbinden Sie sich mit Kollegen 3 | Space.Label=Einem Raum beitreten 4 | Activity.Label=Eine Aktivit\u00E4tsnachricht schreiben 5 | Document.Label=Ein Dokument hochladen 6 | title.Label=Erste Schritte 7 | close.Label=Schlie\u00DFen 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_en.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_es_ES.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Establezca su foto de perfil 2 | Connect.Label=A\u00F1adir conexiones 3 | Space.Label=\u00DAnete a un espacio 4 | Activity.Label=Publicar un mensaje 5 | Document.Label=Cargar un documento 6 | title.Label=Primeros Pasos 7 | close.Label=Cerrar 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_eu.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_fi.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_fil.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Itakda ang iyong profile picture 2 | Connect.Label=Magdagdag ng mga koneksyon 3 | Space.Label=Isali sa puwang 4 | Activity.Label=Magpost ng mensahe 5 | Document.Label=Mag-upload ng dokumento 6 | title.Label=Nagsisimula 7 | close.Label=Isara 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_fr.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Ajouter une photo de profil 2 | Connect.Label=Ajouter des contacts 3 | Space.Label=Rejoindre un espace 4 | Activity.Label=Partager une activit\u00E9 5 | Document.Label=Uploader un document 6 | title.Label=Premiers Pas 7 | close.Label=Fermer 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_he.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Add a profile picture 2 | Connect.Label=Connect to coworkers 3 | Space.Label=Join a space 4 | Activity.Label=Post an activity 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_hi.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_hu.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_in.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Tetapkan gambar profil anda 2 | Connect.Label=Tambahkan koneksi 3 | Space.Label=Bergabung sebuah ruang 4 | Activity.Label=Posting sebuah pesan 5 | Document.Label=Unggah dokumen 6 | title.Label=Mulai 7 | close.Label=Tutup 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_it.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Aggiungere una foto del profilo 2 | Connect.Label=Collegarsi ai colleghi 3 | Space.Label=Iscrivisi a uno spazio 4 | Activity.Label=Postare un'attivit\u00E0 5 | Document.Label=Caricare un documento 6 | title.Label=Per iniziare 7 | close.Label=Chiudere 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_kab.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_ko.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_lt.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Prisijungti prie erdv\u0117s 4 | Activity.Label=Post a message 5 | Document.Label=\u012Ekelti dokument\u0105 6 | title.Label=Darbo prad\u017Eia 7 | close.Label=U\u017Edaryti 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_ms.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_nl.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Voeg een profielafbeelding toe 2 | Connect.Label=Verbinding maken met collega 's 3 | Space.Label=Deelnemen aan een ruimte 4 | Activity.Label=Post een activiteit 5 | Document.Label=Een document uploaden 6 | title.Label=Aan de slag 7 | close.Label=Sluiten 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_no.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Bli medlem av et fellesskap 4 | Activity.Label=Post a message 5 | Document.Label=Last opp et dokument 6 | title.Label=Kom i gang 7 | close.Label=Lukk 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_pcm.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_pt_BR.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Adicionar uma imagem ao perfil 2 | Connect.Label=Conectar-se aos colegas de trabalho 3 | Space.Label=Juntar-se a um espa\u00E7o 4 | Activity.Label=Postar uma atividade 5 | Document.Label=Anexar um documento 6 | title.Label=Primeiros passos 7 | close.Label=Fechar 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_pt_PT.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Adicionar uma fotografia de perfil 2 | Connect.Label=Conetar com colegas de trabalho 3 | Space.Label=Aderir a um espa\u00E7o 4 | Activity.Label=Publicar uma atividade 5 | Document.Label=Anexar um documento 6 | title.Label=Primeiros passos 7 | close.Label=Fechar 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_ro.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Seteaz\u0103-\u021Bi poza de profil 2 | Connect.Label=Adaug\u0103 conexiuni 3 | Space.Label=Al\u0103tur\u0103-te unui Spa\u021Biu 4 | Activity.Label=Posteaz\u0103 un mesaj 5 | Document.Label=\u00CEncarc\u0103 un document 6 | title.Label=No\u0163iuni de baz\u0103 7 | close.Label=\u00CEnchide 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_sk.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_sl.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Dodaj sliko profila 2 | Connect.Label=Pove\u017Ei se s sodelavci 3 | Space.Label=Pridru\u017Ei se prostoru 4 | Activity.Label=Objavi dejavnost 5 | Document.Label=Prenesi dokument 6 | title.Label=Uvod 7 | close.Label=Zapri 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_sv_SE.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=G\u00E5 med i en webb-yta 4 | Activity.Label=Post a message 5 | Document.Label=Ladda upp ett dokument 6 | title.Label=Kom ig\u00E5ng 7 | close.Label=St\u00E4ng 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_th.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_tl.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Itakda ang larawan ng iyong profile 2 | Connect.Label=Magdagdag ng mga koneksyon 3 | Space.Label=Sumali sa isang espasyo 4 | Activity.Label=Mag-post ng isang mensahe 5 | Document.Label=Mag-upload ng isang dokumento 6 | title.Label=Pagsisimula 7 | close.Label=Sarado 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_tr.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Profil resmi ayarla 2 | Connect.Label=Ba\u011Flant\u0131lar\u0131 ekle 3 | Space.Label=Bir alana kat\u0131l\u0131n 4 | Activity.Label=Bir mesaj payla\u015F 5 | Document.Label=Bir belge y\u00FCkleyin 6 | title.Label=Ba\u015Flang\u0131\u00E7 7 | close.Label=Kapat 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_ur_IN.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Join a space 4 | Activity.Label=Post a message 5 | Document.Label=Upload a document 6 | title.Label=Getting Started 7 | close.Label=Close 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_vi.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=Tham gia nho\u0301m 4 | Activity.Label=Post a message 5 | Document.Label=T\u1EA3i t\u00E0i li\u1EC7u l\u00EAn 6 | title.Label=B\u1EAFt \u0111\u1EA7u 7 | close.Label=\u0110\u00F3ng 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Upload.label=\u4E0A\u4F20\u5934\u50CF 2 | Connect.Label=\u52A0\u4E00\u4E2A\u597D\u53CB 3 | Space.Label=\u52A0\u5165\u7A7A\u95F4 4 | Activity.Label=\u53D1\u5E03\u65B0\u9C9C\u4E8B 5 | Document.Label=\u4E0A\u4F20\u6587\u6863 6 | title.Label=\u5165\u95E8 7 | close.Label=\u5173\u95ED 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/gettingStarted/gettingStarted_zh_TW.properties: -------------------------------------------------------------------------------- 1 | Upload.label=Set your profile picture 2 | Connect.Label=Add connections 3 | Space.Label=\u52A0\u5165\u7A7A\u9593 4 | Activity.Label=Post a message 5 | Document.Label=\u4E0A\u50B3\u6587\u4EF6 6 | title.Label=\u5165\u9580 7 | close.Label=\u95DC\u9589 8 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_az.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_ca.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitacions 2 | invitations.accept.label=Accepta 3 | invitations.members.label=Membres 4 | invitations.space.label=Espai 5 | invitations.public.label=P\u00FAblic 6 | invitations.private.label=Privat 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_ceb.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_cs.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Pozv\u00E1nky 2 | invitations.accept.label=P\u0159ijmout 3 | invitations.members.label=\u010Clenov\u00E9 4 | invitations.space.label=Skupina 5 | invitations.public.label=Ve\u0159ejn\u00E9 6 | invitations.private.label=Soukrom\u00E9 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_de.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Einladungen 2 | invitations.accept.label=Annehmen 3 | invitations.members.label=Mitglieder 4 | invitations.space.label=Raum 5 | invitations.public.label=\u00D6ffentlich 6 | invitations.private.label=Privat 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_en.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_es_ES.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitaciones 2 | invitations.accept.label=Aceptar 3 | invitations.members.label=Miembros 4 | invitations.space.label=Espacio 5 | invitations.public.label=P\u00FAblico 6 | invitations.private.label=Privado 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_eu.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_fi.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_fil.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Mga imbitasyon 2 | invitations.accept.label=Ang Tanggapin 3 | invitations.members.label=Ang mga Miyembro 4 | invitations.space.label=Ang Espasyo 5 | invitations.public.label=Ang Publiko 6 | invitations.private.label=Ang Pribado 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_fr.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accepter 3 | invitations.members.label=Membres 4 | invitations.space.label=Espace 5 | invitations.public.label=Public 6 | invitations.private.label=Priv\u00E9 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_he.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_hi.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_hu.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_in.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Undangan 2 | invitations.accept.label=Menerima 3 | invitations.members.label=Anggota 4 | invitations.space.label=Ruang 5 | invitations.public.label=Umum 6 | invitations.private.label=Pribadi 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_it.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Inviti 2 | invitations.accept.label=Accettare 3 | invitations.members.label=Membri 4 | invitations.space.label=Spazio 5 | invitations.public.label=Pubblico 6 | invitations.private.label=Privato 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_ja.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=\u627F\u8A8D\u5F85\u3061 2 | invitations.accept.label=\u627F\u8AFE 3 | invitations.members.label=\u30E1\u30F3\u30D0\u30FC 4 | invitations.space.label=\u30B9\u30DA\u30FC\u30B9 5 | invitations.public.label=\u516C\u958B 6 | invitations.private.label=\u30D7\u30E9\u30A4\u30D9\u30FC\u30C8 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_kab.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_ko.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_lt.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Pakvietimai 2 | invitations.accept.label=Sutikti 3 | invitations.members.label=Nariai 4 | invitations.space.label=Erdv\u0117 5 | invitations.public.label=Vie\u0161as 6 | invitations.private.label=Privatus 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_ms.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_nl.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Uitnodigingen 2 | invitations.accept.label=Akkoord 3 | invitations.members.label=Leden 4 | invitations.space.label=Ruimte 5 | invitations.public.label=Openbaar 6 | invitations.private.label=Prive 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_no.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitasjoner 2 | invitations.accept.label=Godta 3 | invitations.members.label=Medlemmer 4 | invitations.space.label=Fellesskap 5 | invitations.public.label=Offentlig 6 | invitations.private.label=Privat 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_pcm.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_pl.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Zaproszenia 2 | invitations.accept.label=Akceptuj 3 | invitations.members.label=Cz\u0142onkowie 4 | invitations.space.label=Przestrze\u0144 5 | invitations.public.label=Publiczne 6 | invitations.private.label=Prywatne 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_pt_BR.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Convites 2 | invitations.accept.label=Aceitar 3 | invitations.members.label=Membros 4 | invitations.space.label=Espa\u00E7o 5 | invitations.public.label=P\u00FAblico 6 | invitations.private.label=Privado 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_pt_PT.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Convites 2 | invitations.accept.label=Aceitar 3 | invitations.members.label=Membros 4 | invitations.space.label=Espa\u00E7o 5 | invitations.public.label=P\u00FAblico 6 | invitations.private.label=Privado 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_ro.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invita\u0163ii 2 | invitations.accept.label=Accept 3 | invitations.members.label=Membri 4 | invitations.space.label=Spa\u0163iu 5 | invitations.public.label=Public 6 | invitations.private.label=Privat 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_sk.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_sl.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Vabila 2 | invitations.accept.label=Sprejmi 3 | invitations.members.label=\u010Clani 4 | invitations.space.label=Prostor 5 | invitations.public.label=Javno 6 | invitations.private.label=Zasebno 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_sv_SE.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Inbjudningar 2 | invitations.accept.label=Godk\u00E4nn 3 | invitations.members.label=Medlemmar 4 | invitations.space.label=Plats 5 | invitations.public.label=Offentlig 6 | invitations.private.label=Privat 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_th.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_tl.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Mga imbitasyon 2 | invitations.accept.label=Tanggapin 3 | invitations.members.label=Mga miyembro 4 | invitations.space.label=Espasyo 5 | invitations.public.label=Publiko 6 | invitations.private.label=Pribado 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_tr.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Davetiyeler 2 | invitations.accept.label=Kabul 3 | invitations.members.label=\u00DCyeler 4 | invitations.space.label=Alan 5 | invitations.public.label=Genel 6 | invitations.private.label=\u00D6zel 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_ur_IN.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=Invitations 2 | invitations.accept.label=Accept 3 | invitations.members.label=Members 4 | invitations.space.label=Space 5 | invitations.public.label=Public 6 | invitations.private.label=Private 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_vi.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=L\u1EDDi m\u1EDDi 2 | invitations.accept.label=\u0110\u1ED3ng \u00FD 3 | invitations.members.label=Th\u00E0nh vi\u00EAn 4 | invitations.space.label=Nh\u00F3m 5 | invitations.public.label=C\u00F4ng khai 6 | invitations.private.label=Ri\u00EAng t\u01B0 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_zh_CN.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=\u9080\u8BF7 2 | invitations.accept.label=\u63A5\u53D7 3 | invitations.members.label=\u6210\u5458 4 | invitations.space.label=\u7A7A\u95F4 5 | invitations.public.label=\u516C\u5F00 6 | invitations.private.label=\u79C1\u6709 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/invitations/invitations_zh_TW.properties: -------------------------------------------------------------------------------- 1 | invitations.header.label=\u9080\u8ACB 2 | invitations.accept.label=\u63A5\u53D7 3 | invitations.members.label=\u6210\u54E1 4 | invitations.space.label=\u7A7A\u9593 5 | invitations.public.label=\u516C\u958B 6 | invitations.private.label=\u79C1\u4EBA 7 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_az.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=\u018Flaq\u0259l\u0259ndir 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_ca.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggeriments 2 | connection.label=connexions en com\u00FA 3 | Connect.Label=Connecta 4 | member.Label=connexions s\u00F3n membres 5 | private.Label=Espai privat 6 | spacemember.Label=Membres 7 | public.label=Espai P\u00FAblic 8 | join.label=Unir-se 9 | request.label=Sol\u00B7licitud 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_ceb.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_en.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_es_ES.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Sugerencias 2 | connection.label=conexiones en com\u00FAn 3 | Connect.Label=Conectar 4 | member.Label=conexiones son miembros 5 | private.Label=Espacio privado 6 | spacemember.Label=Miembros 7 | public.label=Espacio p\u00FAblico 8 | join.label=Unirse 9 | request.label=Solicitud 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_eu.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_fi.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_he.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_hi.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_hu.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_in.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Saran 2 | connection.label=sambungan dalam common 3 | Connect.Label=Sambungan 4 | member.Label=Hubungan dengan anggota 5 | private.Label=Ruangan Pribadi 6 | spacemember.Label=Anggota 7 | public.label=Ruang Publik 8 | join.label=Gabung 9 | request.label=Permintaan 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_it.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggerimenti 2 | connection.label=connessioni in comune 3 | Connect.Label=Connetti 4 | member.Label=Le connessioni sono membri 5 | private.Label=Spazio privato 6 | spacemember.Label=Membri 7 | public.label=Spazio pubblico 8 | join.label=Ragiungere 9 | request.label=Richiedere 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_kab.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_ko.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_ms.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Sambung 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_nl.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggesties 2 | connection.label=Gemeenschappelijke connectie 3 | Connect.Label=Verbinden 4 | member.Label=Connecties zijn leden 5 | private.Label=Priv\u00E9 ruimte 6 | spacemember.Label=Leden 7 | public.label=Openbare ruimte 8 | join.label=Lid worden 9 | request.label=Verzoek 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_pcm.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_sk.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_sl.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Predlogi 2 | connection.label=skupnih povezav 3 | Connect.Label=Dodaj 4 | member.Label=\u010Dlanov, ki so povezani 5 | private.Label=Zasebni prostor 6 | spacemember.Label=\u010Clani 7 | public.label=Javni prostor 8 | join.label=Pridru\u017Ei se 9 | request.label=Pro\u0161nja 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_th.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/suggestions/suggestions_ur_IN.properties: -------------------------------------------------------------------------------- 1 | suggestions.label=Suggestions 2 | connection.label=connections in common 3 | Connect.Label=Connect 4 | member.Label=Connections are members 5 | private.Label=Private Space 6 | spacemember.Label=Members 7 | public.label=Public Space 8 | join.label=Join 9 | request.label=Request 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/resources/locale/portlet/whoisonline/whoisonline_he.properties: -------------------------------------------------------------------------------- 1 | header.label=Who's Online ? 2 | message.label=You have sent a connection request 3 | 4 | Loading.label=Loading... 5 | Connect.label=Connect 6 | Confirm.label=Confirm 7 | CancelRequest.label=Cancel Request 8 | RemoveConnection.label=Remove Connection 9 | Ignore.label=Ignore 10 | -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/webapp/calendar-home-app/components/initComponents.js: -------------------------------------------------------------------------------- 1 | import ExoCalendar from './ExoCalendar.vue'; 2 | import ExoCalendarSettings from './ExoCalendarSettings.vue'; 3 | 4 | Vue.component('exo-home-calendar', ExoCalendar); 5 | Vue.component('exo-home-calendar-settings', ExoCalendarSettings); -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/webapp/calendar-home-app/index.html: -------------------------------------------------------------------------------- 1 |
2 | 7 |
-------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/webapp/who-is-online-app/components/initComponents.js: -------------------------------------------------------------------------------- 1 | import ExoWhoIsOnline from './ExoWhoIsOnline.vue'; 2 | 3 | Vue.component('exo-who-is-online', ExoWhoIsOnline); -------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/main/webapp/who-is-online-app/index.html: -------------------------------------------------------------------------------- 1 |
2 | 7 |
-------------------------------------------------------------------------------- /extension/portlets/homepagePortlets/src/test/globals.js: -------------------------------------------------------------------------------- 1 | global.eXo = { 2 | env: { 3 | portal: { 4 | context: 'portal', 5 | rest: 'rest', 6 | language: 'fr' 7 | }, 8 | server: { 9 | portalBaseURL: '/portal/intranet' 10 | } 11 | } 12 | }; 13 | 14 | import $ from 'jquery'; 15 | global.$ = $; -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | الشركة 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_aro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | الشركة 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_az.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ca.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Organització 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ceb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_cs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Společnost 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_de.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Firma 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_el.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Εταιρεια 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_en.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_es_ES.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Empresa 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_eu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_fa.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | شرکت 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_fi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_fil.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ang Kompanya 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_fr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Société 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_hi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_hu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Perusahaan 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_it.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Azienda 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | カンパニー 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_kab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_lt.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Kompanija 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_nl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bedrijf 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_no.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Selskapet 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_pcm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_pl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Firma 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_pt_BR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Empresa 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_pt_PT.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Empresa 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Firma 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Компания 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_sk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_sl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Organizacija 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_sq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | crwdns6785870:0crwdne6785870:0 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_sv_SE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Företag 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_th.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_tl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Kompanya 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_tr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Kurum 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_uk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Компанія 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_ur_IN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Company 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_vi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Công ty 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_zh_CN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 公司 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UICompanyNavigationPortlet/UICompanyNavigationPortlet_zh_TW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 公司 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_aro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_az.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ca.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ceb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_cs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_de.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_el.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_en.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_es_ES.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_eu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_fa.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_fi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_fil.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_fr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_hi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_hu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_it.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_kab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_lt.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_nl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_no.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_pcm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_pl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_pt_BR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_pt_PT.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_sk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_sl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_sq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_sv_SE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_th.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_tl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_tr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_uk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_ur_IN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_vi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_zh_CN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIGroupsNavigationPortlet/UIGroupsNavigationPortlet_zh_TW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | مساعدة 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_aro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | مساعدة 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_az.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Kömək 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ca.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ajuda 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ceb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_cs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nápověda 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_de.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hilfe 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_el.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Βοήθεια 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_en.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_es_ES.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ayuda 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_eu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_fa.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | راهنما 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_fi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_fil.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tulong 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_fr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Aide 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_hi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_hu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bantuan 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_it.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Aiuto 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ヘルプ 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_kab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_lt.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pagalba 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_nl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hulp 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_no.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hjelp 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_pcm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_pl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pomoc 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_pt_BR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ajuda 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_pt_PT.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ajuda 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ajutor 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Помощь 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_sk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_sl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pomoč 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_sq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | crwdns6785967:0crwdne6785967:0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_sv_SE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hjälp 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_th.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_tl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tulong 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_tr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Yardım 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_uk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Допомога 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_ur_IN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Help 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_vi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Trợ giúp 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_zh_CN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 帮助 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UIHelpPlatformToolbarPortlet/UIHelpPlatformToolbarPortlet_zh_TW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 幫助 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | البحث عن: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_aro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | البحث عن: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_az.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ca.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Cerca: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ceb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_cs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hledat: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_de.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Suche: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_el.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Αναζήτηση: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_en.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_es_ES.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Búsqueda: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_eu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_fa.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | جستجو: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_fi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_fil.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hanapin: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_fr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Recherchez 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_hi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_hu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pencarian: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_it.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ricercare: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 検索: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_kab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_lt.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Paieška: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_nl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Zoek: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_no.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Søk: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_pcm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_pl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Szukaj: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_pt_BR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Buscar: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_pt_PT.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pesquisa: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Caută: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Поиск: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_sk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_sl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Išči: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_sq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | crwdns6785747:0crwdne6785747:0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_sv_SE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Sök: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_th.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_tl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Magsaliksik: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_tr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Arama: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_uk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Пошук: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_ur_IN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Search: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_vi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tìm kiếm: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_zh_CN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 搜索: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/resources/locale/portlet/UISearchPlatformToolbarPortlet/UISearchPlatformToolbarPortlet_zh_TW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 搜尋: 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/portlets/platformNavigation/src/main/webapp/WEB-INF/conf/portlet/UIUserPlatformToolBarPortlet/configuration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.exoplatform.platform.component.UIUserPlatformToolBarPortlet 4 | org.exoplatform.webui.application.portlet.ParentAppStateManager 5 | 6 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/beans.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/users_en.properties: -------------------------------------------------------------------------------- 1 | SpacesAdministrationPortlet.label.spaces=Manage Spaces -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/users_fr.properties: -------------------------------------------------------------------------------- 1 | SpacesAdministrationPortlet.label.spaces=G\u00E9rer les Espaces -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | مُـستكشف المحتوى 5 | إدارة المحتوى 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_aro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | مُـستكشف المحتوى 5 | إدارة المحتوى 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_az.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ca.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Explorador de Continguts 5 | Gestió de Continguts 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ceb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_cs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Správa obsahu 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_de.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Inhaltsexplorer 5 | Inhaltsverwaltung 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_el.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Διαχείριση περιεχομένου 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_en.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_es_ES.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Explorador de Contenido 5 | Administración de contenido 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_eu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_fa.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | مدیریت محتوا 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_fi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_fil.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Ang Pangangasiwa ng Nilalaman 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_fr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Explorateur de Contenu 5 | Administration de Contenu 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_hi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_hu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Administrasi Konten 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_it.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Explorer di Contenuti 5 | Amministrazione Contenuti 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | コンテンツ エクスプ ローラー 5 | コンテンツ管理 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_kab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_lt.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Turinio administravimas 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_nl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Inhoud Explorer 5 | Inhoud administratie 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_no.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Innholds administrasjon 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_pcm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_pl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Zarządzanie treścią 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_pt_BR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Gerenciador de conteúdo 5 | Administração de conteúdo 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_pt_PT.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Explorador de Sites 5 | Administração de Conteúdo 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Administrare conţinut 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Обозреватель контента 5 | Управление контентом 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_sk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_sl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Raziskovalec vsebine 5 | Urejanje vsebine 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_sq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | crwdns6785637:0crwdne6785637:0 5 | crwdns6785638:0crwdne6785638:0 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_sv_SE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Utforskare för innehåll 5 | Innehållsadministration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_th.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_tl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Nilalaman ng Pangangasiwa 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_tr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | İçerik Gezgini 5 | İçerik Yönetimi 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_uk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Управління контентом 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_ur_IN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Content Explorer 5 | Content Administration 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_vi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Trình duyệt Nội dung 5 | Quản trị Nội dung 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_zh_CN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 资源管理器中的内容 5 | 内容管理 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/resources/locale/navigation/group/platform/web-contributors_zh_TW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 資源管理器中的內容 5 | 內容管理員 6 | 7 | 8 | -------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/WEB-INF/jboss-web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DB Connection 5 | exo-jpa_portal 6 | javax.sql.DataSource 7 | Container 8 | java:/comp/env/exo-jpa_portal 9 | 10 | -------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/extension/webapp/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/jsp/portlet-disabled.jsp: -------------------------------------------------------------------------------- 1 |

this portlet has been disabled

-------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/skin/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/extension/webapp/src/main/webapp/skin/images/Logo.png -------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/skin/images/bottomBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/extension/webapp/src/main/webapp/skin/images/bottomBG.png -------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/skin/images/errorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/extension/webapp/src/main/webapp/skin/images/errorIcon.png -------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/skin/images/headerBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/extension/webapp/src/main/webapp/skin/images/headerBG.png -------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/skin/images/loginAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/extension/webapp/src/main/webapp/skin/images/loginAction.png -------------------------------------------------------------------------------- /extension/webapp/src/main/webapp/skin/images/login_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/extension/webapp/src/main/webapp/skin/images/login_texture.jpg -------------------------------------------------------------------------------- /portlets/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["es2015", {"modules": false}]], 3 | 4 | "env": { 5 | "test": { 6 | "plugins": ["transform-es2015-modules-commonjs"] 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /portlets/src/main/resources/locale/portlet/poll/FeaturedPoll_en.properties: -------------------------------------------------------------------------------- 1 | featuredPoll.title=Featured Poll 2 | featuredPoll.discussInForum=Discuss in Forum 3 | featuredPoll.vote=Vote 4 | featuredPoll.selectOtherPoll=Select another poll 5 | featuredPoll.noPoll=There is no poll 6 | featuredPoll.voteAgain=Vote Again 7 | -------------------------------------------------------------------------------- /portlets/src/main/resources/locale/portlet/rss/RSSReader_en.properties: -------------------------------------------------------------------------------- 1 | viewLink=view link 2 | noFeedItem=There is no feed item 3 | -------------------------------------------------------------------------------- /portlets/src/main/webapp/bookmark/index.html: -------------------------------------------------------------------------------- 1 |
2 | 7 |
8 | -------------------------------------------------------------------------------- /portlets/src/main/webapp/login-history/index.html: -------------------------------------------------------------------------------- 1 |
2 | 7 |
8 | -------------------------------------------------------------------------------- /portlets/src/test/globals.js: -------------------------------------------------------------------------------- 1 | global.eXo = { 2 | env: { 3 | portal: { 4 | context: 'portal', 5 | rest: 'rest', 6 | language: 'fr' 7 | } 8 | } 9 | }; -------------------------------------------------------------------------------- /registration/src/main/webapp/WEB-INF/jsp/software-registration/PLFRegistrationIntro.jsp: -------------------------------------------------------------------------------- 1 |
2 | <%=rb.getString("PLFRegistrationIntro.label.intro").replaceAll("\\{1}","eXo Tribe")%> 3 |
-------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ar.properties: -------------------------------------------------------------------------------- 1 | developers.ide=\u0646\u0638\u0627\u0645 \u0628\u0631\u0645\u062C\u0629 \u0645\u062A\u0643\u0627\u0645\u0644 IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_aro.properties: -------------------------------------------------------------------------------- 1 | developers.ide=\u0646\u0638\u0627\u0645 \u0628\u0631\u0645\u062C\u0629 \u0645\u062A\u0643\u0627\u0645\u0644 IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_az.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ca.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ceb.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_cs.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_de.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_el.properties: -------------------------------------------------------------------------------- 1 | developers.ide=\u03A0\u03B5\u03C1\u03B9\u03B2\u03AC\u03BB\u03BB\u03BF\u03BD \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03C9\u03BC\u03AD\u03BD\u03B7\u03C2 \u03B1\u03BD\u03AC\u03C0\u03C4\u03C5\u03BE\u03B7\u03C2 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_en.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_es_ES.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_eu.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_fa.properties: -------------------------------------------------------------------------------- 1 | developers.ide=\u0645\u062D\u06CC\u0637 \u0646\u0631\u0645 \u0627\u0641\u0632\u0627\u0631\u06CC 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_fi.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_fil.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_fr.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_he.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_hi.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_hu.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_in.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_it.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ja.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_kab.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ko.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_lt.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ms.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_nl.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_no.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_pcm.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_pl.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_pt_BR.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_pt_PT.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ro.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ru.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_sk.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_sl.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_sq.properties: -------------------------------------------------------------------------------- 1 | developers.ide=crwdns6785808:0crwdne6785808:0 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_sv_SE.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_th.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_tl.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_tr.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_uk.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_ur_IN.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_vi.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_zh_CN.properties: -------------------------------------------------------------------------------- 1 | developers.ide=\u96C6\u6210\u5F00\u53D1\u5DE5\u5177 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/developers_zh_TW.properties: -------------------------------------------------------------------------------- 1 | developers.ide=IDE 2 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | مهام سير العمل 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_aro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | مهام سير العمل 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_az.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ca.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ceb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_cs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_de.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow-Aufgaben 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_el.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_en.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_es_ES.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tareas de flujo de trabajo 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_eu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_fa.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_fi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_fil.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_fr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tâches de Workflow 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_hi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_hu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_it.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Compiti di Flusso di Lavoro 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ワークフロー タスク 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_kab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_lt.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_nl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_no.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_pcm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_pl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_pt_BR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tarefas de fluxo de trabalho 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_pt_PT.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tarefas de fluxo de trabalho 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_sk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_sl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_sq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | crwdns6785639:0crwdne6785639:0 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_sv_SE.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_th.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_tl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_tr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_uk.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_ur_IN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_vi.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Quy trình Công việc 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_zh_CN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/navigation/group/organization/employees_zh_TW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Workflow Tasks 5 | 6 | 7 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_az.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_ca.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_ceb.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_cs.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_de.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_el.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_en.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_es_ES.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_eu.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_fa.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_fi.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_fil.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_hi.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_hu.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_in.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_it.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_ja.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_kab.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_ko.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_lt.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_ms.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_nl.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_no.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_pcm.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_pl.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_pt_BR.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_pt_PT.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_ro.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_ru.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_sk.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_sl.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_sv_SE.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_th.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_tl.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_tr.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_ur_IN.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_vi.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_zh_CN.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/acme-intranet/webapp/src/main/resources/locale/portal/webui_zh_TW.properties: -------------------------------------------------------------------------------- 1 | ForumPortlet.label.name=Forums 2 | WikiPortlet.label.name=Wiki 3 | FileExplorerPortlet.label.name=Documents 4 | CalendarPortlet.label.name=Agenda 5 | SpaceSettingPortlet.label.name=Space Settings 6 | AnswersPortlet.label.name=Answer 7 | FAQPortlet.label.name=FAQ 8 | MembersPortlet.label.name=Members 9 | -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlackFooterBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlackFooterBg.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlackLargeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlackLargeIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlackLogoBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlackLogoBg.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlackMediumIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlackMediumIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlackSmallIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlackSmallIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlueFooterBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlueFooterBg.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlueLargeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlueLargeIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlueLogoBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlueLogoBg.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlueMediumIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlueMediumIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BlueSmallIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BlueSmallIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/BreadcumsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/BreadcumsIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/CollapseIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/CollapseIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/DefaultHeightContrastIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/DefaultHeightContrastIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/DefaultNormalContrastIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/DefaultNormalContrastIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/ExpandIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/ExpandIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/Flag_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/Flag_en.jpg -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/Flag_fr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/Flag_fr.jpg -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/ListBlueIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/ListBlueIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogBull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogBull.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/Logo.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/Logo4linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/Logo4linux.jpg -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoBPI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoBPI.jpg -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoCaixa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoCaixa.jpg -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoCitet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoCitet.jpg -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoGlobecast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoGlobecast.jpg -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoIToptics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoIToptics.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoMutavie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoMutavie.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoNextep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoNextep.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoValueteam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoValueteam.gif -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/LogoVevo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/LogoVevo.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/MenuBarBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/MenuBarBg.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/SelectedHeightContrastIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/SelectedHeightContrastIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/SelectedNormalContrastIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/SelectedNormalContrastIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/Split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/Split.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/WhiteLargeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/WhiteLargeIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/WhiteMediumIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/WhiteMediumIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/WhiteSmallIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/WhiteSmallIcon.png -------------------------------------------------------------------------------- /samples/wai-template/src/main/webapp/skin/resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplatform/platform/07b87fec38fb560622e5a3a7d50b669e134d7be5/samples/wai-template/src/main/webapp/skin/resources/search.png --------------------------------------------------------------------------------