-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
28 lines (26 loc) · 819 Bytes
/
index.js
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
const setCmd = require('./commands/set-cmd.js');
const getCmd = require('./commands/get-cmd.js');
const listLangsCmd = require('./commands/list-languages-cmd.js');
const listLocalesCmd = require('./commands/list-locales-cmd.js');
const listTzsCmd = require('./commands/list-timezones-cmd.js');
(function() {
'use strict';
exports.topics = [
{name: 'user',
description: 'commands for setting/getting localization for user'
}, {name: 'list',
description: 'commands for listing potential values'
}
];
exports.namespace = {
name: 'l18n',
description: 'Various commands for user localization (l18n)'
};
exports.commands = [
setCmd,
getCmd,
listLangsCmd,
listLocalesCmd,
listTzsCmd
];
}());