1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-25 03:58:30 +00:00
* Added: Additional settings for controlling the behavior of Twitch's native Chat Filters.
* Added: Upload strings directly from the Translation Tester UI. (This is for me only, but I like it.)
* Changed: Allow resizing text entry boxes in the Translation Tester UI.
* Fixed: Emoji categories were not being localized.
This commit is contained in:
SirStendec 2019-10-11 17:41:07 -04:00
parent b53e0e6427
commit 3b7e99e5a3
10 changed files with 198 additions and 14 deletions

View file

@ -647,6 +647,17 @@ export const AutomoddedTerms = {
let idx = 0,
fix = 0;
const remove = this.context.get('chat.automod.remove-messages');
const del = this.context.get('chat.automod.delete-messages');
if ( del )
msg.deleted = true;
if ( remove ) {
msg.ffz_removed = true;
return tokens;
}
for(const token of tokens) {
const length = token.length || (token.text && split_chars(token.text).length) || 0,
t_start = idx,
@ -1085,7 +1096,9 @@ export const AddonEmotes = {
plain_name = true;
name = `:${emoji.names[0]}:${vcode ? `:${vcode.names[0]}:` : ''}`;
source = this.i18n.t('tooltip.emoji', 'Emoji - {category}', emoji);
const category = emoji.category ? this.i18n.t(`emoji.category.${emoji.category.toSnakeCase()}`, emoji.category) : null;
source = this.i18n.t('tooltip.emoji', 'Emoji - {category}', {category});
} else
return;