Skip to content

Commit

Permalink
reimported chinese
Browse files Browse the repository at this point in the history
  • Loading branch information
or-else committed Feb 16, 2022
1 parent fe49c11 commit 7d3cdb3
Show file tree
Hide file tree
Showing 9 changed files with 236 additions and 87 deletions.
8 changes: 8 additions & 0 deletions Tinodios.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,10 @@
B0979FCC27BD99B80045FC73 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/TagsEditDialogView.strings; sourceTree = "<group>"; };
B0979FCD27BD9A070045FC73 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/MultilineAlertView.strings; sourceTree = "<group>"; };
B0979FCE27BD9A070045FC73 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/TagsEditDialogView.strings; sourceTree = "<group>"; };
B0979FCF27BD9A2A0045FC73 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MultilineAlertView.strings"; sourceTree = "<group>"; };
B0979FD027BD9A2A0045FC73 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/TagsEditDialogView.strings"; sourceTree = "<group>"; };
B0979FD127BD9A3B0045FC73 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/MultilineAlertView.strings"; sourceTree = "<group>"; };
B0979FD227BD9A3B0045FC73 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/TagsEditDialogView.strings"; sourceTree = "<group>"; };
B09C56492469362A00D6615D /* SettingsPersonalViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsPersonalViewController.swift; sourceTree = "<group>"; };
B09C564B2469756B00D6615D /* SettingsNotificationsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsNotificationsViewController.swift; sourceTree = "<group>"; };
B09C564D246975F700D6615D /* SettingsHelpViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsHelpViewController.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -838,6 +842,8 @@
B0BE302527B831BD00B04631 /* Base */,
B0979FCC27BD99B80045FC73 /* es */,
B0979FCE27BD9A070045FC73 /* ru */,
B0979FD027BD9A2A0045FC73 /* zh-Hans */,
B0979FD227BD9A3B0045FC73 /* zh-Hant */,
);
name = TagsEditDialogView.xib;
sourceTree = "<group>";
Expand All @@ -848,6 +854,8 @@
B0BE302827B831D400B04631 /* Base */,
B0979FCB27BD99B80045FC73 /* es */,
B0979FCD27BD9A070045FC73 /* ru */,
B0979FCF27BD9A2A0045FC73 /* zh-Hans */,
B0979FD127BD9A3B0045FC73 /* zh-Hant */,
);
name = MultilineAlertView.xib;
sourceTree = "<group>";
Expand Down
9 changes: 9 additions & 0 deletions Tinodios/widgets/zh-Hans.lproj/MultilineAlertView.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* Class = "UIButton"; normalTitle = "OK"; ObjectID = "A57-2v-ao9"; */
"A57-2v-ao9.normalTitle" = "好的";

/* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "AMx-JQ-2f8"; */
"AMx-JQ-2f8.normalTitle" = "取消";

/* Class = "UILabel"; text = "Title"; ObjectID = "W0P-gB-P5h"; */
"W0P-gB-P5h.text" = "标题";

9 changes: 9 additions & 0 deletions Tinodios/widgets/zh-Hans.lproj/TagsEditDialogView.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* Class = "UILabel"; text = "Tags (content discovery)"; ObjectID = "eeW-SH-URg"; */
"eeW-SH-URg.text" = "标签(内容发现)";

/* Class = "UIButton"; normalTitle = "OK"; ObjectID = "PJ7-dH-ATp"; */
"PJ7-dH-ATp.normalTitle" = "好的";

/* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "vOv-C1-oEb"; */
"vOv-C1-oEb.normalTitle" = "取消";

6 changes: 6 additions & 0 deletions Tinodios/widgets/zh-Hant.lproj/MultilineAlertView.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* Class = "UIButton"; normalTitle = "OK"; ObjectID = "A57-2v-ao9"; */
"A57-2v-ao9.normalTitle" = "OK";

/* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "AMx-JQ-2f8"; */
"AMx-JQ-2f8.normalTitle" = "刪去";

9 changes: 9 additions & 0 deletions Tinodios/widgets/zh-Hant.lproj/TagsEditDialogView.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* Class = "UILabel"; text = "Tags (content discovery)"; ObjectID = "eeW-SH-URg"; */
"eeW-SH-URg.text" = "標籤(內容發現)";

/* Class = "UIButton"; normalTitle = "OK"; ObjectID = "PJ7-dH-ATp"; */
"PJ7-dH-ATp.normalTitle" = "OK";

/* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "vOv-C1-oEb"; */
"vOv-C1-oEb.normalTitle" = "刪去";

