Created
June 22, 2021 05:43
-
-
Save adrielAd/0a5bbf16bd62708f6baac0492b587a63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@SerializedName("golf_landing_page_title") | |
@Expose | |
private String golfLandingPageTitle = "My Golf"; | |
@SerializedName("golf_history") | |
@Expose | |
private String golfHistory = "History"; | |
@SerializedName("golf_bookings") | |
@Expose | |
private String golfBookings = "Bookings"; | |
@SerializedName("golf_add_score") | |
@Expose | |
private String golfAddScore = "Add Score"; | |
@SerializedName("golf_handicap_index") | |
@Expose | |
private String golfHandicapIndex = "Handicap Index"; | |
@SerializedName("golf_pick_course_page_title") | |
@Expose | |
private String golfPickCoursePageTitle = "Pick Golf Course"; | |
@SerializedName("golf_search_course_hint") | |
@Expose | |
private String golfSearchCourseHint = "Search Course"; | |
@SerializedName("golf_select_tee_color") | |
@Expose | |
private String golfSelectTeeColor = "Tee Color"; | |
@SerializedName("golf_select_game_date") | |
@Expose | |
private String golfSelectGameDate = "Select Game Date"; | |
@SerializedName("golf_info_selection_page_title") | |
@Expose | |
private String golfInfoSelectionPageTitle = "Start Info Selection"; | |
@SerializedName("golf_add_score_page_title") | |
@Expose | |
private String golfAddScorePageTitle = "Add Score"; | |
@SerializedName("golf_hole_number") | |
@Expose | |
private String golfHoleNumber = "Hole "; | |
@SerializedName("golf_next") | |
@Expose | |
private String golfNext = "Next"; | |
@SerializedName("golf_prev") | |
@Expose | |
private String golfPrev = "Prev"; | |
@SerializedName("golf_cancel_adding_score") | |
@Expose | |
private String golfCancelAddingScore = "Going back will discard all score added till now. Do you want to discard?"; | |
@SerializedName("golf_title_optional") | |
@Expose | |
private String golfTitleOption = "Title(optional)"; | |
@SerializedName("golf_date_of_play") | |
@Expose | |
private String golfDateOfPlay = "Date of play"; | |
@SerializedName("golf_day") | |
@Expose | |
private String golfDay = "Day"; | |
@SerializedName("golf_month") | |
@Expose | |
private String golfMonth = "Month"; | |
@SerializedName("golf_year") | |
@Expose | |
private String golfYear = "Year"; | |
@SerializedName("golf_scoring_method") | |
@Expose | |
private String golfScoringMethod = "Scoring Method"; | |
@SerializedName("golf_stableford") | |
@Expose | |
private String golfStableford = "Stableford"; | |
@SerializedName("golf_strokes") | |
@Expose | |
private String golfStrokes = "Strokes"; | |
@SerializedName("golf_course_par") | |
@Expose | |
private String golfCoursePar = "Course Par"; | |
@SerializedName("golf_total_distance") | |
@Expose | |
private String golfTotalDistance = "Total Distance"; | |
@SerializedName("golf_css") | |
@Expose | |
private String golfCss = "Css"; | |
@SerializedName("golf_holes") | |
@Expose | |
private String golfHoles = "Holes"; | |
@SerializedName("golf_stroke_index") | |
@Expose | |
private String golfStrokeIndex = "SI "; | |
@SerializedName("golf_distance") | |
@Expose | |
private String golfDistance = "Distance "; | |
@SerializedName("golf_hole_par") | |
@Expose | |
private String golfHolePar = "Hole par "; | |
@SerializedName("golf_tee") | |
@Expose | |
private String golfTee = "Tee "; | |
@SerializedName("golf_score_signed") | |
@Expose | |
private String golfScoreSigned = "SIGNED"; | |
@SerializedName("golf_score_unsigned") | |
@Expose | |
private String golfScoreUnsigned = "SCORE NOT ACCEPTED YET"; | |
@SerializedName("golf_score_partial") | |
@Expose | |
private String golfScorePartial = "WAITING"; | |
@SerializedName("golf_gross") | |
@Expose | |
private String golfGross = "Gross"; | |
@SerializedName("golf_nett") | |
@Expose | |
private String golfNett = "Nett"; | |
@SerializedName("golf_confirm") | |
@Expose | |
private String golfConfirm = "Confirm"; | |
@SerializedName("golf_sign") | |
@Expose | |
private String golfSign = "Sign"; | |
@SerializedName("golf_sign_later") | |
@Expose | |
private String golfSignLater = "Sign later"; | |
@SerializedName("golf_confirm_no_score") | |
@Expose | |
private String golfConfirmNoScore = "Confirm No Score"; | |
@SerializedName("golf_no_score_no_internet_message") | |
@Expose | |
private String golfNoScoreNoInternetMessage = "You have no internet connection at this point so you cannot update score. Please try connecting to internet and then update score."; | |
@SerializedName("golf_no_internet_message") | |
@Expose | |
private String golfNoInternetMessage = "You have no internet connection at this point. Please try connecting to internet."; | |
@SerializedName("golf_scorecard") | |
@Expose | |
private String golfScorecard = "Scorecard"; | |
@SerializedName("golf_sign_this_score") | |
@Expose | |
private String golfSignThisScore = "Sign this score"; | |
@SerializedName("golf_mark_as_final") | |
@Expose | |
private String golfMarkAsFinal = "(mark as final)"; | |
@SerializedName("golf_round_registration_title") | |
@Expose | |
private String golfRoundRegistrationTitle = "Round Registration"; | |
@SerializedName("golf_start_scoring") | |
@Expose | |
private String golfStartScoring = "Start Scoring"; | |
@SerializedName("golf_manage_booking") | |
@Expose | |
private String golfManageBooking = "Manage Booking"; | |
@SerializedName("golf_players_booked") | |
@Expose | |
private String golfPlayersBooked = "Players Booked"; | |
@SerializedName("golf_points") | |
@Expose | |
private String golfPoints = "Points"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment