Skip to content
This repository was archived by the owner on Jun 7, 2020. It is now read-only.

Commit b537e47

Browse files
authored
Merge pull request #1986 from RocketChat/develop
[RELEASE] Merge DEVELOP into BETA
2 parents 7f6cf4f + 35a8ab7 commit b537e47

File tree

13 files changed

+157
-57
lines changed

13 files changed

+157
-57
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Bug report
3+
about: Create a bug report to help us improve
4+
5+
---
6+
7+
## Describe the bug
8+
<!-- A clear and concise description of what the bug is. -->
9+
10+
## To Reproduce
11+
<!--Steps to reproduce the behavior:
12+
1. Go to '...'
13+
2. Click on '....'
14+
3. Scroll down to '....'
15+
4. See error -->
16+
17+
## Expected behavior
18+
<!-- A clear and concise description of what you expected to happen. -->
19+
20+
## Logs
21+
<!-- Please add logs in case of any crash or applicable error. -->
22+
23+
## Screenshots
24+
<!-- If applicable, add screenshots to help explain your problem. -->
25+
26+
## Devices and Versions
27+
28+
<!-- Version can be found by opening the side menu and then clicking on "Settings" and then "About" -->
29+
Your Rocket.Chat.Android version: (e.g. 2.1.0)
30+
Your Rocket.Chat Server version: (e.g. 0.63.1-develop)
31+
32+
<!-- Found a bug? List all devices that reproduced it and all that doesn't -->
33+
Mobile device model and OS version: (e.g. "Nexus 7 - Android 6.0.1")
34+
35+
## Additional context
36+
<!-- Add any other context about the problem here. -->
37+

.github/ISSUE_TEMPLATE/chore.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Chore
3+
about: Issues related to docs, workflow, dependency and others
4+
5+
---
6+
7+
## Describe the chore
8+
<!-- A clear and concise description of what you want to do. -->
9+
10+
## Devices and Versions
11+
12+
<!-- Version can be found by opening the side menu and then clicking on "Settings" and then "About" -->
13+
Your Rocket.Chat.Android version: (e.g. 2.1.0)
14+
Your Rocket.Chat Server version: (e.g. 0.63.1-develop)
15+
16+
<!-- Found a bug? List all devices that reproduced it and all that doesn't -->
17+
Mobile device model and OS version: (e.g. "Nexus 7 - Android 6.0.1")
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
## Describe the feature you'd like
8+
<!-- A clear and concise description of what you want to happen. -->
9+
10+
## Devices and Versions
11+
12+
<!-- Version can be found by opening the side menu and then clicking on "Settings" and then "About" -->
13+
Your Rocket.Chat.Android version: (e.g. 2.1.0)
14+
Your Rocket.Chat Server version: (e.g. 0.63.1-develop)
15+
16+
<!-- Found a bug? List all devices that reproduced it and all that doesn't -->
17+
Mobile device model and OS version: (e.g. "Nexus 7 - Android 6.0.1")
18+
19+
## Screenshots
20+
<!-- Add screenshots to provide context or UI mockup. -->
21+
22+
## Additional context
23+
<!-- Add any other context about the problem here. -->
24+

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
<!-- INSTRUCTION: Inform the issue number that this PR closes, or remove the line below -->
55
Closes #ISSUE_NUMBER
66

7-
<!-- INSTRUCTION: Tell us more about your PR with screen shots if you can -->
7+
#### Changes: [Add here what changes were made in this issue and if possible provide links.]
8+
9+
#### Screenshots or GIF for the change:

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Rocket.Chat Android native application
44