123 changes: 81 additions & 42 deletions Tinodios/zh-Hans.lproj/Main.strings
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,29 @@
/* Class = "UIButton"; normalTitle = "Sign Up"; ObjectID = "1tv-os-KfJ"; */
"1tv-os-KfJ.normalTitle" = "注册";

/* Class = "UILabel"; text = "Administration and Security"; ObjectID = "3hX-RM-7Ha"; */
"3hX-RM-7Ha.text" = "行政和安全";

/* Class = "UIBarButtonItem"; title = "Invite"; ObjectID = "3zN-CC-6bS"; */
"3zN-CC-6bS.title" = "邀请";

/* Class = "UITableViewController"; title = "General Settings"; ObjectID = "4dd-0I-UFm"; */
"4dd-0I-UFm.title" = "常规设置";

/* Class = "UILabel"; text = "Send typing notifications"; ObjectID = "4ll-eW-b8Z"; */
"4ll-eW-b8Z.text" = "发送键入通知";

/* Class = "UILabel"; text = "Optional comment (private)"; ObjectID = "6Nd-3S-JBo"; */
"6Nd-3S-JBo.text" = "可选评论(私人)";

/* Class = "UILabel"; text = "John Doe"; ObjectID = "6ON-kt-aM9"; */
"6ON-kt-aM9.text" = "例如张伟";

/* Class = "UILabel"; text = "placeholder_file_name"; ObjectID = "6rW-B5-NCp"; */
"6rW-B5-NCp.text" = "占位_文件_名称";

/* Class = "UILabel"; text = "Delete Messages"; ObjectID = "7EV-I9-csz"; */
"7EV-I9-csz.text" = "删除信息";

/* Class = "UILabel"; text = "Block Contact"; ObjectID = "07M-9x-zBK"; */
"07M-9x-zBK.text" = "拉黑联系人";
/* Class = "UILabel"; text = "Report Contact"; ObjectID = "8eC-OS-Net"; */
"8eC-OS-Net.text" = "报告联系人";

/* Class = "UILabel"; text = "Log out"; ObjectID = "8RW-nB-5t3"; */
"8RW-nB-5t3.text" = "登出";
Expand Down Expand Up @@ -52,6 +61,9 @@
/* Class = "UIViewController"; title = "Image Preview"; ObjectID = "a2m-CR-0Zc"; */
"a2m-CR-0Zc.title" = "图片预览";

/* Class = "UILabel"; text = "Report Group"; ObjectID = "a4o-bz-GPx"; */
"a4o-bz-GPx.text" = "报告组";

/* Class = "UILabel"; text = "GROUP MEMBERS"; ObjectID = "a45-p0-44d"; */
"a45-p0-44d.text" = "群组成员";

Expand All @@ -64,12 +76,18 @@
/* Class = "UIButton"; normalTitle = "Confirm"; ObjectID = "aFc-MO-QyO"; */
"aFc-MO-QyO.normalTitle" = "确认";

/* Class = "UITextView"; text = "Private comment"; ObjectID = "Akq-Gr-LNH"; */
"Akq-Gr-LNH.text" = "私人评论";

/* Class = "UILabel"; text = "N"; ObjectID = "aMv-to-Vu2"; */
"aMv-to-Vu2.text" = "N";

/* Class = "UILabel"; text = "Muted"; ObjectID = "AoI-xo-VbS"; */
"AoI-xo-VbS.text" = "静音";

/* Class = "UITableViewController"; title = "General Settings"; ObjectID = "awR-up-0dD"; */
"awR-up-0dD.title" = "通用设置";

/* Class = "UILabel"; text = "App Version"; ObjectID = "AXP-O2-x5k"; */
"AXP-O2-x5k.text" = "应用版本";

Expand Down Expand Up @@ -97,7 +115,13 @@
/* Class = "UILabel"; text = "image/jpeg"; ObjectID = "C6Z-tO-4g8"; */
"C6Z-tO-4g8.text" = "image/jpeg";

/* Class = "UITextView"; text = "Topic subtitle (private)"; ObjectID = "D3z-yf-zJA"; */
/* Class = "UILabel"; text = "Add optional description"; ObjectID = "cD6-Om-VgZ"; */
"cD6-Om-VgZ.text" = "添加可选描述";

/* Class = "UITextField"; placeholder = "Optional description"; ObjectID = "Cy6-Bq-QCi"; */
"Cy6-Bq-QCi.placeholder" = "可选描述";

