gitea/routers/web/repo
Yarden Shoham 6a6dc97b0f
Respect user's locale when rendering the date range in the repo activity page (#21410)
# Description
Previously, to make the date range understood by all, we used the format
"2006-01-02" for the dates as it's locale-generic.

This commit changes the rendering logic. Instead of rendering the date
on the server, we send a formatted computer-readable timestamp. The
client's javascript then renders it according to the user's locale.

This approach is reusable across the codebase, any `<time></time>` tag
with the data-format="date" attribute would get rendered according to
the user's chosen locale.

## Previous View

![image](https://user-images.githubusercontent.com/20454870/195099143-e1c5df86-282a-42f1-898f-a36bb5fe7c2f.png)

## New View

### English

![image](https://user-images.githubusercontent.com/20454870/195099301-5cda4eab-4012-49d5-97e5-b1f9cada9c06.png)

### French

![image](https://user-images.githubusercontent.com/20454870/195099434-ce23e394-8d65-4c4c-8ac8-8b96bc9044f3.png)

### Portuguese

![image](https://user-images.githubusercontent.com/20454870/195099559-9a7aed28-944a-45ec-bedb-64403e3faede.png)

### Italian

![image](https://user-images.githubusercontent.com/20454870/195099661-17758d55-3fe0-4797-879b-d45de0ee8ba3.png)

# References
* #21380 
* #21387
* #21396

Inspiration:

I think either differentiating by class, or probably better by a custom
attribute such as `data-format` or similar, is the best course of
action.

_Originally posted by @delvh in
https://github.com/go-gitea/gitea/issues/21396#issuecomment-1274424788_
      


Resolves #21380

Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
2022-10-13 00:14:14 +03:00
..
activity.go Respect user's locale when rendering the date range in the repo activity page (#21410) 2022-10-13 00:14:14 +03:00
attachment.go
blame.go
branch.go Keep path when creating a new branch (#21153) 2022-09-15 21:25:16 +08:00
cherry_pick.go
commit.go Fix pagination limit parameter problem (#21109) 2022-09-08 11:56:14 -04:00
compare.go Fix CSV diff for added/deleted files (#21189) 2022-09-17 10:45:32 +08:00
download.go
editor_test.go
editor.go
find.go
http_test.go
http.go
issue_content_history.go
issue_dependency.go
issue_label_test.go
issue_label.go
issue_lock.go
issue_stopwatch.go
issue_test.go
issue_timetrack.go
issue_watch.go
issue.go Add generic set type (#21408) 2022-10-12 13:18:26 +08:00
lfs.go Add generic set type (#21408) 2022-10-12 13:18:26 +08:00
main_test.go Use a struct as test options (#19393) 2022-04-14 21:58:21 +08:00
middlewares.go Renamed ctx.User to ctx.Doer. (#19161) 2022-03-22 15:03:22 +08:00
migrate.go
milestone.go
packages.go
patch.go
projects_test.go
projects.go
pull_review.go Dismiss prior pull reviews if done via web in review dismiss (#20197) 2022-07-19 15:20:28 +02:00
pull.go
release_test.go
release.go Tag list should include draft releases with existing tags (#21263) 2022-10-03 20:05:53 +08:00
render.go
repo.go
search.go Add user/organization code search (#19977) 2022-10-11 00:12:03 +01:00
setting_protected_branch.go
setting.go Do not allow organisation owners add themselves as collaborator (#20043) 2022-09-28 01:25:40 +02:00
settings_test.go
tag.go
topic.go
treelist.go Refactor parseTreeEntries, speed up tree list (#21368) 2022-10-08 01:20:53 +08:00
view_test.go
view.go Add generic set type (#21408) 2022-10-12 13:18:26 +08:00
webhook.go Webhook for Wiki changes (#20219) 2022-09-04 20:54:23 +01:00
wiki_test.go
wiki.go Webhook for Wiki changes (#20219) 2022-09-04 20:54:23 +01:00