Skip to content

Commit 9a1f91d

Browse files
author
何天从
committed
vsesion 2.1.0:
fix localization.
1 parent ee08f07 commit 9a1f91d

File tree

8 files changed

+121
-710
lines changed

8 files changed

+121
-710
lines changed

SecurityNote.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,6 @@
155155
6D195B501EBB7AED0081D227 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
156156
6D195B521EBB7AF30081D227 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
157157
6D195B541EBB7DD50081D227 /* Evaluate@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Evaluate@2x.png"; sourceTree = "<group>"; };
158-
6D195B561EBB80DC0081D227 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/Main.storyboard; sourceTree = "<group>"; };
159-
6D195B571EBB81000081D227 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = "zh-Hans"; path = "zh-Hans.lproj/Main.storyboard"; sourceTree = "<group>"; };
160158
6D19B8D019DC3BCC00EBBEBC /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
161159
6D19B8D219DC553600EBBEBC /* TCAbutSNoteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TCAbutSNoteViewController.h; sourceTree = "<group>"; };
162160
6D19B8D319DC553600EBBEBC /* TCAbutSNoteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TCAbutSNoteViewController.m; sourceTree = "<group>"; };
@@ -259,6 +257,8 @@
259257
6DEB8A7919D19A04004D842A /* cluck@2x.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "cluck@2x.jpg"; sourceTree = "<group>"; };
260258
6DF62182199E1C780026026C /* TCAddSimpleNoteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TCAddSimpleNoteViewController.h; sourceTree = "<group>"; };
261259
6DF62183199E1C780026026C /* TCAddSimpleNoteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TCAddSimpleNoteViewController.m; sourceTree = "<group>"; };
260+
6DF641991EC359FB0074C155 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Main.strings; sourceTree = "<group>"; };
261+
6DF6419A1EC359FF0074C155 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
262262
/* End PBXFileReference section */
263263

264264
/* Begin PBXFrameworksBuildPhase section */
@@ -897,8 +897,8 @@
897897
isa = PBXVariantGroup;
898898
children = (
899899
6D09E4B5199CB6F600CEA8B3 /* Base */,
900-
6D195B561EBB80DC0081D227 /* en */,
901-
6D195B571EBB81000081D227 /* zh-Hans */,
900+
6DF641991EC359FB0074C155 /* en */,
901+
6DF6419A1EC359FF0074C155 /* zh-Hans */,
902902
);
903903
name = Main.storyboard;
904904
sourceTree = "<group>";

SecurityNote/Base.lproj/Main.storyboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@
329329
</tableViewController>
330330
<placeholder placeholderIdentifier="IBFirstResponder" id="7Fa-NK-nhy" userLabel="First Responder" sceneMemberID="firstResponder"/>
331331
</objects>
332-
<point key="canvasLocation" x="45.5" y="2091.5"/>
332+
<point key="canvasLocation" x="93" y="2092"/>
333333
</scene>
334334
</scenes>
335335
<resources>

SecurityNote/SecurityNote-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>2.0.0</string>
20+
<string>2.1.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>2017.05.05.01</string>
24+
<string>2017.05.10</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSAppTransportSecurity</key>

SecurityNote/TCAppDelegate.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ - (void)startBaiduMobStat {
7474
// 其它事件
7575
[statTracker logEvent:@"usermodelName" eventLabel:[DHDeviceUtil deviceModelName]];
7676
[statTracker logEvent:@"systemVersion" eventLabel:[UIDevice currentDevice].systemVersion];
77-
7877
}
7978

8079
- (void)applicationWillResignActive:(UIApplication *)application

SecurityNote/en.lproj/Main.storyboard

Lines changed: 0 additions & 351 deletions
This file was deleted.

SecurityNote/en.lproj/Main.strings

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
2+
/* Class = "UINavigationController"; title = "日记"; ObjectID = "APM-SF-wH8"; */
3+
"APM-SF-wH8.title" = "DIARY";
4+
5+
/* Class = "UILabel"; text = "写一个评价吧"; ObjectID = "Ciz-Na-aCR"; */
6+
"Ciz-Na-aCR.text" = "Write a review!";
7+
8+
/* Class = "UINavigationItem"; title = "简记"; ObjectID = "Jec-WA-VNz"; */
9+
"Jec-WA-VNz.title" = "iSimple";
10+
11+
/* Class = "UINavigationController"; title = "备忘"; ObjectID = "Lgc-Vn-UpR"; */
12+
"Lgc-Vn-UpR.title" = "MEMO";
13+
14+
/* Class = "UITabBarItem"; title = "我"; ObjectID = "Nbe-B3-UIW"; */
15+
"Nbe-B3-UIW.title" = "iNote";
16+
17+
/* Class = "UILabel"; text = "反馈"; ObjectID = "R4I-ry-wSI"; */
18+
"R4I-ry-wSI.text" = "Feedback";
19+
20+
/* Class = "UILabel"; text = "关于密记"; ObjectID = "YGf-Uh-cnQ"; */
21+
"YGf-Uh-cnQ.text" = "About iNote";
22+
23+
/* Class = "UILabel"; text = "推荐好友"; ObjectID = "ZpW-4O-ass"; */
24+
"ZpW-4O-ass.text" = "Refer a friend";
25+
26+
/* Class = "UILabel"; text = "帮助"; ObjectID = "g7P-Sw-9TS"; */
27+
"g7P-Sw-9TS.text" = "help";
28+
29+
/* Class = "UINavigationItem"; title = "密记"; ObjectID = "gVI-xI-eQl"; */
30+
"gVI-xI-eQl.title" = "iSecret";
31+
32+
/* Class = "UITabBarItem"; title = "备忘"; ObjectID = "hjQ-JS-Aa3"; */
33+
"hjQ-JS-Aa3.title" = "MEMO";
34+
35+
/* Class = "UINavigationItem"; title = "备忘"; ObjectID = "lNi-nG-wHG"; */
36+
"lNi-nG-wHG.title" = "MEMO";
37+
38+
/* Class = "UINavigationController"; title = "简记"; ObjectID = "nhj-vE-MsX"; */
39+
"nhj-vE-MsX.title" = "iSimple";
40+
41+
/* Class = "UITextField"; text = "密语"; ObjectID = "ptX-aH-CKa"; */
42+
"ptX-aH-CKa.text" = "Bio";
43+
44+
/* Class = "UITableViewSection"; footerTitle = " "; ObjectID = "qxm-KJ-75T"; */
45+
"qxm-KJ-75T.footerTitle" = " ";
46+
47+
/* Class = "UINavigationItem"; title = "我"; ObjectID = "sez-WJ-JS4"; */
48+
"sez-WJ-JS4.title" = "iNote";
49+
50+
/* Class = "UITableViewSection"; footerTitle = " "; ObjectID = "uZh-fE-zuW"; */
51+
"uZh-fE-zuW.footerTitle" = " ";
52+
53+
/* Class = "UITabBarItem"; title = "密记"; ObjectID = "w57-Ny-63a"; */
54+
"w57-Ny-63a.title" = "iSecret";
55+
56+
/* Class = "UITabBarItem"; title = "简记"; ObjectID = "zZd-h0-Yn0"; */
57+
"zZd-h0-Yn0.title" = "iSimple";

0 commit comments

Comments
 (0)