/* Class = "UITextView"; text = "Description"; ObjectID = "D3z-yf-zJA"; */
"D3z-yf-zJA.text" = "主题副标题(私人)";

/* Class = "UILabel"; text = "Address"; ObjectID = "D6H-jy-Zh4"; */
Expand All @@ -106,13 +130,19 @@
/* Class = "UINavigationItem"; title = "Help and About"; ObjectID = "d7l-9Y-8mk"; */
"d7l-9Y-8mk.title" = "帮助和关于";

/* Class = "UILabel"; text = "Archived"; ObjectID = "DEM-ia-TIj"; */
"DEM-ia-TIj.text" = "已存档";

/* Class = "UIButton"; normalTitle = "OK"; ObjectID = "DMQ-om-04T"; */
"DMQ-om-04T.normalTitle" = "确认";

/* Class = "UITextField"; placeholder = "Additional info (private)"; ObjectID = "Do2-Ue-UdA"; */
"Do2-Ue-UdA.placeholder" = "附加信息(私人)";

/* Class = "UILabel"; text = "Manage"; ObjectID = "eHa-mE-ZbY"; */
/* Class = "UILabel"; text = "Delete Group"; ObjectID = "dT7-dW-WFv"; */
"dT7-dW-WFv.text" = "删除群组";

/* Class = "UILabel"; text = "Manage tags"; ObjectID = "eHa-mE-ZbY"; */
"eHa-mE-ZbY.text" = "管理";

/* Class = "UILabel"; text = "128x365; 35KB"; ObjectID = "eVu-vx-CU8"; */
Expand Down Expand Up @@ -163,18 +193,21 @@
/* Class = "UINavigationItem"; title = "Personal"; ObjectID = "hUo-8f-ZiA"; */
"hUo-8f-ZiA.title" = "关于我";

/* Class = "UITableViewSection"; headerTitle = "Actions"; ObjectID = "HwV-ri-EBc"; */
"HwV-ri-EBc.headerTitle" = "动作";

/* Class = "UINavigationItem"; title = "New Chat"; ObjectID = "hZA-k4-xku"; */
"hZA-k4-xku.title" = "新会话";

/* Class = "UIButton"; normalTitle = "Request"; ObjectID = "i0f-S8-O1v"; */
"i0f-S8-O1v.normalTitle" = "请求";

/* Class = "UITextView"; text = "Topic title (public)"; ObjectID = "ity-bg-zqr"; */
/* Class = "UILabel"; text = "Add optional description"; ObjectID = "IbJ-of-vl0"; */
"IbJ-of-vl0.text" = "添加可选描述";

/* Class = "UITextView"; text = "Title"; ObjectID = "ity-bg-zqr"; */
"ity-bg-zqr.text" = "主题标题(公开)";

/* Class = "UILabel"; text = "Verified"; ObjectID = "IzY-DL-wiS"; */
"IzY-DL-wiS.text" = "值得信赖";

/* Class = "UITableViewSection"; headerTitle = "Tags (Content Discovery)"; ObjectID = "jal-tR-OpF"; */
"jal-tR-OpF.headerTitle" = "标签(内容发现)";

Expand Down Expand Up @@ -205,6 +238,9 @@
/* Class = "UILabel"; text = "File name:"; ObjectID = "kSc-xN-hqx"; */
"kSc-xN-hqx.text" = "文件名:";

/* Class = "UILabel"; text = "Block Contact"; ObjectID = "KSy-US-Bkx"; */
"KSy-US-Bkx.text" = "阻止联系";

/* Class = "UILabel"; text = "Blocked contacts"; ObjectID = "Lh9-1X-ez1"; */
"Lh9-1X-ez1.text" = "已屏蔽的联系人";

Expand All @@ -220,6 +256,9 @@
/* Class = "UIBarButtonItem"; title = "New Chat"; ObjectID = "LVG-dB-flA"; */
"LVG-dB-flA.title" = "新会话";

/* Class = "UILabel"; text = "Untrusworthy"; ObjectID = "LVW-qL-KG8"; */
"LVW-qL-KG8.text" = "可疑的";

/* Class = "UILabel"; text = "Size: "; ObjectID = "moa-6V-LhX"; */
"moa-6V-LhX.text" = "尺寸:";

Expand All @@ -235,9 +274,6 @@
/* Class = "UITextField"; placeholder = "Login"; ObjectID = "nho-5Y-Mt8"; */
"nho-5Y-Mt8.placeholder" = "登录";

