-
-
Notifications
You must be signed in to change notification settings - Fork 144
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
59 add localization comments to the dashboardview #250
59 add localization comments to the dashboardview #250
Conversation
… touch Labels and Buttons with String-only initilaizers yet.
…alizers to use View-based Label instread of StringProtocol
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work!! I have several comments that need resolved please. If you have any questions, you can comment directly on that thread, otherwise click the resolve button once you've addressed my comment. Once you fix everything, please click the re-review button
Also please solve the merge conflict, and fix the indentation for a few spots
Basic-Car-Maintenance/Shared/Dashboard/Views/DashboardView.swift
Outdated
Show resolved
Hide resolved
Basic-Car-Maintenance/Shared/Dashboard/Views/DashboardView.swift
Outdated
Show resolved
Hide resolved
@@ -135,7 +136,7 @@ | |||
} | |||
}, | |||
"Add" : { | |||
"comment" : "Label for submit button on form to add an entry", | |||
"comment" : "Label for submit button on form to add an entry\nLabel for adding maintenance event on Dashboard view", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this one has a \n
on the comment, which means that this key Add
has two different string comments, which at the moment causes a conflict.
To fix this you need to either use the same comment for both, or make a new localized string key for Add
and use your separate comment.
I think making a new one is the best solution
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This wasn't resolved, I fixed it
Uh... where is the re-review button? Newbie is getting a little lost here.. Sorry. |
It's at the top right of the page when you're on the conversation tab |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work!! Just a few formatting comments that I'll fix
Basic-Car-Maintenance/Shared/Dashboard/Views/DashboardView.swift
Outdated
Show resolved
Hide resolved
Basic-Car-Maintenance/Shared/Dashboard/Views/DashboardView.swift
Outdated
Show resolved
Hide resolved
Basic-Car-Maintenance/Shared/Dashboard/Views/DashboardView.swift
Outdated
Show resolved
Hide resolved
Basic-Car-Maintenance/Shared/Dashboard/Views/DashboardView.swift
Outdated
Show resolved
Hide resolved
@@ -135,7 +136,7 @@ | |||
} | |||
}, | |||
"Add" : { | |||
"comment" : "Label for submit button on form to add an entry", | |||
"comment" : "Label for submit button on form to add an entry\nLabel for adding maintenance event on Dashboard view", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This wasn't resolved, I fixed it
What it Does
DashboardView
#59How I Tested
Notes
Screenshot