Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,7 @@ private extension TextField {
.strokeBorder(SwiftUI.Color.semantic(.lineAlternative))
}
.scrollDisabled(autoCompletionContentHeight <= autoCompletionDataSource?.maxHeight ?? 0)
.accessibilityIdentifier("autocomplete_container")
.position(
x: textFieldFrame.midX,
y: textFieldFrame.maxY - safeAreaInsets.top
Expand Down Expand Up @@ -519,6 +520,7 @@ private extension TextField {
ForEach(0 ..< itemCount, id: \.self) { item in
let indexPath = IndexPath(item: item, section: section)
autoCompletionDataSource.cellForItemAt(indexPath)
.accessibilityIdentifier("autocomplete_item_\(section)_\(item)")
}
}
}
Expand Down
37 changes: 31 additions & 6 deletions Sources/Montage/Asset/Localizable.xcstrings
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
{
"sourceLanguage" : "ko",
"strings" : {
"*" : {

},
"/" : {

},
"/%@" : {

},
"%@" : {

},
"%@x%@" : {
"localizations" : {
"ko" : {
"stringUnit" : {
"state" : "new",
"value" : "%1$@x%2$@"
}
}
}
},
"N" : {

},
"뒤로 가기" : {

},
"로딩 중" : {

},
Expand All @@ -21,19 +49,16 @@
},
"오류" : {

},
"뒤로 가기" : {

},
"프로필 이미지" : {

},
"회사 로고" : {
"학원 로고" : {

},
"학원 로고" : {
"회사 로고" : {

}
},
"version" : "1.0"
}
}
Loading