Notifies the users it is not suggested to add phrase when model is converted.
This commit is contained in:
parent
aa9c31ffcf
commit
d2c039c42d
|
@ -1456,6 +1456,14 @@ NS_INLINE size_t max(size_t a, size_t b) { return a > b ? a : b; }
|
||||||
if (!length) {
|
if (!length) {
|
||||||
[self _hideTooltip];
|
[self _hideTooltip];
|
||||||
}
|
}
|
||||||
|
else if (Preferences.phraseReplacementEnabled) {
|
||||||
|
NSString *message = NSLocalizedString(@"Phrase replacement mode is on. Not suggested to add phrase in the mode.", @"");
|
||||||
|
[self _showTooltip:message client:client];
|
||||||
|
}
|
||||||
|
else if (Preferences.chineseConversionStyle == 1 && Preferences.chineseConversionEnabled) {
|
||||||
|
NSString *message = NSLocalizedString(@"Model based Chinese conversion is on. Not suggested to add phrase in the mode.", @"");
|
||||||
|
[self _showTooltip:message client:client];
|
||||||
|
}
|
||||||
else if (length == 1) {
|
else if (length == 1) {
|
||||||
NSString *messsage = [NSString stringWithFormat:NSLocalizedString(@"You are now selecting \"%@\". You can add a phrase with two or more characters.", @""), text];
|
NSString *messsage = [NSString stringWithFormat:NSLocalizedString(@"You are now selecting \"%@\". You can add a phrase with two or more characters.", @""), text];
|
||||||
[self _showTooltip:messsage client:client];
|
[self _showTooltip:messsage client:client];
|
||||||
|
|
|
@ -89,3 +89,6 @@
|
||||||
|
|
||||||
"The length of your candidate keys can not be larger than 15 characters." = "The length of your candidate keys can not be larger than 15 characters.";
|
"The length of your candidate keys can not be larger than 15 characters." = "The length of your candidate keys can not be larger than 15 characters.";
|
||||||
|
|
||||||
|
"Phrase replacement mode is on. Not suggested to add phrase in the mode." = "Phrase replacement mode is on. Not suggested to add phrase in the mode.";
|
||||||
|
|
||||||
|
"Model based Chinese conversion is on. Not suggested to add phrase in the mode." = "Model based Chinese conversion is on. Not suggested to add phrase in the mode.";
|
||||||
|
|
|
@ -88,3 +88,7 @@
|
||||||
"The length of your candidate keys can not be less than 4 characters." = "選字按鍵數量不可小於 4。";
|
"The length of your candidate keys can not be less than 4 characters." = "選字按鍵數量不可小於 4。";
|
||||||
|
|
||||||
"The length of your candidate keys can not be larger than 15 characters." = "選字按鍵數量不可大於 15。";
|
"The length of your candidate keys can not be larger than 15 characters." = "選字按鍵數量不可大於 15。";
|
||||||
|
|
||||||
|
"Phrase replacement mode is on. Not suggested to add phrase in the mode." = "詞彙轉換已開啟,不建議在此模式下加詞。";
|
||||||
|
|
||||||
|
"Model based Chinese conversion is on. Not suggested to add phrase in the mode." = "您已開啟將語言模型轉為簡體中文,不建議在此模式下加詞。";
|
||||||
|
|
Loading…
Reference in New Issue