Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOMobile
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fallenstardust
YGOMobile
Commits
a24faf25
Commit
a24faf25
authored
Dec 14, 2025
by
fallenstardust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加点数消耗和点数上限的说明文字翻译
parent
5e482939
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
2 deletions
+14
-2
mobile/src/main/java/cn/garymb/ygomobile/ui/cards/DeckManagerFragment.java
...ava/cn/garymb/ygomobile/ui/cards/DeckManagerFragment.java
+2
-2
mobile/src/main/res/values-es/strings.xml
mobile/src/main/res/values-es/strings.xml
+2
-0
mobile/src/main/res/values-jp/strings.xml
mobile/src/main/res/values-jp/strings.xml
+2
-0
mobile/src/main/res/values-ko/strings.xml
mobile/src/main/res/values-ko/strings.xml
+2
-0
mobile/src/main/res/values-pt/strings.xml
mobile/src/main/res/values-pt/strings.xml
+2
-0
mobile/src/main/res/values-zh/strings.xml
mobile/src/main/res/values-zh/strings.xml
+2
-0
mobile/src/main/res/values/strings.xml
mobile/src/main/res/values/strings.xml
+2
-0
No files found.
mobile/src/main/java/cn/garymb/ygomobile/ui/cards/DeckManagerFragment.java
View file @
a24faf25
...
...
@@ -1225,12 +1225,12 @@ public class DeckManagerFragment extends BaseFragemnt implements RecyclerViewIte
* 获取指定卡组中所有GeneSys卡片的信用分总和
*
* @param deckinfo 卡组信息对象,包含卡组中的所有卡片信息
* @return 返回卡组中所有GeneSys卡片的信用分总和,如果输入参数为空或获取限制列表失败则返回
-1
* @return 返回卡组中所有GeneSys卡片的信用分总和,如果输入参数为空或获取限制列表失败则返回
0
*/
private
int
getCreditCount
(
DeckInfo
deckinfo
)
{
// 处理空值情况
if
(
deckinfo
==
null
||
mDeckAdapater
==
null
||
mDeckAdapater
.
getLimitList
()
==
null
)
{
return
-
1
;
return
0
;
}
LimitList
limitList
=
mDeckAdapater
.
getLimitList
();
...
...
mobile/src/main/res/values-es/strings.xml
View file @
a24faf25
...
...
@@ -384,6 +384,8 @@
<string
name=
"like_deck_thumb"
>
Dar like al deck
</string>
<string
name=
"pre_view"
>
Vista previa
</string>
<string
name=
"tip_credit_max"
>
Excede el límite de %d
</string>
<string
name=
"point_cost"
>
Consumo de puntos
</string>
<string
name=
"credit_limit"
>
Límite de puntos
</string>
</resources>
mobile/src/main/res/values-jp/strings.xml
View file @
a24faf25
...
...
@@ -385,4 +385,6 @@
<string
name=
"like_deck_thumb"
>
デッキに「いいね」をつける
</string>
<string
name=
"pre_view"
>
プレビュー
</string>
<string
name=
"tip_credit_max"
>
" %dの上限を超えています"
</string>
<string
name=
"point_cost"
>
ポイント消費
</string>
<string
name=
"credit_limit"
>
ポイント上限
</string>
</resources>
mobile/src/main/res/values-ko/strings.xml
View file @
a24faf25
...
...
@@ -403,4 +403,6 @@
<string
name=
"pwd_warning"
>
비밀번호를 입력해 주세요!
</string>
<string
name=
"like_deck_thumb"
>
덱에 좋아요를 누르기
</string>
<string
name=
"pre_view"
>
미리 보기
</string>
<string
name=
"point_cost"
>
포인트 소모
</string>
<string
name=
"credit_limit"
>
포인트 상한
</string>
</resources>
mobile/src/main/res/values-pt/strings.xml
View file @
a24faf25
...
...
@@ -375,5 +375,7 @@
<string
name=
"pre_view"
>
Prévia
</string>
<string
name=
"label_set_No_Setcode"
>
#Sem Card Set incluso
</string>
<string
name=
"tip_credit_max"
>
Excede o limite de %d
</string>
<string
name=
"point_cost"
>
Consumo de puntos
</string>
<string
name=
"credit_limit"
>
Limite de pontos
</string>
</resources>
mobile/src/main/res/values-zh/strings.xml
View file @
a24faf25
...
...
@@ -241,6 +241,8 @@
<string
name=
"deck_manager_v2"
>
组卡器V2
</string>
<string
name=
"reset_game_ver_fail"
>
重置游戏版本失败
</string>
<string
name=
"deck_name"
>
卡组
</string>
<string
name=
"point_cost"
>
消耗点数
</string>
<string
name=
"credit_limit"
>
点数上限
</string>
<string
name=
"category_name"
>
卡组分类
</string>
<string
name=
"save_quit"
>
保存并退出
</string>
<string
name=
"tip_reset_game_res"
>
游戏数据检查完成
</string>
...
...
mobile/src/main/res/values/strings.xml
View file @
a24faf25
...
...
@@ -415,4 +415,6 @@
<string
name=
"pwd_warning"
>
Please enter your password!
</string>
<string
name=
"like_deck_thumb"
>
Like the deck
</string>
<string
name=
"pre_view"
>
pre view
</string>
<string
name=
"point_cost"
>
Point Costs
</string>
<string
name=
"credit_limit"
>
Point Limit
</string>
</resources>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment