-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
195 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Permissions usage explanations | ||
"NSCameraUsageDescription" = "用来拍照、拍视频和视频聊天的摄像头。"; | ||
"NSPhotoLibraryUsageDescription" = "用来发送图片和视频的图片文件夹。"; | ||
"NSMicrophoneUsageDescription" = "用来拍视频和通话的麦克风。"; | ||
"NSContactsUsageDescription" = "在 Riot 里通过电子邮件或电话搜索用户的通讯录。"; | ||
"NSCameraUsageDescription" = "Riot 需要使用摄像头权限以拍摄照片、录制视频或进行视频聊天。"; | ||
"NSPhotoLibraryUsageDescription" = "Riot 需要使用图库权限以发送图片与视频。"; | ||
"NSMicrophoneUsageDescription" = "Riot 需要使用麦克风权限以便录制视频或进行通话。"; | ||
"NSContactsUsageDescription" = "Riot 需要使用通讯录权限以 Riot 内部通过邮箱地址或手机号码搜索用户。"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* New message from a specific person, not referencing a room */ | ||
"MSG_FROM_USER" = "来自 %@ 的消息"; | ||
/* New message from a specific person in a named room */ | ||
"MSG_FROM_USER_IN_ROOM" = "%@ 在 %@ 发送了消息"; | ||
/* New message from a specific person, not referencing a room. Content included. */ | ||
"MSG_FROM_USER_WITH_CONTENT" = "%@:%@"; | ||
/* New message from a specific person in a named room. Content included. */ | ||
"MSG_FROM_USER_IN_ROOM_WITH_CONTENT" = "%@ (%@):%@"; | ||
/* New action message from a specific person, not referencing a room. */ | ||
"ACTION_FROM_USER" = "* %@ %@"; | ||
/* New action message from a specific person in a named room. */ | ||
"ACTION_FROM_USER_IN_ROOM" = "%@:* %@ %@"; | ||
/* New action message from a specific person, not referencing a room. */ | ||
"IMAGE_FROM_USER" = "%@ 给您发了一张图片:%@"; | ||
/* New action message from a specific person in a named room. */ | ||
"IMAGE_FROM_USER_IN_ROOM" = "%@ 发了一张图片:%@ (来自聊天室 %@)"; | ||
/* A single unread message in a room */ | ||
"SINGLE_UNREAD_IN_ROOM" = "你收到了一条消息 (来自聊天室 %@)"; | ||
/* A single unread message */ | ||
"SINGLE_UNREAD" = "你收到了一条消息"; | ||
/* Multiple unread messages in a room */ | ||
"UNREAD_IN_ROOM" = "%@ 条未读消息 (来自聊天室 %@)"; | ||
/* Multiple unread messages from a specific person, not referencing a room */ | ||
"MSGS_FROM_USER" = "%@ 条未读消息 (来自 %@)"; | ||
/* Multiple unread messages from two people */ | ||
"MSGS_FROM_TWO_USERS" = "%@ 条未读消息 (来自 %@ 和 %@)"; | ||
/* Multiple unread messages from three people */ | ||
"MSGS_FROM_THREE_USERS" = "%@ 条未读消息 (来自 %@、%@ 和 %@)"; | ||
/* Multiple unread messages from two plus people (ie. for 4+ people: 'others' replaces the third person) */ | ||
"MSGS_FROM_TWO_PLUS_USERS" = "%@ 条未读消息 (来自 %@、%@ 和更多)"; | ||
/* Multiple messages in two rooms */ | ||
"MSGS_IN_TWO_ROOMS" = "%@ 条未读消息 (来自聊天室 %@ 和 %@)"; | ||
/* Look, stuff's happened, alright? Just open the app. */ | ||
"MSGS_IN_TWO_PLUS_ROOMS" = "%@ 条未读消息 (来自聊天室 %@、%@ 和更多)"; | ||
/* A user has invited you to a chat */ | ||
"USER_INVITE_TO_CHAT" = "%@ 邀请您加入私聊"; | ||
/* A user has invited you to an (unamed) group chat */ | ||
"USER_INVITE_TO_CHAT_GROUP_CHAT" = "%@ 邀请您加入聊天室"; | ||
/* A user has invited you to a named room */ | ||
"USER_INVITE_TO_NAMED_ROOM" = "%@ 邀请您加入聊天室 %@"; |
Oops, something went wrong.