소스 검색

Merge pull request #4077 from nextcloud/rename_conversation_gained_string

Rename string from connection gained to connection established
Sowjanya Kota 9 달 전
부모
커밋
672ccef79a
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      app/src/main/java/com/nextcloud/talk/chat/MessageInputFragment.kt
  2. 1 1
      app/src/main/res/values/strings.xml

+ 1 - 1
app/src/main/java/com/nextcloud/talk/chat/MessageInputFragment.kt

@@ -189,7 +189,7 @@ class MessageInputFragment : Fragment() {
                 animation.duration = 3000
                 animation.interpolator = LinearInterpolator()
                 binding.fragmentConnectionLost.setBackgroundColor(resources.getColor(R.color.hwSecurityGreen))
-                binding.fragmentConnectionLost.text = getString(R.string.connection_gained)
+                binding.fragmentConnectionLost.text = getString(R.string.connection_established)
                 binding.fragmentConnectionLost.startAnimation(animation)
                 binding.fragmentConnectionLost.animation.setAnimationListener(object : AnimationListener {
                     override fun onAnimationStart(animation: Animation?) {

+ 1 - 1
app/src/main/res/values/strings.xml

@@ -796,7 +796,7 @@ How to translate with transifex:
     <string name="show_banned_participants">Show banned participants</string>
     <string name="bans_list">Bans list</string>
     <string name="connection_lost_sent_messages_are_queued">Connection lost - Sent messages are queued</string>
-    <string name="connection_gained">Connection gained</string>
+    <string name="connection_established">Connection established</string>
     <string name="message_deleted_by_you">Message deleted by you</string>
     <string name="unban">Unban</string>
     <string name="internal_note">Internal note</string>