Translations_DB

Translations for the DB class.

Description

Source

File: src/translations/translations-db.php

class Translations_DB extends Translations_DB_Base {

	/**
	 * Initializes the translation strings.
	 *
	 * @since 1.0.0
	 */
	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.

Methods

  • init — Initializes the translation strings.