mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
Merge pull request #5707 from luisramos0/missing_spaces
Add space after translations so that translators dont have to guess a space is needed
This commit is contained in:
@@ -12,4 +12,4 @@ Darkswarm.filter "sensible_timeframe", (date_in_wordsFilter)->
|
||||
if moment().add(2, 'days') < moment(date, dateFormat)
|
||||
t 'orders_open'
|
||||
else
|
||||
t('closing') + date_in_wordsFilter(date)
|
||||
t('closing') + ' ' + date_in_wordsFilter(date)
|
||||
|
||||
@@ -20,7 +20,7 @@ module Spree
|
||||
@user = user
|
||||
I18n.with_locale valid_locale(@user) do
|
||||
mail(to: user.email, from: from_address,
|
||||
subject: t(:welcome_to) + Spree::Config[:site_name])
|
||||
subject: t(:welcome_to) + ' ' + Spree::Config[:site_name])
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -207,8 +207,8 @@ en:
|
||||
explainer: Automatic processing of these orders failed for an unknown reason. This should not occur, please contact us if you are seeing this.
|
||||
|
||||
home: "OFN"
|
||||
title: Open Food Network
|
||||
welcome_to: 'Welcome to '
|
||||
title: "Open Food Network"
|
||||
welcome_to: "Welcome to"
|
||||
site_meta_description: "We begin from the ground up. With farmers and growers ready to tell their stories proudly and truly. With distributors ready to connect people with products fairly and honestly. With buyers who believe that better weekly shopping decisions can…"
|
||||
search_by_name: Search by name or suburb...
|
||||
producers: 'Australian Producers'
|
||||
@@ -1839,8 +1839,8 @@ See the %{link} to find out more about %{sitename}'s features and to start using
|
||||
password: Password
|
||||
remember_me: Remember Me
|
||||
are_you_sure: "Are you sure?"
|
||||
orders_open: Orders open
|
||||
closing: "Closing "
|
||||
orders_open: "Orders open"
|
||||
closing: "Closing"
|
||||
going_back_to_home_page: "Taking you back to the home page"
|
||||
creating: Creating
|
||||
updating: Updating
|
||||
|
||||
Reference in New Issue
Block a user