-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
mkdocs.yml
61 lines (61 loc) · 2.4 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
docs_dir: docs/book
site_dir: docs/html
nav:
- Home: index.md
- Introduction: introduction.md
- Installation: installation.md
- Translation: translation.md
- Translator:
- Caching: translator/caching.md
- Events: translator/events.md
- Factory: translator/factory.md
- 'Format Examples': translator/format-examples.md
- Filters:
- Introduction: filters/introduction.md
- Alnum: filters/alnum.md
- Alpha: filters/alpha.md
- NumberFormat: filters/number-format.md
- NumberParse: filters/number-parse.md
- Reference:
- Validators:
- Introduction: validators/introduction.md
- Alnum: validators/alnum.md
- Alpha: validators/alpha.md
- CountryCode: validators/country-code.md
- DateTime: validators/date-time.md
- IsFloat: validators/is-float.md
- IsInt: validators/is-int.md
- PhoneNumber: validators/phone-number.md
- PostCode: validators/post-code.md
- 'View Helpers':
- Introduction: view-helpers/introduction.md
- CountryCodeDataList: view-helpers/country-code-data-list.md
- CurrencyFormat: view-helpers/currency-format.md
- DateFormat: view-helpers/date-format.md
- NumberFormat: view-helpers/number-format.md
- Plural: view-helpers/plural.md
- Translate: view-helpers/translate.md
- TranslatePlural: view-helpers/translate-plural.md
- 'Application Integration':
- 'Stand-Alone': application-integration/stand-alone.md
- Migration:
- 'Migration from Versions prior to 2.4': migration/migration-to-v2.4.md
site_name: laminas-i18n
site_description: 'Provide translations for your application, and filter and validate internationalized values.'
repo_url: 'https://github.com/laminas/laminas-i18n'
extra:
project: Components
installation:
config_provider_class: 'Laminas\I18n\ConfigProvider'
module_class: 'Laminas\I18n\Module'
related_documentations:
headline: Related Components
links:
- 'Translation Resources': https://docs.laminas.dev/laminas-i18n-resources/
plugins:
- search
- redirects:
redirect_maps:
filters.md: filters/introduction.md
validators.md: validators/introduction.md
view-helpers.md: view-helpers/introduction.md