<?xml version="1.0" encoding="utf-8"?>
<!-- define "link" attribute in case the table doesn't follow the standard notation of "_lang_" -->
<translation table="#__vikappointments_lang_option_value" id="optionvar">

	<columns>

		<!-- define primary key column -->
		<column name="id" rule="pk" />

		<!-- omit "link" attribute in case the columns of both the tables have the same name -->
		<column name="name" rule="content" />

		<!-- define foreign key column to create a relation with translation link -->
		<!-- define "link" attribute in case the landing table PK is not equals to "id" -->
		<column name="id_variation" rule="fk" />

		<!-- define foreign key column ro create a relation with a different language table -->
		<!-- the "link" attribute can be used to recognize the table identifier to which the child belongs -->
		<column name="id_parent" rule="parent" link="option" />

		<!-- define column used to register the translation language tag -->
		<column name="tag" rule="language" />

	</columns>
	
</translation>