Skip to content

Commit

Permalink
代码完善: 修改远程媒体库名称为PC端媒体库
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyy committed Jul 15, 2024
1 parent b60bd02 commit d549709
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ enum class MediaType(

REMOTE_STORAGE(
"remote_storage",
"远程媒体库",
"PC端媒体库",
cover = R.drawable.ic_remote_storage
),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class RemoteStorageEditDialog(
this.binding = binding
val isEditStorage = originalStorage != null

setTitle(if (isEditStorage) "编辑远程连接帐号" else "添加远程连接帐号")
setTitle(if (isEditStorage) "编辑PC端媒体库帐号" else "添加PC端媒体库帐号")
binding.remoteData = remoteData

setGroupMode(remoteData.remoteAnimeGrouping)
Expand Down Expand Up @@ -78,7 +78,7 @@ class RemoteStorageEditDialog(
setPositiveListener {
if (checkParams(remoteData)) {
if (remoteData.displayName.isEmpty()) {
remoteData.displayName = "远程媒体库"
remoteData.displayName = "PC端媒体库"
}
remoteData.describe = remoteData.url
activity.addStorage(remoteData)
Expand Down

0 comments on commit d549709

Please sign in to comment.