Module:Documentation/i18n: Difference between revisions
Jump to navigation
Jump to search
classes>Louis Alarcon m (1 revision imported) |
m (1 revision imported) |
(No difference)
|
Latest revision as of 20:43, 4 September 2022
Documentation for this module may be created at Module:Documentation/i18n/doc
1 local format = require('Module:TNT').format
2 local i18n = {}
3
4 i18n['cfg-error-msg-type'] = format('I18n/Documentation', 'cfg-error-msg-type')
5 i18n['cfg-error-msg-empty'] = format('I18n/Documentation', 'cfg-error-msg-empty')
6
7 -- cfg['template-namespace-heading']
8 -- The heading shown in the template namespace.
9 i18n['template-namespace-heading'] = format('I18n/Documentation', 'template-namespace-heading')
10
11 -- cfg['module-namespace-heading']
12 -- The heading shown in the module namespace.
13 i18n['module-namespace-heading'] = format('I18n/Documentation', 'module-namespace-heading')
14
15 -- cfg['file-namespace-heading']
16 -- The heading shown in the file namespace.
17 i18n['file-namespace-heading'] = format('I18n/Documentation', 'file-namespace-heading')
18
19 -- cfg['other-namespaces-heading']
20 -- The heading shown in other namespaces.
21 i18n['other-namespaces-heading'] = format('I18n/Documentation', 'other-namespaces-heading')
22
23 -- cfg['view-link-display']
24 -- The text to display for "view" links.
25 i18n['view-link-display'] = format('I18n/Documentation', 'view-link-display')
26
27 -- cfg['edit-link-display']
28 -- The text to display for "edit" links.
29 i18n['edit-link-display'] = format('I18n/Documentation', 'edit-link-display')
30
31 -- cfg['history-link-display']
32 -- The text to display for "history" links.
33 i18n['history-link-display'] = format('I18n/Documentation', 'history-link-display')
34
35 -- cfg['purge-link-display']
36 -- The text to display for "purge" links.
37 i18n['purge-link-display'] = format('I18n/Documentation', 'purge-link-display')
38
39 -- cfg['create-link-display']
40 -- The text to display for "create" links.
41 i18n['create-link-display'] = format('I18n/Documentation', 'create-link-display')
42
43 return i18n