Skip to content

Commit

Permalink
ios: build: Add dwarf-with-dsym for Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
calcitem committed Dec 29, 2024
1 parent 36e3f44 commit 47723af
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 9 deletions.
38 changes: 30 additions & 8 deletions src/ui/flutter_app/lib/l10n/prompt.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
Please translate the following contents of the arb file for Nine Men's Morris Game, output the complete arb file directly:

```json
"showAdvantageGraph": "Show advantage graph",
"@showAdvantageGraph": {},
"removalBasedOnMillCounts": "Disable removal until all pieces are placed. Players remove pieces based on mill counts.",
"@removalBasedOnMillCounts": {},
"removalBasedOnMillCounts_Detail": "Disable removal until all pieces are placed. Players remove pieces based on mill counts: if equal, both remove the same number; if one has more, they remove one extra, keeping a one-piece difference. If only one forms mills, they remove two pieces, and the other removes one. If neither forms mills, both remove one piece.",
"@removalBasedOnMillCounts_Detail": {},
```

into:
Expand All @@ -23,7 +25,7 @@ intl_de.arb
intl_de_ch.arb
intl_el.arb
intl_en.arb
intl _es.arb
intl_es.arb
intl_et.arb
intl_fa.arb
intl_fi.arb
Expand Down Expand Up @@ -74,11 +76,31 @@ The format is as follows:

```json
// intl_en.arb
"showAdvantageGraph": "Show advantage graph",
"@showAdvantageGraph": {},
"removalBasedOnMillCounts": "Disable removal until all pieces are placed. Players remove pieces based on mill counts.",
"@removalBasedOnMillCounts": {},
"removalBasedOnMillCounts_Detail": "Disable removal until all pieces are placed. Players remove pieces based on mill counts: if equal, both remove the same number; if one has more, they remove one extra, keeping a one-piece difference. If only one forms mills, they remove two pieces, and the other removes one. If neither forms mills, both remove one piece.",
"@removalBasedOnMillCounts_Detail": {},


// intl_zh.arb
"showAdvantageGraph": "显示优势图",
"@showAdvantageGraph": {},
// intl_fr.arb
"removalBasedOnMillCounts": "La suppression est interdite jusqu'à ce que toutes les pièces soient placées. Les joueurs retirent des pièces en fonction du nombre de moulins formés.",
"@removalBasedOnMillCounts": {},
"removalBasedOnMillCounts_Detail": "La suppression est interdite jusqu'à ce que toutes les pièces soient placées. Les joueurs retirent des pièces en fonction du nombre de moulins formés : si les nombres sont égaux, les deux retirent le même nombre de pièces ; si l’un d’eux a formé plus de moulins, il retire une pièce supplémentaire tout en maintenant une différence d’une seule pièce. Si un seul joueur forme des moulins, il retire deux pièces tandis que l’autre en retire une. Si aucun des deux ne forme de moulins, chacun retire une de ses propres pièces.",
"@removalBasedOnMillCounts_Detail": {},
```



Here is a table outlining the translations of the term "mill":

| **Language Code** | **Translation** |
|-------------------|-----------------|
| ko | 참고누 |
| si | නෙරෙන්චි |
| id | Mul-mulan |
| de | mühle |
| zh_Hant | 三連 |
| zu | Umlabalaba |
| af | Morabaraba |
| zh | 三连 |
| fa | دوز |
1 change: 1 addition & 0 deletions src/ui/flutter_app/macos/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,7 @@
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = A7CJ43TU48;
INFOPLIST_FILE = Runner/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = Mill;
Expand Down
2 changes: 1 addition & 1 deletion src/ui/flutter_app/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: sanmill
description: Sanmill is a open-source, powerful UCI-like Nine Men's Morris (and its variants) program.
publish_to: none
version: 5.8.4+4435
version: 5.8.4+4436

environment:
sdk: ">=2.17.0 <4.0.0"
Expand Down

0 comments on commit 47723af

Please sign in to comment.