LCOV - code coverage report
Current view: top level - globalscripts - l10n.js (source / functions) Hit Total Coverage
Test: lcov.info Lines: 1 3 33.3 %
Date: 2023-04-02 12:52:40 Functions: 1 3 33.3 %

          Line data    Source code
       1             : /**
       2             :  * Function is used by the extract-messages tool.
       3             :  * So it may only be used on a plain string,
       4             :  * it won't have any effect on a calculated string.
       5             :  */
       6             : function markForTranslation(message)
       7             : {
       8           8 :         return message;
       9             : }
      10             : 
      11             : function markForTranslationWithContext(context, message)
      12             : {
      13           0 :         return message;
      14             : }
      15             : 
      16             : function markForPluralTranslation(singularMessage, pluralMessage, number)
      17             : {
      18           0 :         return {
      19             :                 "message": singularMessage,
      20             :                 "pluralMessage": pluralMessage,
      21             :                 "pluralCount": number
      22             :         };
      23             : }

Generated by: LCOV version 1.14