Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

German date formats #247

Merged
merged 6 commits into from Mar 4, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
added more german date formats
  • Loading branch information
jens-struct committed Mar 4, 2018
commit c053f05aa2426fe729c0e69fd72d50235f81600f
9 changes: 9 additions & 0 deletions app/components/settings/_partials/invoice/Other.jsx
Original file line number Diff line number Diff line change
@@ -79,9 +79,18 @@ function Other({
<option value="DD/MM/YY">
{moment(Date.now()).format('DD/MM/YY')} (DD/MM/YY)
</option>
<option value="dddd, Do MMMM YYYY">
{moment(Date.now()).format('dddd, Do MMMM YYYY')} (dddd, Do MMMM YYYY)
</option>
<option value="Do MMMM YYYY">
{moment(Date.now()).format('Do MMMM YYYY')} (Do MMMM YYYY)
</option>
<option value="DD.MM.YYYY">
{moment(Date.now()).format('DD.MM.YYYY')} (DD.MM.YYYY)
</option>
<option value="DD.MM.YY">
{moment(Date.now()).format('DD.MM.YY')} (DD.MM.YY)
</option>
</select>
</Field>
</Row>