/* Class = "UILabel"; text = "Staff-managed"; ObjectID = "nih-1p-AyF"; */
"nih-1p-AyF.text" = "在员工管理下";

/* Class = "UILabel"; text = "No results"; ObjectID = "ntt-8z-Ay2"; */
"ntt-8z-Ay2.text" = "没有结果";

Expand All @@ -262,9 +298,6 @@
/* Class = "UILabel"; text = "Address"; ObjectID = "OwU-2N-QQV"; */
"OwU-2N-QQV.text" = "地址";

/* Class = "UILabel"; text = "Verified"; ObjectID = "OZr-73-5vP"; */
"OZr-73-5vP.text" = "值得信赖";

/* Class = "UITableViewController"; title = "Account Settings"; ObjectID = "Pnk-9m-ZVg"; */
"Pnk-9m-ZVg.title" = "账户设置";

Expand All @@ -274,12 +307,12 @@
/* Class = "UIButton"; normalTitle = "Forgot password?"; ObjectID = "q6T-TC-n42"; */
"q6T-TC-n42.normalTitle" = "忘记密码?";

/* Class = "UILabel"; text = "Report Group"; ObjectID = "qaR-VW-Rfy"; */
"qaR-VW-Rfy.text" = "举报群组";

/* Class = "UITabBarController"; title = "New chat"; ObjectID = "qBo-ye-avT"; */
"qBo-ye-avT.title" = "新会话";

/* Class = "UINavigationItem"; title = "Administrative and Security"; ObjectID = "qeU-hX-VEM"; */
"qeU-hX-VEM.title" = "行政和安全";

/* Class = "UILabel"; text = "Change password"; ObjectID = "qvs-D4-f94"; */
"qvs-D4-f94.text" = "更改密码";

Expand All @@ -298,6 +331,9 @@
/* Class = "UIBarButtonItem"; title = "Profile"; ObjectID = "rlG-v4-QUc"; */
"rlG-v4-QUc.title" = "个人中心";

/* Class = "UILabel"; text = "Leave Group"; ObjectID = "rlX-B4-4KE"; */
"rlX-B4-4KE.text" = "休假组";

/* Class = "UILabel"; text = "Staff-managed"; ObjectID = "ROK-aW-Tlk"; */
"ROK-aW-Tlk.text" = "在员工管理下";

Expand All @@ -316,26 +352,17 @@
/* Class = "UILabel"; text = "John Doe"; ObjectID = "syF-Vp-vRc"; */
"syF-Vp-vRc.text" = "例如张伟";

/* Class = "UILabel"; text = "Leave Conversation"; ObjectID = "t2m-Xv-gTF"; */
"t2m-Xv-gTF.text" = "离开会话";

/* Class = "UITabBarItem"; title = "By ID"; ObjectID = "T7l-iC-Rs6"; */
"T7l-iC-Rs6.title" = "通过ID";

/* Class = "UILabel"; text = "John Doe"; ObjectID = "TCK-gb-1BS"; */
"TCK-gb-1BS.text" = "孙七";

/* Class = "UIView"; accessibilityLabel = "Footer"; ObjectID = "te7-Jx-ztq"; */
"te7-Jx-ztq.accessibilityLabel" = "Footer";

/* Class = "UILabel"; text = "Leave Group"; ObjectID = "TRR-fA-HKj"; */
"TRR-fA-HKj.text" = "离开群组";

/* Class = "UIButton"; normalTitle = "Sign In"; ObjectID = "TvF-F9-blO"; */
"TvF-F9-blO.normalTitle" = "登录";

/* Class = "UILabel"; text = "Report Contact"; ObjectID = "ub9-mK-yqf"; */
"ub9-mK-yqf.text" = "举报联系人";
/* Class = "UITableViewSection"; headerTitle = "Actions"; ObjectID = "U5T-k4-DgP"; */
"U5T-k4-DgP.headerTitle" = "行动";

/* Class = "UITableViewController"; title = "Find Controller"; ObjectID = "UgX-En-K1m"; */
"UgX-En-K1m.title" = "查找控制器";
Expand All @@ -352,47 +379,50 @@
/* Class = "UILabel"; text = "128x365; 35KB"; ObjectID = "wfA-TG-Chj"; */
"wfA-TG-Chj.text" = "128x365; 35KB";

/* Class = "UILabel"; text = "Delete Messages"; ObjectID = "wnZ-ve-5xb"; */
"wnZ-ve-5xb.text" = "删除信息";

/* Class = "UILabel"; text = "Yours"; ObjectID = "wPJ-94-8aV"; */
"wPJ-94-8aV.text" = "你的";

