Skip to content

Commit

Permalink
Merge pull request #85 from MichaelNattfalkConsid/master
Browse files Browse the repository at this point in the history
Extend possible period for import from 365 to 730 days
  • Loading branch information
sebastianthulin authored Jan 28, 2022
2 parents e23ab51 + 787df76 commit f44c49a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions AcfFields/json/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"label": "Days ahead",
"name": "days_ahead",
"type": "number",
"instructions": "Import events that occurs within given number of days.",
"instructions": "Import events that occurs within given number of days. Try to keep it as short as possible to avoid unnecessary datatransfer.",
"required": 1,
"conditional_logic": 0,
"wrapper": {
Expand All @@ -36,7 +36,7 @@
"prepend": "",
"append": "days",
"min": 1,
"max": 365,
"max": 730,
"step": ""
},
{
Expand Down
4 changes: 2 additions & 2 deletions AcfFields/php/options.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'label' => __('Days ahead', 'event-integration'),
'name' => 'days_ahead',
'type' => 'number',
'instructions' => __('Import events that occurs within given number of days.', 'event-integration'),
'instructions' => __('Import events that occurs within given number of days. Try to keep it as short as possible to avoid unnecessary datatransfer.', 'event-integration'),
'required' => 1,
'conditional_logic' => 0,
'wrapper' => array(
Expand All @@ -39,7 +39,7 @@
'prepend' => '',
'append' => __('days', 'event-integration'),
'min' => 1,
'max' => 365,
'max' => 730,
'step' => '',
),
2 => array(
Expand Down
Binary file modified languages/event-integration-sv_SE.mo
Binary file not shown.
4 changes: 2 additions & 2 deletions languages/event-integration-sv_SE.po
Original file line number Diff line number Diff line change
Expand Up @@ -635,8 +635,8 @@ msgid "Days ahead"
msgstr "Dagar framåt"

#: AcfFields/php/options.php:29
msgid "Import events that occurs within given number of days."
msgstr "Importera evenemang som inträffar inom angivet antal dagar."
msgid "Import events that occurs within given number of days. Try to keep it as short as possible to avoid unnecessary datatransfer."
msgstr "Importera evenemang som inträffar inom angivet antal dagar. Försök hålla perioden så kort som möjligt för att undvika onödig dataöverföring."

#: AcfFields/php/options.php:40
msgid "days"
Expand Down
2 changes: 1 addition & 1 deletion languages/event-integration-sv_SE.pot
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ msgid "Days ahead"
msgstr ""

#: AcfFields/php/options.php:29
msgid "Import events that occurs within given number of days."
msgid "Import events that occurs within given number of days. Try to keep it as short as possible to avoid unnecessary datatransfer."
msgstr ""

#: AcfFields/php/options.php:40
Expand Down

0 comments on commit f44c49a

Please sign in to comment.