diff --git a/docs/8.0/ayanova/docs/form-adm-translation.md b/docs/8.0/ayanova/docs/form-adm-translation.md
index 0d29b967..c1a33b1e 100644
--- a/docs/8.0/ayanova/docs/form-adm-translation.md
+++ b/docs/8.0/ayanova/docs/form-adm-translation.md
@@ -1,3 +1,3 @@
-# ADM-LOCALIZED Placeholder
+# ADM-TRANSLATION Placeholder
This is a placeholder page for sections that are not written yet
diff --git a/server/AyaNova/Controllers/ApiRootController.cs b/server/AyaNova/Controllers/ApiRootController.cs
index 36f4aeca..ac7f1438 100644
--- a/server/AyaNova/Controllers/ApiRootController.cs
+++ b/server/AyaNova/Controllers/ApiRootController.cs
@@ -63,7 +63,7 @@ namespace AyaNova.Api.Controllers
AyaNova manual
API explorer
Email AyaNova support
-
{await TranslationBiz.GetDefaultLocalizedTextAsync("HelpLicense")}
+ {await TranslationBiz.GetDefaultTranslationAsync("HelpLicense")}
{AyaNova.Core.License.LicenseInfo}
Schema version
{AySchema.currentSchema.ToString()}
diff --git a/server/AyaNova/Controllers/EnumPickListController.cs b/server/AyaNova/Controllers/EnumPickListController.cs
index 13444b65..1403941a 100644
--- a/server/AyaNova/Controllers/EnumPickListController.cs
+++ b/server/AyaNova/Controllers/EnumPickListController.cs
@@ -43,7 +43,7 @@ namespace AyaNova.Api.Controllers
///
- /// Get name value localized display value list of AyaNova enumerated types for list specified
+ /// Get name value Translated display value list of AyaNova enumerated types for list specified
///
/// The key name of the enumerated type
/// List
diff --git a/server/AyaNova/Controllers/TranslationController.cs b/server/AyaNova/Controllers/TranslationController.cs
index 20856054..7a89816c 100644
--- a/server/AyaNova/Controllers/TranslationController.cs
+++ b/server/AyaNova/Controllers/TranslationController.cs
@@ -21,7 +21,7 @@ namespace AyaNova.Api.Controllers
//https://github.com/domaindrivendev/Swashbuckle.AspNetCore#include-descriptions-from-xml-comments
///
- /// Localized text controller
+ /// Translation controller
///
[ApiController]
[ApiVersion("8.0")]
@@ -131,7 +131,7 @@ namespace AyaNova.Api.Controllers
/// Get subset of translation values
///
/// List of translation key strings
- /// A key value array of localized text values
+ /// A key value array of translation text values
[HttpPost("SubSet")]
public async Task SubSet([FromBody] List inObj)
{
diff --git a/server/AyaNova/biz/Search.cs b/server/AyaNova/biz/Search.cs
index 24f583dd..e13c26e0 100644
--- a/server/AyaNova/biz/Search.cs
+++ b/server/AyaNova/biz/Search.cs
@@ -41,7 +41,7 @@ namespace AyaNova.Biz
- INDEXES: play with it and see what works best
OUTPUT FORMAT
- - No localized text, up to client
+ - No translated text, up to client
- Name of object in return result
- Object Type and ID in return result
- Group results by object type, then by object ID descending which will result in natural most recently created order
@@ -794,7 +794,7 @@ private static Dictionary translationWordBrea
}
///
- /// Stop words list reset upon login or editing of localized text
+ /// Stop words list reset upon login or editing of Translation text
/// used for eliminating noise words from search dictionary
///
diff --git a/server/AyaNova/biz/TranslationBiz.cs b/server/AyaNova/biz/TranslationBiz.cs
index 7cb8ff0f..b850d2a4 100644
--- a/server/AyaNova/biz/TranslationBiz.cs
+++ b/server/AyaNova/biz/TranslationBiz.cs
@@ -188,10 +188,10 @@ namespace AyaNova.Biz
///
///
///
- internal static async Task GetDefaultLocalizedTextAsync(string key)
+ internal static async Task GetDefaultTranslationAsync(string key)
{
if (string.IsNullOrWhiteSpace(key))
- return "ERROR: GetDefaultLocalizedText NO KEY VALUE SPECIFIED";
+ return "ERROR: GetDefaultTranslation NO KEY VALUE SPECIFIED";
#if (DEBUG)
TrackRequestedKey(key);
#endif
@@ -609,7 +609,7 @@ namespace AyaNova.Biz
{
if (!NewTranslationDict.ContainsKey(s))
{
- NewTranslationDict.Add(s, await GetDefaultLocalizedTextAsync(s));
+ NewTranslationDict.Add(s, await GetDefaultTranslationAsync(s));
}
}