/* Class = "UILabel"; text = "The name of the group"; ObjectID = "WVu-hr-VVU"; */
"WVu-hr-VVU.text" = "群组名称";

/* Class = "UINavigationItem"; title = "Reset Password"; ObjectID = "wWt-TO-3We"; */
"wWt-TO-3We.title" = "重置密码";

/* Class = "UIView"; accessibilityLabel = "Footer"; ObjectID = "xIw-r0-6Pv"; */
"xIw-r0-6Pv.accessibilityLabel" = "Footer";

/* Class = "UILabel"; text = "Subtitle"; ObjectID = "xMh-7W-PhM"; */
"xMh-7W-PhM.text" = "字幕";

/* Class = "UITextField"; placeholder = "usr123aBcDef"; ObjectID = "xmn-wq-Hpr"; */
"xmn-wq-Hpr.placeholder" = "usr123aBcDef";

/* Class = "UILabel"; text = "Incognito mode"; ObjectID = "xyg-ee-0pd"; Note = "Label for incognito mode switch"; */
"xyg-ee-0pd.text" = "无痕模式";

/* Class = "UILabel"; text = "Untrusworthy"; ObjectID = "y1s-eC-LVl"; */
"y1s-eC-LVl.text" = "可疑的";

/* Class = "UILabel"; text = "Get reset code by email or phone"; ObjectID = "Ykj-eb-phs"; */
"Ykj-eb-phs.text" = "通过电子邮件或电话请求重置代码";

/* Class = "UITextField"; placeholder = "First and last name"; ObjectID = "yKx-xt-rdn"; */
"yKx-xt-rdn.placeholder" = "姓名";

/* Class = "UILabel"; text = "Subtitle"; ObjectID = "yL1-ka-zNK"; */
"yL1-ka-zNK.text" = "字幕";

/* Class = "UILabel"; text = "image/jpeg"; ObjectID = "YLX-fZ-c26"; */
"YLX-fZ-c26.text" = "image/jpeg";

/* Class = "UITableViewController"; title = "SignUp"; ObjectID = "YmQ-cB-rjH"; */
"YmQ-cB-rjH.title" = "注册";

/* Class = "UILabel"; text = "Delete Group"; ObjectID = "z6C-JF-Mnb"; */
"z6C-JF-Mnb.text" = "删除群组";

/* Class = "UILabel"; text = "Account and Security"; ObjectID = "z08-iK-CeG"; */
"z08-iK-CeG.text" = "账户和安全";

/* Class = "UITableViewSection"; headerTitle = "Notifications"; ObjectID = "ZEt-A4-kIu"; */
"ZEt-A4-kIu.headerTitle" = "通知";
/* Class = "UILabel"; text = "Others can find group by these tags"; ObjectID = "Zdw-nR-1tB"; */
"Zdw-nR-1tB.text" = "其他人可以通过这些标签找到群组";

/* Class = "UILabel"; text = "Staff-managed"; ObjectID = "zkl-8R-Tma"; */
"zkl-8R-Tma.text" = "工作人员管理";

/* Class = "UITextField"; placeholder = "Email or phone number"; ObjectID = "zmL-3Y-R2r"; */
"zmL-3Y-R2r.placeholder" = "邮箱或手机号";
Expand All @@ -403,6 +433,9 @@
/* Class = "UITextField"; placeholder = "Password"; ObjectID = "ZQy-2N-acy"; */
"ZQy-2N-acy.placeholder" = "密码";

/* Class = "UILabel"; text = "Leave Conversation"; ObjectID = "zr8-yN-F8L"; */
"zr8-yN-F8L.text" = "离开对话";

/* Class = "UITextField"; accessibilityHint = "Login"; ObjectID = "ZTD-e7-fNF"; */
"ZTD-e7-fNF.accessibilityHint" = "登录";

Expand All @@ -418,3 +451,9 @@
/* Class = "UITableViewSection"; headerTitle = "Default Permissions"; ObjectID = "zW8-KF-N8J"; */
"zW8-KF-N8J.headerTitle" = "默认权限";

/* Class = "UINavigationItem"; title = "Settings"; ObjectID = "zww-h7-9s0"; */
"zww-h7-9s0.title" = "设置";

/* Class = "UILabel"; text = "Permissions, block or report chat"; ObjectID = "zz2-fg-2IG"; */
"zz2-fg-2IG.text" = "权限、阻止或报告聊天";

Loading

0 comments on commit 7d3cdb3

Please sign in to comment.