Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Text and icons adjustment #266

Merged
merged 10 commits into from
Mar 27, 2024

Conversation

PavloNetrebchuk
Copy link
Contributor

@PavloNetrebchuk PavloNetrebchuk commented Mar 21, 2024

@openedx-webhooks openedx-webhooks added the open-source-contribution PR author is not from Axim or 2U label Mar 21, 2024
@openedx-webhooks
Copy link

openedx-webhooks commented Mar 21, 2024

Thanks for the pull request, @PavloNetrebchuk! Please note that it may take us up to several weeks or months to complete a review and merge your PR.

Feel free to add as much of the following information to the ticket as you can:

  • supporting documentation
  • Open edX discussion forum threads
  • timeline information ("this must be merged by XX date", and why that is)
  • partner information ("this is a course on edx.org")
  • any other information that can help Product understand the context for the PR

All technical communication about the code itself will be done via the GitHub pull request interface. As a reminder, our process documentation is here.

Please let us know once your PR is ready for our review and all tests are green.

@volodymyr-chekyrta volodymyr-chekyrta self-requested a review March 21, 2024 13:14
@PavloNetrebchuk PavloNetrebchuk changed the title feat: Minor UI changes feat: Text and icons adjustment Mar 21, 2024
@PavloNetrebchuk PavloNetrebchuk marked this pull request as ready for review March 25, 2024 11:12
@sdaitzman
Copy link

I did find one minor phrasing change I would recommend: “Log out” over “Logout” for consistency with the rest of the app, as well as the web version. Everything else looks good to me!

@PavloNetrebchuk
Copy link
Contributor Author

@sdaitzman
Screenshot 2024-03-25 at 17 32 25
Done

k1rill
k1rill previously approved these changes Mar 26, 2024
Copy link
Contributor

@omerhabib26 omerhabib26 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some minor code changes and improvements

@@ -73,7 +73,8 @@
<string name="core_rate_us">Rate Us</string>
<string name="core_thank_you_dialog_positive_description">Thank you for sharing your feedback with us. Would you like to share your review of this app with other users on the app store?</string>
<string name="core_thank_you_dialog_negative_description">We received your feedback and will use it to help improve your learning experience going forward. Thank you for sharing!</string>
<string name="core_not_connected_to_internet">You are not connected to the Internet. Please check your Internet connection.</string>
<string name="core_not_internet_connection">No internet connection</string>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we rename it to core_no_internet_connection?

@@ -73,7 +73,8 @@
<string name="core_rate_us">Rate Us</string>
<string name="core_thank_you_dialog_positive_description">Thank you for sharing your feedback with us. Would you like to share your review of this app with other users on the app store?</string>
<string name="core_thank_you_dialog_negative_description">We received your feedback and will use it to help improve your learning experience going forward. Thank you for sharing!</string>
<string name="core_not_connected_to_internet">You are not connected to the Internet. Please check your Internet connection.</string>
<string name="core_not_internet_connection">No internet connection</string>
<string name="core_not_internet_connection_description">Please connect to the internet to view this content.</string>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

<string name="course_not_started">This course hasn’t started yet.</string>
<string name="course_not_connected_to_internet">You are not connected to the Internet. Please check your Internet connection.</string>
<string name="course_navigation_course">Course</string>
<string name="course_navigation_videos">Videos</string>
<string name="course_navigation_discussions">Discussions</string>
<string name="course_navigation_handouts">Handouts</string>
<string name="course_navigation_more">More</string>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we use a generic string for both?
1- More
2- More

<string name="course_can_download_only_with_wifi">You can download content only from Wi-fi</string>
<string name="course_this_interactive_component">This interactive component isn’t yet available</string>
<string name="course_this_interactive_component">This interactive component isn\'t available on mobile</string>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add a full stop at the end of the sentence.

@@ -3,6 +3,5 @@
<string name="dashboard_title">Мої курси</string>
<string name="dashboard_courses">Курси</string>
<string name="dashboard_welcome_back">Ласкаво просимо назад. Продовжуймо навчатися.</string>
<string name="dashboard_its_empty">It\'s empty</string>
<string name="dashboard_you_are_not_enrolled">You are not enrolled in any courses yet.</string>
</resources>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a blank line at EOF.

@@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can remove this and use imageVector = Icons.Filled.Close,

@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

requires auto-format.

@@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1- can we use white color as a strokeColor to make it more generic?
2- requires auto-format

@@ -0,0 +1,45 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1- can we use white color as a strokeColor to make it more generic?
2- requires auto-format

@@ -3,21 +3,6 @@
android:height="100dp"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1- can we use white color as a strokeColor to make it more generic?
2- requires auto-format

@PavloNetrebchuk
Copy link
Contributor Author

@omerhabib26 Changed and formatted👍

omerhabib26
omerhabib26 previously approved these changes Mar 27, 2024
# Conflicts:
#	course/src/main/java/org/openedx/course/presentation/ui/CourseUI.kt
@volodymyr-chekyrta volodymyr-chekyrta merged commit f294057 into openedx:develop Mar 27, 2024
3 checks passed
@openedx-webhooks
Copy link

@PavloNetrebchuk 🎉 Your pull request was merged! Please take a moment to answer a two question survey so we can improve your experience in the future.

@volodymyr-chekyrta volodymyr-chekyrta deleted the feat/ui_changes branch March 27, 2024 14:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
open-source-contribution PR author is not from Axim or 2U
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

6 participants