In WordPress translations are grouped by an identifier named textdomain, a unique string.
Example:
$option = __( 'Option', 'plugin_helloexample' );
- Never use any translation function without a text domain.
- Never rely on core strings in your theme or plugin.
- Always prefix your text domain to avoid collisions.