The page admin/config/search/metatags_quick allows to define metatags for the homepage. These are however not translatable. By defining the underlying variable to the variable module (hook_variable), these settings can be set as translatable (the same way as the home page can be set as translatable). Nice thing about this is that you don't have to do anything in your module except implementing hook_variable().

Comments

fietserwin’s picture

It is not so easy as suggested above. The Variable module is able to handle arrays, but, AFAICS, not arrays with different types for the elements. This would mean that we would have to split the single setting variable into 2 variables (metatags_quick_use_front and metatags_quick_front_values).