diff --git a/docs/injectables/L10nDefaultMissingTranslationHandler.html b/docs/injectables/L10nDefaultMissingTranslationHandler.html
index 7a999520..f28d39ba 100644
--- a/docs/injectables/L10nDefaultMissingTranslationHandler.html
+++ b/docs/injectables/L10nDefaultMissingTranslationHandler.html
@@ -114,15 +114,15 @@
- handle(key: string)
+ handle(key: string, value?: string)
|
-
+
|
@@ -152,6 +152,18 @@
+
+
+ value |
+
+ string
+ |
+
+
+ Yes
+ |
+
+
@@ -185,15 +197,16 @@
/**
* This method must contain the logic to handle missing values.
* @param key The key that has been requested
+ * @param value Null or empty string
* @return The value
*/
- public abstract handle(key: string): string | any;
+ public abstract handle(key: string, value?: string): string | any;
}
@Injectable() export class L10nDefaultMissingTranslationHandler implements L10nMissingTranslationHandler {
- public handle(key: string): string | any {
+ public handle(key: string, value?: string): string | any {
return key;
}
diff --git a/docs/injectables/L10nMissingTranslationHandler.html b/docs/injectables/L10nMissingTranslationHandler.html
index 75a52be5..08284d5d 100644
--- a/docs/injectables/L10nMissingTranslationHandler.html
+++ b/docs/injectables/L10nMissingTranslationHandler.html
@@ -123,15 +123,15 @@
- handle(key: string)
+ handle(key: string, value?: string)
|
-
+
|
@@ -169,6 +169,22 @@
+
+ value |
+
+ string
+ |
+
+
+ Yes
+ |
+
+
+
+ Null or empty string
+
+ |
+
@@ -202,15 +218,16 @@
/**
* This method must contain the logic to handle missing values.
* @param key The key that has been requested
+ * @param value Null or empty string
* @return The value
*/
- public abstract handle(key: string): string | any;
+ public abstract handle(key: string, value?: string): string | any;
}
@Injectable() export class L10nDefaultMissingTranslationHandler implements L10nMissingTranslationHandler {
- public handle(key: string): string | any {
+ public handle(key: string, value?: string): string | any {
return key;
}
diff --git a/docs/injectables/L10nTranslationService.html b/docs/injectables/L10nTranslationService.html
index 9ca301db..2da636a9 100644
--- a/docs/injectables/L10nTranslationService.html
+++ b/docs/injectables/L10nTranslationService.html
@@ -1542,7 +1542,7 @@