i18n: translation

This commit is contained in:
liupei
2023-12-17 00:43:49 +08:00
parent c2a77fbf82
commit 5da189deeb
11 changed files with 34 additions and 36 deletions

View File

@@ -172,8 +172,8 @@ Supports some of the special stages,Please refer to [autoLocalization example](.
...
],
"force_shopping_if_credit_full": bool // Whether to ignore the Blacklist if credit overflows, by default true
"only_buy_discount": bool // 是否只购买折扣物品,只作用于第二遍,默认 false
"reserve_max_credit": boll // 是否在信用点低于300时停止购买只作用于第二遍默认 false
"only_buy_discount": bool // Whether to purchase only discounted items, applicable only on the second round of purchases, by default false.
"reserve_max_credit": boll // Whether to stop purchasing when credit points fall below 300, applicable only on the second round of purchases, by default false.
}
```

View File

@@ -151,9 +151,8 @@ TaskId ASSTAPI AsstAppendTask(AsstHandle handle, const char* type, const char* p
string, // アイテム名, 例. "加急许可" (Expedited Plan/緊急招集票), "家具零件" (Furniture Part/家具パーツ), その他.
...
]
"only_buy_discount": bool // 是否只购买折扣物品,只作用于第二遍,默认 false
"reserve_max_credit": boll // 是否在信用点低于300时停止购买只作用于第二遍默认 false
}
"only_buy_discount": bool // 割引対象のアイテムだけを購入するかどうかは。これは2回目の購入の際にのみ適用されます。デフォルトは false
"reserve_max_credit": boll // クレジットポイントが300未満になった場合に購入を停止するかどうかは。これは2回目の購入の際にのみ適用されます。デフォルトは false
```
- `Award`<br>

View File

@@ -167,9 +167,8 @@ TaskId ASSTAPI AsstAppendTask(AsstHandle handle, const char* type, const char* p
...
],
"force_shopping_if_credit_full": bool // 크레딧이 넘친다면 블랙리스트를 무시할지 여부, 기본값은 true입니다.
"only_buy_discount": bool // 是否只购买折扣物品,只作用于第二遍,默认 false
"reserve_max_credit": boll // 是否在信用点低于300时停止购买只作用于第二遍默认 false
}
"only_buy_discount": bool // 크레딧 포인트가 300 미만으로 떨어질 때 구매를 중단할지 여부입니다. 기본적으로 두 번째 구매 시에만 적용되며 기본값은 false입니다.
"reserve_max_credit": boll // 크레딧 포인트가 300 미만으로 떨어질 때 구매를 중단할지 여부. 기본적으로 두 번째 구매 시에만 적용되며 기본값은 false입니다.
```
- `Award <br>`

View File

@@ -184,8 +184,8 @@ AsstTaskId ASSTAPI AsstAppendTask(AsstHandle handle, const char* type, const cha
...
],
"force_shopping_if_credit_full": bool // 是否在信用溢出時無視黑名單,預設為 true
"only_buy_discount": bool // 是否只购买折扣物品,只作用第二遍,默认 false
"reserve_max_credit": boll // 是否在信用点低于300停止购买,只作用第二遍,默认 false
"only_buy_discount": bool // 是否只購買折扣物品,只作用第二輪購買,預設為 false
"reserve_max_credit": boll // 是否在信用點低於300停止購買,只作用第二輪購買,預設為 false
}
```

View File

