Merge aa38c7fe9c
into 3bf63dd9c5
This commit is contained in:
commit
4cc928dcdb
|
@ -15,6 +15,7 @@
|
||||||
- Fix: 縦横比が極端なカスタム絵文字を表示する際にレイアウトが崩れる箇所があるのを修正
|
- Fix: 縦横比が極端なカスタム絵文字を表示する際にレイアウトが崩れる箇所があるのを修正
|
||||||
(Cherry-picked from https://github.com/MisskeyIO/misskey/pull/725)
|
(Cherry-picked from https://github.com/MisskeyIO/misskey/pull/725)
|
||||||
- Fix: 設定変更時のリロード確認ダイアログが複数個表示されることがある問題を修正
|
- Fix: 設定変更時のリロード確認ダイアログが複数個表示されることがある問題を修正
|
||||||
|
- Fix: ERROR CODE: APP_IMPORT on iOS <= 16.3 (SyntaxError: Invalid regular expression: invalid group specifier name)
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- Fix: アンテナの書き込み時にキーワードが与えられなかった場合のエラーをApiErrorとして投げるように
|
- Fix: アンテナの書き込み時にキーワードが与えられなかった場合のエラーをApiErrorとして投げるように
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
* SPDX-License-Identifier: AGPL-3.0-only
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const enRegex1 = /(?<=n)a/gi;
|
|
||||||
const enRegex2 = /(?<=morn)ing/gi;
|
|
||||||
const enRegex3 = /(?<=every)one/gi;
|
|
||||||
const koRegex1 = /[나-낳]/g;
|
const koRegex1 = /[나-낳]/g;
|
||||||
const koRegex2 = /(다$)|(다(?=\.))|(다(?= ))|(다(?=!))|(다(?=\?))/gm;
|
const koRegex2 = /(다$)|(다(?=\.))|(다(?= ))|(다(?=!))|(다(?=\?))/gm;
|
||||||
const koRegex3 = /(야(?=\?))|(야$)|(야(?= ))/gm;
|
const koRegex3 = /(야(?=\?))|(야$)|(야(?= ))/gm;
|
||||||
|
@ -15,9 +12,12 @@ export function nyaize(text: string): string {
|
||||||
// ja-JP
|
// ja-JP
|
||||||
.replaceAll('な', 'にゃ').replaceAll('ナ', 'ニャ').replaceAll('ナ', 'ニャ')
|
.replaceAll('な', 'にゃ').replaceAll('ナ', 'ニャ').replaceAll('ナ', 'ニャ')
|
||||||
// en-US
|
// en-US
|
||||||
.replace(enRegex1, x => x === 'A' ? 'YA' : 'ya')
|
.replaceAll('na', 'nya')
|
||||||
.replace(enRegex2, x => x === 'ING' ? 'YAN' : 'yan')
|
.replaceAll('NA', 'NYA')
|
||||||
.replace(enRegex3, x => x === 'ONE' ? 'NYAN' : 'nyan')
|
.replaceAll('morning', 'mornyan')
|
||||||
|
.replaceAll('MORNING', 'MORNYAN')
|
||||||
|
.replaceAll('everyone', 'everynyan')
|
||||||
|
.replaceAll('EVERYONE', 'EVERYNYAN')
|
||||||
// ko-KR
|
// ko-KR
|
||||||
.replace(koRegex1, match => !isNaN(match.charCodeAt(0)) ? String.fromCharCode(
|
.replace(koRegex1, match => !isNaN(match.charCodeAt(0)) ? String.fromCharCode(
|
||||||
match.charCodeAt(0) + '냐'.charCodeAt(0) - '나'.charCodeAt(0),
|
match.charCodeAt(0) + '냐'.charCodeAt(0) - '나'.charCodeAt(0),
|
||||||
|
|
Loading…
Reference in New Issue