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

Update strings in base locale #601

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
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
44 changes: 24 additions & 20 deletions Sources/GravatarUI/Resources/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/* Title for Cancel button. */
"AltText.Editor.cancelButtonTitle" = "Cancel";

/* Title for Help button which opens a view explaining what alt text is. */
"AltText.Editor.helpButtonTitle" = "What is alt text?";

/* Placeholder text for Alt Text editor text field. */
"AltText.Editor.placeholder" = "Write alt text...";

/* Title for Save button. */
"AltText.Editor.saveButtonTitle" = "Save";

/* The title of Alt Text editor screen. */
"AltText.Editor.title" = "Alt Text";

/* Rating that indicates that the avatar is suitable for everyone */
"Avatar.Rating.G.subtitle" = "General";

Expand All @@ -10,6 +25,9 @@
/* Rating that indicates that the avatar is obviously and extremely unsuitable for children */
"Avatar.Rating.X.subtitle" = "Extreme";

/* An option in the avatar menu that edits the avatar's Alt Text. */
"AvatarPicker.AvatarAction.altText" = "Alt Text";

/* An option in the avatar menu that deletes the avatar */
"AvatarPicker.AvatarAction.delete" = "Delete";

Expand Down Expand Up @@ -97,6 +115,12 @@
/* Title of a button that will take you to your Gravatar profile, with an arrow indicating that this action will cause you to leave this view */
"AvatarPickerProfile.Button.ViewProfile.title" = "View profile →";

/* This error message shows when the user attempts to change the alt text of an avatar and fails. */
"AvatarPickerViewModel.AltText.Error" = "Oops, something didn't quite work out while trying to update the alt text.";

/* This confirmation message shows when the user has updated the alt text. */
"AvatarPickerViewModel.AltText.Success" = "Image alt text was changed successfully.";

/* This error message shows when the user attempts to delete an avatar and fails. */
"AvatarPickerViewModel.Delete.Error" = "Oops, there was an error deleting the image.";

Expand Down Expand Up @@ -151,23 +175,3 @@
/* An option to show the image playground */
"SystemImagePickerView.Source.Playground.title" = "Playground";

/* The title of Alt Text editor screen */
"AltText.Editor.title" = "Alt Text";

/* Placeholder text for Alt Text editor text field */
"AltText.Editor.placeholder" = "Write alt text...";

/* Title for Save button */
"AltText.Editor.saveButtonTitle" = "Save";

/* Title for Cancel button */
"AltText.Editor.cancelButtonTitle" = "Cancel";

/* This confirmation message shows when the user has updated the alt text */
"AvatarPickerViewModel.AltText.Success" = "Image alt text was changed successfully.";

/* This error message shows when the user attempts to change the alt text of an avatar and fails */
"AvatarPickerViewModel.AltText.Error" = "Oops, something didn't quite work out while trying to update the alt text.";

/* Title for Help button which opens a view explaining what alt text is */
"AltText.Editor.helpButtonTitle" = "What is alt text?";
Loading