Skip to content

Commit

Permalink
Merge pull request #204 from sparcs-kaist/fix/post-write-page-missed-…
Browse files Browse the repository at this point in the history
…translation

PostWritePage 번역되지 않은 부분 보완
  • Loading branch information
thomaskim1130 authored Jul 4, 2024
2 parents 2c1086b + 75ea2fb commit 17f734e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 24 deletions.
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 40e3ca182cfbd571c46e751b6eb8a6f2cbbf72fc

COCOAPODS: 1.14.2
COCOAPODS: 1.15.2
10 changes: 7 additions & 3 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
CURRENT_PROJECT_VERSION = 240516.0103;
DEVELOPMENT_TEAM = N5V8W52U3U;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
Expand Down Expand Up @@ -486,7 +486,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
CURRENT_PROJECT_VERSION = 240516.0103;
DEVELOPMENT_TEAM = N5V8W52U3U;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
Expand All @@ -509,7 +509,10 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 240516.0103;
DEVELOPMENT_TEAM = N5V8W52U3U;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
Expand All @@ -519,6 +522,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = "org.sparcs.new-ara-app";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
Expand Down
16 changes: 8 additions & 8 deletions ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

This file was deleted.

2 changes: 1 addition & 1 deletion ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<string>240516.0103</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>https</string>
Expand Down
7 changes: 4 additions & 3 deletions lib/pages/post_write_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,9 @@ class _PostWritePageState extends State<PostWritePage>
);
} else {
return Text(
"${_chosenBoardValue!.ko_name}에 글 쓰는 중...",
context.locale == const Locale("ko")
? "${_chosenBoardValue!.ko_name}에 글 쓰는 중..."
: "Writing to ${_chosenBoardValue!.en_name} Board",
style: const TextStyle(
fontSize: 16,
height: 24 / 16,
Expand Down Expand Up @@ -1595,8 +1597,7 @@ class _PostWritePageState extends State<PostWritePage>
);
}
}
}
else {
} else {
debugPrint("post Error occurred");
}

Expand Down

0 comments on commit 17f734e

Please sign in to comment.