Skip to content

Commit

Permalink
i18n cleanup 5
Browse files Browse the repository at this point in the history
  • Loading branch information
3gf8jv4dv committed Jan 15, 2025
1 parent 5a60eb4 commit 5ea8e54
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

- Android

*注:由于没有相关开发环境及证书,**目前没有计划支持 iOS 和 HarmonyOS NEXT***<br>
***注:目前没有计划支持 iOS 和 HarmonyOS NEXT***<br>
*桌面版项目地址:<https://github.com/lyswhut/lx-music-desktop>*

软件变化请查看[更新日志](https://github.com/lyswhut/lx-music-mobile/blob/master/CHANGELOG.md)
Expand All @@ -34,7 +34,7 @@

使用常见问题请参阅[移动版常见问题](https://lyswhut.github.io/lx-music-doc/mobile/faq)

目前本项目的原始发布地址只有 [**GitHub Releases**](https://github.com/lyswhut/lx-music-mobile/releases),其他渠道均为第三方转载发布,与本项目无关!
目前本项目的原始发布地址只有 [**GitHub**](https://github.com/lyswhut/lx-music-mobile/releases),其他渠道均为第三方转载发布,与本项目无关!

为了提高使用门槛,本软件内的默认设置、UI 操作不以新手友好为目标,所以使用前建议先根据你的喜好浏览调整一遍软件设置,阅读一遍[音乐播放列表机制](https://lyswhut.github.io/lx-music-doc/mobile/faq/playlist)

Expand Down
4 changes: 2 additions & 2 deletions src/config/setting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export const initSetting = async() => {
await migrateMetaData()
} catch (err: any) {
void tipDialog({
title: '数据迁移失败 (Migrate data Failed)',
message: `请加企鹅群(830125506)或到GitHub反馈,为了防止数据丢失,应用将停止运行错误信息:\n${(err.stack ?? err.message) as string}`,
title: '数据迁移失败 (Failed to migrate data)',
message: `请截图并在 GitHub 反馈。为了防止数据丢失,应用将停止运行错误信息:\n${(err.stack ?? err.message) as string}`,
btnText: 'Exit',
bgClose: false,
}).then(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Home/Views/Setting/settings/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default memo(() => {
<View style={styles.part}>
<Text style={styles.text}>最新版下载地址:</Text>
<TouchableOpacity onPress={openGHReleasePage}>
<Text style={textLinkStyle}>GitHub Release</Text>
<Text style={textLinkStyle}>GitHub Releases</Text>
</TouchableOpacity>
</View>
<View style={styles.part}>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/errorHandle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const errorHandler = (e: Error, isFatal: boolean) => {
Alert.alert(
'💥Unexpected error occurred💥',
`
应用出bug了😭,以下是错误异常信息,请截图(并附上刚才你进行了什么操作)通过企鹅群或者GitHub反馈,现在应用可能会出现异常,若出现异常请尝试强制结束APP后重新启动
应用出 bug 了😭,以下是错误异常信息。请截图并在 GitHub 反馈(并附上刚才你进行了什么操作)现在应用可能会出现异常,若出现异常请尝试强制结束应用后重新启动
Error:
${isFatal ? 'Fatal:' : ''} ${e.name} ${e.message}
Expand Down

0 comments on commit 5ea8e54

Please sign in to comment.