Skip to content

Commit

Permalink
dashboard: smoother profile translation (fixes #4601) (#4617)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <[email protected]>
  • Loading branch information
Kuljeet1998 and dogi authored Oct 11, 2024
1 parent 8d04c75 commit a210d10
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "org.ole.planet.myplanet"
minSdkVersion 26
targetSdkVersion 34
versionCode 2017
versionName "0.20.17"
versionCode 2018
versionName "0.20.18"
ndkVersion '21.3.6528147'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
Expand Down
16 changes: 8 additions & 8 deletions app/src/main/res/layout/fragment_member_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Full Name"
android:text="@string/full_name"
android:textColor="@color/daynight_textColor"
android:textStyle="bold" />
<TextView
Expand All @@ -56,7 +56,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="DOB"
android:text="@string/date_of_birth"
android:textColor="@color/daynight_textColor"
android:textStyle="bold" />
<TextView
Expand All @@ -72,7 +72,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Email"
android:text="@string/email"
android:textColor="@color/daynight_textColor"
android:textStyle="bold" />
<TextView
Expand All @@ -88,7 +88,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Phone"
android:text="@string/phone_number"
android:textColor="@color/daynight_textColor"
android:textStyle="bold" />
<TextView
Expand All @@ -104,7 +104,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Language"
android:text="@string/language"
android:textColor="@color/daynight_textColor"
android:textStyle="bold" />
<TextView
Expand Down Expand Up @@ -136,7 +136,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Last Login"
android:text="@string/login"
android:textColor="@color/daynight_textColor"
android:textStyle="bold" />
<TextView
Expand All @@ -152,7 +152,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Level"
android:text="@string/level"
android:textColor="@color/daynight_textColor"
android:textStyle="bold" />
<TextView
Expand All @@ -171,5 +171,5 @@
android:layout_height="wrap_content"
android:layout_gravity="end"
android:layout_marginTop="16dp"
android:text="Close" />
android:text="@string/close" />
</LinearLayout>
1 change: 1 addition & 0 deletions app/src/main/res/values-ar/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1196,5 +1196,6 @@
<string name="total_visits_overall">إجمالي الزيارات : </string>
<string name="most_opened_resource">أكثر مورد تم فتحه : </string>
<string name="number_of_resources_opened">عدد الموارد المفتوحة : </string>
<string name="number_of_visits">عدد الزيارات</string>

</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1196,5 +1196,6 @@
<string name="total_visits_overall">Total de Visitas : </string>
<string name="most_opened_resource">Recurso Más Abierto : </string>
<string name="number_of_resources_opened">Número de Recursos Abiertos : </string>
<string name="number_of_visits">Número de Visitas</string>

</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1196,5 +1196,6 @@
<string name="total_visits_overall">Total des Visites : </string>
<string name="most_opened_resource">Ressource La Plus Consultée : </string>
<string name="number_of_resources_opened">Nombre de Ressources Ouvertes : </string>
<string name="number_of_visits">Nombre de Visites</string>

</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values-ne/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1196,5 +1196,6 @@
<string name="total_visits_overall">कुल भ्रमण : </string>
<string name="most_opened_resource">सबैभन्दा धेरै खोलेको स्रोत : </string>
<string name="number_of_resources_opened">खोलिएका स्रोतहरूको संख्या : </string>
<string name="number_of_visits">भ्रमणहरूको संख्या</string>

</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values-so/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1196,5 +1196,6 @@
<string name="total_visits_overall">Tirada Booqashooyinka : </string>
<string name="most_opened_resource">Kheyraadka Ugu Badan ee La Furay : </string>
<string name="number_of_resources_opened">Tirada Kheyraadka La Furay : </string>
<string name="number_of_visits">Tirada Booqashooyinka</string>

</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1196,5 +1196,6 @@
<string name="total_visits_overall">Total Visits : </string>
<string name="most_opened_resource">Most Opened Resource : </string>
<string name="number_of_resources_opened">Number of Resources Opened : </string>
<string name="number_of_visits">Number of Visits</string>

</resources>

0 comments on commit a210d10

Please sign in to comment.