Translations_DB::init()

Initializes the translation strings.

Description

See also

Source

File: src/translations/translations-db.php

	protected function init() {
		$this->translations = array(
			/* translators: %s: table name */
			'table_already_exist' => __( 'The table “%s” already exists.', 'torro-forms' ),
			'schema_empty'        => __( 'You cannot add a table without a schema.', 'torro-forms' ),
		);
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.