1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-01 08:38:32 +00:00

4.0.0-rc19

* Added: Option to hide Squad Streaming banners on channel pages.
* Changed: Rewrite the entire i18n system to use the standard ICU message format.
* Changed: Render the context menu for chat messages in Chat on Videos.
* Fixed: Badges not appearing correctly in chat.
* Fixed: Messages in Chat on Videos with embeds appearing too wide.
This commit is contained in:
SirStendec 2019-05-03 19:30:46 -04:00
parent 8bc25b8d5f
commit 35316b8827
43 changed files with 1061 additions and 348 deletions

View file

@ -9,7 +9,7 @@
<h4>{{ title }}</h4>
<div class="description">{{ description }}</div>
<div v-if="canEdit" class="visibility tw-c-text-alt">
{{ t('setting.actions.visible', 'visible: %{list}', {list: visibility}) }}
{{ t('setting.actions.visible', 'visible: {list}', {list: visibility}) }}
</div>
</template>
<template v-else>
@ -281,7 +281,7 @@ export default {
const def = this.data.actions[this.display.action];
if ( ! def )
return this.t('setting.actions.unknown', 'Unknown Action Type: %{action}', this.display);
return this.t('setting.actions.unknown', 'Unknown Action Type: {action}', this.display);
if ( def.title ) {
const data = this.getData(),
@ -292,7 +292,7 @@ export default {
return this.t(i18n, out, data);
}
return this.t('setting.actions.untitled', 'Action: %{action}', this.display);
return this.t('setting.actions.untitled', 'Action: {action}', this.display);
},