# fluent-cart/1.5.4/app/Services/Localization/i18n/units.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.5.4. 28 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.5.4/code/app/Services/Localization/i18n/units.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.5.4/raw/app/Services/Localization/i18n/units.php
- Modified: 2025-10-14T16:36:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.5.4/code/app/Services/Localization/i18n/units.php#L10-L20`.

```php
<?php
/**
 * Units
 *
 * Returns a multidimensional array of measurement units and their labels.
 * Unit labels should be defined in English and translated native through localization files.
 *
 * @version 1.0.0
 */

defined( 'ABSPATH' ) || exit;

return array(
	'weight'     => array(
		'kg'  => __( 'kg', 'fluent-cart' ),
		'g'   => __( 'g', 'fluent-cart' ),
		'lbs' => __( 'lbs', 'fluent-cart' ),
		'oz'  => __( 'oz', 'fluent-cart' ),
	),
	'dimensions' => array(
		'm'  => __( 'm', 'fluent-cart' ),
		'cm' => __( 'cm', 'fluent-cart' ),
		'mm' => __( 'mm', 'fluent-cart' ),
		'in' => __( 'in', 'fluent-cart' ),
		'yd' => __( 'yd', 'fluent-cart' ),
	),
);

```
