#REM Parameters: #SNIPPET.AttributeName ... name of the input field (object attribute for input) (optional) #SNIPPET.Object ... object of the input data field (optional, only in combination with AttributeName) #SNIPPET.HideTranslationMissingWarning ... do not show any tooltip for missing translations (default: 0) Example: #SNIPPET("INC-I18n-Tooltip", "AttributeName", "Name") #ENDREM #IF(#ShopHasMultipleLanguages)
#IF(NOT #SNIPPET.HideTranslationMissingWarning) #LOCAL("SnippetObject", #Object) #IF(#DEFINED(#SNIPPET.Object)) #SET("SnippetObject", #SNIPPET.Object) #ENDIF #IF(#DEFINED(#SNIPPET.AttributeName) AND #HasUntranslatedEntries(#SnippetObject, #SNIPPET.AttributeName)) {BubbleHelpTranslationsMissing} #ENDIF #ENDLOCAL #ENDIF {BubbleHelpTranslatable}
#ENDIF