mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Localize time units on activity heatmap (#21570)
Previously, the months and days were hardcoded into English * Closes #15541 ## Screenshots ### English  ### German  ### Spanish  ### Italian  ### Portuguese This one has a bit of overflow  Signed-off-by: Yarden Shoham <hrsi88@gmail.com> Co-authored-by: Gusted <williamzijl7@hotmail.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
			
		||||
import {createApp} from 'vue';
 | 
			
		||||
import ActivityHeatmap from '../components/ActivityHeatmap.vue';
 | 
			
		||||
 | 
			
		||||
import {translateMonth, translateDay} from '../utils.js';
 | 
			
		||||
export default function initHeatmap() {
 | 
			
		||||
  const el = document.getElementById('user-heatmap');
 | 
			
		||||
  if (!el) return;
 | 
			
		||||
@@ -17,7 +17,14 @@ export default function initHeatmap() {
 | 
			
		||||
      return {date: new Date(v), count: heatmap[v]};
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    const View = createApp(ActivityHeatmap, {values});
 | 
			
		||||
    const locale = {
 | 
			
		||||
      months: new Array(12).fill().map((_, idx) => translateMonth(idx)),
 | 
			
		||||
      days: new Array(7).fill().map((_, idx) => translateDay(idx)),
 | 
			
		||||
      contributions: 'contributions',
 | 
			
		||||
      no_contributions: 'No contributions',
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const View = createApp(ActivityHeatmap, {values, locale});
 | 
			
		||||
 | 
			
		||||
    View.mount(el);
 | 
			
		||||
  } catch (err) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user