about summary refs log tree commit diff
path: root/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'command.c')
-rw-r--r--command.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/command.c b/command.c
index f404498..f73c213 100644
--- a/command.c
+++ b/command.c
@@ -440,16 +440,16 @@ static void commandFilter(enum Heat heat, uint id, char *params) {
 	if (params) {
 		struct Filter filter = filterAdd(heat, params);
 		uiFormat(
-			id, Cold, NULL, "%sing \3%02d%s %s %s %s",
-			(heat == Hot ? "Highlight" : "Ignor"), Brown, filter.mask,
+			id, Cold, NULL, "%s \3%02d%s %s %s %s",
+			(heat == Hot ? "wile" : "wile ala"), Brown, filter.mask,
 			(filter.cmd ?: ""), (filter.chan ?: ""), (filter.mesg ?: "")
 		);
 	} else {
 		for (size_t i = 0; i < FilterCap && filters[i].mask; ++i) {
 			if (filters[i].heat != heat) continue;
 			uiFormat(
-				Network, Warm, NULL, "%sing \3%02d%s %s %s %s",
-				(heat == Hot ? "Highlight" : "Ignor"), Brown, filters[i].mask,
+				Network, Warm, NULL, "%s \3%02d%s %s %s %s",
+				(heat == Hot ? "wile" : "wile ala"), Brown, filters[i].mask,
 				(filters[i].cmd ?: ""), (filters[i].chan ?: ""),
 				(filters[i].mesg ?: "")
 			);
@@ -462,8 +462,8 @@ static void commandUnfilter(enum Heat heat, uint id, char *params) {
 	struct Filter filter = filterParse(heat, params);
 	bool found = filterRemove(filter);
 	uiFormat(
-		id, Cold, NULL, "%s %sing \3%02d%s %s %s %s",
-		(found ? "No longer" : "Not"), (heat == Hot ? "highlight" : "ignor"),
+		id, Cold, NULL, "%s %s \3%02d%s %s %s %s",
+		(found ? "pini" : "sina lon ala"), (heat == Hot ? "lukin" : "lukin ala"),
 		Brown, filter.mask, (filter.cmd ?: ""), (filter.chan ?: ""),
 		(filter.mesg ?: "")
 	);
@@ -509,7 +509,7 @@ static void commandHelp(uint id, char *params) {
 		return;
 	}
 	if (self.restricted) {
-		uiFormat(id, Warm, NULL, "See catgirl(1) or /help index");
+		uiFormat(id, Warm, NULL, "o lukin e lipu catgirl(1) anu o toki e ni: /help index");
 		return;
 	}
 
@@ -674,11 +674,11 @@ void command(uint id, char *input) {
 		cmd, Commands, ARRAY_LEN(Commands), sizeof(*handler), compar
 	);
 	if (!handler) {
-		uiFormat(id, Warm, NULL, "No such command %s", cmd);
+		uiFormat(id, Warm, NULL, "mi sona ala e toki ilo '%s'", cmd);
 		return;
 	}
 	if (!commandAvailable(handler)) {
-		uiFormat(id, Warm, NULL, "Command %s is unavailable", cmd);
+		uiFormat(id, Warm, NULL, "sina ken ala kepeken toki ilo '%s'", cmd);
 		return;
 	}