Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
d3a2b88a
Commit
d3a2b88a
authored
Aug 29, 2018
by
divyanshu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolve conflicts
parent
dc32d9ca
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
250 additions
and
561 deletions
+250
-561
LoginFragment.kt
...t/rocket/android/authentication/login/ui/LoginFragment.kt
+0
-290
AuthenticationNavigator.kt
...id/authentication/presentation/AuthenticationNavigator.kt
+15
-2
AuthenticationActivity.kt
...ocket/android/authentication/ui/AuthenticationActivity.kt
+17
-6
Menu.kt
app/src/main/java/chat/rocket/android/main/ui/Menu.kt
+1
-1
ProfileFragment.kt
...in/java/chat/rocket/android/profile/ui/ProfileFragment.kt
+3
-3
fragment_authentication_log_in.xml
app/src/main/res/layout/fragment_authentication_log_in.xml
+96
-256
fragment_profile.xml
app/src/main/res/layout/fragment_profile.xml
+3
-3
strings.xml
app/src/main/res/values-de/strings.xml
+16
-0
strings.xml
app/src/main/res/values-es/strings.xml
+16
-0
strings.xml
app/src/main/res/values-fr/strings.xml
+17
-0
strings.xml
app/src/main/res/values-hi-rIN/strings.xml
+16
-0
strings.xml
app/src/main/res/values-pt-rBR/strings.xml
+16
-0
strings.xml
app/src/main/res/values-ru/strings.xml
+16
-0
strings.xml
app/src/main/res/values/strings.xml
+18
-0
No files found.
app/src/main/java/chat/rocket/android/authentication/login/ui/LoginFragment.kt
View file @
d3a2b88a
This diff is collapsed.
Click to expand it.
app/src/main/java/chat/rocket/android/authentication/presentation/AuthenticationNavigator.kt
View file @
d3a2b88a
...
...
@@ -5,6 +5,7 @@ import chat.rocket.android.R
import
chat.rocket.android.authentication.domain.model.LoginDeepLinkInfo
import
chat.rocket.android.authentication.login.ui.LoginFragment
import
chat.rocket.android.authentication.login.ui.TAG_LOGIN_FRAGMENT
import
chat.rocket.android.authentication.loginoptions.ui.LoginOptionsFragment
import
chat.rocket.android.authentication.registerusername.ui.RegisterUsernameFragment
import
chat.rocket.android.authentication.registerusername.ui.TAG_REGISTER_USERNAME_FRAGMENT
import
chat.rocket.android.authentication.resetpassword.ui.ResetPasswordFragment
...
...
@@ -23,6 +24,12 @@ import chat.rocket.android.webview.ui.webViewIntent
class
AuthenticationNavigator
(
internal
val
activity
:
AuthenticationActivity
)
{
fun
toLoginOptions
(
server
:
String
)
{
activity
.
addFragmentBackStack
(
"LoginOptionFragment"
,
R
.
id
.
fragment_container
)
{
LoginOptionsFragment
.
newInstance
(
server
)
}
}
fun
toLogin
()
{
activity
.
addFragmentBackStack
(
TAG_LOGIN_FRAGMENT
,
R
.
id
.
fragment_container
)
{
LoginFragment
.
newInstance
()
...
...
@@ -57,8 +64,8 @@ class AuthenticationNavigator(internal val activity: AuthenticationActivity) {
}
}
fun
toWebPage
(
url
:
String
)
{
activity
.
startActivity
(
activity
.
webViewIntent
(
url
))
fun
toWebPage
(
url
:
String
,
toolbarTitle
:
String
?
=
null
)
{
activity
.
startActivity
(
activity
.
webViewIntent
(
url
,
toolbarTitle
))
activity
.
overridePendingTransition
(
R
.
anim
.
slide_up
,
R
.
anim
.
hold
)
}
...
...
@@ -82,4 +89,10 @@ class AuthenticationNavigator(internal val activity: AuthenticationActivity) {
activity
.
startActivity
(
activity
.
newServerIntent
())
activity
.
finish
()
}
fun
toCreateAccount
()
{
activity
.
addFragmentBackStack
(
"SignUpFragment"
,
R
.
id
.
fragment_container
){
SignupFragment
.
newInstance
()
}
}
}
\ No newline at end of file
app/src/main/java/chat/rocket/android/authentication/ui/AuthenticationActivity.kt
View file @
d3a2b88a
...
...
@@ -8,6 +8,7 @@ import androidx.appcompat.app.AppCompatActivity
import
chat.rocket.android.R
import
chat.rocket.android.authentication.domain.model.LoginDeepLinkInfo
import
chat.rocket.android.authentication.domain.model.getLoginDeepLinkInfo
import
chat.rocket.android.authentication.onboarding.ui.OnBoardingFragment
import
chat.rocket.android.authentication.presentation.AuthenticationPresenter
import
chat.rocket.android.authentication.server.ui.ServerFragment
import
chat.rocket.android.util.extensions.addFragment
...
...
@@ -15,6 +16,7 @@ import dagger.android.AndroidInjection
import
dagger.android.AndroidInjector
import
dagger.android.DispatchingAndroidInjector
import
dagger.android.support.HasSupportFragmentInjector
import
kotlinx.android.synthetic.main.app_bar_chat_room.*
import
kotlinx.coroutines.experimental.Job
import
kotlinx.coroutines.experimental.android.UI
import
kotlinx.coroutines.experimental.launch
...
...
@@ -30,8 +32,17 @@ class AuthenticationActivity : AppCompatActivity(), HasSupportFragmentInjector {
override
fun
onCreate
(
savedInstanceState
:
Bundle
?)
{
AndroidInjection
.
inject
(
this
)
setContentView
(
R
.
layout
.
activity_authentication
)
setTheme
(
R
.
style
.
AuthenticationTheme
)
super
.
onCreate
(
savedInstanceState
)
setupToolbar
()
}
private
fun
setupToolbar
()
{
setSupportActionBar
(
toolbar
)
supportActionBar
?.
setDisplayShowTitleEnabled
(
false
)
toolbar
.
setNavigationIcon
(
R
.
drawable
.
ic_arrow_back_white_24dp
)
toolbar
.
setNavigationOnClickListener
{
onBackPressed
()
}
}
override
fun
onStart
()
{
...
...
@@ -40,9 +51,9 @@ class AuthenticationActivity : AppCompatActivity(), HasSupportFragmentInjector {
launch
(
UI
+
job
)
{
val
newServer
=
intent
.
getBooleanExtra
(
INTENT_ADD_NEW_SERVER
,
false
)
// if we got authenticateWithDeepLink information, pass true to newServer also
presenter
.
loadCredentials
(
newServer
||
deepLinkInfo
!=
null
)
{
authenticated
->
presenter
.
loadCredentials
(
newServer
)
{
authenticated
->
if
(!
authenticated
)
{
show
ServerInput
(
deepLinkInfo
)
show
OnBoarding
(
)
}
}
}
...
...
@@ -63,9 +74,9 @@ class AuthenticationActivity : AppCompatActivity(), HasSupportFragmentInjector {
return
fragmentDispatchingAndroidInjector
}
fun
showServerInput
(
deepLinkInfo
:
LoginDeepLinkInfo
?
)
{
addFragment
(
"
Server
Fragment"
,
R
.
id
.
fragment_container
,
allowStateLoss
=
true
)
{
ServerFragment
.
newInstance
(
deepLinkInfo
)
private
fun
showOnBoarding
(
)
{
addFragment
(
"
OnBoarding
Fragment"
,
R
.
id
.
fragment_container
,
allowStateLoss
=
true
)
{
OnBoardingFragment
.
newInstance
(
)
}
}
}
...
...
app/src/main/java/chat/rocket/android/main/ui/Menu.kt
View file @
d3a2b88a
...
...
@@ -26,7 +26,7 @@ internal fun MainActivity.setupMenu(menu: Menu) {
R
.
id
.
menu_action_profile
,
Menu
.
NONE
,
R
.
string
.
title_profile
).
setIcon
(
R
.
drawable
.
ic_person_black_2
4
dp
)
).
setIcon
(
R
.
drawable
.
ic_person_black_2
0
dp
)
add
(
R
.
id
.
menu_section_two
,
...
...
app/src/main/java/chat/rocket/android/profile/ui/ProfileFragment.kt
View file @
d3a2b88a
...
...
@@ -218,10 +218,10 @@ class ProfileFragment : Fragment(), ProfileView, ActionMode.Callback {
private
fun
tintEditTextDrawableStart
()
{
(
activity
as
MainActivity
).
apply
{
val
personDrawable
=
DrawableHelper
.
getDrawableFromId
(
R
.
drawable
.
ic_person_black_2
4
dp
,
this
)
val
atDrawable
=
DrawableHelper
.
getDrawableFromId
(
R
.
drawable
.
ic_at_black_2
4
dp
,
this
)
DrawableHelper
.
getDrawableFromId
(
R
.
drawable
.
ic_person_black_2
0
dp
,
this
)
val
atDrawable
=
DrawableHelper
.
getDrawableFromId
(
R
.
drawable
.
ic_at_black_2
0
dp
,
this
)
val
emailDrawable
=
DrawableHelper
.
getDrawableFromId
(
R
.
drawable
.
ic_email_black_2
4
dp
,
this
)
DrawableHelper
.
getDrawableFromId
(
R
.
drawable
.
ic_email_black_2
0
dp
,
this
)
val
drawables
=
arrayOf
(
personDrawable
,
atDrawable
,
emailDrawable
)
DrawableHelper
.
wrapDrawables
(
drawables
)
...
...
app/src/main/res/layout/fragment_authentication_log_in.xml
View file @
d3a2b88a
This diff is collapsed.
Click to expand it.
app/src/main/res/layout/fragment_profile.xml
View file @
d3a2b88a
...
...
@@ -32,7 +32,7 @@
android:id=
"@+id/text_name"
style=
"@style/Profile.EditText"
android:layout_marginTop=
"32dp"
android:drawableStart=
"@drawable/ic_person_black_2
4
dp"
android:drawableStart=
"@drawable/ic_person_black_2
0
dp"
android:hint=
"@string/msg_name"
android:inputType=
"textCapWords"
/>
...
...
@@ -40,7 +40,7 @@
android:id=
"@+id/text_username"
style=
"@style/Profile.EditText"
android:layout_marginTop=
"16dp"
android:drawableStart=
"@drawable/ic_at_black_2
4
dp"
android:drawableStart=
"@drawable/ic_at_black_2
0
dp"
android:hint=
"@string/msg_username"
android:inputType=
"text"
/>
...
...
@@ -49,7 +49,7 @@
style=
"@style/Profile.EditText"
android:layout_marginTop=
"16dp"
android:layout_marginBottom=
"16dp"
android:drawableStart=
"@drawable/ic_email_black_2
4
dp"
android:drawableStart=
"@drawable/ic_email_black_2
0
dp"
android:hint=
"@string/msg_email"
android:inputType=
"textEmailAddress"
/>
</LinearLayout>
...
...
app/src/main/res/values-de/strings.xml
View file @
d3a2b88a
...
...
@@ -44,6 +44,11 @@
<string
name=
"action_select_photo_from_gallery"
>
Select photo from gallery
</string>
<!-- TODO Add translation -->
<string
name=
"action_take_photo"
>
Select photo from gallery
</string>
<!-- TODO Add translation -->
<string
name=
"action_reset_avatar"
>
Reset avatar
</string>
<!-- TODO Add translation -->
<string
name=
"action_connect_server"
>
Connect with a server
</string>
<string
name=
"action_join_community"
>
Join in the community
</string>
<string
name=
"action_create_server"
>
Create a new server
</string>
<string
name=
"action_register"
>
Register
</string>
<string
name=
"action_confirm"
>
Confirm
</string>
<!-- Settings List -->
<string-array
name=
"settings_actions"
>
...
...
@@ -130,6 +135,17 @@
<string
name=
"msg_file_description"
>
Datei Beschreibung
</string>
<string
name=
"msg_send"
>
Sende
</string>
<string
name=
"msg_sent_attachment"
>
Sende Anhang
</string>
<string
name=
"msg_welcome_to_rocket_chat"
>
Welcome to Rocket.Chat
</string>
<string
name=
"msg_open_source_communication"
>
Open Source Communication
</string>
<string
name=
"msg_login_with_email"
>
Login with e-mail
</string>
<string
name=
"msg_create_account"
>
Create an account
</string>
<string
name=
"msg_continue_with_facebook"
>
Continue with Facebook
</string>
<string
name=
"msg_continue_with_github"
>
Continue with Github
</string>
<string
name=
"msg_continue_with_google"
>
Continue with Google
</string>
<string
name=
"msg_continue_with_linkedin"
>
Continue with Linkedin
</string>
<string
name=
"msg_continue_with_gitlab"
>
Continue with GitLab
</string>
<string
name=
"msg_two_factor_authentication"
>
Two-factor Authentication
</string>
<string
name=
"msg__your_2fa_code"
>
What’s your 2FA code?
</string>
<!-- Create channel messages -->
<string
name=
"msg_private_channel"
>
Privat
</string>
...
...
app/src/main/res/values-es/strings.xml
View file @
d3a2b88a
...
...
@@ -44,6 +44,11 @@
<string
name=
"action_select_photo_from_gallery"
>
Select photo from gallery
</string>
<!-- TODO Add translation -->
<string
name=
"action_take_photo"
>
Select photo from gallery
</string>
<!-- TODO Add translation -->
<string
name=
"action_reset_avatar"
>
Reset avatar
</string>
<!-- TODO Add translation -->
<string
name=
"action_connect_server"
>
Connect with a server
</string>
<string
name=
"action_join_community"
>
Join in the community
</string>
<string
name=
"action_create_server"
>
Create a new server
</string>
<string
name=
"action_register"
>
Register
</string>
<string
name=
"action_confirm"
>
Confirm
</string>
<!-- Settings List -->
<string-array
name=
"settings_actions"
>
...
...
@@ -127,6 +132,17 @@
<string
name=
"msg_delete_message"
>
Borrar mensaje
</string>
<string
name=
"msg_delete_description"
>
Seguro que quieres borrar este mensaje
</string>
<string
name=
"msg_no_search_found"
>
No se han encontrado resultados
</string>
<string
name=
"msg_welcome_to_rocket_chat"
>
Welcome to Rocket.Chat
</string>
<string
name=
"msg_open_source_communication"
>
Open Source Communication
</string>
<string
name=
"msg_login_with_email"
>
Login with e-mail
</string>
<string
name=
"msg_create_account"
>
Create an account
</string>
<string
name=
"msg_continue_with_facebook"
>
Continue with Facebook
</string>
<string
name=
"msg_continue_with_github"
>
Continue with Github
</string>
<string
name=
"msg_continue_with_google"
>
Continue with Google
</string>
<string
name=
"msg_continue_with_linkedin"
>
Continue with Linkedin
</string>
<string
name=
"msg_continue_with_gitlab"
>
Continue with GitLab
</string>
<string
name=
"msg_two_factor_authentication"
>
Two-factor Authentication
</string>
<string
name=
"msg__your_2fa_code"
>
What’s your 2FA code?
</string>
<!-- Create channel messages -->
<string
name=
"msg_private_channel"
>
Privado
</string>
...
...
app/src/main/res/values-fr/strings.xml
View file @
d3a2b88a
...
...
@@ -21,6 +21,7 @@
// TODO: Add proper translation.
<string
name=
"title_create_channel"
>
Create Channel
</string>
<!-- Actions -->
<string
name=
"action_connect"
>
Se connecter
</string>
<string
name=
"action_use_this_username"
>
Utilisez ce nom d\'utilisateur
</string>
...
...
@@ -46,6 +47,11 @@
<string
name=
"action_select_photo_from_gallery"
>
Select photo from gallery
</string>
<!-- TODO Add translation -->
<string
name=
"action_take_photo"
>
Select photo from gallery
</string>
<!-- TODO Add translation -->
<string
name=
"action_reset_avatar"
>
Reset avatar
</string>
<!-- TODO Add translation -->
<string
name=
"action_connect_server"
>
Connect with a server
</string>
<string
name=
"action_join_community"
>
Join in the community
</string>
<string
name=
"action_create_server"
>
Create a new server
</string>
<string
name=
"action_register"
>
Register
</string>
<string
name=
"action_confirm"
>
Confirm
</string>
<!-- Settings List -->
<string-array
name=
"settings_actions"
>
...
...
@@ -144,6 +150,17 @@
// TODO: Add proper translation.
<string
name=
"msg_delete_message"
>
Delete Message
</string>
<string
name=
"msg_delete_description"
>
Are you sure you want to delete this message
</string>
<string
name=
"msg_welcome_to_rocket_chat"
>
Welcome to Rocket.Chat
</string>
<string
name=
"msg_open_source_communication"
>
Open Source Communication
</string>
<string
name=
"msg_login_with_email"
>
Login with e-mail
</string>
<string
name=
"msg_create_account"
>
Create an account
</string>
<string
name=
"msg_continue_with_facebook"
>
Continue with Facebook
</string>
<string
name=
"msg_continue_with_github"
>
Continue with Github
</string>
<string
name=
"msg_continue_with_google"
>
Continue with Google
</string>
<string
name=
"msg_continue_with_linkedin"
>
Continue with Linkedin
</string>
<string
name=
"msg_continue_with_gitlab"
>
Continue with GitLab
</string>
<string
name=
"msg_two_factor_authentication"
>
Two-factor Authentication
</string>
<string
name=
"msg__your_2fa_code"
>
What’s your 2FA code?
</string>
<!-- Create channel messages -->
// TODO: Add proper translation.
...
...
app/src/main/res/values-hi-rIN/strings.xml
View file @
d3a2b88a
...
...
@@ -45,6 +45,11 @@
<string
name=
"action_select_photo_from_gallery"
>
Select photo from gallery
</string>
<!-- TODO Add translation -->
<string
name=
"action_take_photo"
>
Select photo from gallery
</string>
<!-- TODO Add translation -->
<string
name=
"action_reset_avatar"
>
Reset avatar
</string>
<!-- TODO Add translation -->
<string
name=
"action_connect_server"
>
Connect with a server
</string>
<string
name=
"action_join_community"
>
Join in the community
</string>
<string
name=
"action_create_server"
>
Create a new server
</string>
<string
name=
"action_register"
>
Register
</string>
<string
name=
"action_confirm"
>
Confirm
</string>
<!-- Settings List -->
<string-array
name=
"settings_actions"
>
...
...
@@ -133,6 +138,17 @@
<string
name=
"msg_sent_attachment"
>
एक अनुलग्नक भेजा
</string>
<string
name=
"msg_delete_message"
>
संदेश को हटाएं
</string>
<string
name=
"msg_delete_description"
>
क्या आप निश्चित रूप से यह संदेश हटाना चाहते हैं
</string>
<string
name=
"msg_welcome_to_rocket_chat"
>
Welcome to Rocket.Chat
</string>
<string
name=
"msg_open_source_communication"
>
Open Source Communication
</string>
<string
name=
"msg_login_with_email"
>
Login with e-mail
</string>
<string
name=
"msg_create_account"
>
Create an account
</string>
<string
name=
"msg_continue_with_facebook"
>
Continue with Facebook
</string>
<string
name=
"msg_continue_with_github"
>
Continue with Github
</string>
<string
name=
"msg_continue_with_google"
>
Continue with Google
</string>
<string
name=
"msg_continue_with_linkedin"
>
Continue with Linkedin
</string>
<string
name=
"msg_continue_with_gitlab"
>
Continue with GitLab
</string>
<string
name=
"msg_two_factor_authentication"
>
Two-factor Authentication
</string>
<string
name=
"msg__your_2fa_code"
>
What’s your 2FA code?
</string>
<!-- Create channel messages -->
<string
name=
"msg_private_channel"
>
प्राइवेट
</string>
...
...
app/src/main/res/values-pt-rBR/strings.xml
View file @
d3a2b88a
...
...
@@ -45,6 +45,11 @@
<string
name=
"action_select_photo_from_gallery"
>
Escolher foto da galeria
</string>
<string
name=
"action_take_photo"
>
Tirar foto
</string>
<string
name=
"action_reset_avatar"
>
Resetar avatar
</string>
<string
name=
"action_connect_server"
>
Connect with a server
</string>
<string
name=
"action_join_community"
>
Join in the community
</string>
<string
name=
"action_create_server"
>
Create a new server
</string>
<string
name=
"action_register"
>
Register
</string>
<string
name=
"action_confirm"
>
Confirm
</string>
<!-- Settings List -->
<string-array
name=
"settings_actions"
>
...
...
@@ -133,6 +138,17 @@
// TODO: Add proper translation.
<string
name=
"msg_delete_message"
>
Delete Message
</string>
<string
name=
"msg_delete_description"
>
Are you sure you want to delete this message
</string>
<string
name=
"msg_welcome_to_rocket_chat"
>
Welcome to Rocket.Chat
</string>
<string
name=
"msg_open_source_communication"
>
Open Source Communication
</string>
<string
name=
"msg_login_with_email"
>
Login with e-mail
</string>
<string
name=
"msg_create_account"
>
Create an account
</string>
<string
name=
"msg_continue_with_facebook"
>
Continue with Facebook
</string>
<string
name=
"msg_continue_with_github"
>
Continue with Github
</string>
<string
name=
"msg_continue_with_google"
>
Continue with Google
</string>
<string
name=
"msg_continue_with_linkedin"
>
Continue with Linkedin
</string>
<string
name=
"msg_continue_with_gitlab"
>
Continue with GitLab
</string>
<string
name=
"msg_two_factor_authentication"
>
Two-factor Authentication
</string>
<string
name=
"msg__your_2fa_code"
>
What’s your 2FA code?
</string>
<!-- Create channel messages -->
<string
name=
"msg_private_channel"
>
Privado
</string>
...
...
app/src/main/res/values-ru/strings.xml
View file @
d3a2b88a
...
...
@@ -45,6 +45,11 @@
<string
name=
"action_select_photo_from_gallery"
>
Выбрать из галереи
</string>
<string
name=
"action_take_photo"
>
Сделать снимок
</string>
<string
name=
"action_reset_avatar"
>
Восстановить аватар
</string>
<string
name=
"action_connect_server"
>
Connect with a server
</string>
<string
name=
"action_join_community"
>
Join in the community
</string>
<string
name=
"action_create_server"
>
Create a new server
</string>
<string
name=
"action_register"
>
Register
</string>
<string
name=
"action_confirm"
>
Confirm
</string>
<!-- Settings List -->
<string-array
name=
"settings_actions"
>
...
...
@@ -130,6 +135,17 @@
<string
name=
"msg_delete_description"
>
Вы уверены, что хотите удалить это сообщение?
</string>
<string
name=
"msg_channel_name"
>
Название канала
</string>
<string
name=
"msg_search"
>
Поиск
</string>
<string
name=
"msg_welcome_to_rocket_chat"
>
Welcome to Rocket.Chat
</string>
<string
name=
"msg_open_source_communication"
>
Open Source Communication
</string>
<string
name=
"msg_login_with_email"
>
Login with e-mail
</string>
<string
name=
"msg_create_account"
>
Create an account
</string>
<string
name=
"msg_continue_with_facebook"
>
Continue with Facebook
</string>
<string
name=
"msg_continue_with_github"
>
Continue with Github
</string>
<string
name=
"msg_continue_with_google"
>
Continue with Google
</string>
<string
name=
"msg_continue_with_linkedin"
>
Continue with Linkedin
</string>
<string
name=
"msg_continue_with_gitlab"
>
Continue with GitLab
</string>
<string
name=
"msg_two_factor_authentication"
>
Two-factor Authentication
</string>
<string
name=
"msg__your_2fa_code"
>
What’s your 2FA code?
</string>
<!-- Create channel messages -->
<string
name=
"msg_private_channel"
>
Приватный
</string>
...
...
app/src/main/res/values/strings.xml
View file @
d3a2b88a
...
...
@@ -46,6 +46,11 @@
<string
name=
"action_select_photo_from_gallery"
>
Select photo from gallery
</string>
<string
name=
"action_take_photo"
>
Take photo
</string>
<string
name=
"action_reset_avatar"
>
Reset avatar
</string>
<string
name=
"action_connect_server"
>
Connect with a server
</string>
<string
name=
"action_join_community"
>
Join in the community
</string>
<string
name=
"action_create_server"
>
Create a new server
</string>
<string
name=
"action_register"
>
Register
</string>
<string
name=
"action_confirm"
>
Confirm
</string>
<!-- Settings List -->
<string-array
name=
"settings_actions"
>
...
...
@@ -133,6 +138,17 @@
<string
name=
"msg_file_description"
>
File description
</string>
<string
name=
"msg_send"
>
Send
</string>
<string
name=
"msg_sent_attachment"
>
Sent an attachment
</string>
<string
name=
"msg_welcome_to_rocket_chat"
>
Welcome to Rocket.Chat
</string>
<string
name=
"msg_open_source_communication"
>
Open Source Communication
</string>
<string
name=
"msg_login_with_email"
>
Login with e-mail
</string>
<string
name=
"msg_create_account"
>
Create an account
</string>
<string
name=
"msg_continue_with_facebook"
>
Continue with Facebook
</string>
<string
name=
"msg_continue_with_github"
>
Continue with Github
</string>
<string
name=
"msg_continue_with_google"
>
Continue with Google
</string>
<string
name=
"msg_continue_with_linkedin"
>
Continue with Linkedin
</string>
<string
name=
"msg_continue_with_gitlab"
>
Continue with GitLab
</string>
<string
name=
"msg_two_factor_authentication"
>
Two-factor Authentication
</string>
<string
name=
"msg__your_2fa_code"
>
What’s your 2FA code?
</string>
<!-- Create channel messages -->
<string
name=
"msg_private_channel"
>
Private
</string>
...
...
@@ -290,4 +306,6 @@
<string
name=
"message_information_title"
>
Message information
</string>
<string
name=
"foss"
tools:ignore=
"MissingTranslation"
>
(FOSS)
</string>
<!-- Community Server-->
<string
name=
"community_server"
translatable=
"false"
>
open.rocket.chat
</string>
</resources>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment