@if (activePlazaTab() !== 'favorites' && loadingRepositories()) {
{{ 'XP.Explore.LoadingRepositories' | translate: { Default: 'Loading skill repositories...' } }}
} @else if (activePlazaTab() !== 'favorites' && !repositories().length) {

{{ 'XP.Explore.NoSkillRepositories' | translate: { Default: 'No skill repositories are available for this organization yet' } }}

{{ 'XP.Explore.NoSkillRepositoriesHint' | translate : { Default: 'Connect a skill repository for this organization first. Once connected, the market catalog appears here and skills can be installed or updated in workspaces.' } }}

} @else {
@switch (activePlazaTab()) { @case ('favorites') {

{{ 'XP.Explore.MyFavoritesTitle' | translate: { Default: 'My Favorites' } }}

{{ 'XP.Explore.MyFavoritesHint' | translate : { Default: 'This currently shows skills already added to the default workspace. Persistent favorites can be connected in a later version.' } }}

@if (loadingInstalledSkills()) {
{{ 'XP.Explore.LoadingMySkills' | translate: { Default: 'Loading my skills...' } }}
} @else if (!mineSkills().length) {

{{ 'XP.Explore.NoMySkills' | translate: { Default: 'No skills in the default workspace yet' } }}

{{ 'XP.Explore.NoMySkillsHint' | translate : { Default: 'Install or update skills from the plaza first, or open the default workspace to upload and manage custom skill packages manually.' } }}

} @else {
@for (skill of mineSkills(); track skill.id || skill.name || skill.packagePath) {

{{ displayInstalledSkillName(skill) }}

{{ installedSkillSummary(skill) }}

{{ installedSkillRepositoryLabel(skill) }}
@if (installedSkillTags(skill).length) {
@for (tag of installedSkillTags(skill); track tag) { {{ tag }} }
}
{{ skill.updatedAt || skill.createdAt | date: 'yyyy-MM-dd' }}
@if (isLocalSkill(skill)) { }
}
}
} @case ('enterprise') {

{{ 'XP.Explore.EnterpriseAreaTitle' | translate: { Default: 'Enterprise Area' } }}

{{ 'XP.Explore.EnterpriseAreaHint' | translate : { Default: 'Browse installable skills from repositories connected to this organization. Search and repository filters directly affect the live list below.' } }}

} @default {

{{ 'XP.Explore.AllSkillsTitle' | translate: { Default: 'All Skills' } }}

{{ 'XP.Explore.AllSkillsHint' | translate : { Default: 'Browse all available skills by repository, search live data in the current tab, and keep loading more as you scroll.' } }}

} }
}