Skip to content

Fix invalid unicode escape in strings #44

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

Merged
merged 1 commit into from
Jul 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
<string name="summary_preference_android_studio_text_box">A user interface element for entering and modifying text. When you define an edit text widget, you must specify the R.styleable.TextView_inputType attribute…</string>
<string name="summary_preference_android_studio_password_text_box">A simple text box with ability to hide text. Is used in login screens for most of the apps to keep passwords safe.</string>
<string name="summary_preference_android_studio_alert_dialog">A dialog is a small window that prompts the user to make a decision or enter additional information. A dialog does not fill the screen and is normally used for modal events that require users to take an action before they can proceed.</string>
<string name="summary_preference_android_studio_snack_bar">Snack bars inform users of a process that an app has performed or will perform. They appear temporarily, towards the bottom of the screen. They shouldn\’t interrupt the user experience, and they don\’t require user input to disappear.</string>
<string name="summary_preference_android_studio_snack_bar">Snack bars inform users of a process that an app has performed or will perform. They appear temporarily, towards the bottom of the screen. They shouldn’t interrupt the user experience, and they don’t require user input to disappear.</string>
<string name="summary_preference_android_studio_toast">A toast provides simple feedback about an operation in a small popup. It only fills the amount of space required for the message and the current activity remains visible and interactive.</string>
<string name="summary_preference_android_studio_tooltip">A tooltip is a small descriptive message that appears near a view when users long press the view or hover their mouse over it. This is useful when your app uses an icon to represent an action or piece of information to save space in the layout.</string>
<string name="summary_preference_android_studio_rating_bar">A RatingBar is an extension of SeekBar and ProgressBar that shows a rating in stars.</string>
Expand Down
Loading