mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 20:36:07 +01:00 
			
		
		
		
	Standardize UTC timezone for `translateMonth` and `translateDay` tests.
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							371dd96e3e
						
					
				
				
					commit
					1d52228ee7
				
			@@ -78,12 +78,12 @@ function getCurrentLocale() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// given a month (0-11), returns it in the documents language
 | 
					// given a month (0-11), returns it in the documents language
 | 
				
			||||||
export function translateMonth(month) {
 | 
					export function translateMonth(month) {
 | 
				
			||||||
  return new Date(Date.UTC(2022, month, 12)).toLocaleString(getCurrentLocale(), {month: 'short'});
 | 
					  return new Date(Date.UTC(2022, month, 12)).toLocaleString(getCurrentLocale(), {month: 'short', timeZone: 'UTC'});
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// given a weekday (0-6, Sunday to Saturday), returns it in the documents language
 | 
					// given a weekday (0-6, Sunday to Saturday), returns it in the documents language
 | 
				
			||||||
export function translateDay(day) {
 | 
					export function translateDay(day) {
 | 
				
			||||||
  return new Date(Date.UTC(2022, 7, day)).toLocaleString(getCurrentLocale(), {weekday: 'short'});
 | 
					  return new Date(Date.UTC(2022, 7, day)).toLocaleString(getCurrentLocale(), {weekday: 'short', timeZone: 'UTC'});
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// convert a Blob to a DataURI
 | 
					// convert a Blob to a DataURI
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user