Skip to content

Commit c7afc91

Browse files
committed
增加InfoPlist
1 parent bda53f7 commit c7afc91

File tree

8 files changed

+31
-0
lines changed

8 files changed

+31
-0
lines changed

HXInternationalizationDemo.xcodeproj/project.pbxproj

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
E47A8E601D4AF0A900463A00 /* HXLanguageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E47A8E5D1D4AF0A900463A00 /* HXLanguageManager.m */; };
1717
E47A8E631D4AF13100463A00 /* HXPreferenceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E47A8E621D4AF13100463A00 /* HXPreferenceViewController.m */; };
1818
E497B7351D4EDBE800074A6D /* xiaoguo.gif in Resources */ = {isa = PBXBuildFile; fileRef = E497B7341D4EDBE800074A6D /* xiaoguo.gif */; };
19+
E497B7AE1D4F40BC00074A6D /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E497B7B01D4F40BC00074A6D /* InfoPlist.strings */; };
1920
/* End PBXBuildFile section */
2021

2122
/* Begin PBXFileReference section */
@@ -41,6 +42,13 @@
4142
E47A8E641D4B050D00463A00 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
4243
E47A8E651D4B607D00463A00 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
4344
E497B7341D4EDBE800074A6D /* xiaoguo.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = xiaoguo.gif; sourceTree = "<group>"; };
45+
E497B7AF1D4F40BC00074A6D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
46+
E497B7B11D4F40BE00074A6D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
47+
E497B7B21D4F40BF00074A6D /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
48+
E497B7B31D4F40C100074A6D /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
49+
E497B7B41D4F40C200074A6D /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
50+
E497B7B51D4F40C300074A6D /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
51+
E497B7B61D4F40C500074A6D /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/InfoPlist.strings; sourceTree = "<group>"; };
4452
/* End PBXFileReference section */
4553

4654
/* Begin PBXFrameworksBuildPhase section */
@@ -98,6 +106,7 @@
98106
isa = PBXGroup;
99107
children = (
100108
E47A8E501D4AF05A00463A00 /* Localizable.strings */,
109+
E497B7B01D4F40BC00074A6D /* InfoPlist.strings */,
101110
);
102111
path = Language;
103112
sourceTree = "<group>";
@@ -184,6 +193,7 @@
184193
E47A8E571D4AF05A00463A00 /* Localizable.strings in Resources */,
185194
E47A110B1D49DB3C00470CE0 /* Assets.xcassets in Resources */,
186195
E497B7351D4EDBE800074A6D /* xiaoguo.gif in Resources */,
196+
E497B7AE1D4F40BC00074A6D /* InfoPlist.strings in Resources */,
187197
);
188198
runOnlyForDeploymentPostprocessing = 0;
189199
};
@@ -219,6 +229,20 @@
219229
name = Localizable.strings;
220230
sourceTree = "<group>";
221231
};
232+
E497B7B01D4F40BC00074A6D /* InfoPlist.strings */ = {
233+
isa = PBXVariantGroup;
234+
children = (
235+
E497B7AF1D4F40BC00074A6D /* zh-Hans */,
236+
E497B7B11D4F40BE00074A6D /* en */,
237+
E497B7B21D4F40BF00074A6D /* zh-Hant */,
238+
E497B7B31D4F40C100074A6D /* ko */,
239+
E497B7B41D4F40C200074A6D /* fr */,
240+
E497B7B51D4F40C300074A6D /* it */,
241+
E497B7B61D4F40C500074A6D /* ja */,
242+
);
243+
name = InfoPlist.strings;
244+
sourceTree = "<group>";
245+
};
222246
/* End PBXVariantGroup section */
223247

224248
/* Begin XCBuildConfiguration section */
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"CFBundleDisplayName" = "World";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"CFBundleDisplayName" = "Le monde";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"CFBundleDisplayName" = "Il mondo";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"CFBundleDisplayName" = "世界";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"CFBundleDisplayName" = "세계";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"CFBundleDisplayName" = "世界";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"CFBundleDisplayName" = "世界";

0 commit comments

Comments
 (0)