Skip to content

Commit

Permalink
Add indication of AM or PM to all locales where missing (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
tferrerm committed Nov 20, 2023
1 parent fd53087 commit fc6fc37
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 22 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,9 +1,21 @@
## unreleased

## 7.0.9 (2023-11-16)

- Fix empty `am` and `pm` keys to make dates/times in the 12-hour time format distinguishable in every locale #1105
- Update following locales:
- Afrikaans (af): Fix translation of May #1110
- Traditional Chinese (zh-HK, zh-TW, zh-YUE): Use traditional "week" character in `date.abbr_day_names` #1112
- Italian (it): Fix translation for `second` prompt #1111
- Bosnian (bs): am/pm
- Danish (da): am/pm
- Galician (gl): am/pm
- Icelandic (is): am/pm
- Norwegian Bokmål (nb): am/pm
- Norwegian Nynorsk (nn): am/pm
- Portuguese (pt-BR): am/pm
- Romanian (ro): am/pm
- Swedish (sv sv-FI sv-SE): am/pm

## 7.0.8 (2023-08-15)

Expand Down
4 changes: 2 additions & 2 deletions rails/locale/bs.yml
Expand Up @@ -240,9 +240,9 @@ bs:
two_words_connector: " i "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%d.%m.%Y. %H:%M:%S"
long: "%d. %B %Y. - %H:%M:%S"
short: "%d. %b %Y. %H:%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/da.yml
Expand Up @@ -213,9 +213,9 @@ da:
two_words_connector: " og "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%e. %B %Y, %H.%M"
long: "%A d. %e. %B %Y, %H.%M"
short: "%e. %b %Y, %H.%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/gl.yml
Expand Up @@ -164,9 +164,9 @@ gl:
two_words_connector: " e "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%A, %e de %B de %Y ás %H:%M"
long: "%A %e de %B de %Y ás %H:%M"
short: "%e/%m, %H:%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/is.yml
Expand Up @@ -208,9 +208,9 @@ is:
two_words_connector: " og "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%A %e. %B %Y kl. %H:%M"
long: "%A %e. %B %Y kl. %H:%M"
short: "%e. %B kl. %H:%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/nb.yml
Expand Up @@ -213,9 +213,9 @@ nb:
two_words_connector: " og "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%A, %e. %B %Y, %H:%M"
long: "%A, %e. %B %Y, %H:%M"
short: "%e. %B, %H:%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/nn.yml
Expand Up @@ -200,9 +200,9 @@ nn:
two_words_connector: " og "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%A, %e. %B %Y, %H:%M"
long: "%A, %e. %B %Y, %H:%M"
short: "%e. %B, %H:%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/pt-BR.yml
Expand Up @@ -217,9 +217,9 @@ pt-BR:
two_words_connector: " e "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%a, %d de %B de %Y, %H:%M:%S %z"
long: "%d de %B de %Y, %H:%M"
short: "%d de %B, %H:%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/ro.yml
Expand Up @@ -201,9 +201,9 @@ ro:
two_words_connector: " și "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%a %d %b %Y, %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/sv-FI.yml
Expand Up @@ -199,9 +199,9 @@ sv-FI:
two_words_connector: " och "
words_connector: ", "
time:
am: ""
am: am
formats:
default: "%a, %e %b %Y %H:%M:%S %z"
long: "%e %B %Y %H:%M"
short: "%e %b %H:%M"
pm: ""
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/sv-SE.yml
Expand Up @@ -202,9 +202,9 @@ sv-SE:
two_words_connector: " och "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%a, %e %b %Y %H:%M:%S %z"
long: "%e %B %Y %H:%M"
short: "%e %b %H:%M"
pm: ''
pm: pm
4 changes: 2 additions & 2 deletions rails/locale/sv.yml
Expand Up @@ -202,9 +202,9 @@ sv:
two_words_connector: " och "
words_connector: ", "
time:
am: ''
am: am
formats:
default: "%a, %e %b %Y %H:%M:%S %z"
long: "%e %B %Y %H:%M"
short: "%e %b %H:%M"
pm: ''
pm: pm

0 comments on commit fc6fc37

Please sign in to comment.