refactor(backend): _i18n -> i18n
This commit is contained in:
		
							parent
							
								
									8389414ea4
								
							
						
					
					
						commit
						c219612d99
					
				
					 5 changed files with 2 additions and 2 deletions
				
			
		|  | @ -8,12 +8,12 @@ const logger: Logger = getLogger(); | ||||||
| 
 | 
 | ||||||
| export function loadTranslations<T>(language: string): T { | export function loadTranslations<T>(language: string): T { | ||||||
|     try { |     try { | ||||||
|         const filePath = path.join(process.cwd(), '_i18n', `${language}.yml`); |         const filePath = path.join(process.cwd(), 'i18n', `${language}.yml`); | ||||||
|         const yamlFile = fs.readFileSync(filePath, 'utf8'); |         const yamlFile = fs.readFileSync(filePath, 'utf8'); | ||||||
|         return yaml.load(yamlFile) as T; |         return yaml.load(yamlFile) as T; | ||||||
|     } catch (error) { |     } catch (error) { | ||||||
|         logger.warn(`Cannot load translation for ${language}, fallen back to dutch`, error); |         logger.warn(`Cannot load translation for ${language}, fallen back to dutch`, error); | ||||||
|         const fallbackPath = path.join(process.cwd(), '_i18n', `${FALLBACK_LANG}.yml`); |         const fallbackPath = path.join(process.cwd(), 'i18n', `${FALLBACK_LANG}.yml`); | ||||||
|         return yaml.load(fs.readFileSync(fallbackPath, 'utf8')) as T; |         return yaml.load(fs.readFileSync(fallbackPath, 'utf8')) as T; | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
		Reference in a new issue