View All Catalogs
Catalogs control the translations that you see within any given WebApp. These can be seen by selecting Admin > Translations > Catalogs in the Navigation pane, but delivered catalogs cannot be modified and their Edit icons are disabled.
View Current Catalogs for a WebApp
To see what current catalogs are set up for any WebApp (and their priority), you can run the following query in SQL Server Management Studio:
USE CranSoft
SELECT dbo.WebAppCatalog.Priority,
dbo.WebAppCatalog.WebAppID,
dbo.WebApp.WebAppName,
dbo.WebAppCatalog.CatalogID,
dbo.catalog.Name as CatalogName
FROM dbo.WebAppCatalog
INNER JOIN dbo.[Catalog]
ON dbo.WebAppCatalog.CatalogID = dbo.[Catalog].CatalogID
INNER JOIN dbo.WebApp
ON dbo.WebAppCatalog.WebAppID = dbo.WebApp.WebAppID
WHERE Name <> '(page)'
ORDER BY WebAppName, Priority
Add Custom Catalogs to a WebApp
- Select Admin > Customization > WebApp Customization
- Click the Catalogs icon for the desired WEB APP NAME.