3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00

setconfig working + msg if new key is being created [#489]

This commit is contained in:
reality 2013-06-05 21:52:14 +00:00
parent 546ce64707
commit 815d7a39cd
2 changed files with 9 additions and 10 deletions

View File

@ -184,18 +184,14 @@ var commands = function(dbot) {
if(_.isArray(config)) {
event.reply(dbot.t("config_array", { "alternate": "pushconfig" }));
}
event.reply(configPath + ": " + config + " -> " + newOption);
config = newOption;
this.db.save('config', configPath, {
'key': configPath,
'value': config
}, function(err) {
dbot.reloadModules();
});
} else {
event.reply(dbot.t("no_config_key", {'path': configPath}));
event.reply(dbot.t('new_config_key', { 'key': configPath }));
config = null;
}
this.internalAPI.setConfig(configPath, newOption, function(err) {
event.reply(configPath + ": " + config + " -> " + newOption);
});
}.bind(this));
} else {
event.reply(dbot.t("config_lock"));

View File

@ -160,6 +160,9 @@
"cy": "Nid yw llwybr cyfluniad yn bodoli, fy mrawd",
"de": "Konfigurationspfad nicht vorhanden, Bruder"
},
"new_config_key": {
"en": "Warning: Creating new config key: {key}."
},
"config_keys_location": {
"en": "Config keys in {path}: {value}",
"cy": "Allweddi cyfluniad yn {path}: {value}",