Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 735 Bytes

File metadata and controls

34 lines (23 loc) · 735 Bytes

< Multilingual Labels

Multilingual - Storing Labels

In our framework, we track the languages that have been registered for use, and interface labels to display for our applications.

Languages

Our languages are defined in the site_multilingual_language table, and has the following definition:

{
	// i18n language code:  'en', 'ko', 'zh-hans', etc... 
	language_code : {
	    type : "string",
	    size : 10
	}, 

	// a label for the language: 'english', 'korean', '中文'
	language_label : {
	    type : "text"
	} 
}

Labels

  • label description

< Multilingual Labels
Next: ToDo: content