@@ -186,8 +186,8 @@ AsstTaskId ASSTAPI AsstAppendTask(AsstHandle handle, const char* type, const cha
...
],
"force_shopping_if_credit_full": bool // 是否在信用溢出时无视黑名单,默认为 true
"only_buy_discount": bool // 是否只购买折扣物品,只作用于第二,默认为 false
"reserve_max_credit": boll // 是否在信用点低于300时停止购买只作用于第二,默认为 false
"only_buy_discount": bool // 是否只购买折扣物品,只作用于第二轮购买,默认为 false
"reserve_max_credit": boll // 是否在信用点低于300时停止购买只作用于第二轮购买,默认为 false
}
```

View File

@@ -28,11 +28,11 @@ namespace asst
virtual bool _run() override;
bool m_force_shopping_if_credit_full = false; // 设置是否防止信用值溢出
bool m_only_buy_discount = false; // 设置只购买折扣信用商品(未打折的白名单物品仍会购买)
bool m_reserve_max_credit = false; // 设置消耗信用点至300以下时停止购买商品
bool m_reserve_max_credit = false; // 设置消耗信用点至300以下时停止购买商品(仍然会购买白名单物品)
bool m_info_credit_full = false; // 设置是否在不购买黑名单物品阶段通知信用点溢出
int credit_ocr();
// 用于识别商品信息右上角的折扣信息(需要先点开具体信用商品,且设置sleep防止点开商品的延迟导致截图识别错误
// 用于识别商品信息右上角的折扣信息(需要先点开具体信用商品,且设置sleep(time)防止点开商品的延迟导致截图识别错误)
int discount_ocr();
bool credit_shopping(bool white_list_enabled, bool credit_ocr_enabled);

View File

@@ -267,11 +267,11 @@ Please do not check it when the stage OF-1 is not unlocked.</system:String>
<system:String x:Key="BlacklistDefault">Carbon;Furniture Part;Expedited Plan</system:String>
<system:String x:Key="Drink">Would you like a drink🍷? doctor</system:String>
<system:String x:Key="ForceShoppingIfCreditFull">Ignore blacklist if credits overflow</system:String>
<system:String x:Key="OnlyBuyDiscount">只购买打折的信用商品</system:String>
<system:String x:Key="ReserveMaxCredit">300以下信用点停止购买商品</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠可能会导致信用点数溢出!仍然会购买未打折的白名单物品!</system:String>
<system:String x:Key="ReserveMaxCreditTips">低于300信用点也仍然会购买白名单物品</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">博士! \n只购买折扣商品让信用点数溢出了\n小心信用点数浪费哦\n剩余信用点数</system:String>
<system:String x:Key="OnlyBuyDiscount">Only purchase discounted credit items</system:String>
<system:String x:Key="ReserveMaxCredit">Stop purchasing items when credits below 300</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠ Caution: Risk of credits overflow! Purchases of whitelisted items at regular prices will still occur!</system:String>
<system:String x:Key="ReserveMaxCreditTips">Will still purchase whitelisted items even if credits are below 300!</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">Doctor! \nPurchasing only discounted items has caused an overflow in credits! \nBe cautious of wasting credits!</system:String>
<system:String x:Key="ReceiveDailyAndWeeklyAward">Collect daily/weekly mission rewards</system:String>
<system:String x:Key="ReceiveMail">Collect all mail rewards</system:String>
<system:String x:Key="DroneUsage">Drone Usage</system:String>

View File

@@ -267,11 +267,11 @@
<system:String x:Key="BlacklistDefault">炭素材;家具;緊急招集票</system:String>
<system:String x:Key="Drink">飲み物はいかがですか🍷?ドクター</system:String>
<system:String x:Key="ForceShoppingIfCreditFull">クレジットがあふれた際はブラックリストを無視する</system:String>
<system:String x:Key="OnlyBuyDiscount">只购买打折的信用商品</system:String>
<system:String x:Key="ReserveMaxCredit">300以下信用点停止购买商品</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠可能会导致信用点数溢出!仍然会购买未打折的白名单物品</system:String>
<system:String x:Key="ReserveMaxCreditTips">低于300信用点也仍然会购买白名单物品</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">博士! \n只购买折扣商品让信用点数溢出了\n小心信用点数浪费哦\n剩余信用点数</system:String>
<system:String x:Key="OnlyBuyDiscount">割引されたクレジットアイテムのみ購入します</system:String>
<system:String x:Key="ReserveMaxCredit">クレジットポイントが300未満になった場合、アイテムの購入を停止します</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠ 注意: クレジットポイントのオーバーフローのリスクがあります!ホワイトリストに登録されたアイテムは通常価格で購入される可能性があります</system:String>
<system:String x:Key="ReserveMaxCreditTips">クレジットポイントが300未満でも、ホワイトリストに登録されたアイテムは引き続き購入されます</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">ドクター! \n割引アイテムのみの購入がクレジットポイントのオーバーフローを引き起こしました \nクレジットポイントの浪費に注意してください \n残りのクレジットポイント</system:String>
<system:String x:Key="ReceiveDailyAndWeeklyAward">毎日/毎週任務報酬を受取</system:String>
<system:String x:Key="ReceiveMail">すべてのメール報酬を受取</system:String>
<system:String x:Key="DroneUsage">ドローンの使用</system:String>

View File

@@ -267,11 +267,11 @@ OF-1을 해금하지 않았다면 선택하지 말아 주세요.</system:String>
<system:String x:Key="BlacklistDefault">카본;가구 부품;즉시 완료 허가증</system:String>
<system:String x:Key="Drink">술 한잔은 어떻습니까🍷? 박사님</system:String>
<system:String x:Key="ForceShoppingIfCreditFull">크레딧이 넘치면 무시 항목도 구매</system:String>
<system:String x:Key="OnlyBuyDiscount">只购买打折的信用商品</system:String>
<system:String x:Key="ReserveMaxCredit">300以下信用点停止购买商品</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠可能会导致信用点数溢出!仍然会购买未打折的白名单物品!</system:String>
<system:String x:Key="ReserveMaxCreditTips">低于300信用点也仍然会购买白名单物品</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">博士! \n只购买折扣商品让信用点数溢出了!\n小心信用点数浪费哦\n剩余信用点数</system:String>
<system:String x:Key="OnlyBuyDiscount">할인된 크레딧 상품만 구매할 것입니다</system:String>
<system:String x:Key="ReserveMaxCredit">크레딧 포인트가 300 미만으로 내려가면 물건을 더 이상 구매하지 않을 것입니다</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠ 주의: 크레딧 포인트 오버플로우의 위험이 있습니다! 화이트리스트에 등록된 항목은 정상 가격으로 여전히 구매될 수 있습니다!</system:String>
<system:String x:Key="ReserveMaxCreditTips">크레딧 포인트가 300 미만이더라도 화이트리스트에 등록된 항목은 여전히 구매할 것입니다!</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">박사님! \n할인된 상품만 구매하는 것이 크레딧 포인트 오버플로우를 일으켰습니다! \n크레딧 포인트 낭비에 주의하세요! \n남은 크레딧 포인트:</system:String>
<system:String x:Key="ReceiveDailyAndWeeklyAward">일일/주간 미션 보상 받기</system:String>
<system:String x:Key="ReceiveMail">모든 메일 보상 받기</system:String>
<system:String x:Key="DroneUsage">드론 사용처</system:String>

View File

@@ -269,9 +269,9 @@
<system:String x:Key="ForceShoppingIfCreditFull">信用溢出时无视黑名单</system:String>
<system:String x:Key="OnlyBuyDiscount">只购买打折的信用商品</system:String>
<system:String x:Key="ReserveMaxCredit">300以下信用点停止购买商品</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠可能会导致信用点数溢出!仍然会购买未打折的白名单物品!</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠ 注意:可能会导致信用点数溢出!仍然会购买未打折的白名单物品!</system:String>
<system:String x:Key="ReserveMaxCreditTips">低于300信用点也仍然会购买白名单物品</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">博士! \n只购买折扣商品让信用点数溢出了\n小心信用点数浪费哦\n剩余信用点数</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">博士 \n只购买折扣商品让信用点数溢出了\n小心信用点数浪费哦\n剩余信用点数</system:String>
<system:String x:Key="ReceiveDailyAndWeeklyAward">领取每日/每周任务奖励</system:String>
<system:String x:Key="ReceiveMail">领取所有邮件奖励</system:String>
<system:String x:Key="DroneUsage">无人机用途</system:String>

View File

@@ -267,11 +267,11 @@
<system:String x:Key="BlacklistDefault">碳;傢俱;加急許可</system:String>
<system:String x:Key="Drink">要來一杯美酒嗎🍷?博士</system:String>
<system:String x:Key="ForceShoppingIfCreditFull">信用溢出時無視黑名單</system:String>
<system:String x:Key="OnlyBuyDiscount">只购买打折的信用商品</system:String>
<system:String x:Key="ReserveMaxCredit">300以下信用停止购买商品</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠可能会导致信用点数溢出!仍然会购买未打折的白名单物品!</system:String>
<system:String x:Key="ReserveMaxCreditTips">低300信用也仍然会购买白名物品!</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">博士! \n只购买折扣商品信用点数溢出了!\n小心信用点数浪费哦!\n剩信用点数</system:String>
<system:String x:Key="OnlyBuyDiscount">只購買打折的信用商品</system:String>
<system:String x:Key="ReserveMaxCredit">300以下信用停止購買商品</system:String>
<system:String x:Key="OnlyBuyDiscountTips">⚠可能會導致信用溢出!仍然會購買未打折的品!</system:String>
<system:String x:Key="ReserveMaxCreditTips">低300信用也仍然會購買白名物品!</system:String>
<system:String x:Key="CreditFullOnlyBuyDiscount">博士! \n只購買折扣商品信用溢出了!\n小心信用點數浪費哦!\n剩信用點數</system:String>
<system:String x:Key="ReceiveDailyAndWeeklyAward">收集每日/每週任務獎勵</system:String>
<system:String x:Key="ReceiveMail">收集所有郵件獎勵</system:String>
<system:String x:Key="DroneUsage">無人機用途</system:String>