5-
[![CircleCI](https://circleci.com/gh/RocketChat/Rocket.Chat.Android/tree/develop.svg?style=shield)](https://circleci.com/gh/RocketChat/Rocket.Chat.Android/tree/develop) [![Build Status](https://travis-ci.org/RocketChat/Rocket.Chat.Android.svg?branch=develop)](https://travis-ci.org/RocketChat/Rocket.Chat.Android) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/a81156a8682e4649994270d3670c3c83)](https://www.codacy.com/app/matheusjardimb/Rocket.Chat.Android)
5+
[![CircleCI](https://circleci.com/gh/RocketChat/Rocket.Chat.Android/tree/develop.svg?style=shield)](https://circleci.com/gh/RocketChat/Rocket.Chat.Android/tree/develop) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/a81156a8682e4649994270d3670c3c83)](https://www.codacy.com/app/matheusjardimb/Rocket.Chat.Android)
66

77
## Get it from the stores
88

@@ -14,20 +14,21 @@ This repository contains all the code related to the Android native application
1414

1515
## How to build
1616

17-
- You need to download the latest [Android Studio Preview](https://developer.android.com/studio/preview/) version since the stable IDE version does not support the [JetPack](https://developer.android.com/jetpack/) that is being used on this application.
18-
- Make sure that you have the latest **gradle** and the **android plugin** versions installed. Go to `File > Project Structure > Project` and make sure that you have the latest versions installed. Refer [this](https://developer.android.com/studio/releases/gradle-plugin.html#updating-gradle) to see the compatible versions.
17+
- Make sure that you have the latest **Gradle** and the **Android plugin** versions installed. Go to `File > Project Structure > Project` and make sure that you have the latest versions installed. Refer [this](https://developer.android.com/studio/releases/gradle-plugin.html#updating-gradle) to see the compatible versions.
1918
- Kotlin is already configured in the project. To check, go to `Tools > Kotlin > Configure Kotlin in project`. A message saying kotlin is already configured in the project pops up. You can update kotlin to the latest version by going to `Tools > Kotlin > Configure Kotlin updates` and download the latest version of kotlin.
2019

2120
### SDK Instructions
2221

2322
- This version requires the [Kotlin SDK](https://github.com/RocketChat/Rocket.Chat.Kotlin.SDK) for Rocket.Chat. Clone the Kotlin SDK in by running `git clone https://github.com/RocketChat/Rocket.Chat.Kotlin.SDK.git`.
24-
- First, a build is required for the SDK, so that required jar files are generated. Make sure that the android repository and the kotlin sdk have the same immediate parent directory. Change the current directory to `Rocket.Chat.Android/app` and run the `build-sdk.sh` which will result in creating of the required jar file `core*.jar` and `common*.jar` in `Rocket.Chat.Android/app/libs`,by the following steps in your terminal window:
23+
- First, a build is required for the SDK, so that required jar files are generated. Make sure that the Android repository and the Kotlin SDK have the same immediate parent directory. Change the current directory to `Rocket.Chat.Android/app` and run the `build-sdk.sh` which will result in creating of the required jar file `core*.jar` and `common*.jar` in `Rocket.Chat.Android/app/libs`, by the following steps in your terminal window:
2524

2625
```
2726
cd Rocket.Chat.Android/app
2827
./build-sdk.sh
2928
```
3029

30+
**Note:** *You need to have Java 8 as default Java for the system (project won't build when using a Java 9+ version).*
31+
3132
## How to run
3233

3334
### Command Line
@@ -38,12 +39,12 @@ cd Rocket.Chat.Android/app
3839

3940
### Android Studio
4041

41-
- After importing the project in android studio, go to `Run > Run app` and then select your device, or create a new virtual device by following the wizard.
42+
- After importing the project in Android Studio, go to `Run > Run app` and then select your device, or create a new virtual device by following the wizard.
4243

4344
## Bug report & Feature request
4445

4546
Are you having a technical issue trying to compile the app, or setting up Push Notifications? Please use our Community Support channel for that: https://forums.rocket.chat/c/community-support. The issues are only suppose to be used for bugs, improvements and features in the native Android application.
4647

4748
## Coding Style
4849

49-
Please follow our [coding style](https://github.com/RocketChat/java-code-styles/blob/master/CODING_STYLE.md) when contributing.
50+
Please follow the official [Kotlin coding convections](https://kotlinlang.org/docs/reference/coding-conventions.html) when contributing.

app/src/main/res/values-de/strings.xml

Lines changed: 47 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,25 @@
1414
<string name="title_members">Benutzer</string>
1515
<string name="title_counted_members">Benutzer (%d)</string>
1616
<string name="title_settings">Einstellungen</string>
17-
<string name="title_preferences">Einstellungen</string>
17+
18+
<string name="title_preferences">Eigenschaften</string>
1819
<string name="title_change_password">Ändere Passwort</string>
1920
<string name="title_rate_us">Bewerten Sie uns</string>
2021
<string name="title_admin_panel">Administrationsmenü</string>
22+
2123
<string name="title_password">Ändere Passwort</string>
2224
<string name="title_update_profile">Update Profil</string>
2325
<string name="title_about">Über</string>
2426
<string name="title_create_channel">Erstelle Raum</string>
25-
<string name="title_are_you_sure">Bist du sicher?</string>
27+
28+
<string name="title_are_you_sure">Sind Sie sicher?</string>
2629
<string name="title_channel_details">Channel-Details</string>
2730
<string name="title_topic">Thema</string>
2831
<string name="title_announcement">Ankündigung</string>
2932
<string name="title_description">Beschreibung</string>
3033
<string name="title_licence">Lizenz</string>
3134

35+
3236
<!-- Actions -->
3337
<string name="action_connect">Verbinde</string>
3438
<string name="action_use_this_username">Benutze den Benutzernamen</string>
@@ -40,7 +44,9 @@
4044
<string name="action_create_channel">Erstelle Raum</string>
4145
<string name="action_create">Erstelle</string>
4246
<string name="action_logout">Abmelden</string>
47+
4348
<string name="action_attach_a_files">Eine Datei anhängen</string>
49+
4450
<string name="action_confirm_password">Bestätige Passwort Änderung</string>
4551
<string name="action_join_chat">Trete Chat bei</string>
4652
<string name="action_add_account">Erstelle Account</string>
@@ -50,25 +56,27 @@
5056
<string name="action_invisible">Unsichtbar</string>
5157
<string name="action_drawing">Zeichnung</string>
5258
<string name="action_save_to_gallery">Sichern in Gallerie</string>
59+
5360
<string name="action_select_photo_from_gallery">Foto aus der Galerie auswählen</string>
54-
<string name="action_take_a_photo">Mach ein Foto</string>
61+
<string name="action_take_a_photo">Ein Foto aufnehmen und senden</string>
5562
<string name="action_reset_avatar">Avatar zurücksetzen</string>
5663
<string name="action_connect_server">Verbinden Sie sich mit einem Server</string>
57-
<string name="action_join_community">Trete der Community bei</string>
58-
<string name="action_create_server">Erstellen Sie einen neuen Server</string>
64+
<string name="action_join_community">Der Community beitreten</string>
65+
<string name="action_create_server">Einen eigenen Server erstellen</string>
5966
<string name="action_register">Registrieren</string>
6067
<string name="action_confirm">Bestätigen</string>
6168
<string name="action_delete_account">Konto löschen</string>
6269

6370
<!-- Settings List -->
6471
<string-array name="settings_actions">
65-
<item name="item_preferences">Einstellungen</item>
66-
<item name="item_password">Ändere das Passwort</item>
67-
<item name="item_share_app">App teilen</item>
72+
<item name="item_preferences">Eigenschaften</item>
73+
<item name="item_password">Passwort ändern</item>
74+
<item name="item_share_app">Link zur App teilen</item>
6875
<item name="item_rate_us">Bewerten Sie uns</item>
69-
<item name="item_contact_us">Kontaktiere uns</item>
76+
<item name="item_contact_us">Kontaktieren Sie uns</item>
7077
<item name="item_licence">Lizenz</item>
7178
<item name="item_about">Über</item>
79+
7280
</string-array>
7381

7482
<!-- Regular information messages -->
@@ -106,7 +114,9 @@
106114
<string name="msg_content_description_log_in_using_gitlab">Login mit Gitlab</string>
107115
<string name="msg_content_description_log_in_using_wordpress">Login mit WordPress</string>
108116
<string name="msg_content_description_send_message">Sende Nachricht</string>
109-
<string name="msg_content_description_show_more_login_options">Show more login options</string>
117+
118+
<string name="msg_content_description_show_more_login_options">Zeige mehr Login-Optionen</string>
119+
110120
<string name="msg_content_description_show_attachment_options">Zeige Anhang Optionen</string>
111121
<string name="msg_you">Du</string>
112122
<string name="msg_unknown">Unbekannt</string>
@@ -145,29 +155,31 @@
145155
<string name="msg_file_description">Datei Beschreibung</string>
146156
<string name="msg_send">Sende</string>
147157
<string name="msg_sent_attachment">Sende Anhang</string>
148-
<string name="msg_welcome_to_rocket_chat">Willkommen bei Rocket.Chat</string>
149-
<string name="msg_team_communication">Team Communication</string> <!-- TODO Translate -->
150-
<string name="msg_login_with_email">Einloggen mit <b>e-mail</b></string>
151-
<string name="msg_create_account">Ein Konto erstellen</string>
152-
<string name="msg_continue_with_facebook">Weitermachen mit <b>Facebook</b></string>
153-
<string name="msg_continue_with_github">Weitermachen mit <b>Github</b></string>
154-
<string name="msg_continue_with_google">Weitermachen mit <b>Google</b></string>
155-
<string name="msg_continue_with_linkedin">Weitermachen mit <b>Linkedin</b></string>
156-
<string name="msg_continue_with_gitlab">Weitermachen mit <b>GitLab</b></string>
157-
<string name="msg_continue_with_wordpress">Weitermachen mit <b>WordPress</b></string>
158+
159+
<string name="msg_welcome_to_rocket_chat">Wilkommen bei Rocket.Chat</string>
160+
<string name="msg_team_communication">Team Kommunikation</string>
161+
<string name="msg_login_with_email">Mit <b>e-mail</b> einloggen</string>
162+
<string name="msg_create_account">Einen Account erstellen</string>
163+
<string name="msg_continue_with_facebook">Mit <b>Facebook</b> einloggen</string>
164+
<string name="msg_continue_with_github">Mit <b>Github</b> einloggen</string>
165+
<string name="msg_continue_with_google">Mit <b>Google</b> einloggen</string>
166+
<string name="msg_continue_with_linkedin">Mit <b>Linkedin</b> einloggen</string>
167+
<string name="msg_continue_with_gitlab">Mit <b>GitLab</b> einloggen</string>
168+
<string name="msg_continue_with_wordpress">Mit <b>WordPress</b> einloggen</string>
158169
<string name="msg_two_factor_authentication">Zwei-Faktor-Authentifizierung</string>
159-
<string name="msg__your_2fa_code">Wie lautet Ihr 2FA-Code?</string>
170+
<string name="msg__your_2fa_code">Wie lautet Ihr F2A Code?</string>
160171
<string name="msg_muted_on_this_channel">Sie sind auf diesem Kanal stummgeschaltet</string>
161172
<string name="msg_no_topic">Kein Thema hinzugefügt</string>
162173
<string name="msg_no_announcement">Keine Ankündigung hinzugefügt</string>
163174
<string name="msg_no_description">Keine Beschreibung hinzugefügt</string>
164-
<string name="msg_unable_to_update_password">Unable to update password. Error message: %1$s</string> <!-- TODO - Add proper translation -->
165-
<string name="msg_password_updated_successfully">Password updated successfully</string> <!-- TODO - Add proper translation -->
175+
<string name="msg_unable_to_update_password">Änderung des Passworts nicht möglich. Fehlermeldung: %1$s</string>
176+
<string name="msg_password_updated_successfully">Passwort erfolgreich geändert</string>
166177
<plurals name="msg_reacted_with_">
167178
<item quantity="one">%1$ s reagierte mit %2$s</item>
168179
<item quantity="other">%1$s reagierte mit %2$s</item>
169180
</plurals>
170181

182+
171183
<!-- Create channel messages -->
172184
<string name="msg_private_channel">Privat</string>
173185
<string name="msg_public_channel">Öffentlich</string>
@@ -182,17 +194,19 @@
182194
<string name="msg_message_copied">Nachricht kopiert</string>
183195
<string name="msg_delete_message">Lösche Nachricht</string>
184196
<string name="msg_delete_description">Sind Sie sicher, dass Sie diese Nachricht löschen wollen?</string>
185-
<string name="msg_view_more">mehr sehen</string>
186-
<string name="msg_view_less">weniger anzeigen</string>
187-
<string name="msg_permalink_copied">Permalink kopiert</string>
197+
198+
<string name="msg_view_more">Zeige mehr</string>
199+
<string name="msg_view_less">Zeige weniger</string>
200+
<string name="msg_permalink_copied">Permanenter Link kopiert</string>
188201
<string name="msg_send_email">E-Mail senden</string>
189202
<string name="msg_android_app_support">Android App-Unterstützung</string>
190203

191204
<!-- Preferences messages -->
192-
<string name="msg_analytics_tracking">Analytics tracking</string>
193-
<string name="msg_send_analytics_tracking">Send anonymous statics to help improving this app</string>
194-
<string name="msg_do_not_send_analytics_tracking">Do not send anonymous statics to help improving this app</string>
195-
<string name="msg_not_applicable_since_it_is_a_foss_version">Not applicable since it is a FOSS version</string>
205+
<string name="msg_analytics_tracking">Daten für Analysezwecke</string>
206+
<string name="msg_send_analytics_tracking">Anonyme Statistiken senden um diese App weiter zu verbessern</string>
207+
<string name="msg_do_not_send_analytics_tracking">KEINE anonymen Statistiken senden um diese App weiter zu verbessern</string>
208+
<string name="msg_not_applicable_since_it_is_a_foss_version">Nicht anwendbar, da es sich um eine FOSS version handelt</string>
209+
196210

197211
<!-- System messages -->
198212
<string name="message_room_name_changed">Raum Namen geändert zu: %1$s von %2$s</string>
@@ -328,13 +342,14 @@
328342
<string name="notif_success_sending">Nachricht gesendet nach %1$s!</string>
329343
<string name="read_by">Gelesen von</string>
330344
<string name="message_information_title">Nachricht Information</string>
331-
<string name="message_room_changed_privacy">Room type changed to: %1$s by %2$s</string>
345+
<string name="message_room_changed_privacy">Raumtyp geändert zu: %1$s durch %2$s</string>
332346

333347
<!-- User Details -->
334348
<string name="timezone">Zeitzone</string>
335349

336350
<!-- Report -->
337-
<string name="submit">einreichen</string>
351+
<string name="submit">Senden</string>
338352
<string name="required">*erforderlich</string>
339353
<string name="report_sent">Ihr Bericht wurde gesendet!</string>
354+
340355
</resources>

app/src/main/res/values-hi-rIN/strings.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
<string-array name="settings_actions">
6565
<item name="item_preferences">पसंद</item>
6666
<item name="item_password">पासवर्ड बदलें</item>
67+
<item name="change_language">भाषा बदलें</item>
6768
<item name="item_share_app">ऐप शेयर करें</item>
6869
<item name="item_rate_us">हमें रेटिंग दें</item>
6970
<item name="item_contact_us">हमसे संपर्क करें</item>
@@ -152,7 +153,7 @@
152153
<string name="msg_delete_message">संदेश को हटाएं</string>
153154
<string name="msg_delete_description">क्या आप निश्चित रूप से यह संदेश हटाना चाहते हैं</string>
154155
<string name="msg_welcome_to_rocket_chat">Rocket.Chat में आपका स्वागत है</string>
155-
<string name="msg_team_communication">Team Communication</string> <!-- TODO Translate -->
156+
<string name="msg_team_communication">टीम संचार</string>
156157
<string name="msg_login_with_email">ई-मेल के साथ लॉगिन करें</string>
157158
<string name="msg_create_account">खाता बनाएं</string>
158159
<string name="msg_continue_with_facebook"><b>Facebook</b> के साथ जारी रखें</string>

0 commit comments

Comments
 (0)