Skip to content

Commit

Permalink
Don't use ordinal number modifier in long formats in Russian (#2478)
Browse files Browse the repository at this point in the history
Fixed Russian locale to use correct long formats.
  • Loading branch information
jwbth committed May 28, 2021
1 parent 91726f2 commit deee6a3
Show file tree
Hide file tree
Showing 2 changed files with 184 additions and 184 deletions.
4 changes: 2 additions & 2 deletions src/locale/ru/_lib/formatLong/index.js
@@ -1,8 +1,8 @@
import buildFormatLongFn from '../../../_lib/buildFormatLongFn/index'

var dateFormats = {
full: "EEEE, do MMMM y 'г.'",
long: "do MMMM y 'г.'",
full: "EEEE, d MMMM y 'г.'",
long: "d MMMM y 'г.'",
medium: "d MMM y 'г.'",
short: 'dd.MM.y'
}
Expand Down

0 comments on commit deee6a3

Please sign in to comment.