-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
119 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,32 @@ | ||
# v0.2.2 | ||
## 20-03-2021 | ||
|
||
1. [](#bugfix) | ||
* Fix how language is parsed if not provided | ||
2. [](#improved) | ||
* Update README | ||
* Prepare for a release to submit to GPM | ||
|
||
# v0.2.1 | ||
## 03/11/2021 | ||
## 11-03-2021 | ||
|
||
1. [](#bugfix) | ||
* Fix getting custom format for Intl | ||
|
||
# v0.2.0 | ||
## 03/11/2021 | ||
## 11-03-2021 | ||
|
||
1. [](#new) | ||
* Add Intl support (may choose via config) | ||
* Add Intl support (may choose via config) | ||
|
||
# v0.1.1 | ||
## 03/09/2021 | ||
## 09-03-2021 | ||
|
||
1. [](#bugfix) | ||
* Fallback to `GRAV.` translation if custom translation not found | ||
|
||
# v0.1.0 | ||
## 03/08/2021 | ||
## 08-03-2021 | ||
|
||
1. [](#new) | ||
* ChangeLog started... | ||
* ChangeLog started... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
name: Translate Date | ||
slug: translate-date | ||
type: plugin | ||
version: 0.2.1 | ||
version: 0.2.2 | ||
description: Define date formats for each language and easily use for dates in your templates | ||
icon: plug | ||
icon: calendar | ||
author: | ||
name: Karmalakas | ||
email: [email protected] | ||
homepage: https://github.com/Karmalakas/grav-plugin-translate-date | ||
demo: http://demo.yoursite.com | ||
keywords: grav, plugin, etc | ||
keywords: grav, plugin, date, translation, languages, multi-language | ||
bugs: https://github.com/Karmalakas/grav-plugin-translate-date/issues | ||
docs: https://github.com/Karmalakas/grav-plugin-translate-date/blob/develop/README.md | ||
license: MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
enabled: true | ||
processor: basic # Can also be `intl` | ||
processor: basic # `basic|intl` | ||
formats: | ||
en: 'm/d/Y h:mA' | ||
lt: 'Y-m-d H:i' |