mirror of https://github.com/mifi/lossless-cut
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			504 B
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			504 B
		
	
	
	
		
			JavaScript
		
	
// See also i18n.js
 | 
						|
module.exports = {
 | 
						|
  input: ['src/**/*.{js,jsx}'],
 | 
						|
  output: './public',
 | 
						|
 | 
						|
  options: {
 | 
						|
    // debug: true,
 | 
						|
    defaultLng: 'en',
 | 
						|
    func: {
 | 
						|
      list: ['i18next.t', 'i18n.t', 't'],
 | 
						|
    },
 | 
						|
 | 
						|
    defaultValue: (lng, ns, key) => key,
 | 
						|
    resource: {
 | 
						|
      loadPath: 'locales/{{lng}}/{{ns}}.json',
 | 
						|
      savePath: 'locales/{{lng}}/{{ns}}.json',
 | 
						|
      jsonIndent: 4,
 | 
						|
    },
 | 
						|
    nsSeparator: false,
 | 
						|
    keySeparator: false,
 | 
						|
    pluralSeparator: false,
 | 
						|
    contextSeparator: false,
 | 
						|
  },
 | 
						|
};
 |