# Locales:Count

Get the number of localizations.

This tag shares everything from the [locales tag](/tags/locales.md), except that instead of looping over the results, it will just tell you how many there are.

::tabs

::tab antlers
```antlers
{{ locales:count }}
{{ locales:count self="false" }}
```
::tab blade
```blade
{{-- Using Antlers Blade Components --}}
<s:locales:count />
<s:locales:count self="false" />

{{-- Using Fluent Tags --}}
{{ Statamic::tag('locales:count') }}
{{ Statamic::tag('locales:count')->self(false) }}
```
::

```output
3
2
```
