mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
This is all legacy from spree that can be cleaned up at some point, we only have two handlebars templates in OFN
10 lines
281 B
JavaScript
10 lines
281 B
JavaScript
//= require handlebars
|
|
|
|
Handlebars.registerHelper("t", function(key) {
|
|
if (Spree.translations[key]) {
|
|
return Spree.translations[key]
|
|
} else {
|
|
console.error("No translation found for " + key + ". Does it exist within spree/admin/shared/_translations.html.erb?")
|
|
}
|
|
});
|